2007-08-21 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2
3         * ListViewGroupCollection.cs: Implement AddRange the right way, to
4         only call Redraw on the parent one time.
5
6 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7
8         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
9           GetClipboardContent.
10         * DataGridViewCell.cs: Implemented GetClipboardContent,
11           GetEditedFormattedValue, GetFormattedValue.
12         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
13
14 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
15
16         * TableLayoutStyleCollection.cs: corcompare fix.
17
18 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
19
20         * DataObject.cs: Implemented retrieval of convertible / not convertible
21           objects.
22
23 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
24
25         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
26         ourselves.  This ensures the entire old bounds are repainted, in case our new
27         size is smaller.  [Fixes bug #82518]
28
29 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
30
31         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
32         flag to make fast handle of mouse events, without this the mouse move is
33         handled in some manner, whether it is a mouse move or not. Fixes #81588.
34
35 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
36
37         * ListView.cs: When doing layout calculations don't use a ref
38         param to keep the current item; instead use its Index value (this 
39         is specially important when doing the layout with Groups
40         and Items being sparse). Also don't take into account items added to
41         the Group but not yet added to the main ListView.Items collection.
42
43 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
44
45         * ListViewGroupCollection.cs: Forgot to mimic an issue
46         in the indexer (don't assign the ListView owner for new values).
47
48 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
49
50         * ListViewGroupCollection.cs: Make the string indexer use
51         the int based indexer to re-use code, instead of duplicate the code.
52         Also Redraw as needed and take into account null values.
53
54 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
55
56         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
57         [Fixes bug #82481]
58
59 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
60
61         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
62         when other buttons are clicked or navigated to.
63
64 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
65
66         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
67           it's XplatUIX11 that attaches them.
68
69 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
70
71         * DataGridView.cs: If a column has been added, recreate the editing row.
72           Fixes #82226.
73
74 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
75
76         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
77           of the tag to draw. Makes disappearing text show up again.
78
79 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
80
81         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
82           Contents. Fixes #82487.
83
84 2007-08-19  Andreia Gaita  <avidigal@novell.com>
85
86         * Added HtmlElement.cs, HtmlElementCollection.cs, 
87           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
88           
89 2007-08-19  Andreia Gaita  <avidigal@novell.com>
90
91         * BindingSource.cs: Implement this, dispose and getenumerator.
92         * DataGridViewRowCollection.cs: Move the InvalidOperationException
93         out of AddInternal, throw it only on public Add calls. The 
94         UsingWebBrowser sample was blowing up with this when setting the
95         DataSource after adding DataBindings, so it's likely that .net
96         only throws this exception when Add is called directly. 
97         
98         * ToolStripControlHost.cs: Return the hosted control's text
99         property, and not the ToolStripItem one (it would always return
100         the initial value).
101         
102         * HtmlDocument.cs: Implement GetElementById and All
103         * WebBrowser.cs: Remove exception on set_DocumentStream.        
104
105 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
106
107         * Form.cs: Fix the max and min value for opacity (0~1).
108
109 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
110
111         [Fixes #80118]
112         * DataGridTableStyle.cs: Default header font is now null, on getter it 
113         returns datagrid font when is null. On setter permits null.
114
115         * DataGrid.cs:
116         - When ResetHeaderFont set header font to null.
117         - On EndInit set grid_style.DataGrid.
118
119 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
120
121         * TabControl.cs: Fix regression in default padding x.
122
123 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
124
125         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
126
127 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
128
129         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
130         not 2. Fixes #82229.
131
132 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
133
134         * TabControl.cs: Fix tab size when image height is less than text height.
135         Partially fixes #81837.
136
137 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
138
139         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
140         "alt + tab". It works only for Win32, for X11 theres no way to remove window
141         from taskbar and keep it on "alt_tab". Fixes #81722.
142
143 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
144
145         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
146         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
147         Fixes #80877 and #79418.
148
149 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
150
151         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
152         between position and one of the screen borders. Fixes #82349.
153
154 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
155
156         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
157         the MessageBox in the taskbar. Fixes #82457.
158
159 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
160
161         * MessageBox.cs: Fix form size when icon is set and text height is bigger
162         than icon. Fixes #82468.
163
164 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
165
166         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
167         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
168           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
169           Refactored HandleNCCalcSize somewhat to avoid code duplication.
170         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
171           FormBorderStyle to decide if we're calculating a new size from the
172           client size or not. CreateParams: Don't fake tool windows, only the X11
173           backend manages toolwindows manually.
174
175 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
176
177         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
178         ObjectDisposedException.
179
180 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
181
182         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
183         in OnLoad should not have any effect.  [Fixes bug #82470]
184
185 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
186
187         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
188         paint for controls that create their own ToolTipWindow instead of
189         going through ToolTip.
190
191 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
192
193         * ToolTip.cs: Make Hide internal instead of public to match MS API.
194
195 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
196
197         * ListViewGroupCollection.cs: Use generic List instead of an
198         ArrayList, since this collection is 2.0 only.
199
200 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
201
202         * ToolTip.cs (Hide): Made public to make the build work (should
203         this not be public?).
204
205 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
206
207         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
208         ToolTipWindow.
209         * ToolTip.cs: Add an internal Visible property to facilitate transition.
210
211 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
212
213         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
214         PopupEventHandler.cs: Make these internal for 1.1.
215         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
216         use ToolTipWindow internals.
217         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
218         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
219
220 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
221
222         * X11Dnd.cs: Add a null check.
223
224 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
225
226         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
227           nothing else succeeds. Fixes #82453.
228
229 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
230
231         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
232           rectangle if we're painting to another window than the one the paint
233           message was generated on. Simplify the code somewhat, which makes
234           PaintEventEnd also simpler.
235
236 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
237
238         * Control.cs: When changing parent of a form, let the form decide whether
239           XplatUI.SetParent should be called or not.
240         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
241           recreating the handle. If the new parent's handle isn't created, don't
242           recreate our handle, just destroy it. CreateParams: Check if the
243           parent's handle is created before fetching it.
244
245 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
246
247         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
248           Update calls to PaintEventStart/End to take a Message argument.
249         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
250           take a Message argument.
251         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
252           Message argument, and handle the case where we don't paint to the window
253           for which the paint message was generated.
254
255 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
256
257         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
258           Marshal.GetLastWin32Error. Plug nasty memory leak in
259           PaintEventStart/End, we were creating a DC we weren't releasing.
260
261 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
262
263         * ListView.cs: Add Groups support in Details view. Also have a small
264         method to do the layout of the group header. Don't use a separate
265         method to do the groups calculation in Icons view, since our methods
266         are now a little simpler.
267         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
268         `Bounds'.
269         * ThemeWin32Classic.cs: Likewise.
270
271 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
272
273         * Application.cs: Add FilterMessage method and rework our message loop
274         logic to use it.
275
276 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
277
278         * Application.cs: Add some methods and stub a few methods that are
279         pretty much never used.
280
281 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
282
283         * TreeNode.cs: Add some serialization methods.
284
285 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
286
287         * ListView.cs: In ListViewItemCollection have a 
288         'is_main_collection' field to not modify ListViewItem.ListView
289         when using it as ListViewGroup.Items (and not ListView.Items)
290         and also don't modify selection state (.Net behaviour). 
291         Instead, set group for items contained in a ListViewGroup.Items collection.
292         * ListViewItem.cs: Simplify some code in Group setter.
293         * ListViewGroup.cs: use the new .ctor to pass the current instance
294         to the ItemsCollection.
295         * ListViewGroup.cs: Set the ListView property for ListViewGroup
296         instances when adding/removing. Also make Remove use RemoveAt, which
297         should perform better.
298
299 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
300
301         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
302         that crept into the 1.1 profile.
303
304 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
305
306         * ToolBarButton.cs: Implement ImageKey.
307
308 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
309
310         * ToolBar.cs: Implement ScaleControl/ScaleCore.
311
312 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
313
314         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
315           created, it might have gotten destroyed since we last checked. Fixes
316           #82405.
317
318 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
319
320         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
321         tooltip will hide when mouse is moved off the control.
322         [Fixes bug #82407]
323
324 2007-08-11 Andreia Gaita <avidigal@novell.com>
325
326         * WebBrowserBase.cs, WebBrowser.cs: add implementation
327         using Mono.Mozilla for loading and navigating webcontrol
328         with xulrunner.
329         The initial implementation was done on 
330         /trunk/mozembed/tests/browser , and copied here.
331
332 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
333
334         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
335         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
336
337 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
338
339         * DataGridView.cs: Add support for an editing row. Fixes #82226.
340           RowTemplateFull: throw an exception if a column doesn't have a template.
341         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
342           add the row just before it.
343         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
344           selected.
345         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
346           DataGridView field to be able to reach the grid's editing row.
347
348 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
349
350         * ToolTip.cs: If the control's handle hasn't been created when it has a
351         tooltip set on it, don't check to see if we need to show the tooltip.  This
352         check was causing the control's handle to be created.
353         [Fixes bug #82399]
354
355 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
356
357         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
358                                         1.1             2.0
359         Handle Not Created      -1              0
360         Handle Created          0               0
361         [Fixes bug #82371]
362
363 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
364
365         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
366         [Fixes bug #82348]
367
368 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
369
370         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
371         * ToolTip.cs: Implement some properties and owner draw.
372
373 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
374
375         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
376           show them again, since setting visibility causes a paint, causing an
377           endless loop (instead use a temporary and set it all when it's known if
378           they should be shown or not). Fixes #79265.
379
380 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
381
382         * DataGridView.cs: Only do a full column/row selection if a header was
383           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
384           isn't pressed, deselect everything before selecting something.
385
386 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
387
388         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
389           behaviour according to bug #81075 - they are returned in the order they
390           are selected. Fix HitTest to check if the point is within any of the
391           headers. Allow for row/column selection when in ColumnHeader or
392           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
393           the row and column to call when their selected state changes, and
394           updated selected_[rows|columns] whenever SetSelected* is called.
395         * DataGridViewBand.cs: Initialize isRow correctly. Call
396           SetSelected[Row|Column]CoreInternal when the selected state changes, and
397           add a SelectedInternal to avoid StackOverflows.
398         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
399           ReadOnly no matter what.
400         * DataGridViewSelectedColumnCollection.cs,
401           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
402           the items in reverse order (just as MS does...)
403
404 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
405
406         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
407         itself, not part of a mnemonic.  [Fixes bug #82378]
408
409 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
410
411         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
412         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
413           the DGV, the column, the row, or the cell itself is readonly.
414
415 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
416
417         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
418         OSVersion.Platform.
419         * FileDialog.cs: Same.
420         * TextRendered.cs: Same.
421         * FolderBrowserDialog.cs: Same.
422         * TextBoxBase.cs: Same.
423         * Application.cs: Same.
424         * Cursors.cs: Same.
425         * ThemeClearLooks.cs: Same.
426
427 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
428
429         * XplatUI.cs: Added RunningOnUnix property to be used by controls
430         instead of duplicating these checks everywhere.
431         * FileDialog.cs: Use case-insensitive comparison for populating the
432         DirComboBox when not running on unix. Fixes bug #82385.
433         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
434         "Look in".
435
436 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
437
438         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
439           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
440           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
441           cell and column selection with ctrl and shift pressed. Call the correct
442           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
443           the corresponding virtual method (PaintBackground to paint background,
444           etc).
445         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
446           either the column, row or the cell itself is selected.
447         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
448           OnRowsAdded.
449         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
450           here. When the row is selected, don't select all cells. Each cell now
451           queries the row to see if the row is selected.
452
453 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
454
455         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
456           SelectionMode.
457
458 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
459
460         * ListView.cs: In ListViewItemsCollection check that owner is
461         not null before trying to access it (this happens quite often
462         using Groups). Also don't duplicate calls by calling CollectionChanged
463         method.
464
465 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
466
467         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
468         when we are dismissed to clear keyboard mnemonics.
469         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
470         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
471         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
472         was activated by keyboard or the OS tells us to always draw them.
473         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
474         [Fixes bugs #82376, #82377]
475
476 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
477
478         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
479         shot at having it because Alt was pressed.
480         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
481         the first real menu item.
482         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
483         a mnemonic if Text is null.
484         [Fixes bug #82374]
485
486 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
487
488         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
489         search do check whether the item is already contained in the
490         collection or not; instead check if the owner of the item is the same
491         as ours. Also, remove a redundant check in the same method. 
492
493 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
494
495         * Control.cs: Allow the clip region to be set back to null.
496         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
497         [Fixes button still showing up in bug #82370 when Show Through is turned off]
498
499 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
500
501         * GridEntry.cs: Add a null check.
502         * PropertyGrid.cs: When checking for existing grid entries, ignore category
503           entries. Fixes #82297.
504
505 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
506
507         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
508         for 2.0.
509
510 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
511
512         * ListBox.cs: Implement ScaleControl.
513
514 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
515
516         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
517           have a menu strip.
518         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
519           parent has a menu strip. Fixes #81689.
520
521 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
522
523         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
524           moments, so apply some fuzzy logic to determine if the mouse is still
525           inside a control or not. Fixes #82288 (for the third time).
526
527 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
528
529         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
530           Don't create the child if it has been disposed already (may happen if
531           the user closes the form the Load event).
532
533 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
534
535         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
536           #82288.
537
538 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
539
540         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
541           might call us after we've been destroyed, in which case our own private
542           parent field is null. Fixes #82326.
543
544 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
545
546         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
547         check for setting the dropdown's owner.
548
549 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
550
551         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
552         before removing system menu items.
553
554 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
555
556         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
557         folding.
558         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
559         folding.
560         * ToolStrip.cs: Add a null check to mnemonics.
561         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
562         no ConnectedArea.
563         [Fixes most of bug #81689]
564
565 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
566
567         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
568
569 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
570
571         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
572
573 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
574
575         * DataGridViewCell.cs: EditType: returns
576           DataGridViewTextBoxEditingControl always.
577
578 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
579
580         * TextRenderer.cs: Remove the LineLimit string format flag from the
581         DrawString fallback method so that things like buttons that aren't
582         tall enough to draw a full line will still draw part of the text.
583         [Fixes part of bug #82272]
584
585 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
586
587         * DataGridView.cs: Implemented AutoResizeColumn(s).
588         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
589           according to the Alignment.
590         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
591           Implement alignment and padding when painting.
592         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
593           exists.
594         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
595           way.
596         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
597           a column is added.
598
599 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
600
601         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
602         which is internal.
603
604 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
605
606         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
607         hide GetPreferredSize from public API.
608         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
609         * ToolStripItem.cs: Stub out drag and drop methods and events.
610         * ToolStripManager.cs: Stub out Save/LoadSettings.
611         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
612         * ToolStripPanel.cs: Fix corcompare error.
613         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
614         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
615         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
616
617 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
618
619         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
620         bounds height instead of PreferredHeight.  Puts things back the way 
621         they were for height while still fixing the width.  Fixes broken unit
622         tests.
623
624 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
625
626         * Binding.cs: Implement 2.0 constructors and add a null check.
627
628 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
629
630         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
631           and fix row index (off by one).
632
633 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
634
635         * PropertyGridView.cs: Remove debug output.
636
637 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
638
639         * Control.cs: We need to reset the is_created flags when the handle is
640           destroyed. Fixes #82187.
641         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
642           client coordinates if the window doesn't have a parent.
643           Win32GetParent returns the parent or the owner, and for top-level
644           windows with no parent (but with an owner) we were calculating the
645           location from the location of the owner.
646         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
647           form has been disposed.
648         * MdiClient.cs: Add a null-check.
649
650 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
651
652         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
653         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
654         so we can provide an implementation that returns the current width
655         and preferred height.  Allows anchor = right to work with TextBox 2.0.
656         [Fixes bug #82233]
657
658 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
659
660         * ListView.cs: Add support for navigating items in Groups mode, by
661         creating a big matrix containing all rows and cols of all groups. When
662         are in other mode than Details, pressing Up should have a similar
663         behaviour as that one of Down (moving to the next available column if
664         current one doesn't have an item in the requested row). Also, don't
665         proceed to use groups if ShowGroups is false.
666         * ListViewGroup.cs: Add an internal int field to store the starting
667         row of the group (used by the big matrix used for navigating the
668         ListView).
669         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
670         false.
671
672 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
673
674         * ToolStripDropDown.cs: When we do Show, start with the 
675         DefaultDropDownDirection, but if our popup menu is going to off-screen,
676         modify the direction to keep it on screen.  [Fixes bug #82210]
677
678 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
679
680         * FileDialog.cs: Accept any FilterIndex value, and store it
681         unmodified. When FilterIndex is less than 1, or greater than number
682         of filters, then default to first filter. Only add filter extension to
683         file if user did not specifiy an extension. When type of dialog is
684         OpenFileDialog and DefaultExt is set, then only use filter extension
685         if: CheckFileExists is true and no file wih the default extension
686         exists, or CheckFileExists is false, and user specified file does not
687         exist. When CheckFileExists is true, then add first extension of 
688         selected filter that matches existing file. Perform checks for
689         existing file, overwrite and create after extension has been added to
690         file name. When CheckFileExists is true and type is SaveFileDialog,
691         then only consider first filter extension if DefaultExt is set.
692         When CheckFileExists is true, then ignore DefaultExt if file with that
693         extension does not exist. Also perform check for existing file when
694         type is SaveFileDialog. Changed some field to constants.
695
696 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
697
698         * ListView.cs: Take into account the region used by header
699         control when doing the vertical scroll (this way we invalidate
700         the precise area, and don't get any dirty one).
701
702 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
703
704         * FileDialog.cs: Check for valid filterIndex on button open/save. 
705         Fixes #82184.
706
707 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
708
709         * ListView.cs: Update some layout calculations in details view
710         and clean the code in a pair of assignations.
711
712 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
713
714         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
715         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
716         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
717         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
718
719 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
720
721         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
722         performance of thread-safe Graphic methods.  (Thanks rolf!)
723
724 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
725
726         * ListView.cs: When doing the layout calculations, don't calculate
727         scroll bars before handle is created. This is unnecessary and also
728         calculating them before handle creation item causes a number of random
729         bugs (which begin to appear after Chris' big patch for handle creation
730         fixes). 
731
732 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
733
734         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
735         for things that don't have a Graphics object.  Currently, things just use
736         the static Hwnd.bmp_g which is not thread safe.
737
738 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
739
740         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
741           dialog. Fixes #82187.
742
743 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
744
745         * DataGridViewElement.cs: Initialize state.
746         * DataGridView.cs: Forward a few Mouse events to cells. Add
747           GetRowInternal and GetCellInternal that doesn't unshare rows.
748           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
749           don't use the index, but look it up. Add
750           DataGridViewControlCollection.RemoveInternal to remove controls
751           that Remove won't remove (scrollbars, edit control).
752         * DataGridViewColumn.cs: Initialize State correctly.
753         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
754           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
755           implementing this.
756         * DataGridViewRowCollection.cs: Implemented shared rows.
757         * DataGridViewRow.cs: Throw exceptions as MS do.
758         * DataGridViewCell.cs: A few properties are implemented by a
759           Get<Property> method, so move implementation there and remove the
760           NIEX in the method. Add a bunch of OnXInternal that DataGridView
761           calls when necessary.
762         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
763           complicates matters.
764         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
765           unshare any rows.
766
767 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
768
769         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
770         the children controls.  Instead, we will just set up the proper docking for the
771         children controls so we don't have to worry about it.  [Fixes bug #82188]
772
773 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
774
775         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
776         canceling and correct Before/AfterLabelEdit properties as layed out in bug
777         81847.  [Fixes bug #81847]
778
779 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
780
781         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
782         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
783         an explicit size based on the design-time size of the text.  Since our fonts
784         may not match this explicit size, we tend to cut off the ends of people's labels.
785
786 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
787
788         * Menu.cs: Add some missing methods to MenuItemCollection.
789
790 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
791
792         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
793         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
794         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
795         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
796         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
797         * DataGridViewElement.cs: State defaults to Visible.
798         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
799         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
800
801 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
802
803         * Control.cs: Minor 1.1 corcompare fix.
804
805 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
806
807         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
808         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
809
810 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
811
812         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
813           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
814           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
815           DataGridViewSelectedColumnCollection.cs,
816           DataGridViewSelectedRowCollection.cs: Corcompare work.
817
818 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
819
820         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
821         it is autoset by VS2005 designer and the effect is barely noticeable.
822
823 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
824
825         * TreeView.cs: Implement HitTest.
826
827 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
828
829         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
830           manually adding and removing the control from the Controls
831           collecftion.
832         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
833           EditingControlInternal property that tracks the editing control.
834           Always keeping the scrollbars in the Controls collection, as MS
835           testing confirms is the right behaviour.
836
837 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
838
839         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
840           according to MSDN and new test.
841
842 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
843
844         * TreeNode.cs: Implement ToolTipText.
845         * TreeView.cs: Implement tooltips, NodeMouse* events.
846
847 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
848
849         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
850
851 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
852
853         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
854         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
855
856 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
857
858         * Control.cs, Form.cs, ContainerControl.cs,
859         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
860         for misc properties.
861
862 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
863
864         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
865         * TreeView.cs: Implement StateImageList.
866
867 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
868
869         * Form.cs: Don't check if the current form is the active form before
870           activating it. Fixes #81904.
871
872 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
873
874         * Form.cs: Don't check if the current form is the active form before
875           activating it. Fixes #81904.
876
877 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
878
879         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
880
881 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
882
883         * Form.cs: Don't try to position the form after loading if the form was
884           disposed. Fixes #81969.
885
886 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
887
888         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
889           properties. Had to change ToolBar into ToolStrip, which required a
890           few #ifs.
891
892 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
893
894         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
895           resized, fixes part of #79829 (vertical lines in toolbar).
896           PropertyGrid: Refactored Populate* to something that's easier to
897           follow at least for me, as well as splitting it up into several new
898           methods, required to update only subitems when something has
899           changed by a popup editor or listbox. Don't use events to check
900           when any values are changed, since the events are unreliable (we're
901           changing the objects the events are registered with, and if the
902           event handling requires the objects to be immutable (objects stored
903           in hashtables for instance), the events will never be raised).
904         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
905           everytime we change a value, since events are unreliable.
906           DropDownButtonClicked: For the same reason don't compare objects to
907           check if it has changed or not, it would require all objects to
908           derive Equals. Fix dialog location on windows, MS is doing weird
909           things when creating parented forms.
910         * GridEntry.cs: Add a SelectedObject setter.
911
912 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
913
914         * TreeNode.cs: Add some corcompare attributes.
915         * TreeNodeCollection.cs: Implement 2.0 stuffs.
916         * TreeView.cs: Implement some 2.0 stuffs.
917
918 2007-07-18  Andreia Gaita  <avidigal@novell.com>
919
920         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
921         for moma.
922
923 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
924
925         * ListBox.cs: Implement custom tab offsets.
926
927 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
928
929         * ToolStripContentPanel.cs: Support System renderer.
930         * ToolStripControlHost.cs: Set RightToLeft to default to No.
931
932 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
933
934         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
935
936 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
937
938         * CheckBox.cs: Chain TextAlign to base implementation instead of
939         maintaining another one.
940
941 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
942
943         * ButtonBase.cs: Fix an incorrect string constant.
944
945 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
946
947         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
948         of creating one for measuring strings.
949
950 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
951
952         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
953         Implement MaxItemSize.
954
955 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
956
957         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
958         for DeviceContext.  Instead, use the static one available in Hwnd.
959         Informal tests show this saves about 500k on formtest.exe.
960
961 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
962
963         * ContainerControl.cs: Implement 2.0 AutoScaling.
964
965 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
966
967         * ComboBox.cs: Work around bug #82120 (bug in mcs).
968
969 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
970
971         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
972         Darken the focus color.
973
974 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
975
976         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
977         for the checkbox.
978         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
979         X, Y instead of a rect for drawing text.
980         - For ControlPaint.DrawCheckBox, center the check a little better when the
981         checkbox is odd width.  When drawing a flat checkbox, use a white background
982         when state != inactive.
983         [Fixes bugs #82097, 82100]
984
985 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
986
987         * ListControl.cs: When changing CurrencyManager, disconnect event
988         handlers from previous one. Fixes bug #81771. Code formatting.
989
990 2007-07-15  Andreia Gaita <avidigal@novell.com>
991
992         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
993         full preview invalidation from layout invalidation, and only invalidate
994         the layout when setting zoom or other properties. Invalidation should
995         always be done even when resetting properties with the same values as
996         what is there. Fixes #81744 and #79830.
997
998 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
999
1000         * ListView.cs: Implement initial support for Groups. Split some of the
1001         LayoutIcons code to render a partial list of the items (needed by
1002         items contained in ListViewGroup instances). Let the
1003         ListViewItemsCollection.ListView property be modifiable (needed when
1004         using Groups, too).
1005         * ListViewGroup.cs: Use a Bounds property rather than a Location
1006         one. Also invalidate the bounds when they get changed.
1007         * ThemeWin32Classic.cs: When drawing items, also draw the group header
1008         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
1009         method as well.
1010
1011 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1012
1013         * ListView.cs: When space gets pressed and CheckBoxes is true, 
1014         don't invoke the Begin and EndUpdate methods. We are generating 
1015         a redraw of the entire control without need to do so.
1016
1017 2007-07-13  William Holmes <billholmes54@gmail.com> 
1018
1019         * Control.cs: Changing logic in FindFlatForward and 
1020           FindFlatBackward to handle multiple Controls with 
1021           the same TabIndex.  
1022           This fixes bug 81687.
1023
1024 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
1025
1026         * OSFeature.cs: Enable IsPresent.
1027
1028 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1029
1030         * Control.cs: Don't do anything in WmShowWindow if the control has been
1031           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
1032           control is created, put on a form, the control is disposed (the
1033           form is never shown), and then we get a MapNotify, triggering a
1034           WM_SHOWWINDOW.
1035         * Form.cs: Exclude the current form when sending Deactivate to all
1036           MdiChildren.
1037         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
1038           there was a race condition because assigning the handle raises
1039           events, we can get more messages, therefore trying to assign the
1040           handle again, which would fail if any of those event handlers
1041           closed/disposed the control.
1042
1043 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1044
1045         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
1046
1047 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1048
1049         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
1050         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
1051
1052 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1053
1054         * DateTimePicker.cs: If there's no part format specifier, return an
1055           empty string.
1056
1057 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1058
1059         * FlatButtonAppearance.cs: Throw NotSupportedException for a
1060         Transparent BorderColor.
1061
1062 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1063
1064         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
1065           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
1066           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
1067           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
1068           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
1069           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
1070           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
1071           Remove warnings.
1072         * X11Structs.cs: Remove warnings, add ToString implementations.
1073
1074 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1075
1076         * XplatUIX11.cs: Translate min/max size according to the actual min/max
1077           size, and not the current size. Fixes #81798.
1078
1079 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1080
1081         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
1082           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
1083           to the control yet).
1084
1085 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1086
1087         * PropertyGridTextBox.cs: Add a method that sends any forwarded
1088           mousedowns to the contained textbox.
1089         * X11Structs.cs: More ToString implementation.
1090         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
1091           #81791.
1092
1093 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1094
1095         * PropertyGridView.cs: Add a null-check, fixes a few tests.
1096
1097 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1098
1099         * TableLayoutPanelCellPosition.cs: TypeConverter.
1100
1101 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1102
1103         [ Fixes #79761]
1104         
1105         * PropertyGridTextBox.cs: Propagate any color changes to all contained
1106           controls.
1107         * PropertyGridView.cs: A few color fixes.
1108
1109 2007-07-10  Jackson Harper  <jackson@ximian.com>
1110
1111         * TextControl.cs: Remove some old unused text formatting stuff.
1112
1113 2007-07-10  Jackson Harper  <jackson@ximian.com>
1114
1115         * TreeView.cs: Update full row select invalidation to match the
1116         newer DrawSelection... method.
1117         - Make sure to invalidate the entire width when selecting a new
1118         node, if we have full row selection enabled.
1119
1120 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1121
1122         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
1123           display of properties again.
1124
1125 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1126
1127         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
1128         to existing collections.
1129
1130 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1131
1132         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
1133         that changed between 1.1 and 2.0.
1134
1135 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1136
1137         * PowerStatus.cs: Added.  This is just a data class, it is filled
1138         in by SystemInformation.
1139
1140 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1141
1142         * Message.cs: Add op_Equality and op_Inequality.
1143
1144 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1145
1146         * MenuStrip.cs: Finish corcompare work.
1147
1148 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1149
1150         * LinkArea.cs: Add op_Equality and op_Inequality.
1151
1152 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1153
1154         * Application.cs: Add MessageLoopCallback delegate.
1155
1156 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1157
1158         * ListBox.cs: First set of 2.0 stuffs.
1159
1160 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1161
1162         * Control.cs: Make an internal Height property we can override
1163         without messing up the public API.
1164         * ListBox.cs: Override HeightInternal to always return the size
1165         the user set.  [Fixes bug #80466]
1166
1167 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
1168
1169         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
1170         paint cell borders if we haven't calculated where they go yet.
1171         [Fixes bugs #82040 and #82041]
1172
1173 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1174
1175         * ListView.cs: In Details view, set the location of item_control
1176         in the (0,0) position (and the header_control is thus on the
1177         item_control). This way the Bounds of the Items are relative to the
1178         ListView control (before this, they had a Bounds value without the
1179         header_control offset, which wasn't matching .Net). Fixes #82004.
1180
1181 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1182
1183         * ListControl.cs: When DataSource is set to null, pass an empty
1184         array of object to SetItemsCore. This is done to clean the items
1185         in the ListContol children. Fixes #81788.
1186
1187 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1188
1189         * ListControl.cs: Add 2.0 stuffs.
1190
1191 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1192
1193         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
1194         Refresh is overkill for just about every repaint request.
1195
1196 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1197
1198         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
1199         so remove my custom Get method and fix the property getter.
1200
1201 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1202
1203         * Label.cs: DefaultMargin for 2.0.
1204
1205 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1206
1207         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
1208         reported issue where other controls with mnemonics would steal strokes
1209         from a selected ComboBox.
1210
1211 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1212
1213         * ScrollOrientation.cs: Make internal for 1.1.
1214         * ScrollEventArgs.cs: Add 2.0 stuffs.
1215
1216 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
1217
1218         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
1219         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
1220         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
1221
1222 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1223
1224         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
1225
1226 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1227
1228         * ListView.cs: Implement the so-incredibly broken 2.0 
1229         VirtualItemsSelectionRangeChanged event.
1230
1231 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1232
1233         * ListView.cs: When enter is pressed and selection is non empty,
1234         an OnItemActivate event must be fired.
1235
1236 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1237
1238         * ListView.cs: Store the FocusedItem information as an
1239         int instead of a ListViewItem (needed by VirtualMode).
1240         Update the calls to SetFocusedItem to pass an index instead of
1241         an item.
1242         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
1243         the Focused state from the owner ListView. 
1244
1245 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1246
1247         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
1248         property. Also, invalidate previous focused item in the mentioned
1249         property (match .Net).
1250
1251 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1252
1253         * ListView.cs: Implement 2.0 FocusedItem property setter.
1254
1255 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1256
1257         * ListView.cs: Implement 2.0 TopItem property setter.
1258
1259 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
1260
1261         * StatusStrip.cs: The default renderer is System.
1262         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
1263         if the user specifies it.
1264         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
1265         if we are ManagerRenderMode.
1266         * ToolStripMenuItem.cs: Calculate our text color better.
1267         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
1268         from Professional to the base class based off working with the System renderer.
1269         * ToolStripSystemRenderer.cs: Added.
1270
1271 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1272
1273         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
1274
1275 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
1276
1277         * ToolTip.cs: Implement 2.0 Tag property.
1278
1279 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1280
1281         * ListView.cs: Implement 2.0 HitTest methods.
1282
1283 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1284
1285         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
1286         item is under the pointer or not (sugar). Also remove the TODO
1287         regarding to the cursor changes in OneClick activation.
1288         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
1289         the subitems use the parent's HotFont if UseItemStyleForSubItems is
1290         true; otherwise don't show the underline style.
1291
1292 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1293
1294         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
1295         the code to retrieve the item at position only one time. Also
1296         change cursor when Activation is ItemActivation.OneClick as well
1297         as invalidate the item if HotTracking is true (to show/hide the
1298         underline style). Add an internal HotItemIndex property to retrieve
1299         the current hot item's index.
1300         * ListViewItem.cs: Add an internal HotFont property to cache the
1301         font used when HotTracking is true and the pointer moves within the
1302         item's borders.
1303         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
1304         HotFont depending on the hot state of the item.
1305
1306 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1307
1308         * ListView.cs: Implement 2.0 HotTracking property.
1309
1310 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1311
1312         * ToolStripControlHost.cs: If our hosted control never got created,
1313         don't try to dispose it.  [Fixes bug #81909]
1314
1315 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1316
1317         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
1318
1319 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1320
1321         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
1322
1323 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1324
1325         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
1326         Details view.
1327         * DrawListViewColumnHeaderEventArgs.cs:
1328         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
1329         using the DrawText () methods.
1330
1331 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
1332
1333         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
1334         background which got erased in my changes yesterday.
1335
1336 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1337
1338         * ListViewItem.cs: Actually set bounds for subitems in Details view
1339         (2.0 feature).
1340         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
1341         can invoke from the owner draw routines if we need it. Also, add
1342         support for Owner draw in Details view.
1343
1344 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1345
1346         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
1347         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
1348         ShowImageMargin setting, properly align text in a ToolStripLabel
1349         hosted on a ToolStripDropDown.
1350
1351 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1352
1353         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
1354         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
1355
1356 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1357
1358         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
1359
1360 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1361
1362         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
1363         location to match ToolStripMenuItems.
1364
1365 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1366
1367         * DrawListViewColumnHeaderEventArgs.cs:
1368         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
1369         column headers in ListView. 
1370
1371 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1372
1373         * UserControl.cs: Implement AutoSize.
1374
1375 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1376
1377         * DrawListViewItemEventArgs.cs:
1378         * ListView.cs:
1379         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
1380         ListView.
1381
1382 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1383
1384         * ToolStripDropDownItemAccessibleObject.cs: Added.
1385         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
1386         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1387         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
1388         ToolStripTextBox.cs: corcompare work.
1389
1390 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1391
1392         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
1393         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
1394         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
1395                 corcompare.
1396
1397 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1398
1399         * OSFeature.cs: Add IsPresent.
1400         * PrintPreviewControl.cs: Add RightToLeft.
1401         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
1402         * SplitterPanel.cs: Add AutoSizeMode.
1403
1404 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1405
1406         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
1407         * MdiClient.cs: Add 2.0 ScaleControl.
1408         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
1409         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
1410
1411 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1412
1413         * Form.cs: Implement some scaling methods, stub some RTL methods,
1414         corcompare work.
1415
1416 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1417
1418         * Control.cs: corcompare work.
1419         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
1420
1421 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1422
1423         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
1424         ControlPaint 2.0 stuffs.
1425
1426 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1427
1428         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
1429
1430 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1431
1432         * UpDownBase.cs: Add 2.0 stuffs.
1433
1434 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1435
1436         * NumericUpDown.cs: Add 2.0 stuffs.
1437
1438 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1439
1440         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
1441
1442 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1443
1444         * ErrorProvider.cs: Implement 2.0 stuffs.
1445
1446 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1447
1448         * DomainUpDown.cs: Implement 2.0 stuffs.
1449
1450 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1451
1452         * CheckedListBox.cs: Fix RefreshItems signature.
1453
1454 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1455
1456         * PictureBox.cs: Implement 2.0 stuffs.
1457
1458 2007-06-12  Andreia Gaita  <avidigal@novell.com>
1459         
1460         * TabControl.cs: Check if there are tabpages before checking
1461         the selected index - fix #81802 (font changes raise a ResizeTabs
1462         call on controls.add, which blew up nicely with no tabpages)
1463
1464 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1465
1466         * ListView.cs:
1467         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
1468
1469 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1470
1471         * ListView.cs:
1472         * ListViewItem.cs: In VirtualMode the selection information
1473         resides in the ListView, rather than in the Items. Also, throw
1474         InvalidOperationExceptions when VirtualMode is being used and
1475         CheckedItemCollection is accessed.
1476
1477 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1478
1479         * ComboBox.cs: Add ScaleControl.
1480
1481 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1482
1483         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
1484
1485 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1486
1487         * GroupBox.cs: Add 2.0 stuffs.
1488
1489 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1490
1491         * Panel.cs: Add autosize properties/event.
1492
1493 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1494
1495         * Control.cs:
1496         - When we remove a control, remove it from the collection before performing the layout.
1497         - Setup an internal property for explicit_bounds.
1498         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
1499         - Perform a layout when we set a new AutoSizeMode.
1500
1501 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1502
1503         * ScrollableControl.cs: Add 2.0 stuffs.
1504
1505 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1506
1507         * ScrollBar.cs: Add 2.0 stuffs.
1508
1509 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1510
1511         * Splitter.cs: Add 2.0 stuffs.
1512
1513 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1514
1515         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
1516         to have BindingContext simply use base implementation.
1517
1518 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1519
1520         * ColumnHeader.cs: corcompare fix.
1521
1522 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1523
1524         * Button.cs: corcompare fixes.
1525         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
1526
1527 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1528
1529         * Button.cs: Override GetPreferredSizeCore.
1530         * ButtonBase.cs: PerformLayout after changing properties that can affect
1531         AutoSize.  Simplify some mouse/keyboard code.
1532         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
1533         * MouseEventArgs.cs: Make Location internal for 1.1.
1534         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
1535         * Theme.cs: Add CalculateButtonAutoSize.
1536         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
1537
1538 2007-06-05  Miguel de Icaza  <miguel@novell.com>
1539
1540         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
1541
1542 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1543
1544         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
1545         since we can get different item instances every time we retrieve it.
1546
1547 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1548
1549         * ListView.cs: Work around for #81602, since an unkown an pretty
1550         infrequent condition appears only in some systems (old linux boxes, it
1551         seems).
1552
1553 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1554
1555         * Button.cs: Completely reformat and a little refactor to bring
1556         this closer to Mono circa 2007.
1557
1558 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1559
1560         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
1561         to be ButtonBase.Invalidate.
1562
1563 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1564
1565         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
1566
1567 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1568
1569         * ButtonBase.cs: Completely reformat and a little refactor to bring
1570         this closer to Mono circa 2007.
1571
1572 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
1573
1574         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
1575         values for autosize. Fixes #80137.
1576
1577 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1578
1579         * Control.cs: Don't perform layout when AutoSize changes.
1580         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
1581         directly when autosizing, use SetBounds with BoundsSpecified.None.
1582         Fixes unit tests my last commit broke.
1583
1584 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1585
1586         * Control.cs: Perform layout when AutoSize changes.
1587         * Form.cs: Implement AutoSizing.
1588
1589 2007-06-01  Chris Toshok  <toshok@ximian.com>
1590
1591         * DataGrid.cs: remove the XXX'ed check at the top of
1592         ProcessGridKey.  fixes #80464.
1593
1594 2007-06-01  Chris Toshok  <toshok@ximian.com>
1595
1596         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
1597         adding idempotent (add/remove in Edit()), and also make sure we
1598         don't add it until after we set the text, so it's not tripped in
1599         Edit().  Fixes unit test regression.
1600
1601 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1602
1603         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
1604         change is user explicit, not when the layout engine moves stuff.  Fixes
1605         anchoring to bottom and right.  [Fixes bug #81790]
1606
1607 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1608
1609         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
1610
1611 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1612
1613         * ContainerControl.cs: 
1614         Fire enter event for common ancestor if it is not a ContainerControl.
1615         Send focus to the active_control and not the 'value', the active 
1616         control might have been changed in one of the events fired.     
1617         Definitely fixes #80159.
1618
1619 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1620
1621         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
1622
1623 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1624
1625         * PropertyGrid.cs: Anchor the help description to the bottom of the
1626           help panel and refactor SelectGridItem into a
1627           SelectGridItemInternal that can be set to null (and update it to
1628           clear the help texts when it is set to null). Set root item to null
1629           when there's no SelectedObject. Fixes #80438.
1630         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
1631           when we're recalculating after a resize (only).
1632
1633 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1634
1635         * ListView.cs: Implement 2.0 RedrawItems method.
1636
1637 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1638
1639         * ListControl.cs: Disconnect PositionChanged and ItemChanged
1640         handlers from previous data manager when DataSource is set to
1641         null. Fixes #81771.
1642
1643 2007-05-31  Jackson Harper  <jackson@ximian.com>
1644
1645         * TextBoxBase.cs: These seem to be the correct values.
1646
1647 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
1648
1649         * FileDialog.cs: When close dialog with ok set filterindex using combobox
1650         value. Fixes #81784.
1651
1652 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
1653
1654         * Control.cs: Implement 2.0 scaling methods.
1655
1656 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1657
1658         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
1659           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
1660           corcompare issues.
1661
1662 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1663
1664         * ProgressBar.cs: Implemented missing 2.0 members.
1665
1666 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1667
1668         * Control.cs: Corcompare issues.
1669         * MessageBox.cs: Implemented missing 2.0 functions.
1670
1671 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1672
1673         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
1674           Implemented more 2.0 members.
1675
1676 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1677
1678         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
1679           null (strange, but it seems to happen when running unit tests).
1680
1681 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1682
1683         * ContainerControl.cs: Set active_control even earlier, before 
1684         firing any events, and undo it if validation returns false.
1685
1686 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1687
1688         * ContainerControl.cs: Raise Validation and Enter/Leave events
1689         even if there is no Form and set active_control earlier, just
1690         before firing Enter events (toshok's patches). Fixes #80647.
1691
1692 2007-05-30  Jackson Harper  <jackson@ximian.com>
1693
1694         * TextControl.cs: Redid the pageup/pagedown a little to simplify
1695         things and fix bug #81311.
1696
1697 2007-05-30  Jackson Harper  <jackson@ximian.com>
1698
1699         * X11Dnd.cs: Now that we have our own event loop, we need to
1700         cancel when we get a mouseup but it won't be accepted.
1701
1702 2007-05-30  Chris Toshok  <toshok@ximian.com>
1703
1704         * DataGrid.cs (set_CurrentCell): guard against negative
1705         column/row.
1706
1707         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
1708         array index syntax instead of looping over the property names.
1709
1710         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
1711         and set IsInEditOrNavigateMode to false there.
1712
1713 2007-05-30  Jackson Harper  <jackson@ximian.com>
1714
1715         * TreeView.cs: Make sure we don't get a bad visible order when
1716         setting to the top node.  Fixes some misc crashing in
1717         ControlInspector.
1718
1719 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1720
1721         * UserControl.cs: Add 2.0 AutoSizeMode
1722
1723 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1724
1725         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
1726
1727 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1728
1729         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
1730         lines. Fixes #80285. 
1731
1732 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1733
1734         * DataGridColumnStyle.cs: Add char trimming column header text format. 
1735
1736 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1737
1738         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
1739         Fixes #80147.
1740
1741 2007-05-29  Jackson Harper  <jackson@ximian.com>
1742
1743         * TreeNode.cs: Fix off by one on calculating whether or not a node
1744         is visible.
1745
1746 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
1747
1748         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
1749         * ScrollableControl.cs: Force an UpdateDistances when we move the
1750         scrollbars.
1751         [Fixes bug #80605]
1752
1753 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1754
1755         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
1756         update the page setup screen.
1757
1758 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1759
1760         * PageSetupDialog.cs: Fix landscape mode.
1761
1762 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1763
1764         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
1765         IconSizeHorizontalSpacing.
1766
1767 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1768
1769         * ListView.cs: The declaration of prev_tooltip_item should be inside
1770         a NET_2_0 conditional (avoid a warning).
1771
1772 2007-05-28  Andreia Gaita  <avidigal@novell.com>
1773
1774         * PageSetupDialog.cs: Implement PrintPreview control to display
1775         the preview thumbnail. Change unit conversion to use 
1776         PrinterUnitConvert methods.
1777         
1778         Note: there is a huge bug in ms.net where the default margins are 
1779         interpreted as centimeters (?), when in fact they are set in inches. When 
1780         loading the page setup dialog initially (ms.net), the default margins 
1781         are set to 1 inch, and the dialog shows them with value 10, when in fact 
1782         it should be 25 (properly converted). Our dialog doesn't have this bug.
1783         
1784         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
1785         RectangleF.
1786         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
1787
1788 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1789
1790         * ListView.cs:
1791         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
1792         items.
1793
1794 2007-05-28  Andreia Gaita  <avidigal@novell.com>
1795
1796         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
1797         an IntPtr on csc (it builds fine on mcs, could it be a compiler
1798         bug?), convert the ptr to Int32 first.
1799
1800 2007-05-28  Jackson Harper  <jackson@ximian.com>
1801
1802         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
1803         recieved, we will exit the dnd tracking loop.
1804
1805 2007-05-28  Jackson Harper  <jackson@ximian.com>
1806
1807         * X11Dnd.cs: Keep tracking until the xdnd finished event is
1808         recieved. TODO: I should probably stick a timer on the dropped
1809         event, and finish the drag if the XDND Finished event never shows
1810         (because some apps don't seem to send it).
1811
1812 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
1813
1814         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
1815         #81733.
1816
1817 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1818
1819         * MonthCalendar.cs: Only mark the keypresses we actually handle as
1820           handled.
1821
1822 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1823
1824         * MonthCalendar.cs: Set the size after initializing all the relevant
1825           variables. Fixes #81742.
1826
1827 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1828
1829         * KeyEventArgs.cs: Fix typo.
1830
1831 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
1832
1833         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
1834         to match MS. Fixed MinDate to only accept value less than or equal
1835         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
1836         Removed TODO's that are now verified by unit tests.
1837
1838 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
1839
1840         * TreeNodeCollection.cs: Minor corrections to exceptions to match
1841         MS.
1842
1843 2007-05-25  Jackson Harper  <jackson@ximian.com>
1844
1845         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
1846         it's own message loop.
1847         * XplatUIX11.cs: Remove some of the dnd hooks
1848
1849 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
1850
1851         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
1852         instead of MinimizedWindowSize.
1853
1854 2007-05-25  Jackson Harper  <jackson@ximian.com>
1855
1856         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
1857
1858 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1859
1860         * KeyEventArgs.cs: Added SuppressKeyPress.
1861         * Control.cs: Added support for SuppressKeyPress.
1862
1863 2007-05-24  Andreia Gaita  <avidigal@novell.com>
1864
1865         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
1866         problems with PieChart. suppress_validation should not be a counter,
1867         if there are several BeginInit calls, the first EndInit will 
1868         activate validation. Fix exceptions thrown by set_Value.
1869         * UpDownBase.cs: ValidateText only if it's the user editing it.
1870
1871 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1872
1873         * ListControl.cs: FilterItemOnProperty should return the filtered
1874         item proeprty even if DataSource is null. The same applies for
1875         GetItemText. Fixes #80427.
1876
1877 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1878
1879         * Control.cs: If a control doesn't have a parent when it's Dock is
1880         set, but it has children, it needs to do a layout.  Fixes some nested
1881         controls issues.  [Fixes bug #81199]
1882
1883 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1884
1885         * ComboBox.cs: If there are few items in the drop down list, make it
1886           the exact size the items need, no bigger. Fixes #81612.
1887
1888 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1889
1890         * Application.cs: When we have captured the keyboard for a menu,
1891         check for mouse down events in case we need to close the menu.
1892         * Control.cs, Form.cs: Remove mouse down checks for menus.
1893
1894 2007-05-24  Jackson Harper  <jackson@ximian.com>
1895
1896         * TextControl.cs: Handle tabs in non multiline mode a little
1897         differently.
1898
1899 2007-05-24  Jackson Harper  <jackson@ximian.com>
1900
1901         * TextControl.cs: We need to manually break apart tabbed text and
1902         move the tabs, since the system.drawing tabbing mechanism relies
1903         on tab stops.
1904         * TextBoxBase.cs: Move the caret properly when the user enters a
1905         tab.
1906
1907 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1908
1909         * ContainerControl.cs: Don't check CanSelect before calling
1910         ProcessMnemonic.
1911         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
1912         release a KeyboardActive on click if it's not ours.
1913
1914 2007-05-23  Andreia Gaita  <avidigal@novell.com>
1915
1916         * ColumnHeader.cs: Add TypeConverter
1917
1918 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1919
1920         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
1921
1922 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1923
1924         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
1925
1926 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1927
1928         * LinkLabel.cs: Implement public Padding property.
1929
1930 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1931
1932         * LinkLabel.cs: Implement public FlatStyle.
1933
1934 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
1935
1936         * Control.cs: Apply patch from George to call parent.PerformLayout
1937         when Visible is changed.  [Fixes bugs #81118, 81718]
1938
1939 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1940
1941         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
1942
1943 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1944
1945         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
1946
1947 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1948
1949         * ContextMenu.cs: Implement Collapse.
1950
1951 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
1952
1953         * ToolBarButton.cs: Implement Name.
1954
1955 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
1956
1957         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
1958         use current_item, it prevents some NRE. Fixes #81675.  
1959
1960 2007-05-22  Andreia Gaita  <avidigal@novell.com>
1961
1962         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
1963         without updating the text.
1964
1965 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
1966
1967         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
1968         without calling DeleteObject.  [Should fix bug #81709]
1969
1970 2007-05-22  Jackson Harper  <jackson@ximian.com>
1971
1972         * RichTextBox.cs: Set the line endings correctly, when flushing
1973         RTF text.
1974
1975 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
1976
1977         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
1978          {Width=0,Height=0}.
1979
1980 2007-05-22  Jackson Harper  <jackson@ximian.com>
1981
1982         * TreeView.cs: Setting top with a null node should set to the very
1983         top.
1984
1985 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1986
1987         * Form.cs: ShowDialog: destroy the handle when message loop is
1988           finished, matches MS behaviour. Refactor parts of WmClose into
1989           RaiseCloseEvents, that only raises events if they haven't already
1990           been raised. Fixes #81688 and #81521.
1991         * Application.cs: Don't call close on the form when exiting a modal
1992           loop, it will raise all the (Form)Closed/Closing events again if
1993           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
1994           which doesn'r raise any events it they have been raised before.
1995
1996 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
1997
1998         * Control.cs: Add OnPrint.
1999         * ToolStrip.cs: Add GetChildAtPoint.
2000         * ToolStripContainer.cs: Add OnRightToLeftChanged.
2001         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
2002
2003 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2004
2005         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
2006
2007 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2008
2009         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
2010           isn't visible anymore. Fixes #81651.
2011
2012 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2013
2014         * Control.cs: WmShowWindow: Update children's z-order after setting
2015           their parent. SetParent may show the window, thereby corrupting
2016           z-order, since the window will be shown on top.
2017         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
2018           multiple (and redundant) WM_SHOWWINDOW messages.
2019         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
2020           event has already been raised.
2021         * Form.cs: Change is_changing_visible_state to a counter, since
2022           SetVisibleCore can be called recursively. CreateHandle: when
2023           creating mdi children, send (De)Activated events.
2024         * MdiClient.cs: Update use of is_changing_visible_state.
2025         * Application.cs: OnThreadException: Surround exception handling with
2026           try/finally to ensure we always reset the error-handling state
2027           before leaving.
2028
2029 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2030
2031         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
2032           (#81704).
2033
2034 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2035
2036         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
2037         SmallIcon views, now that we have a standarized horizontal spacing.
2038
2039         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
2040         4, just like the other views (Match .Net).
2041
2042 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
2043
2044         * Control.cs: Delay calculating anchor distances until we actually layout.
2045         Always query the WM for the actual size and location it put us at instead of
2046         only when we send negative values.
2047         [Fixes bugs #81694, 81695]
2048
2049 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2050
2051         * Application.cs: Avoid a possible stack overflow when trying to exit
2052           the application.
2053
2054 2007-05-19  Marek Safar  <marek.safar@gmail.com>
2055
2056         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
2057         enum value.
2058
2059 2007-05-19  Andreia Gaita  <avidigal@novell.com>
2060
2061         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
2062         * NumericUpDownAcceleration.cs, 
2063           NumericUpDownAccelerationCollection.cs: Added 2.0
2064           implementation.
2065
2066 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
2067
2068         * RichTextBox.cs: Recalculate the document after the ScrollBars
2069         property is changed. Fixes bug #81681.
2070
2071 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2072
2073         * DataObject.cs: Implement 2.0 methods.
2074
2075 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2076
2077         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
2078         in the center of the checkbox, not in the left-top corner. 
2079         Fixes #80037.
2080
2081 2007-05-18  Jackson Harper  <jackson@ximian.com>
2082
2083         * RichTextBox.cs: Recalculate the document after the scrollbars
2084         property is changed.
2085         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
2086         81486.
2087
2088 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2089
2090         * CreateParams.cs: Make HasWindowManager marginally faster.
2091         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
2092           into Hwnd so that other drivers can use it as well.
2093         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
2094           the default location from Hwnd. Fixes MDI client windows always
2095           showing up at (0,0) in Windows (Win32 won't set the default
2096           location since the window styles aren't correct).
2097
2098 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
2099
2100         * TreeView.cs: Modified DoubleBuffered to just use the base
2101         implementation.
2102
2103 2007-05-18  Jackson Harper  <jackson@ximian.com>
2104
2105         * TreeView.cs: Set the top node to the last child node when
2106         expanding all
2107         - When we get focus, if there is no selected node, use the top
2108         node.
2109
2110 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2111
2112         * KeysConverter.cs: Add CanConvertTo.
2113         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
2114         * LinkConverter.cs: Added.
2115
2116 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2117
2118         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
2119         it prevents error when file dont have write access. Fixes #81669 and #81667.  
2120
2121 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2122
2123         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
2124         button text. Fixes #79640.  
2125
2126 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2127
2128         * Control.cs: According to MSDN controls created in the designer theres 
2129         keyboard accelerators visible by default. So included check for design
2130         in ShowKeyboardCuesInternal.  
2131
2132 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2133
2134         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
2135         text. Fixes #81621.  
2136
2137 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2138
2139         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
2140         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
2141
2142 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2143
2144         * Control.cs: Finish implementation of UI State using WmChangeUIState
2145         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
2146         in some controls to check for show_keyboard_cues to draw accell keys "_".  
2147
2148 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2149
2150         * ListBox.cs: When calculating the horizontal scrollbar
2151         in single column mode, don't use values less than 0 for
2152         Maximum. Fixes #81474.
2153
2154 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2155
2156         * ListBox.cs: Throw the some missing exceptions in
2157         ListBox.ObjectCollection methods.
2158
2159 2007-05-17  Jackson Harper  <jackson@ximian.com>
2160
2161         * TextBoxBase.cs: Recalculate the document when the word wrap
2162         value has changed. This fixes 81488.
2163
2164 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2165
2166         * Clipboard.cs: Implement missing GetText overload.
2167
2168 2007-05-17  Chris Toshok  <toshok@ximian.com>
2169
2170         * Control.cs (CheckDataBindings): remove the binding_context arg
2171         to binding.Check.
2172
2173         * CurrencyManager.cs (OnItemChanged): fix this now that
2174         BindingManagerBase is fixed. also remove the comment telling where
2175         the fix should go.  We set transfering_data to true/false around
2176         the call to PushData to keep UpdateIsBinding from being called.
2177         (ListChangedHandler): remove the extra OnMetaDataChanged call for
2178         PropertyDescriptorAdded in the 1.1 case.  The extra call is
2179         actually generated by System.Data generating 2 metadata changed
2180         events of its own per column add.  The fix should go there.  Add a
2181         comment to that affect in our test's Assert.Ignore.
2182
2183         * BindingManagerBase.cs: Rework PullData and PushData slightly.
2184         we keep a boolean flag (transfering_data) that keeps us from
2185         calling UpdateIsBinding multiple times if we re-enter either of
2186         them.
2187
2188         * ControlBindingsCollection.cs (AddCore): remove the
2189         binding_context arg to binding.Check.
2190
2191         * Binding.cs (IsBinding): don't check if we're binding here, just
2192         return our cached value.  we update it in UpdateIsBinding.
2193         (Check): don't take the binding_context arg, we'll just use our
2194         control's.  Also, for some reason MS doesn't use the data member
2195         field when getting the bindingmanager for this binding.  it just
2196         uses the datasource.  Make this method callable multiple times,
2197         and only do the is_null_desc stuff if manager.Position != -1 (so
2198         we don't get an exception accessing manager.Current).
2199         (UpdateIsBinding): move the code from IsBinding here.
2200         (PositionChangedHandler): call Check here to we can initialize
2201         things that require a non- -1 position.
2202
2203 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2204
2205         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
2206         control.
2207
2208 2007-05-17  Andreia Gaita  <avidigal@novell.com>
2209
2210         * TabControl.cs: Add 2.0 methods and events, including
2211         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
2212         * TabPage.cs: Add 2.0 methods
2213
2214 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2215
2216         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
2217         keyboard_cues is properly handled by message method.  
2218
2219 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2220
2221         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
2222
2223 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2224
2225         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
2226
2227 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
2228
2229         * Control.cs: 
2230         - WmUpdateUIState added to handle state changes, it make call to
2231         OnChangeUICues event.
2232         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
2233         SystemInformation.
2234
2235 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
2236
2237         * ImageKeyConverter.cs: Added.
2238         * TreeViewImageKeyConverter.cs: Added.
2239
2240 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2241         
2242         * ToolTips.cs: Update Text if SetToolTip is called for a control
2243         already showing the tooltip, as well as restarting its timer; show
2244         tooltip if we are inside the control bounds by the time of calling
2245         SetToolTip. Inside ShowTooltip remove the check to not show the 
2246         tooltip again for the active control (it is allowed by .Net to 
2247         show the tooltip on the same control multiple times).
2248
2249 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2250
2251         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2252
2253 2007-05-16  Andreia Gaita <avidigal@novell.com> 
2254
2255         * ContainerControl.cs: only process tab key if there are no 
2256         modifier keys present, otherwise the control does the 
2257         tab processing, if it needs to. Fixes #81622
2258         * TabControl.cs: Fixes calculation for which tab to select on
2259         shift+ctrl+tab.
2260
2261 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2262
2263         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2264
2265 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
2266
2267         * Control.cs: Make IsInputCharInternal to allow controls to
2268         override it and still match MS API.
2269         * TextBoxBase.cs: Override IsInputCharInternal and always
2270         return true.
2271         [Fixes bug #81616]
2272
2273 2007-05-15  Jackson Harper  <jackson@ximian.com>
2274
2275         * TextBox.cs: Disable some of the menu options when using a
2276         readonly textbox.
2277
2278 2007-05-15  Jackson Harper  <jackson@ximian.com>
2279
2280         * TextBox.cs:
2281         * TextBoxBase.cs:
2282         * RichTextBox.cs: Some new 2.0 methods
2283
2284 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
2285
2286         * FileDialog.cs: On 1.0 profile, do not support multidotted 
2287         extensions.
2288
2289 2007-05-14  Jackson Harper  <jackson@ximian.com>
2290
2291         * TextBoxBase.cs: Implement some of the new 2.0 methods.
2292         * RichTextBox.cs: We need to override these methods on 2.0.
2293         * MaskedTextBox.cs: These are implemented now
2294         * TextControl.cs: This was off by one.
2295
2296 2007-05-14  Jackson Harper  <jackson@ximian.com>
2297
2298         * TextControl.cs: Because the line endings are including in the
2299         text, we don't need to add them in anymore.
2300
2301 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2302
2303         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
2304         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
2305
2306 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2307
2308         * ToolBar.cs: Adjust size to default size when button theres no text and
2309         image, it fixes remaining issues from #81524.
2310
2311 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2312
2313         * ToolBar.cs: 
2314         - When not flat call redraw to recalculate sizes on creare handle to match
2315         win32 behavior.
2316         - Revert 77220 because it causes some regressions in toobar
2317         button.
2318
2319 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2320
2321         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
2322           now actually enters a usable state.
2323
2324 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2325
2326         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
2327         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
2328         3 buttons.
2329
2330 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2331
2332         * ToolBar.cs: Save default_size on create handle to use later for buttons
2333         without text, needed to mimic win32 behavior.
2334
2335 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2336
2337         * ToolBar.cs: Fix button layour to best fit width or height according to
2338         vertical or not. Fixes #81524.
2339
2340 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2341
2342         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
2343         toolbar size info because different styles theres different sizes.
2344         Fixes #81522.
2345
2346 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2347
2348         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
2349         if we are using checkboxes, checked is true, and we have less
2350         than two images in StateImageList; for the 1.1 in the same scenario
2351         draw the first image if we have at least one image in StateImageList.
2352         Fixes part of #81191.
2353
2354 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2355
2356         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
2357         the owner's Items collection on merge.
2358
2359 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2360
2361         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
2362         * ToolStripItemCollection.cs: Lots of fixes to when events get called
2363         and parent/owner gets changed based on gert's unit tests.
2364
2365 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2366
2367         * MaskedTextBox.cs: Started implementing parts of it.
2368
2369 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2370
2371         * ListView.cs: When clicking the checkbox on the items
2372         take into account the double clicks even if we have only
2373         one image in StateImageList (only for 1.0/1.1). Also 
2374         generate an extra change of checked state when we receive
2375         the second click on checkbox (match .Net behaviour). 
2376         Fixes part of #81191.
2377
2378 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2379
2380         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
2381
2382 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2383
2384         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
2385         even if OnLoad is overriden and base.OnLoad is not called.
2386         [Fixes bug #81582]
2387
2388 2007-05-10  Andreia Gaita  <avidigal@novell.com>
2389
2390         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
2391         shame. (I blame my ever-persisting and annoying cold)
2392
2393 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2394
2395         * ListView.cs: Don't eat navigation keys.  Let them flow through to
2396         KeyDown/KeyPress routines.  [Fixes bug #81569]
2397
2398 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2399
2400         * ListView.cs: When handling keys for selecting the item based off
2401         keyboard input, do not consider keys pressed with Alt or Control.  Also,
2402         correctly handle keys when the Shift key is down. [Fixes bug #81578]
2403
2404 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2405
2406         * Control.cs: When using UseWaitCursor, we have to store the requested
2407         Cursor to use when UseWaitCursor is turned off.
2408
2409 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2410
2411         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
2412         to false.
2413         * Application.cs: Use PreProcessControlMessage instead of
2414         PreProcessMessage.
2415         * PreProcessControlMessage.cs: Make internal for 1.1.
2416
2417 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2418
2419         * Control.cs: Add InternalContains focus property, which hast the same
2420         functionality of ContainsFocus, but also including implicit controls.
2421         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
2422         since we need to know if the focus is contained in our implicit
2423         ItemControl when calculating Layout. Fixes part of #80888.
2424
2425 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
2426
2427         * ToolTip.cs: Remove center form string alignment as it must be align to
2428         left.
2429
2430 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
2431
2432         * ToolStripItemCollection.cs: Set the new item's parent and owner
2433         in Insert like we do in Add.  [Fixes bug #81568]
2434
2435 2007-05-08  Jackson Harper  <jackson@ximian.com>
2436
2437         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
2438         - Off by one error in SetTop
2439         - Disable DoubeBuffering
2440         
2441 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2442
2443         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
2444           control as much as necessary in order to make it entirely visible,
2445           instead of centering the control in the container (matches MS
2446           behaviour). CalculateCanvasSize: we need to take the current scroll
2447           position into account when calculating the maximum canvas,
2448           otherwise the following scenario will fail: resize so that the
2449           scrollbars appear, use the scrollbars to scroll, resize again
2450           smaller, and now the canvas size is too small. Recalculate: when
2451           showing scrollbars make sure they start off at 0, and try to scroll
2452           the active control into view. Fixes #79540. HandleScrollBar: don't
2453           scroll anywhere if the scrollbar isn't visible.
2454
2455 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2456
2457         * ListView.cs: When focus changed, call Layout/Invalidate
2458         in the focused item to update the selected state (should show
2459         entire label when ListView is focused, and a part of it if is not).
2460         * ListViewItem.cs: When doing layout for LargeIcon, take into account
2461         for displaying the entire label not only the Focused state of the
2462         item, but also the Focused state of the ListView (match .Net
2463         behaviour).
2464
2465 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2466
2467         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
2468         Implement UseWaitCursor. 
2469
2470 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2471         Applying contributed patch from Sergey Volk.
2472
2473         * Clipboard.cs: Implement SetDataObject retry logic and new overload
2474         of SetDataObject.
2475         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
2476
2477 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2478
2479         * Control.cs: Implement DrawToBitmap.
2480
2481 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2482         Applying contributed patch from Stefan Noack.
2483         
2484         * Control.cs: Add [Get|Set]AutoSizeMode.
2485
2486 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2487
2488         * MdiClient.cs: Unmerge menus when the last child is closed.
2489
2490 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2491
2492         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
2493         * ToolStripManager.cs: Call Merge on DropDowns.
2494         [Fixes bug #81477]
2495
2496 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2497
2498         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
2499           uints.
2500         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
2501           visibility. We can't create forms visible, since we have to set the
2502           owner before making the form visible (otherwise Win32 will do
2503           strange things with task bar icons). The problem is that we set the
2504           internal is_visible to true before creating the control, so
2505           is_changing_visible_state is the only way of determining if we're
2506           in the process of creating the form due to setting Visible=true -
2507           this works because SetVisibleCore explicitly makes the form
2508           visibile afterwards anyways. Fixes #80775.
2509
2510 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2511
2512         * ThemeWin32Classic.cs: When drawing ListViewItems,
2513         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
2514         or LargeIcon _and_ item is not focused (match .Net behaviour).
2515
2516 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2517
2518         * Control.cs, Form.cs: Fix some obsolete method warnings.
2519
2520 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2521
2522         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
2523         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
2524
2525 2007-05-04  Andreia Gaita  <avidigal@novell.com>
2526
2527         * ContainerControl.cs: Fix active_control attribution when going
2528         up the parent chain so that the first parent container gets the control
2529         and the rest of the parent containers get the child containers (skips
2530         non-containers). Fixes #80729
2531
2532 2007-05-04  Randolph Chung  <tausq@debian.org>
2533
2534         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
2535         [Fixes bug #81499]
2536
2537 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2538
2539         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
2540           takes a size parameter, since the CreateParam's size isn't true for
2541           minimized forms. Fixes #81518,
2542
2543 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2544
2545         * Form.cs: Add OnDeactivateInternal.
2546         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
2547
2548 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2549
2550         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
2551           accessing the parent. Fixes #81508.
2552
2553 2007-05-03  Chris Toshok  <toshok@ximian.com>
2554
2555         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
2556         2.0 block, pass listposition + 1 to ChangeRecordState when a row
2557         was added before the current listposition.  Fixes the
2558         TestInsertRowBeforeCurrent unit test.
2559
2560 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
2561
2562         * Application.cs: Add RaiseIdle.
2563         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
2564         XplatUIX11.cs: Implement RaiseIdle.
2565
2566 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
2567         corcompare work: N - Z
2568         * NotifyIcon.cs
2569         * ProgressBar.cs
2570         * RadionButton.cs
2571         * ScrollableControl.cs
2572         * SplitContainer.cs
2573         * SplitterPanel.cs
2574         * StatusBar.cs
2575         * SystemInformation.cs
2576         * TabControl.cs
2577         * TableLayoutControlCollection.cs
2578         * TableLayoutPanel.cs
2579         * TabPage.cs
2580         * ToolBar.cs
2581         * ToolBarButton.cs
2582         * ToolStrip.cs
2583         * ToolStripComboBox.cs
2584         * ToolStripContainer.cs
2585         * ToolStripContentPanel.cs
2586         * ToolStripDropDown.cs
2587         * ToolStripDropDownItem.cs
2588         * ToolStripDropDownMenu.cs
2589         * ToolStripItem.cs
2590         * ToolStripItemCollection.cs
2591         * ToolStripMenuItem.cs
2592         * ToolStripPanel.cs
2593         * ToolStripSplitButton.cs
2594         * ToolTip.cs
2595         * TreeNode.cs
2596         * TreeNodeCollection.cs
2597         * TreeNodeMouseHoverEventArgs.cs
2598         * TreeView.cs
2599
2600 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
2601
2602         * ContextMenu.cs: Add public method Show with alignment property to 2.0
2603         stuff. Thanks aatdark for the patch. 
2604
2605 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2606
2607         * GridItem.cs: Implement 2.0 Tag property.
2608
2609 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
2610
2611         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
2612         count instead of Nodes.Length.  [Fixes bug #81448]
2613
2614 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2615
2616         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
2617         [Fixes bug #81506]
2618
2619 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2620         corcompare work: A - M
2621         * BindingNavigator.cs
2622         * Button.cs
2623         * ButtonBase.cs
2624         * CheckBox.cs
2625         * Control.cs
2626         * FlowLayoutPanel.cs
2627         * Form.cs
2628         * Label.cs
2629         * LinkLabel.cs
2630         * ListView.cs
2631
2632 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2633
2634         * Application.cs: Give toolstrips a chance to process mnemonics.
2635         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
2636         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
2637         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
2638
2639 2007-05-01  Jackson Harper  <jackson@ximian.com>
2640
2641         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
2642         wider area too.
2643         - Don't set the BoundsSpecified
2644
2645 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2646
2647         * Application.cs: When using the toolstrip shortcut mechanism, allow the
2648         message to pass through to a regular control if it hosted by a toolstrip.
2649         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2650         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
2651
2652 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2653
2654         * TextRenderer.cs: Use the flags argument when using the MeasureString
2655         fallback algorithm.
2656
2657 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2658
2659         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
2660         the MDI menu item.  [Fixes bug #81483]
2661
2662 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
2663
2664         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
2665         string. When setting Name to null, use zero-length string instead.
2666
2667 2007-04-29  Andreia Gaita  <avidigal@novell.com>
2668
2669         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
2670         DeselectTab). Implement missing 2.0 TabPageCollection methods
2671         (Add, ContainsKey, RemoveByKey, IndexOfKey)
2672
2673 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
2674
2675         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
2676
2677 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
2678
2679         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
2680         Fixes bug #81479. Include details of exception when LoadFile fails.
2681
2682 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
2683
2684         * DrawListViewSubItemEventArgs.cs: Added missing setter
2685
2686 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2687
2688         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
2689         Hide methods (not complete). Implement missing 2.0 OnPopup event.
2690
2691 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2692
2693         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
2694         removed in ly last commit (it was breaking the Label edit feature).
2695
2696         * ThemeWin32Classic.cs: When drawing a ListViewItem use
2697         StringAlignment.Near for LineAlignment (match .Net).
2698
2699 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2700
2701         * TabControl.cs: Change SetTab so it adds the tabpage to the list
2702         of controls if it isn't already there - was blowing up when doing
2703         tabcontrol.TabPages[i]=new TabPage(). 
2704         SetTab now does a replace by removing the page at the index. 
2705         Add a new InsertTab method that inserts a page in a given index 
2706         instead of replacing. 
2707         Implements TabPageCollection.Insert(int, TabPage).
2708
2709 2007-04-27  Chris Toshok  <toshok@ximian.com>
2710
2711         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
2712         internal handler that can be invoked from our subclasses.)  Also,
2713         add a comment to PushData about how we need to fix it.
2714
2715         * CurrencyManager.cs: tons of changes here.  trying to get things
2716         matching the behavior of .net wrt event orders (ItemChanged,
2717         CurrentChanged, PositionChanged.)  I've implemented a private .net
2718         symbol (ChangeRecordState) that appears in stack traces because
2719         it's actually easier to do this than to effective inline all its
2720         various behaviors at every call site.
2721
2722         * RelatedPropertyManager.cs: guard against an exception here by
2723         not using parent.Current if the position is set to -1 (if the
2724         parent datasource is cleared, for instance).
2725
2726         * Binding.cs: don't parse data in PushData (this might be wrong,
2727         but it jives with MS's behavior.)  Also, don't call PushData when
2728         we get a CurrentChanged event.
2729
2730 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2731
2732         * WebBrowser.cs,
2733           WebBrowserBase.cs,
2734           WebBrowserSiteBase.cs,
2735           HtmlDocument.cs: Added stubbed out classes, no real implementations 
2736           yet.
2737
2738 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2739
2740         * MainMenu.cs: In draw method without parameters call draw method with 
2741         PaintEvent, another one (just rect) adjust rectangle and we dont need it
2742         as Rect property is already adjusted. Fixes #80694.
2743
2744 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
2745
2746         * Application.cs: Need to handle keyboard menu deselection here.
2747         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
2748         navigation, allowing keyboard to work on X11.
2749         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
2750
2751 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2752
2753         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
2754         menu bar. It fixes some drawing issues in menu bar.
2755
2756 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2757
2758         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
2759         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
2760         when <alt> key is pressed.
2761
2762 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
2763
2764         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
2765         example just set visible to false and make this prevent from other problems.
2766         In SystrayAdd always remove pending expose. Fixes #81072.
2767
2768 2007-04-26  Marek Safar  <marek.safar@gmail.com>
2769
2770         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
2771         value is set.
2772
2773 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2774
2775         * ListView.cs: Added three missing 2.0 events and corresponding
2776         EventHandlers. Added the OwnerDraw property.
2777         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
2778
2779 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2780
2781         * DrawListViewItemEventArgs.cs
2782         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
2783
2784 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2785
2786         * TextControl.cs: Fixed typo in constructor
2787
2788 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
2789
2790         * Application.cs: Create a shortcut path so that currently selected
2791         MenuStrips can intercept keyboard events without having focus.
2792         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
2793         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
2794         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
2795         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
2796         generate WM_SYSCOMMAND message in X11 for other platforms.
2797         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
2798         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
2799         * ToolStripSplitButton.cs: Add DefaultItem property.
2800         
2801 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
2802
2803         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
2804         fixes some menu draw problem on Windows with border diferent from default
2805         it also fixes #81403.
2806
2807 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2808
2809         * Form.cs: Refactor WndProc into separate methods, just like Control is
2810           doing it.
2811
2812 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2813
2814         * Control.cs: set_Text: move the call to the driver into a seperate
2815           virtual method so that Form can override it.
2816         * MaskedTextBox.cs: Corcompare fixes.
2817         * Form.cs: Override UpdateWindowText and only update the styles if the
2818           form has been shown (fixes #81405).
2819
2820 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
2821
2822         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
2823         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
2824         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
2825         the form lost focus or another control was clicked.
2826
2827 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
2828
2829         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
2830         fixed.
2831
2832 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2833
2834         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
2835           DrawListViewItemEventHandler.cs,
2836           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
2837           Added.
2838         * X11Structs.cs: More ToString implementation.
2839
2840 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
2841
2842         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
2843         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
2844
2845 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2846
2847         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
2848           handle.
2849         * FormCollection.cs: Don't add a form if it's already in the
2850           collection.
2851         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
2852           according to behaviour and MSDN. The ownerWin32 is the active
2853           window at the moment when we call ShowDialog, not the context's
2854           main form (the context's main form may open another form that opens
2855           a form with ShowDialog, the win32 owner is the second form). Add
2856           and remove forms to the Application.OpenForms in other places to
2857           better match MS behaviour. Add an IsActive property that raises
2858           On(de)Activated only if the active state has changed (we were
2859           raising OnDeactivated before OnActivated while creating forms).
2860         * Application.cs: Refactor Enabling/Disabling of windows for modal
2861           dialog loops out to separate methods, and restore the thread
2862           context when we quit the method. Fixes #81407.
2863
2864 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2865
2866         * ListView.cs: In ItemControl.HandleClicks, also fire 
2867         2.0 MouseClick or MouseDoubleClick events on the parent,
2868         not only the Click/DoubleClick events.
2869
2870 2007-04-24  Andreia Gaita  <avidigal@novell.com>
2871
2872         * TableLayoutSettings.cs: 
2873         - Added a GetControls method and a support structure to help the 
2874         TypeConverter to enumerate the controls for     serialization. 
2875         - Added a new serialization constructor. 
2876         - Added a isSerialized flag initialized to true on the 
2877         serialization constructor so that the TableLayoutPanel.LayoutSettings 
2878         setter does not throw the designed NotSupportedOperation exception
2879         when the object is built through deserialization.
2880         - Implemented GetObjectData
2881         
2882         * TableLayoutPanel.cs: Added check on LayoutSettings.
2883
2884 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2885
2886         * ListView.cs: Report Click and DoubleClick events to the parent
2887         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
2888         from breaking the click count state when using dialog forms (Control
2889         reports the clicks in a similar fashion). In the previous behaviour
2890         the last WM_LBUTTONUP message in a  double click was sent to the
2891         ListView's form, instead of the ListView, which was breaking the click
2892         count for it. Fixes #80387.
2893
2894 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
2895
2896         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
2897
2898 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
2899
2900         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
2901         us from created dropdowns for menu items that do not have subitems.
2902         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
2903         Check HasDropDownItems before calling DropDown so a dropdown will not be
2904         created if it isn't needed.
2905
2906 2007-04-24  Jackson Harper  <jackson@ximian.com>
2907
2908         * TreeView.cs: Set the first node to the selected node when we get
2909         focus if there is no selected node.
2910
2911 2007-04-24  Andreia Gaita  <avidigal@novell.com>
2912
2913         * MimeIcon.cs: remove using blocks so that image streams are
2914         not disposed of. Fixes #80151
2915
2916 2007-04-24  Jackson Harper  <jackson@ximian.com>
2917
2918         * TextBoxBase.cs: Fixup the height of textboxes when the control
2919         is created.
2920
2921 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
2922
2923         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
2924         for each ToolStripItem when the parent's RightToLeftChanged is called.
2925
2926 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2927
2928         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
2929           Fixes #80163.
2930         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
2931           property, so that the setter can be overriden too.
2932         * TextBox.cs: Change GetContextMenuInternal() to use
2933           ContextMenuInternal.
2934
2935 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2936
2937         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
2938           #81406.
2939
2940 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2941
2942         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
2943           #81406.
2944
2945 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2946
2947         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
2948           avoid duplicate work. Mostily skeleton code, it's not working at
2949           all yet.
2950
2951 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
2952
2953         * NotifyIcon.cs : stub for MouseClick event
2954         * Application.cs: stub for SetUnhandledExceptionMode
2955
2956 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
2957
2958         * BindingNavigator.cs : Initial (partial) implementation
2959
2960 2007-04-23  Jackson Harper  <jackson@ximian.com>
2961
2962         * TreeView.cs: Do not create the treeview's handle when setting
2963         the scroll position.
2964         - ExpandAll needs to compute the scrollbars so it knows which
2965         position to set the bar too.
2966         * TreeNode.cs: 
2967         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
2968
2969 2007-04-23  Jackson Harper  <jackson@ximian.com>
2970
2971         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
2972         key. Fixes #81408.
2973
2974 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
2975
2976         * ToolStripItem.cs: Make GetImageSize internal.
2977         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
2978         need to draw an item.  Fixes a reported issue where images on menus
2979         that were not 16x16 were drawing incorrectly.
2980
2981 2007-04-21  Miguel de Icaza  <miguel@novell.com>
2982
2983         * Padding.cs: Use the converter, fixes the resgen2 issue with
2984         XMLNotePad. 
2985
2986 2007-04-21  Jackson Harper  <jackson@ximian.com>
2987
2988         * TreeView.cs: Dont try to unhighlight the selected node if there
2989         isn't a selected node.
2990
2991 2007-04-21  Jackson Harper  <jackson@ximian.com>
2992
2993         * UpDownBase.cs:
2994         * TextBoxBase.cs:
2995         * ListView.cs:
2996         * ListBox.cs:
2997         * TreeView.cs: Use the InternalBorderStyle property to set the
2998         initial border style, this forces the client rectangle to be sized
2999         correctly.
3000
3001 2007-04-20  Jackson Harper  <jackson@ximian.com>
3002
3003         * TreeView.cs: Simplify scrolling to the last node after expanding
3004         all.
3005         - Fix some off by ones with setting the bottom.
3006
3007 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3008
3009         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
3010         that.  We were incorrectly doing it the other way around.  Also,
3011         update ClientSize if we change the BorderStyle before the control
3012         is created.
3013
3014 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3015
3016         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3017         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3018         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
3019         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3020         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3021         Caption to CaptionHeight.
3022         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
3023         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
3024         and FixedFrameBorderSize to return value from current XplatUI driver.
3025         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
3026         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
3027         and FixedFrameBorderSize using win32 API. Renamed Caption to
3028         CaptionHeight.
3029         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
3030         * SystemInformation.cs: Fixed typo in BorderSize.
3031
3032 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3033
3034         * XplatUI.cs: Added MenuAccessKeysUnderlined.
3035         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
3036         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
3037         returning false.
3038         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
3039         value from XplatUI driver.
3040         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
3041         SystemParametersInfo.
3042         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
3043         override.
3044         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
3045         returning false.
3046
3047 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3048
3049         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
3050
3051 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3052
3053         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
3054
3055 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3056
3057         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
3058         MenuStrips that contain ToolStripSeparators.
3059
3060 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3061
3062         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
3063           DefineStdCursorBitmap.
3064         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
3065           has been created off a standard cursor. This is used to get a
3066           bitmap of the standard cursor when Draw or DrawStretched is called
3067           in order to draw the cursor.
3068         * X11Structs.cs: Added XcursorImage and XcursorImages.
3069         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
3070           DefineStdCursorBitmap.
3071         * Cursors.cs: Update all relevant creations of Cursor to use the new
3072           internal constructor.
3073
3074 2007-04-19  Jackson Harper  <jackson@ximian.com>
3075
3076         * TextBox.cs: Move the has_been_focused into the base control, so
3077         some of the text adding methods can manipulate it (probably time
3078         for a better name for this flag too).
3079         - Call a new version of selectall that doesn't scroll
3080         * TextBoxBase.cs: When we append text, if the document is empty,
3081         don't scroll.  If the document has text already, we scroll to the
3082         end of the appended text.
3083         - When the text is changed, we reset the has_been_focused, so the
3084         next time the control gets focused, all the text is selected.
3085
3086 2007-04-19  Jackson Harper  <jackson@ximian.com>
3087
3088         * TextControl.cs: Move the margins to the document, add a method
3089         so the margin sizes can be updated.
3090         * TextBoxBase.cs: When the border style is changed, update the
3091         border sizes.
3092
3093 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
3094
3095         * Control.cs: Respect DefaultPadding.
3096         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
3097         padding into account.
3098         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
3099
3100 2007-04-19  Jackson Harper  <jackson@ximian.com>
3101
3102         * TextControl.cs: Oops, we need to use the ClientRect not the
3103         bounds here.
3104
3105 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3106
3107         * ListView.cs: In ItemControl.ItemsMouseDown, take into
3108         account the double clicks when CheckBoxes are used and
3109         the pointer is inside the checkbox. Fixes part of #81191.
3110
3111 2007-04-18  Jackson Harper  <jackson@ximian.com>
3112
3113         * TextControl.cs: Pressing the end key shouldn't move the caret
3114         past the line ending.
3115         * TextBoxBase.cs: We can still delete if we are in the line
3116         ending and the combine will just kill the existing line ending.
3117
3118 2007-04-18  Jackson Harper  <jackson@ximian.com>
3119
3120         * TextControl.cs: We can't move lines, then invalidate their
3121         bounds, we need to get the old bounds and combine that with the
3122         new bounds.
3123         * TextBoxBase.cs: Before combining two lines for a delete, we need
3124         to invalidate the area of the old line, since that will be moved
3125         in the combine operation.
3126
3127 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
3128
3129         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
3130         with transparent background. Fixes #80482.
3131
3132 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
3133
3134         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
3135         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
3136         [Fixes bug #81391]
3137
3138 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3139
3140         * CreateParams.cs: Add a couple of helper methods and do a less string
3141           concatenation in ToString.
3142         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
3143           overload that takes a Control parameter, since this method may be
3144           called before a control is assigned to the hwnd (from
3145           CreateWindow), and update CreateWindow to use the new overload. In
3146           GetMenuOrigin subtract the title bar from the y position if the
3147           form has a window manager (since we're painting it and not X).
3148         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
3149           CreateParams to calculate the origin (since border sizes may vary).
3150           In ScreenToMenu only subtract the title height if we actually have
3151           a title.
3152         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
3153           mdi children never have menus of themselves.
3154         * InternalWindowManager.cs: Implement menu handling like form does.
3155           Added GetMenuOrigin to calculate the menu origin, can't use the
3156           CreateParams from the form like normally since it's lying.
3157         * Hwnd.cs: Implement GetBorderSize better (in the sense more
3158           windows-like) and add Inflate and comparison operators to the
3159           Borders type. When calculating MenuOrigin and it's a form with a
3160           window manager, use the window manager to calculate it.
3161
3162 2007-04-17  Chris Toshok  <toshok@ximian.com>
3163
3164         * Control.cs (CreateControl): turns out in 2.0 we don't need this
3165         OnBindingContextChanged thing here.  It's only generated from
3166         ContainerControl.OnCreateControl.  Fixes a newly written unit test
3167         - BindingTest.BindingContextChangedTest4.
3168         
3169 2007-04-17  Jackson Harper  <jackson@ximian.com>
3170
3171         * ScrollBar.cs: When setting values, make sure the current
3172         position stays within the new values range.
3173
3174 2007-04-17  Chris Toshok  <toshok@ximian.com>
3175
3176         * Control.cs (CreateControl): talk about a bizarre corner case.
3177         Don't emit OnBindingContextChanged here if we're a parentless
3178         control (i.e. if we're a form.).  Fixes
3179         BindingTest.BindingContextChangedTest2.
3180
3181 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3182
3183         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
3184         from win32. Fixes #81255.
3185
3186 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3187
3188         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
3189         already present in CalculateButtonTextAndImageLayout.
3190
3191 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3192
3193         * XplatUIX11.cs: When setting min/max size for a window we need to
3194           translate the coordinates to x coordinates. Create an overload of
3195           SetWindowMinMax that takes a CreateParams handling this, and change
3196           SetWMStyles to call this function (can't use Control.FromHandle in
3197           the SetWindowMinMax to get the control/CreateParams from the handle
3198           because the handle might not have been assigned to the control
3199           yet). Fixes #81371.
3200
3201 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3202
3203         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
3204         if StateImageList is non-null and it has less than two items (match MS
3205         behaviour). Also, in HandleNavKeys handle the Space key, calling
3206         the new ToggleItemsCheckState method, which tries to change the
3207         checked state of the selected items. Fixes part of #81191.
3208
3209 2007-04-16  Jackson Harper  <jackson@ximian.com>
3210
3211         * RichTextBox.cs: namespace cleanup.
3212
3213 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3214
3215         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
3216
3217 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3218
3219         [Fixes #79447]
3220         * Control.cs: Call invalidate in set_Region.
3221
3222         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
3223         it dont works here.
3224
3225 2007-04-16  Jackson Harper  <jackson@ximian.com>
3226
3227         * TextBoxBase.cs: When enter is pressed, we need to update all
3228         lines below the current.
3229
3230 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
3231
3232         * MdiClient.cs: Implement implicit menu merging for MDI
3233         children.  When a child form is active, if it has a menustrip
3234         and the parent form has a MainMenuStrip, automatically merge
3235         the menus.
3236
3237 2007-04-15  Andreia Gaita  <avidigal@novell.com>
3238
3239         * TabControl.cs: Refactored sizing methods to not repeat
3240         code all over the place. Tab bounds are now calculated
3241         as if alignment is top and single line, and only when 
3242         setting the bounds are the positions adjusted according
3243         to alignment. Replaced hardcoded positions, spacings and
3244         paddings by getting the values the ThemeEngine. 
3245         Fixes #79619.
3246         
3247         * Theme.cs: Change TabControl properties and methods so
3248         that all start with TabControl*. Added more properties
3249         to help remove hardcoded values on tabcontrol.
3250         Add CPDrawBorder3D declaration so the Theming classes
3251         can access it.
3252         
3253         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
3254
3255         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
3256         on the Theming namespace, and call the appropriate methods here.
3257         Change CPDrawBorder3D to public.
3258
3259 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3260
3261         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
3262         the control after firing the OnMouseUp event, instead of sending
3263         the message before the mentioned event. This is so we can match the
3264         MS behaviour. Fixes part of #80385.
3265
3266 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3267
3268         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
3269         RightToLeft property.
3270
3271 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3272
3273         * ToolStrip.cs: Add properties and internal methods to support merging.
3274         * ToolStripItem.cs: Add MergeAction and MergeIndex.
3275         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
3276         not trigger reparenting or layouts.
3277         * ToolStripManager.cs: Add Merge and RevertMerge methods.
3278         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
3279         is hosting the overflow menu.
3280
3281 2007-04-13  Jackson Harper  <jackson@ximian.com>
3282
3283         * TextControl.cs: Set the line ending correctly for the first
3284         inserted line.
3285
3286 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3287
3288         * Theme.cs: Update GetMethod to get the new definition for 
3289         KnownColors.Update (and fix theme color updates).
3290
3291 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
3292
3293         * MessageBox.cs: Fix some test and button position.
3294
3295 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3296
3297         * Form.cs: Consider the implicit controls in
3298         GetRealChildAtPoint. We need it since this method
3299         is called on Form when handling the some messages in
3300         WndProc, and need to consider those implicit ones too.
3301         Fixes #80385.
3302
3303 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
3304
3305         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
3306         if there are no ShortcutKeys set.
3307         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
3308         set, use it when painting.
3309
3310 2007-04-12  Jackson Harper  <jackson@ximian.com>
3311
3312         * TextControl.cs: Fix some off-by-one issues in line duplication
3313         and insertion in the undo manager. Also, overwrite the first tag
3314         of a line on insert, if it is just a zero lengthed tag. This
3315         prevents us from getting an extra stranded tag at the beginning of
3316         the first line.
3317
3318 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
3319
3320         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
3321         to calculated proper size including when handle was not created yet.
3322
3323 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3324
3325         * MdiWindowManager.cs: When moving a form, allow the form to be moved
3326           when the mouse is outside of it's parent's client rectangle. Fixes
3327           #79982 (take 3, part 2).
3328
3329 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3330
3331         * X11Structs.cs: Add a few ToString() overrides.
3332         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
3333           the window location in a window-manager independent way. Reworked
3334           FrameExtents, it now actually works. Reworked AddConfigureNotify
3335           and ReparentNotify handling to use GetTopLevelWindowLocation
3336           instead of the earlier, more hacky solution. Reworked SetWMStyles,
3337           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
3338           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
3339           for all other windows (fixes #81281 part 1), a toolwindow is hidden
3340           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
3341           and generally refactored to do as few calculations as possible
3342           inside the lock.
3343
3344 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
3345
3346         * Theme.cs: Change "reflective-contract" between MWF and SD to 
3347         minimize # of calls, avoid Color serialization and avoid updating 
3348         every "known colors" each time a single one is updated.
3349
3350 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3351
3352         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
3353         when not readonly and the text is explicitly set. Code style updates.
3354         * DataGridTableStyle.cs: Removed extra line.
3355         * DataGrid.cs: Code style updates. Removed extra whitespace.
3356         * DataGridColumnStyle.cs: Code style updates. Removed extra 
3357         whitespace.
3358
3359 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3360
3361         * XplatUIX11.cs: Added comment that "fixes" #80021.
3362
3363 2007-04-09  Jackson Harper  <jackson@ximian.com>
3364
3365         * TextControl.cs: We don't need this -1 on the line count anymore.
3366
3367 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3368
3369         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
3370         entered value to underlying type, and convert it back to a string to
3371         apply formatting. Modified GetFormattedValue to use TypeConverter
3372         if available.
3373
3374 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
3375
3376         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
3377         Use SubItems property when we want to ensure there's at least one
3378         subitem. Modified SubItems property to ensure there's always at least
3379         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
3380         the NRE's reported by MS.
3381
3382 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
3383
3384         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
3385         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
3386         Spaces to tabs. Removed extra tabs.
3387
3388 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
3389
3390         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3391         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
3392
3393 2007-04-06  Jackson Harper  <jackson@ximian.com>
3394
3395         * TextBoxBase.cs: When a delete removes a line, recalculate all
3396         lines below that line (they need to get offsets setup correctly)
3397         and invalidate.
3398
3399 2007-04-05  Jackson Harper  <jackson@ximian.com>
3400
3401         * TextControl.cs: We need to invalidate across the width of the
3402         document when we are invalidating multiple lines.
3403         * TextBoxBase.cs: Don't delete into the line ending.
3404
3405 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3406
3407         * ListView.cs: Restore the check for the MouseHover event
3408         in ListView. It looks like the ListView fires more than one MouseHover
3409         event when HoverSelection is true  _only_ in weird-corner scenarios, but
3410         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
3411         event.
3412
3413 2007-04-05  Mike Kestner  <mkestner@novell.com>
3414
3415         * ListView.cs : raise MouseDown before updating selection.
3416         [Fixes #80373 tab 1&3]
3417
3418 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3419
3420         * ToolStripRenderer.cs: Add static method to mirror image.
3421         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
3422         and RightToLeftAutoMirrorImage.
3423         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
3424
3425 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3426
3427         * ToolStripSplitStackLayout.cs: Support Alignment property.
3428         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
3429
3430 2007-04-05  Jackson Harper  <jackson@ximian.com>
3431
3432         * TextControl.cs: Move around the line endings when crossing line
3433         boundaries.
3434         - When combining lines, strip the ending text off the first line.
3435
3436 2007-04-05  Jackson Harper  <jackson@ximian.com>
3437
3438         * TextControl.cs:
3439         * TextBoxBase.cs: Try to never move the cursor into the line
3440         ending.
3441         
3442 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3443
3444         * ToolStripItem.cs: Make sure we aren't firing mouse events when
3445         the item is disabled.  Also add a few missing methods.
3446
3447 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3448
3449         * ListView.cs: We don't need the MouseEnter/MouseLeave check
3450         to fire just one MouseHover event when HoverSelection is true, since
3451         .Net does fire more than one MouseHover event in that scenario. Also,
3452         fix the selection in HoverSelection, by invoking UpdateMultiSelect
3453         if MultiSelect is true, instead of only setting ListViewItem.Selected.
3454         Finally, we need to reset the Hover logic in MouseMove, even when we
3455         don't have a selected item.
3456
3457 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3458
3459         * ToolStrip.cs: Add several missing methods, properties, and events.
3460
3461 2007-04-04  Chris Toshok  <toshok@ximian.com>
3462
3463         * DataGridTextBoxColumn.cs: set the bounds of the text box to
3464         (0,0,0,0) in Commit, as MS does.
3465
3466         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
3467         make sure we set CurrentRow on a row header click *before* calling
3468         Select.  This moves the current cell (and the textbox) to the new
3469         row.  The call to Select then hides the textbox, giving us the
3470         correct behavior.  Fixes #80362.
3471
3472         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
3473         (ListChangedHandler): reorder the position/current changed events,
3474         and call UpdateIsBinding in the ItemAdded case.
3475
3476         * GridColumnStylesCollection.cs: add some columns events, one of
3477         which raises the CollectionChanged event.
3478
3479 2007-04-04  Jackson Harper  <jackson@ximian.com>
3480
3481         * TextControl.cs: When we delete multiple selection lines
3482         invalidate the selection area, don't need to do that for single
3483         lines because the final update view will handle it.
3484
3485 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3486
3487         * Control.cs: When we CreateControl, we need to also create all of the
3488         control's children.  The child's OnLoad must also fire before the parent's
3489         OnLoad.  Fixes the toolbox size in PDN.
3490
3491 2007-04-04  Jackson Harper  <jackson@ximian.com>
3492
3493         * TextBoxBase.cs: When the user presses enter, insert a line
3494         ending into the text. (Maybe this would be a good spot for
3495         Environment.NewLine).
3496         * TextControl.cs: Remove undo manager hack, line endings get
3497         inserted properly now.
3498         
3499 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3500
3501         * MenuAPI.cs: 
3502         - Remove unneeded parameters in UpdateCursor.
3503         - Fix UpdateCursor to check if menu is active.
3504         - Call UpdateCursor when menu deactivate my click.
3505         [Fixes remaining issues from #80410]
3506
3507 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3508
3509         * Control.cs: GetRealChildAtPoint method added, it make an
3510         recursive child control search for the point. 
3511
3512         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
3513         menu.
3514
3515         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
3516
3517 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3518
3519         * Form.cs: Fix mouse position when send back mouse event after closes
3520         menu.
3521
3522 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3523
3524         * Form.cs: Simplify the BUTTONDOWN for active tracker.
3525
3526 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3527
3528         * Control.cs: Fix an issue where if a user resized a control inside
3529         a sizing method like OnResize, we would overwrite their explicit
3530         value.  Also, only call DefaultSize once in the constructor instead
3531         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
3532         nothing actually changed.
3533
3534 2007-04-03  Jackson Harper  <jackson@ximian.com>
3535
3536         * TextControl.cs: Don't attempt to copy text for lines with no
3537         text in them (technically this shouldn't happen, but we aren't
3538         always inserting line endings when we should be).
3539
3540 2007-04-03  Jackson Harper  <jackson@ximian.com>
3541
3542         * TextBoxBase.cs: Calculate the scrollbars before calculating the
3543         document, because this sets some of the document size properties
3544         that are needed.
3545
3546 2007-04-03  Jackson Harper  <jackson@ximian.com>
3547
3548         * TextBoxBase.cs: We need to calculate maximums even if this is
3549         not a multiline control, because the maxs are used for scrolling.
3550         - Display the caret after doing a page up/down, we need to
3551         manually display it because a proper CaretMoved event isn't
3552         triggered (this is because of the way the math is done to
3553         determine how far to scroll).
3554
3555 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3556
3557         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
3558         (ToolBar was relying on SetBoundsCore to default the values sent 
3559         base off of BoundsSpecified.)
3560
3561 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3562
3563         * DateTimePicker.cs: Change Text so that when a null value or empty
3564           string is assigned to the test we always raise ValueChanged and
3565           TextChanged (earlier implementation would only raise ValueChanged
3566           if the current date value was different from DateTime.Now).
3567
3568 2007-04-03  Andreia Gaita <avidigal@novell.com> 
3569
3570         * ButtonBase: Call update after invalidation, fixes #80194
3571
3572 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3573
3574         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
3575           #79335.
3576
3577 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3578
3579         * XplatUIX11.cs: SetWMStyles: If the control is a form with
3580           FormBorderStyle = None, don't give the window any decorations.
3581           Fixes #81276.
3582
3583 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3584
3585         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3586         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
3587           to check for is a mix of several styles (such as WS_CAPTION for
3588           instance).
3589         * Control.cs: Don't paint an area bigger than the client area when
3590           painting the background colour. Add an internal GetCreateParams.
3591           Update calls to XplatUI.CalculateWindowRect due to API change.
3592         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
3593           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
3594           the size if it hasn't been handled by any windows. When creating
3595           and moving windows, X wants the location of the entire window, but
3596           the size of the client window, so add
3597           TranslateClientRectangleToXClientRectangle,
3598           TranslateWindowSizeToXWindowSIze and
3599           TranslatedXWindowSizeToWindowSize to cope with this, and call them
3600           before every window creation and move. Update CalculateWIndowRect
3601           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
3602           In AddConfigureNotify don't do anything if the hwnd is a zombie
3603           (fixes the BadWindow we were getting while running the tests),
3604           always calculate the offsets when it's a parentless window, not
3605           only when reparented, and translate the window size, since we're
3606           getting the client size of the whole window, excluding entire
3607           window.
3608         * Theme.cs: Added BorderSizableSize.
3609         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3610           anymore. Update calls to XplatUI.CalculateWindowRect due to API
3611           chang
3612         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
3613           change. Fake the window styles here instead of in XplatUIWin32 so
3614           that all back-ends get the same window styles (and it's Form that's
3615           deciding when to use wm, not the Win32 backend anyways)
3616         * Hwnd.cs: Completely reworked GetWindowRectangle and
3617           GetClientRectangle - they are now passed a CreateParams and they
3618           only use Style and ExStyle to determine the rectangles (they should
3619           now work just like Win32AdjustWindowRectEx - though quite a few
3620           special cases are probably missing). They should also be 100%
3621           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
3622           == rect), and all numbers (borders, menu sizes) are taken from the
3623           current theme. Added a GetBorders helper function that will return
3624           the borders for any given CreateParams (including captions and
3625           menus), and GetBorderSize that returns the given border size only.
3626         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
3627           Hwnd.GetClientRectangle.
3628
3629 2007-04-02  Chris Toshok  <toshok@ximian.com>
3630
3631         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
3632         logic between the values we present to the user and the values
3633         which are stored in the column's property.  Also, don't call
3634         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
3635
3636 2007-04-02  Jackson Harper  <jackson@ximian.com>
3637
3638         * TextBoxBase.cs: Scroll faster!
3639
3640 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3641
3642         * StatusStrip.cs: Layout fixes for PDN.
3643         * ToolStrip.cs: Set item's available to true, and placement to main when
3644         added.
3645         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
3646         changing in setter before doing any work, add InternalVisible.
3647         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
3648         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3649         infinite loop.
3650
3651 2007-04-02  Jackson Harper  <jackson@ximian.com>
3652
3653         * TextBox.cs: LBUTTON does not make the textbox select all of it's
3654         text on focus.
3655
3656 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3657
3658         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
3659           Makes ToolStripComboBoxes show up again.
3660
3661 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3662
3663         * ListView.cs: Add a hover_pending field in ListView
3664         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
3665         cycle (we are resetting the MouseHover logic in XplatUI
3666         to handle HoverSelection). Fixes #80429.
3667
3668 2007-04-02  Jackson Harper  <jackson@ximian.com>
3669
3670         * TextControl.cs: Make sure the attributes get set on the last
3671         tag.
3672         - Still have to do the end tag if we have stepped all the ways to
3673         the end.
3674
3675 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3676
3677         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
3678         on an internal libgdiplus call when the information is already 
3679         available via the public API.
3680
3681 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3682
3683         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
3684           control is removed from a control collecftion.
3685         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
3686           Fixes FormPropertyTest (failed on rare occasions).
3687         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
3688           of Win32SetParent (when changing from no parent to a parent it
3689           might add the new parent's location in screen coordinates to this
3690           window's location).
3691         * Form.cs: Rework ChangingParent once again, now the handle is
3692           recreated whenever a FormWindowManager is added or removed (that is
3693           whenever a normal form is parented or abandoned). Also change
3694           CreateParams so that all non-toplevel windows always get the
3695           specified sice (StartupPosition is never considered for
3696           non-TopLevel forms).
3697         * ContainerControl.cs: Add ChildControlRemoved, the container control
3698           needs to be notified when a control is removed from it's
3699           collection, in the case the removed control is the active control.
3700
3701 2007-04-02  Jackson Harper  <jackson@ximian.com>
3702
3703         * RichTextBox.cs: Use the new methods for setting the font and
3704         color, these methods set the specified attribute without
3705         overriding the other attributes.
3706
3707 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3708
3709         * ToolStripPanel.cs: Fixes for better layouts in PDN.
3710
3711 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
3712
3713         * TextBox.cs: Added internal ChangeBackColor method to special-case
3714         Color.Empty. Added check for invalid ScrollBars value.
3715         * TextBoxBase.cs: Added internal ChangeBackColor method.
3716         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
3717         internal ChangeBackColor method to special-case Color.Empty. Added
3718         check for invalid ScrollBars value.
3719
3720 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
3721
3722         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
3723
3724 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3725
3726         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
3727         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
3728         [Based on submitted patch from Olivier Duff.]
3729
3730 2007-03-30  Jackson Harper  <jackson@ximian.com>
3731
3732         * TextBox.cs: Only select all on initial focus if the user has not
3733         specified a selection area.
3734
3735 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3736
3737         * UserControl.cs: Override CreateParams.
3738
3739 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3740
3741         [ Fixes #80995 ]
3742
3743         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3744         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
3745           check for is a mix of several styles (such as WS_CAPTION for instance).
3746         * Control.cs: Don't paint an area bigger than the client area when painting
3747           the background colour. Add an internal GetCreateParams. Update calls to
3748           XplatUI.CalculateWindowRect due to API change.
3749         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
3750           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
3751           hasn't been handled by any windows. When creating and moving windows, X
3752           wants the location of the entire window, but the size of the client
3753           window, so add TranslateClientRectangleToXClientRectangle,
3754           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
3755           to cope with this, and call them before every window creation and move.
3756           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
3757           removing DeriveStyles). In AddConfigureNotify don't do anything if the
3758           hwnd is a zombie (fixes the BadWindow we were getting while running the
3759           tests), always calculate the offsets when it's a parentless window, not
3760           only when reparented, and translate the window size, since we're getting
3761           the client size of the whole window, excluding entire window.
3762         * Theme.cs: Added BorderSizableSize.
3763         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3764           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
3765         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
3766           Fake the window styles here instead of in XplatUIWin32 so that all
3767           back-ends get the same window styles (and it's Form that's deciding when
3768           to use wm, not the Win32 backend anyways)
3769         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
3770           they are now passed a CreateParams and they only use Style and ExStyle
3771           to determine the rectangles (they should now work just like
3772           Win32AdjustWindowRectEx - though quite a few special cases are probably
3773           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
3774           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
3775           sizes) are taken from the current theme. Added a GetBorders helper
3776           function that will return the borders for any given CreateParams
3777           (including captions and menus), and GetBorderSize that returns the given
3778           border size only.
3779         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
3780           Hwnd.GetClientRectangle.
3781
3782 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3783
3784         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
3785           layout of the mdi children is handled by CreateParams. Fixes
3786           #79964,
3787
3788 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3789
3790         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
3791         processed.
3792
3793         * Form.cs: When active tracker mouse down is not processed, send event 
3794         back to control inside mouse position. [Fixes #81227]
3795
3796 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
3797
3798         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
3799         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
3800         stealing focus from the active form on Windows.  (Control will be made
3801         visible in ShowWindow.)
3802
3803 2007-03-29  Mike Kestner  <mkestner@novell.com>
3804
3805         * ImageList.cs : add internal Changed event.
3806         * ListView.cs : hook up to StateImageList.Changed to perform
3807         invalidations when the the state icon list changes. [Fixes #81191]
3808
3809 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
3810
3811         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
3812         to prevent tooltips from stealing focus from the active form on Windows.
3813
3814 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3815
3816         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
3817
3818         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
3819
3820 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3821
3822         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
3823         balloons.
3824
3825 2007-03-29  Jackson Harper  <jackson@ximian.com>
3826
3827         * TextControl.cs: When deleting text from non multiline textboxes,
3828         we need to update the entire document, because line offsets will
3829         be shifting.
3830
3831 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3832
3833         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
3834         added to theme, now we can create themes that uses diferent notify engines
3835         like notification-daemon from galago project or growl for Mac OS.
3836
3837 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3838
3839         * NotifyIcon.cs: Prevent Balloon to show in task bar.
3840
3841 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3842
3843         * XplatUIX11.cs: Prevent system to open more than one balloon.
3844
3845         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
3846         some compiler warning messages.
3847
3848 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3849
3850         [Fixes #79149]
3851
3852         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
3853
3854         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
3855         implemented, this methods is used by NotifyIcon.BalloonWindow class.
3856
3857         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
3858         systems.
3859
3860 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3861
3862         * ListViewItem.cs: Forgot to make Invalidate internal.
3863
3864 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3865
3866         * ListView.cs: Add a InvalidateSelection method to
3867         invalidate methods which are currently selected, and call
3868         it when setting FullRowSelect and HideSelection, instead of
3869         calling Redraw.
3870
3871 2007-03-28  Chris Toshok  <toshok@ximian.com>
3872
3873         * XplatUIX11.cs (UnmapWindow): reindent this block.
3874
3875         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
3876         the selection_start if we're moving the selection (that is, not
3877         extending it). Fixes bug #80461.
3878
3879 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3880
3881         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
3882         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
3883         create private ControlCollection.
3884
3885 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3886
3887         * Control.cs: We need to call OnVisibleChanged for our implicit
3888         children as well as our normal children.  Fixes scrollbars in
3889         comboboxes not showing up.
3890
3891 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3892
3893         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
3894         the check for IsHandleCreated first.  The check in CreateHandle is not
3895         good enough because CreateHandle can be overriden, and the override 
3896         should not be called if the handle is already created.
3897
3898 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3899
3900         * ToolStrip.cs: Remove MonoTODO for tooltips.
3901         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
3902         * ToolStripContainer.cs: Add custom ControlCollection class.
3903         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
3904         * ToolStripDropDown.cs: Add some missing properties/methods.
3905         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
3906         * ToolStripItem.cs: Remove MonoTODO for tooltips.
3907         * ToolStripManager.cs: Add IsShortcutDefined.
3908         * ToolStripOverflow.cs: Override LayoutEngine.
3909         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
3910         * ToolStripSeparator.cs: Add ImageKey.
3911
3912 2007-03-28  Jackson Harper  <jackson@ximian.com>
3913
3914         * TextControl.cs: If a char delete removes a line ending, we need
3915         to update the ending style.
3916         - Make sure the line ending calcs get called.
3917
3918 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3919
3920         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
3921           it was making the new code not work. Fixed a typo in the new code
3922           as well. Fixes #79826.
3923
3924 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3925
3926         * XplatUIWin32.cs:
3927         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
3928         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
3929         - SystrayBalloon method implemented.
3930         [Add support for notifyicon balloon on win32, #79149]
3931
3932 2007-03-27  Mike Kestner  <mkestner@novell.com>
3933
3934         * ThemeWin32Classic.cs : update StateImageList selection to mirror
3935         the ms behavior when only one image is added to the list.
3936         [Fixes #81191]
3937
3938 2007-03-27  Jackson Harper  <jackson@ximian.com>
3939
3940         * TextControl.cs: Improvements to non multiline line ending
3941         drawing/measuing.
3942
3943 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3944
3945         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
3946
3947 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3948
3949         * NotifyIcon.cs: 
3950         - Balloon message handling added.
3951         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
3952
3953         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
3954         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
3955         to SystrayBalloon to me like other Systray method, also a
3956         handle parameter added.
3957
3958 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3959
3960         * ListView.cs: Show scrollbars even when items.Count == 0
3961         but the columns Width is bigger than the ListView.Width.
3962         Also, when columns.Count == 0 set layout_wd and layout_ht
3963         to the ClientRectangle values, so we don't show any scrollbar
3964         in that case.
3965
3966 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3967
3968         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
3969
3970 2007-03-27  Jackson Harper  <jackson@ximian.com>
3971
3972         * RichTextBox.cs: The RTF library decodes the text properly for us
3973         now.
3974
3975 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3976
3977         * ListView.cs: Display HeaderControl even when columns.Count == 0.
3978         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
3979         ListView header (HeaderControl), instead of Control.BackColor.
3980
3981 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
3982
3983         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
3984         Fixes tab control issues where controls would not show up because they
3985         never received their OnVisibleChanged call.
3986
3987 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3988
3989         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
3990         BalloonTipShown).
3991
3992 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
3993
3994         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
3995         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
3996         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
3997         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
3998         the handle.  Fix WindowState by using the internal variable until we are 
3999         sure that we've been shown.
4000         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
4001         max or min.
4002         [Fixes bug #81198]
4003
4004 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4005
4006         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
4007           (at least borders). Fixes #79386 on Linux (with a small difference
4008           in behaviour: when trying to resize a caption-less window metacity
4009           shows the sysmenu. Resizing is still possible though).
4010         * XplatUIWin32.cs: When setting window styles send request an extra
4011           WM_NCCALCSIZE when it's a form without title (due to no text and no
4012           caption), since Win32 seems to calculate it wrong the first time we
4013           get the message, though the second time things work as they should.
4014         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
4015           newly reparented window might show up unparented. Update
4016           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
4017           there's no title text. Fixes #79386.
4018
4019 2007-03-27  Mike Kestner  <mkestner@novell.com>
4020
4021         * ListBox.cs : don't perform invalidations if the handle hasn't been
4022         created.  [Fixes #80753]
4023
4024 2007-03-27  Mike Kestner  <mkestner@novell.com>
4025
4026         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
4027         [Fixes #80428]
4028
4029 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4030
4031         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
4032         needed to implement Balloon.
4033
4034 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4035
4036         * ListViewItem.cs: In the constructors that take
4037         an array of strings, don't use ListViewSubItemCollection.AddRange
4038         method to add items, since we need to have a different behaviour (in
4039         the constructors we add an item for each null string, opposed to
4040         the behaviour of AddRange, which adds nothing).
4041
4042 2007-03-26  Andreia Gaita  <avidigal@novell.com>
4043
4044         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
4045
4046 2007-03-26  Jackson Harper  <jackson@ximian.com>
4047
4048         * TextControl.cs: Draw and measure line endings when in non
4049         multiline mode.
4050         - When searching the text, count the end of the last line as a
4051         word boundary.
4052
4053 2007-03-26  Jackson Harper  <jackson@ximian.com>
4054
4055         * RichTextBox.cs: The selection_start and selection_end don't
4056         really track the correct tags for the selection. So we'll manually
4057         compute the correct tag here.
4058
4059 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4060
4061         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
4062           and Continuous styles. Fixes #79469.
4063
4064 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4065
4066         * ToolStrip.cs: Implement Tooltips.
4067         * ToolStripItem.cs: Create internal method for determining tooltip.
4068
4069 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4070
4071         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
4072
4073 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4074
4075         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
4076         it prevents a problem thak keeps icon visible after application 
4077         closes on win32.
4078
4079 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4080
4081         * NotifyIcon.cs: Balloon properties and methods created.
4082
4083         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4084         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
4085
4086 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
4087
4088         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
4089
4090 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4091
4092         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
4093         parameter indicates which aspects were explicit/user-set.
4094         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
4095
4096 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4097
4098         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
4099         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
4100         SmallChange, and Value (2.0).
4101         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
4102
4103 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4104
4105         * ListView.cs: Always set item_control.Width in LayoutDetails
4106         if View is Details. Setting it later in CalculateScrollBars
4107         in a not-so-corner scenario (the sum of columns width is
4108         not bigger than the ListView width when handle is created, and then
4109         that sum gets bigger by increasing the width of the columns)
4110         causes a very weird recursion path (which shouldn't be happening,
4111         since header_control sets it in CalculateScrollBars too). This bug
4112         appeared after Chris' fixes for handle created issues, so probably
4113         it's related to some handle-creation time.
4114
4115 2007-03-23  Chris Toshok  <toshok@ximian.com>
4116
4117         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
4118         case where there's an add row, just so we don't end up in a case
4119         where it's not displayed (this happens when the row is partially
4120         obscured).  Fixes bug #79574.
4121
4122 2007-03-23  Jackson Harper  <jackson@ximian.com>
4123
4124         * TextControl.cs:
4125         * TextBoxBase.cs:
4126         * RichTextBox.cs: Preserve line endings in the lines text buffer,
4127         also added an enum that represents the line ending type. 
4128
4129 2007-03-23  Andreia Gaita  <avidigal@novell.com>
4130
4131         * NumericUpDown.cs: Fix logic so Text and Value properties are not
4132         messed with in every method call, but only from DownButton, 
4133         UpButton, UpdateEditText() and ValidateText. Fixes #80346
4134
4135 2007-03-23  Chris Toshok  <toshok@ximian.com>
4136
4137         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
4138         format objects if the format spec is "".  Fixes bug #80889.
4139
4140 2007-03-22  Miguel de Icaza  <miguel@novell.com>
4141
4142         * ToolStripPanel.cs (Join): added stubs to build PDN3
4143
4144         * Control.cs (AutoScrollOffset): Add.
4145
4146         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
4147         property, its only implemented for Win32, on X11 it defaults to
4148         some hardcoded value.
4149
4150         * ToolStripItem.cs (AllowDrop): Add property
4151
4152 2007-03-22  Mike Kestner  <mkestner@novell.com>
4153
4154         * ListView.cs : in FullRowSelect Details mode, only enable box
4155         selection if the user clicks over the "item" column outside of the
4156         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
4157
4158 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4159
4160         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
4161           handle is not created yet.
4162         * Form.cs: Select: Don't call CreateHandle if the handle is already
4163           created, avoids a stack overflow on Windows when we are recreating
4164           controls.
4165         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
4166           they are made visible, and override AfterTopMostControl to keep
4167           them on top when other controls are brought to front.
4168           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
4169           or force_*scroll_visible is true (old implementation always shows
4170           scrollbars when needed, no matter what auto_scroll was set to).
4171         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
4172           IsHandleCreated check.
4173
4174 2007-03-22  Andreia Gaita  <avidigal@novell.com>
4175
4176         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
4177         row or col separator.
4178         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
4179
4180 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4181
4182         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
4183
4184 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4185
4186         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
4187         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
4188         every time. Fixes #80410.
4189
4190 2007-03-22  Chris Toshok  <toshok@ximian.com>
4191
4192         * BindingSource.cs (AddNew): partially implement.
4193
4194         remove a couple of NotImplementedException's
4195         to get bug #81148 closed.
4196
4197 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4198
4199         [Fixes #80380]
4200         
4201         * Control.cs:
4202         - UpdateCursor method added to update the screen cursor.
4203         - GetAvailableCursor method added to return cursor for enabled tree,
4204         it searches for cursor on control and it's parent's for enabled control.
4205         - Call UpdateCursor method on setter of Cursor property.
4206         - On setter of Enabled call UpdateCursor when it is false, we need to
4207         change cursor to normal (or to this parent cursor) because cursor 
4208         setting theres no effect to disabled controls.
4209         - Some minor source changes to follow the coding style guidelines.
4210
4211         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
4212         controls.
4213
4214 2007-03-22  Chris Toshok  <toshok@ximian.com>
4215
4216         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
4217         generates.
4218
4219 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4220
4221         * XplatUIX11.cs: Implement default locations for forms.
4222         * Form.cs: Completely rework startup location for forms. Fixes #79964.
4223         * Hwnd.cs: Add previous_child_startup_location (to track the current
4224           startup location for any child forms of the current form) and
4225           previous_main_startup_location (to track the startup location for
4226           the current toplevel form).
4227
4228 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4229
4230         * Control.cs: Don't trigger a layout if an implicit control is added
4231         that isn't visible.  Also, don't notify the owner when an implicit control
4232         is added.  (Owners shouldn't even know about their implicit controls.)
4233
4234 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4235
4236         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
4237         to save some re-layouts.
4238
4239 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
4240
4241         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
4242         [Fixes #81203]
4243
4244 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4245
4246         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
4247         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
4248
4249 2007-03-21  Mike Kestner  <mkestner@novell.com>
4250
4251         * ListView.cs : disable selection update for non-left button clicks
4252         with mods and over selected items.  [Fixes #80524]
4253
4254 2007-03-20  Jackson Harper  <jackson@ximian.com>
4255
4256         * TextControl.cs:
4257         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
4258         \r\r\n, \n.
4259
4260 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4261
4262         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
4263           very probably a more complicated calculation there. Update the
4264           textbox' ForeColor and BackColor when the ComboBox' colors are
4265           changed. Change the border change in LayoutComboBox to only affect
4266           the textbox, not all the calculations there. Seems to fix most of
4267           #79436.
4268
4269 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4270
4271         * ComboBox.cs: Handle Home and End keys as well as all combinations of
4272           modifiers + navigation keys as input keys, enables advanced text
4273           selection in the combobox (like Shift+Left Arrow for instance).
4274           ComboTextBox now overrides Focused and returns whatever
4275           ComboBox.Focused returns, since it really should be focused
4276           whenever the ComboBox is. Fixes #80795. Also make the border around
4277           the text box one pixel bigger, as mentioned in #79436.
4278
4279 2007-03-20  Jackson Harper  <jackson@ximian.com>
4280
4281         * TreeView.cs: Don't offset the images, this was causing some
4282         artifacts when expanding/collapsing with images that were the
4283         exact height of the treenode.
4284
4285 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4286
4287         * TrackBar.cs: Query the theme for the correct value when the mouse
4288           moves and the thumb is pressed. 
4289         * Theme.cs: Added TrackBarValueFromMousePosition
4290         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
4291           implementation was updating the trackbar value when drawing, now
4292           the drawing methods only draw. Fixes #80900. Refactored the
4293           calculations out to TrackBarValueFromMousePosition and
4294           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
4295           according to the mouse position whenever it wants to. Changed the
4296           light coloured pen when drawing the thumb from ControlLight to
4297           ControlLightLight, because the ControlLight is the same colour as
4298           the background so the 3D effect is lost. 
4299
4300 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4301
4302         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
4303         defined. Fixes #80784.
4304
4305 2007-03-20  Marek Habersack  <mhabersack@novell.com>
4306
4307         * ContextMenuStrip.cs: align with the change introduced in
4308         revision 74664.
4309
4310 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4311
4312         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
4313         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
4314         in SetTopmost.
4315
4316 2007-03-19  Chris Toshok  <toshok@ximian.com>
4317
4318         * Control.cs (WmPaint): don't make use of the Handle property
4319         after an event is emitted, as the user could have closed the
4320         form/destroyed the control.  Store the Handle in a local variable
4321         and make use of that.  Fixes bug #80768.
4322
4323 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4324
4325         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
4326         behavior in X11 environments.
4327
4328 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4329
4330         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
4331         because on setter of topmost we dont call SetTopmost when handle is not
4332         created.
4333
4334 2007-03-20  Jackson Harper  <jackson@ximian.com>
4335
4336         * TextControl.cs: Need to use SelectionLength () not
4337         selection_length, since that var is reset to -1.
4338         - Draw the caret when we don't have focus.
4339         * TextBox.cs: The selectall actually doesn't occur until the first
4340         focus.
4341         * TextBoxBase.cs: Need to update the caret position after a
4342         selectall.
4343         
4344 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4345
4346         * ListView.cs: Enable scrolling when using Tile view.
4347
4348 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4349
4350         [Fixes #80902]
4351
4352         * XplatUIDriver.cs: Abstract SetOwner method created.
4353
4354         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
4355         must be implemented and was masked as todo.
4356
4357         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
4358         GWL_HWNDPARENT.
4359
4360         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
4361         cheking for null owner to remove transient. The SetTopmost will be change
4362         on a decond step.
4363
4364         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
4365         SetTopmost. Now owned forms will work properly in win32 and X11.
4366
4367 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4368
4369         * MdiWindowManager.cs: Update function name.
4370         * Form.cs: After closing a form MdiParent is always null.
4371         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
4372           better what it should do: necessary book-keeping when the form is
4373           closed, it should not close the form itself.
4374
4375 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4376
4377         * ListViewItem.cs: Fix back and fore color. The subitems only
4378         use their own colors if they are set, otherwise use the listview's
4379         colors. Don't set default colors on constructor for subitem.
4380         Fixes #79315.
4381
4382 2007-03-19  Mike Kestner  <mkestner@novell.com>
4383
4384         * ListView.cs : make box selection for Details views with 
4385         FullRowSelect conform to MS behavior when clicking in the "item" 
4386         column and clicking outside the defined columns.
4387         [Fixes case 5-6 of #80374]
4388
4389 2007-03-19  Chris Toshok  <toshok@ximian.com>
4390
4391         * ScrollableControl.cs: create the controls from within the ctor,
4392         but don't actually add them until our handle is created.  this
4393         fixes a NRE possibility jpobst found (if you override OnLayout in
4394         a subclass, it's called before your ctor).  Also, add a
4395         IsHandleCreated guard to UpdateSizeGripVisibility as well.
4396
4397 2007-03-19  Jackson Harper  <jackson@ximian.com>
4398
4399         * TextBox.cs: Reduce the amount of invalidation we do.
4400         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
4401         some of them are true by default on MS.
4402         - Add some functions to reduce the amount of invalidates we do.
4403         * TextControl.cs: Less invalidation.
4404
4405 2007-03-19  Chris Toshok  <toshok@ximian.com>
4406
4407         [ Fixes #81773, and *seems* to fix #81553 as well ]
4408
4409         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
4410         AccumulateDestroyedHandles.  We need to do it *after* we send
4411         WM_DESTROY, as the user's code can access Control.Handle in
4412         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
4413         move the WM_DESTROY/zombie handling to before the call to
4414         XDestroyWindow.  For some reason without this ordering
4415         FormTest.RecreateHandle hangs.  This ordering is semantically
4416         equivalent, however, as XDestroyWindow is async anyway.
4417
4418 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
4419
4420         * RichTextBox.cs: Reset backcolor_set after setting default.
4421
4422 2007-03-19  Chris Toshok  <toshok@ximian.com>
4423
4424         * ScrollableControl.cs: the scroll position should not effect the
4425         canvas size.  commit patch from georgegiolfan@yahoo.com, which
4426         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
4427         
4428 2007-03-19  Chris Toshok  <toshok@ximian.com>
4429
4430         * ScrollableControl.cs: clean this up a bit.  create the
4431         scrollbars in the ctor and just show/hide them as needed.  Also,
4432         make hscroll_visible/vscroll_visible internal to Recalculate, and
4433         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
4434         everywhere else.  This seems to fix the scrollbars appearing
4435         beneath the content for me (i have *no* idea why that is,
4436         however.)
4437
4438 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4439
4440         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
4441         some redundacy for stuff in Anchor and Dock that base will take care of.
4442         [Fixes #80762]
4443
4444 2007-03-19  Mike Kestner  <mkestner@novell.com>
4445
4446         * ListView.cs : make box selection for Details views without 
4447         FullRowSelect dependent on the text bounds, not item bounds.
4448         * ListViewItem.cs : add an internal property to obtain the TextBounds
4449         in Details view.  [Fixes case 1-4 of #80374]
4450
4451 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4452
4453         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
4454         we're < 2.0. #78448 && #80316
4455
4456 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4457
4458         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
4459         have the same style available as the previously selected one.  Also,
4460         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
4461
4462 2007-03-19  Jackson Harper  <jackson@ximian.com>
4463
4464         * TextControl.cs: Add an alignment property that all new lines
4465         will be given.
4466         - Make sure to use the align shift when calculating the line's X
4467         position.
4468         * TextBox.cs: Set the alignment on the document as well as on all
4469         the document lines.
4470
4471 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4472
4473         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
4474           throw if setting the parent of an mdichild that already has an
4475           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
4476           AssemblyProductAttribute in the assembly, use the type's namespace (as
4477           MS seems to do). CreateControl: don't create the handle if the control
4478           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
4479           create handle if the control is not a form. Change FocusInternal to
4480           virtual so that it can be overriden by Form.
4481         * TextBox.cs: Update call to FocusInternal.
4482         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
4483           form is not a toplevel form when it's a mdi child, so update is_toplevel
4484           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
4485           hasn't been created. Show (IWin32Window): Don't allow this overload for
4486           toplevel windows. CenterToParent/CenterToScreen/Select: create the
4487           handle as MS does. SetVisibleCore: if called on a MdiChild and the
4488           parent isn't visible yet, save the visibility and restore it when the
4489           parent is made visible.
4490         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
4491           methods, since the visibility of the scrollbars can be changed from
4492           several places, not only from AutoScroll.
4493           [Fixes #81179]
4494
4495 2007-03-19  Jackson Harper  <jackson@ximian.com>
4496
4497         * RichTextBox.cs: Enable shortcuts by default.
4498         * TextBoxBase.cs: Add conditional shortcuts.  
4499
4500 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4501
4502         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
4503
4504 2007-03-19  Chris Toshok  <toshok@ximian.com>
4505
4506         [ Fixes bug #80604]
4507         
4508         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
4509         swallow the message we're waiting on, instead of delivering it, as
4510         this is only used for the WM_SHOWWINDOW raised from
4511         MapWindow/UnmapWindow, and the message needs to be generated
4512         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
4513         before doing the Map/Unmap.  Also make sure that the Hwnd is still
4514         alive after the message has been handled.
4515
4516         *before* the window is shown.
4517
4518         * Control.cs (CreateControl): guard a few more things inside the
4519         if (!is_created) block, as we might end up being called again -
4520         yay .net.
4521         (WmShowWindow): call CreateControl if we're showing the control.
4522
4523 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4524
4525         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
4526           controls without a handle if they have any parent with a handle. In
4527           Dispose add a check whether the handle is created or not before
4528           calling BeginInvoke, this removes the need of the extra disposing
4529           parameter (which was bogus anyway since it didn't prevent the
4530           invoke from happening, it only skipped the check for an existing
4531           handle, meaning that the invoke would call on an inexistent
4532           handle).
4533
4534 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4535
4536         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
4537         appears in taskbar.
4538
4539 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4540
4541         * MessageBox.cs:
4542         - Fixed a problem that dont show help button for messages with 3 buttons.
4543         - Refactory button size and position calculations, now dont use fixed 
4544         values, also fixed button sizes (#80043) and form's border space.
4545         - AddButton method created, now all other AddButton methods call this one.
4546         - Some other source code cosmetic changes.
4547
4548 2007-03-18  Jackson Harper  <jackson@ximian.com>
4549
4550         * RichTextBox.cs: Don't do this all fonts must match check if
4551         there is only one char selected.
4552
4553 2007-03-18  Jackson Harper  <jackson@ximian.com>
4554
4555         * TreeView.cs: ScrollWindow works properly now, so we don't need
4556         to screw around with the scroll area.  This fixes some artifacts
4557         when expanding and collapsing.
4558
4559 2007-03-18  Jackson Harper  <jackson@ximian.com>
4560
4561         * TextBoxBase.cs: Allow updating the selection position when the
4562         cursor is outside the textarea, but we have a capture.
4563         * TextControl.cs: A special case for when the cursor is outside
4564         the bounds of the TB.
4565         
4566 2007-03-18  Jackson Harper  <jackson@ximian.com>
4567
4568         * TextBoxBase.cs: Remove image pasting code for now.  There is no
4569         way to get an image on the clipboard right now anyways.
4570         * TextControl.cs:
4571         * RichTextBox.cs: Use the new RTF Picture class for pictures.
4572
4573 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4574
4575         * MessageBox.cs:
4576         - Set window properties in constructor intead of on CreateParams.
4577         - Remove topmost from Window ExStyle.
4578         - Set ShowInTaskbar to false.
4579         - Set form border to FixedDialog.
4580         - Some cosmetic changes and remove unneeded comments.
4581         - It fixes itens 2,3 and 4 of bug #80043.
4582
4583 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
4584
4585         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
4586         none was explicitly set. Fixes part of bug #79949.
4587
4588 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4589
4590         * ToolStripComboBox.cs: Add AutoComplete*.
4591
4592 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4593
4594         * ToolStripComboBox.cs: Add FlatStyle.
4595
4596 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
4597
4598         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
4599         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
4600
4601 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4602
4603         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
4604           CheckBox.cs, RadioButton.cs, BindingSource.cs,
4605           DataGridColumnStyle.cs: Remove warnings.
4606
4607 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4608
4609         * Menu.cs: MergeMenu: Check menu argument for null before looping over
4610           it.
4611         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
4612           visibility of mdi child forms. FormSizeChangedHandler: update the
4613           maximized size if size has changed while maximized.
4614         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
4615           creating the handle.
4616         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
4617           avoid creating the handle if not created.
4618         * XplatUI.cs: Update debug output.
4619         * XplatUIStructs.cs: Added ToString's for a couple of structs.
4620
4621 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
4622
4623         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
4624         ProcessCmdKey().
4625         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
4626         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
4627         Implement keyboard shortcuts.
4628
4629 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4630
4631         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
4632         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
4633         ColorDialog and all derived classes.
4634
4635 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4636
4637         [ Fixes bug #79828 ]
4638
4639         * ToolBar.cs:
4640         - Rename ToolBarButtonInfor to ToolBarItem.
4641         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
4642         - Maintain an array of ToolBarItem, used instead of ToolBarButton
4643         collection to be able add same button more than one time on a toolbar.
4644         - Refactory all properties and methods to use ToolBarItem. 
4645
4646         * ToolBarButton.cs: 
4647         - Remove all propeties and methods that is now in ToolBarItem.
4648         - Rectangle propery now gets the rectangle from first ToolBarItem to
4649         mimic win32 behavior.
4650         - Size calculation and layout methods also removed.
4651
4652         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
4653         ToolBarItem instead of ToolBarButton to right drawing buttons when
4654         same button/separator was added more than one time to ToolBar.
4655
4656         * ThemeNice.cs: Same as above. 
4657
4658 2007-03-15  Andreia Gaita  <avidigal@novell.com>
4659
4660         * XplatUIX11.cs: Fire extra MouseMove events right after
4661         MouseDown and MouseUp, emulating win32's <censored> behaviour
4662         for apps that rely on it.
4663
4664 2007-03-15  Jackson Harper  <jackson@ximian.com>
4665
4666         * TextControl.cs:
4667         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
4668         it is drawn on the controls client window and there is no NC
4669         area.
4670         - Set the background color to gray on 2.0 when we are readonly.
4671
4672 2007-03-15  Chris Toshok  <toshok@ximian.com>
4673
4674         [ Fixes bug #81144 ]
4675         
4676         * XplatUIX11.cs: implement VirtualScreen independently of
4677         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
4678         property.
4679
4680 2007-03-15  Chris Toshok  <toshok@ximian.com>
4681
4682         * Hwnd.cs: add an internal field for the cached_window_state.
4683
4684         * XplatUIX11.cs: cache the window state, invalidating the cache
4685         (and thus re-querying the X server) only when we see an update to
4686         the _NET_WM_STATE property.
4687
4688 2007-03-15  Chris Toshok  <toshok@ximian.com>
4689
4690         * BindingSource.cs: get a lot of the unit tests working.
4691
4692 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4693
4694         * Control.cs: Modify UpdateStyles to store distances when bounds >=
4695         0 instead of just bounds > 0.  [Fixes bug #80912]
4696
4697 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4698
4699         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
4700         and methods.
4701
4702 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
4703         
4704         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
4705         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
4706         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
4707         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
4708
4709 2007-03-15  Chris Toshok  <toshok@ximian.com>
4710
4711         [ Fixes #81101 ]
4712         
4713         * Control.cs: add Ivan's fix for 81101, with a slight modification
4714         - you can set control.Target to null.
4715
4716 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
4717
4718         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
4719         HideDropDown, use Hide instead to prevent an NRE.
4720         [Fixes bug #81147]
4721
4722 2007-03-14  Jackson Harper  <jackson@ximian.com>
4723
4724         * TextBoxBase.cs: Mess with the creation stuff a little. We need
4725         to calculate the document before the handle is created, in some
4726         cases. (Actually just one case).
4727
4728 2007-03-14  Jackson Harper  <jackson@ximian.com>
4729
4730         * TextBoxBase.cs: Need to display the caret after letting the base
4731         wndproc handle the focus methods, because the caret display
4732         methods check the focus state.
4733         - Try to display the caret after updating it's position with SelectWord.
4734         - Don't need to do an immediate update on this recalc, since there
4735         will be an invalidate anyways.
4736
4737 2007-03-14  Jackson Harper  <jackson@ximian.com>
4738
4739         * TreeView.cs: Some workarounds so that we can match event order a
4740         little better.
4741
4742 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
4743
4744         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
4745         #80803. Avoid NullReferenceException when Control does not have
4746         parent. Fixed different blinkstyle issues. Only subscribe to Tick
4747         event a single time. Only draw error icon when control is created and
4748         visible. Fixes failing unit tests.
4749
4750 2007-03-14  Andreia Gaita  <avidigal@novell.com>
4751
4752         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
4753         Selecting events. Fire Leave and Enter events when changing tabs.
4754
4755 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
4756
4757         * TreeView.cs: Add TreeViewNodeSorter.
4758         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
4759
4760 2007-03-14  Chris Toshok  <toshok@ximian.com>
4761
4762         * Form.cs: go ahead and remove the RecreateHandles that jpobst
4763         removed earlier and I had him add back it.  It turns out metacity
4764         *does* in fact handle the MOTIF_WM_HINTS property changing, it
4765         just doesn't redraw the window titlebar until you resize the
4766         window.  This also means we aren't recreating the entire window
4767         hierarchy on X when you change this property.  And it looks better
4768         on windows, too.
4769
4770 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4771
4772         * ListViewItem.cs:
4773         * ListView.cs: Collecting selection information
4774         is now done in SelectedIndexCollection rather than in
4775         SelectedListViewItemCollection. This is done so we can
4776         have the selection information code in one single place
4777         (virtual mode selection information entirely depends on
4778         SelectedIndexCollection).
4779
4780 2007-03-13  Miguel de Icaza  <miguel@novell.com>
4781
4782         * ErrorProvider.cs: Add stubs for ISupportInitialize
4783
4784 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4785
4786         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
4787         in the right order with the right values, from the Checked property, 
4788         just as MS does (instead of triggering them from ListView).
4789
4790         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
4791
4792 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4793
4794         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
4795         the correct handler in OnItemCheck method (ItemCheckEventHandler 
4796         instead of EventHandler). This used to throw an InvalidCastException.
4797
4798 2007-03-13  Jackson Harper  <jackson@ximian.com>
4799
4800         * TextBoxBase.cs: Calculate the document before the handle is
4801         created, so there isn't an extra invalidate called.
4802
4803 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
4804
4805         * Form.cs: Don't set owner in ShowDialog until we are sure
4806         that we aren't going to throw an exception.  [Fixes bug #80773]
4807
4808 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
4809
4810         * TreeView.cs: Make it compile.
4811
4812 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4813
4814         * Control.cs: Another place we don't call SizeFromClientSize.
4815         * Form.cs: Another place we don't call SizeFromClientSize.
4816         [Fixes bug #81125]
4817
4818 2007-03-12  Jackson Harper  <jackson@ximian.com>
4819
4820         * TreeView.cs: Basically emulating some strangness here with
4821         exanding nodes and setting node positions when windows aren't
4822         created.
4823         - Also attempting to walk the node tree less than previously, and
4824         just use visible order calculations for determining offsets.
4825         - oops made scrolling backwards.
4826         * TreeNode.cs: We need to start nodes with a zero visible order,
4827         because the order calcs are based on the first nodes order.
4828
4829 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4830
4831         * Form.cs: Don't exit the program if RecreateHandle is called on
4832         the main form.
4833
4834 2007-03-12  Chris Toshok  <toshok@ximian.com>
4835
4836         * XEventQueue.cs: remove the use of PostQuitState.
4837
4838         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
4839         WM_QUIT message in GetMessage, return false (and if we're in the
4840         nested WaitForHwndMessage, repost the WM_QUIT message).
4841
4842 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4843
4844         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
4845         or the MaximizeBox properties.  [Part of bug #80640]
4846
4847 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
4848
4849         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
4850         no links.
4851
4852 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4853
4854         * ToolStripItem.cs: Fix some tests I broke by checking Visible
4855         instead of visible.
4856
4857 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
4858
4859         * FileDialog.cs: Use text of File name combobox to determine what
4860         files the user selected. Added tokenizer to parse the file names.
4861         Fixes bug #81123.
4862
4863 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4864
4865         * Control.cs: We can't call SizeFromClientSize in the constructor,
4866         but we still need to do the same work, so make an internal version.
4867         [Fixes bug #80621]
4868
4869 2007-03-12  Jackson Harper  <jackson@ximian.com>
4870
4871         * TreeView.cs:
4872         * TreeNode.cs:
4873         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
4874         IsExpanded.
4875
4876 2007-03-12  Jackson Harper  <jackson@ximian.com>
4877
4878         * TextBoxBase.cs: Now that the handles are being created a little
4879         later, we need to make sure that the document is recalculated when
4880         the handle is created.
4881
4882 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
4883
4884         * Theme.cs: GetLinkFont abstract method added.
4885         
4886         * LinkLabel.cs: 
4887         - Remove CalcTrimRectangle, no longer needed.
4888         - Factor also remove, position issues must be fixed in libgdiplus.
4889         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
4890         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
4891         care about font used to draw links.
4892         - Set TabStop to true when control is "Selectable", control is selectable
4893         when have one or more links. Fixes #80501 (test case is also added).
4894         - Set the LinkArea values after links change, LinkArea values must be
4895         based in first link position and size, a test case was created.
4896         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
4897         the attribute must be true LinkArea.Length > 0. The same was applied to
4898         TabStop.
4899         
4900         * ThemeWin32Classic.cs: 
4901         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
4902         in draw method.
4903         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
4904         color change.
4905         - Draw focus rectangle for every parts focused, including parts that 
4906         is on another line, its because regions returns various rectangles
4907         and not only one. Needed to mimic W32 look.
4908         - Uses Graphics.Clip to delimite region painted, it mean that now 
4909         complete text is passed to DrawString, with this we solve layout
4910         issues without create another text renderer.
4911         - Uses Region.Intersect to fix some flickers problems, now only needed
4912         parts will redrawed.
4913         - This changes fixes #79614 and some other unreported issues, on Linux 
4914         some layout problems still remain, the problem is under 
4915         MeasureCharacterRanges but it is an libgdiplus bug.
4916
4917 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
4918
4919         * TextBox.cs: Set for foreground color.
4920         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
4921         this is already done in Control.
4922
4923 2007-03-10  Jackson Harper  <jackson@ximian.com>
4924
4925         * TextBox.cs: Set the background color, but reset the
4926         backcolor_set flag which is just for the user setting the
4927         background color.
4928
4929 2007-03-09  Chris Toshok  <toshok@ximian.com>
4930
4931         * Control.cs: really remove the call to XplatUI.SetVisible from
4932         CreateHandle(), like I said I did when I merged the branch.
4933
4934         * BindingSource.cs: implement some more of this stuff.
4935
4936 2007-03-09  Jackson Harper  <jackson@ximian.com>
4937
4938         * TextBox.cs: Don't explicitly set our background colors.
4939         * TextControl.cs:
4940         * TextBoxBase.cs: Draw readonly text.
4941         - Need to invalidate when backcolor or readonly are changed.
4942         
4943 2007-03-09  Jackson Harper  <jackson@ximian.com>
4944
4945         * TextBoxBase.cs: Don't set the forecolor until the handle is
4946         created.
4947         - Do not raise OnPaint, and removed some old debug code.
4948
4949 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
4950
4951         * ScrollableControl.cs: Fix mouse wheel scrolling.
4952
4953 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
4954
4955         * Control.cs: Wire up MouseDoubleClick event.
4956
4957 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
4958
4959         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
4960         top or bottom.
4961         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
4962         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
4963         item is added.  This logic was moved to ToolStrip.OnItemAdded.
4964         [Fixes bug #81090]
4965
4966 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4967
4968         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
4969
4970 2007-03-08  Jackson Harper  <jackson@ximian.com>
4971
4972         * TreeView.cs: Show the correct image for selected node (this used
4973         to work, not sure how the code got deleted). Also implemented 2.0 feature
4974         SelectedImageKey.
4975
4976 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4977
4978         * ListView.cs:
4979         * ListViewItem.cs: Cache index in items when retrieving them
4980         in VirtualMode.
4981
4982 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
4983
4984         * ToolStripItem.cs: Don't return the explicit_size if we are using 
4985         AutoSize.  Fixes invalidation issue when user has explicitly set a
4986         size and has AutoSize = true.
4987
4988 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
4989
4990         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
4991
4992 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
4993
4994         * DataGridView.cs: Remove event handler from DataView when a
4995         DataTable is used as DataSource.
4996
4997 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
4998
4999         * Control.cs: Create internal setter for client_size to allow it to be
5000         set without triggering resizing code.
5001         * Form.cs: Calculate client_size in constructor, only change client_size
5002         in FormBorderStyle property if Handle has been created.
5003         [Fixes #80574, #80791]
5004
5005 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
5006
5007         * SystemInformation.cs: Add TerminalServerSession.
5008
5009 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5010
5011         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
5012         TreeView code.
5013
5014 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5015
5016         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
5017         Handle before we were supposed to.  Now checks ActivateOnShow property
5018         in Control.
5019         * Control.cs: Add internal ActivateOnShow property.
5020         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
5021         for ActivateOnShow.
5022         * Hwnd.cs Remove no longer needed no_activate field.
5023
5024 2007-03-07  Jackson Harper  <jackson@ximian.com>
5025
5026         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
5027         2.0 properties
5028         * DrawTreeNodeEventHandler.cs: Add
5029         * DrawTreeNodeEventArgs.cs: Correct default value.
5030         
5031 2007-03-07  Chris Toshok  <toshok@ximian.com>
5032
5033         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
5034         to be called before NativeWindow.WndProc.  Put the HwndCreating
5035         magic there to hook up our Hwnd's to handles.
5036
5037 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
5038
5039         * DataGridView.cs: Comment out debug code.
5040
5041 2007-03-07  Chris Toshok  <toshok@ximian.com>
5042
5043         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
5044         to make the rest of the world happy]
5045
5046         * Control.cs (CreateHandle): there's no need to call
5047         XplatUI.SetVisible here, it's effectively done by
5048         XplatUI.CreateWindow on X now, and always was on windows.
5049
5050         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
5051         shortcircuit out of the loop if we have a message loop running on
5052         this thread.
5053
5054         [Changelog from merge]
5055
5056         2007-03-05  Chris Toshok  <toshok@ximian.com>
5057
5058                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
5059                 causes handle creation.
5060
5061         2007-02-28  Chris Toshok  <toshok@ximian.com>
5062
5063                 * ApplicationContext.cs: Add a flag to make sure we only raise the
5064                 ThreadExit event once (ExitThreadCore can be indirectly called
5065                 from a few places.)  I don't like the additional flag, but it
5066                 makes the event ordering/count correct.
5067
5068                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
5069                 without locking the collection.  An enumerator doesn't give us any
5070                 protection from modification anyway.  Lock the thread hash and
5071                 replace the complicated enumerator loop with a foreach.
5072                 (Application.CloseForms): make internal so it can be called from
5073                 ApplicationContext.  This should probably be moved to MWFThread.
5074                 (Application.ExitThread): don't call MWFThread.Current.Exit()
5075                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
5076                 when the runloop exits (in response to WM_QUIT.)
5077                 (Application.RunLoop): add a comment (and check) for
5078                 context.MainForm being null after setting context.MainForm.Visible
5079                 = true.  This is because you're perfectly free to dispose of a
5080                 form in VisibilityChanged.  Chalk this up to another case where we
5081                 need to synchronously generate WM_ACTIVATE from Control.Show.
5082                 Also, add handling for WM_QUIT here so we'll exit the loop.
5083                 
5084                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
5085                 fact that we don't wait if we're only unmapping the whole_window
5086                 makes me a bit nervous, but it doesn't seem to cause any problems
5087                 yet.
5088
5089                 also, add a comment about the stupid, broken and wrong resetting
5090                 of PostQuitState to false in GetMessage().
5091
5092                 In PostQuitMessage, we need to add a WM_QUIT message to the
5093                 thread's queue.  We use the FosterParent to get the right
5094                 handle/hwnd/queue.
5095
5096                 Lastly, in SetVisible, we need to unmap both windows, since the
5097                 waiting only happens when we're unmapping the client window.  So
5098                 now, the *only* time we unmap just the whole_window is in the hack
5099                 for resizing a control to 0,0.
5100                 
5101         2007-02-21  Chris Toshok  <toshok@ximian.com>
5102
5103                 * Application.cs (CloseForms): rewrite this so that we don't
5104                 modify the list while we're traversing it.
5105
5106         2007-02-20  Chris Toshok  <toshok@ximian.com>
5107
5108                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
5109                 of OnHandleCreated.
5110                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
5111                 handle is created.  otherwise we'll create it here.
5112                 (VerticalScrollEvent): same here.
5113
5114                 * Application.cs (CloseForms): call Form.Dispose, don't post
5115                 WM_CLOSE_INTERNAL.
5116
5117                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
5118                 here. Application should Dispose() of the Form's.
5119
5120                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
5121                 WM_DESTROY as well.
5122                 (MapWindow,UnmapWindow): only actually do the waiting for
5123                 SHOWWINDOW if the control we're dealing with is a Form.
5124                 (CreateWindow): if the control isn't a form, SendMessage
5125                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
5126
5127                 * Control.cs (SetVisibleCore): always use is_visible here, not
5128                 value.  If we use value, we can end up re-setting something
5129                 visible if, for instance, you do Control.Hide() in a delegate
5130                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
5131
5132         2007-02-20  Chris Toshok  <toshok@ximian.com>
5133
5134                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
5135                 the message we need.  PeekMessage returning false should not be a
5136                 condition under which we exit the loop.
5137
5138         2007-02-15  Chris Toshok  <toshok@ximian.com>
5139
5140                 * Control.cs (Refresh): only refresh if we've got a handle and are
5141                 visible.
5142                 (CreateAccessibilityInstance): CreateControl() here.
5143                 (UpdateChildrenZOrder): complicate the code loop even more by
5144                 taking into account controls that haven't had their handle
5145                 created, and those that aren't visible.  But on the flip side,
5146                 simplify the code by splitting it into two loops.  one which
5147                 builds up the list of child controls we're interested in, and the
5148                 other that sets the z order of those children.
5149
5150         2007-02-14  Chris Toshok  <toshok@ximian.com>
5151
5152                 * Control.cs: Control.AccessibilityObject causes the control to be
5153                 created, not just the handle.
5154
5155         2007-02-14  Chris Toshok  <toshok@ximian.com>
5156
5157                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
5158                 problem on X where a window might have its handle created (and be
5159                 visible) while the window is unmapped.  calling XConfigureWindow
5160                 on an unmapped window is bad, and generates X errors.
5161
5162         2007-02-13  Chris Toshok  <toshok@ximian.com>
5163
5164                 * Control.cs (CreateHandle): don't loop over our children setting
5165                 their parent here.  do it when in WndProc when we're shown.
5166                 (UpdateChildrenZOrder): make this internal so we can call it from
5167                 ScrollableControl.
5168                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
5169                 creating its handle.  Also, remove the calls to PerformLayout from
5170                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
5171                 OnVisibleChanged only seems to be called directly here for the
5172                 toplevel control.  It's propagated down the window hierarchy by
5173                 calls to child.OnParentVisibleChanged.
5174                 (OnVisibleChanged): don't do layout here - it's done (oddly
5175                 enough, according to a glance at stack traces on ms.net..) in
5176                 ScrollableControl.
5177                 
5178                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
5179                 z order of our children before calling PerformLayout.
5180
5181         2007-02-12  Chris Toshok  <toshok@ximian.com>
5182
5183                 [big change, fixes #80020]
5184                 
5185                 * AccessibleObject.cs: we need to make owner internal again to fix
5186                 some of ControlAccessibleObject.
5187
5188                 * Control.cs: lots of changes here.  add support for WM_CREATE,
5189                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
5190                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
5191                 we create child controls.  leave the MonoTODO's for the
5192                 accessibility calls, but fix the exceptions so the tests pass.
5193
5194                 Add the InvalidOperationExceptions to Invoke methods, and remove a
5195                 couple of InvokeInternal methods we aren't using.
5196                 
5197                 Also, add a couple of CreateHandle calls in places where we know
5198                 the handles are being created but our code doesn't reference
5199                 .Handle.
5200
5201                 Make SetVisibleCore call OnVisibleChange if the handle isn't
5202                 created.  If the handle is created, we rely on XplatUI.SetVisible
5203                 generating the event synchronously.
5204                 
5205                 Lastly, make sure we don't use this.Handle inside CreateHandle,
5206                 because we can call back into client (and that code can dispose of
5207                 the control).
5208
5209                 * XplatUIStructs.cs: misc/cleanup.
5210
5211                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
5212                 although we don't populate the wParam properly.
5213                 (CreateWindow): generate WM_CREATE.
5214                 (MapWindow,UnmapWindow): make these calls synchronous, at great
5215                 performance expense (particularly in the unmap case), to match
5216                 win32 behavior.
5217
5218                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
5219                 to call it.
5220                 (set_MdiParent): don't recreate the handle unless it's been
5221                 created already.
5222                 
5223                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
5224                 it's created.
5225
5226                 * NativeWindow.cs: this is probably the weirdest part of the
5227                 patch.  We need a way to link up the window being created to the
5228                 WM_CREATE message.  Since we can only be creating one window at a
5229                 time on a given thread, we keep track of a per-thread reference so
5230                 we can dispatch it properly.  We also need to keep track of the
5231                 Hwnd currently being created so that the win32 backend doesn't
5232                 have problems.
5233                 
5234                 * XplatUIWin32.cs: a similar change to the one we made in
5235                 NativeWindow.cs.
5236
5237 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5238
5239         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
5240         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
5241         to draw the menu shortcut string.
5242
5243 2007-03-07  Jackson Harper  <jackson@ximian.com>
5244
5245         * TreeNode.cs: Add the 2.0 collapse method.
5246
5247 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5248
5249         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
5250
5251 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5252
5253         * DataGridView.cs: Change DataSource will clear column and row
5254         lists. Call Invalidate() to reflect DataSource change.
5255
5256 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5257
5258         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
5259         and a new row is added to it.
5260
5261 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5262
5263         * DataGridView.cs: Add columns when DataSource is en empty list but
5264         is a System.Data.DataView (from a System.Data.DataTable).
5265
5266 2007-03-06  Andreia Gaita  <avidigal@novell.com>
5267
5268         * Label.cs: Implement AutoEllipsis (2.0)
5269
5270 2007-03-06  Jackson Harper  <jackson@ximian.com>
5271
5272         * TreeView.cs: Implement 2.0 TopNode setter property.
5273         - Use a local var instead of the skipped_nodes field for computing
5274         how many nodes to skip.  Otherwise we won't scroll because the
5275         valuechanged handler checks if skipped_nodes is equal to the new
5276         value.
5277         - Implement 2.0 Sort method.
5278         - Add useless 2.0 DoubleBuffer property
5279         - Implement 2.0 LineColors property.  Lets you change the color of
5280         the lines in the tree. Terribly useful for creating non cohesive
5281         desktops.
5282         - Implement 2.0 image key feature.
5283
5284 2007-03-06  Jackson Harper  <jackson@ximian.com>
5285
5286         * TreeView.cs: We can't get the bounds of the nodes before raising
5287         the AfterSelect event, because that event could change the node's
5288         bounds (scrolling, font change, etc).
5289
5290 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5291
5292         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
5293         * Form.cs: Don't recreate handle when creating FormWindowManager, just
5294           update window styles. In CreateParams us VisibleInternal instead of
5295           VIsible to get the actual visible flag set for this form.
5296         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
5297           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
5298           handle the case when the form is already maximized, in which case
5299           it should be restored. Fixes #81043.
5300
5301 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5302
5303         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
5304
5305 2007-03-05  Jackson Harper  <jackson@ximian.com>
5306
5307         * TreeViewHitTestInfo.cs: implement.
5308
5309 2007-03-05  Jackson Harper  <jackson@ximian.com>
5310
5311         * InternalWindowManager.cs: class status fix.
5312
5313 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5314
5315         * InternalWindowManager.cs: All windows that have a parent
5316         are confined to their parent when they're being moved.
5317         Fixes #80822.
5318
5319 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
5320
5321         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
5322         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
5323
5324 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5325
5326         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
5327           buttons invisible before deciding which ones should be visible
5328           (fixes minimize/maximize buttons showing up in toolwindows). Remove
5329           an unused variable.
5330         * InternalWindowManager.cs: Remove warning.
5331
5332 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5333
5334         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
5335         to throw an InvalidOperationException is virtual mode is being used.
5336
5337 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5338
5339         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
5340         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
5341         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
5342         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
5343         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
5344         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
5345
5346 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5347
5348         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
5349           driver.KeyboardDelay from XplatUI.KeyboardDelay 
5350         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
5351           (patch by Sergey Volk)
5352
5353 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5354
5355         * ToolWindowManager.cs: Added, contains logic for
5356           tool windows.
5357         * CreateParams.cs: Add a few helper methods and an
5358           internal variable to know which control the CreateParams belongs
5359           to.
5360         * Control.cs: Call Form.ChangingParent when the
5361           parent is about to be changed.
5362         * XplatUIX11.cs: DeriveStyles (): Set
5363           caption_height for all windows that have captions and are children.
5364           Update to use ToolWindowManager instead of InternalWindowManager
5365           for ToolWindows.
5366         * XplatUIWin32.cs: Set fake window styles for all
5367           windows that have window managers.
5368         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
5369           now duplicated for mdi windows when they are
5370           maximized, first for the buttons the window itself has, then for
5371           the buttons that appear in the menu bar. Makes things a little
5372           easier). Updated UpdateWindowDecorations, SetWindowState and the
5373           mouse eventhandlers accordingly.
5374         * Form.cs: Add ChangingParent (), contains the
5375           logic of what should happen when the parent changes. In MdiParent
5376           don't set things that ChangingParent () is doing. When handling
5377           WM_CLOSE, we can close the form if there are any other modal forms
5378           and the current form is a descendent of the modal form.
5379         * InternalWindowManager.cs: A lot of refactoring,
5380           the title buttons are now extracted to a separate container class
5381           that takes care of all button code (clicks, tooltips, etc). Moved
5382           Iconic|Maximized|Normal Bounds properties to this class from
5383           MdiWindowManager, so that the window state logic can succeed for
5384           other than mdi wm's. Implemented general window state change logic.
5385           Moved CreateButtons to ThemeWin32Classic, since the theme might
5386           override which buttons are available when as well as the exact
5387           location.
5388         * FormWindowManager.cs: Added, contains logic for
5389           normal forms.
5390         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
5391           which buttons go where (and if they are at all visible). 
5392           Removed special handling of maximized windows, since they aren't special. 
5393           In DrawManagedWindowDecorations don't try to draw the text if it is
5394           empty.
5395         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
5396           use whatever the wm gives us.
5397
5398 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5399
5400         * ButtonBase.cs: Add 2.0 properties.
5401         * Button.cs: Override Draw for 2.0.
5402         * Control.cs: Add Entered and Selected properties.
5403         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
5404         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
5405         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
5406         buttons.
5407         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
5408
5409 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5410
5411         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
5412
5413 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5414
5415         * XplatUIWin32.cs: Register a new class with Windows each time we get
5416         a new ClassStyle.  [Fixes bugs #79432, #80817]
5417         * Controls.cs: Set the correct ClassStyle in CreateParams.
5418         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
5419
5420 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
5421
5422         * ListView.cs: Add fireEvent argument to ReorderColumn since the
5423         ColumnReordered event must not be signaled when modifying DisplayIndex
5424         of a ColumnHeader. Added internal ReorderColumns method which takes
5425         care of drawing, and updating the internal DisplayIndex of the
5426         ColumnHeader. Added AddColumn method which is invoked from
5427         ColumnHeaderCollection when adding or inserting columns, and which
5428         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
5429         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
5430         Recalculated dispay indices after removing a ColumnHeader.
5431         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
5432         match MS. Allows last display index to be returned after ListView
5433         is disposed. Update actual location of ColumnHeader when DisplayIndex
5434         is modified.
5435
5436 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
5437
5438         * LinkLabel.cs: Improve CalcTrimRectangle.
5439         
5440         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
5441
5442 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5443
5444         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
5445         get rectangle as a result value.
5446
5447 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5448
5449         * LinkLabel.cs: Theres some diferences between rectangle return from 
5450         MeasureCharacterRanges and the area used for DrawString to fix this 
5451         CalcMeasurementFactor method was created, it calcules the diferences
5452         to be use later to adjust rectangle in draw operations. Fixes #80473.
5453         
5454         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
5455         to adjust draw rectangle.
5456
5457 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5458
5459         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
5460         text and some other changes to reduce and optimize source code.
5461
5462 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5463
5464         * RadioButton.cs: Implement 2.0 event.
5465         * RelatedImageListAttribute.cs: Implement new class.
5466
5467 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5468
5469         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
5470
5471 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5472
5473         * CheckBox.cs: Implement 2.0 functionality.
5474
5475 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5476
5477         * ListView.cs: Refactor Add and AddRange methods of
5478         ListViewItemCollection, to not update the ListView
5479         everytime an item is added in AddRange. Also move the update
5480         code to a new CollectionChanged method, and call it
5481         from other methods that need it as well (this should also fix some
5482         bugs when Sorting is used).
5483
5484 2007-02-27  Jackson Harper  <jackson@ximian.com>
5485
5486         * TextControl.cs: Try to never let the caret stay in a non-text
5487         tag.
5488         * TextBoxBase.cs: Update the caret.
5489
5490 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
5491
5492         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
5493         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
5494         delete POINT structure, duplicate of one in XplatUIStructs.
5495         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
5496
5497 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
5498
5499         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
5500         edit box since otherwise the Label would immediately be set (even if
5501         the user did not modify the label). In OnKeyDown set Handled to true
5502         if Return or Escape was pressed. In ColumnHeaderCollection unlink
5503         columns that are to be removed. In ListViewItemCollection unlink items
5504         that are to be removed.
5505
5506 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
5507
5508         * TextRenderer.cs: If we set a GDI clip region, we need to clear
5509         it when we are done.  [Fixes bug #80949]
5510
5511 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5512
5513         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
5514
5515 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5516
5517         * ListView.cs: I forgot to commit the changes for ListView 
5518         in my previous patch.
5519
5520 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5521
5522         * Clipboard.cs: Partially implement an overload of SetDataObject.
5523         * Form.cs: Implement ShowWithoutActivation.
5524         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
5525
5526 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5527
5528         This is a first set of changes to make the Virtual mode works,
5529         by avoiding the retrieval of ListViewItem instances until
5530         draw time.
5531
5532         * ListView.cs: Store item position in the ListView instead of the
5533         ListViewItem, this way we don't request the Bounds property of
5534         ListViewItem inside the ListView calculations, as well as cache the item
5535         size in item_size field. Store indexes instead of ListViewItem
5536         instances in the matrix used by icon view. Add a ItemMatrixLocation
5537         struct to hold the row and col info of the matrix info.
5538
5539         * ListViewItem.cs: Don't store the location anymore, and only cache
5540         the rectangles for GetBounds. Use the ListView.GetItemLocation
5541         method to retrieve the actual location.
5542
5543 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5544
5545         * TextRenderer.cs: Add clipping support, thanks to George.
5546         [Fixes bug #80949]
5547
5548 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5549
5550         * ListViewItem.cs: Cancel label edit when item is removed from 
5551         ListView.
5552         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
5553         event before the edit textbox is displayed.  Added CancelEdit method
5554         which is used end to editing while ignoring the value set by the
5555         user. In EndEdit, set focus to ListView to avoid losing focus to
5556         other controls. In ListViewItemCollection.Clear, cancel editing of
5557         any of the items.  In Remove, cancel editing of item being removed.
5558         Avoid udplicate code by modifing RemoveAt to invoke Remove.
5559
5560 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5561
5562         * FileDialog.cs: Update FSEntry when move is successful. Fixes
5563         bug #80948.  
5564
5565 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5566
5567         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
5568         compatible with non X11 systems. Fixes #80901.
5569
5570 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5571
5572         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
5573         whether the item should be unselected and reselect. We do no want this
5574         when we're starting to edit the label. Do not fire the 
5575         SelectedIndexChanged event from ListView when its already been fired
5576         by modifying ListViewItem.Selected. Fixes bug #80943.
5577
5578 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5579
5580         * TextRenderer.cs: Previos commit logic was backwards.
5581
5582 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5583
5584         * TextRenderer.cs: Don't add padding on MeasureText if we were
5585         sent the NoPadding flag.
5586
5587 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5588
5589         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
5590         after DrawButton. To prevent image overlaps button borders SetClip and 
5591         ResetClip added before and after draw image. Fixes #79129.
5592
5593 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5594
5595         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
5596         window size, it fix problem when you run under win32 that theres
5597         Size diferent than ClientSize. Also fix controls size and positions
5598         to mimic Win32. Fixes #80837.
5599
5600 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
5601
5602         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
5603         menu area to fix some problems for non X11 systems. Fixes #80613.
5604
5605 2007-02-22  Jackson Harper  <jackson@ximian.com>
5606
5607         * TreeNode.cs: When a node is expanded, set its is_expanded flag
5608         even if it doesn't have any children.
5609
5610 2007-02-22  Jackson Harper  <jackson@ximian.com>
5611
5612         * TreeView.cs: Calculate the top node 'on the fly', this
5613         eliminates issues where you need to click on the tree before
5614         scrolling it to get the top node computed correctly.
5615         * TreeNodeCollection.cs: We don't need to mess with the top node
5616         anymore.
5617
5618 2007-02-22  Jackson Harper  <jackson@ximian.com>
5619
5620         * DataGridViewRow.cs: Fix typo so height can actually be set.
5621         Patch by Peter Grimm.
5622
5623 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5624
5625         * FileDialog.cs: Fixed support for renaming files and directories.
5626         * ListView.cs: Do not lose focus when edit is canceled. Process
5627         Escape as regular key (to prevent closing of dialogs).
5628
5629 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5630
5631         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
5632         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
5633
5634 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5635
5636         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
5637         did not modify label.
5638         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
5639         modified the text. Reset Label when user presses Escape in edit mode.
5640         Move focus to ListView after having cancelled or finished editing the
5641         label.
5642
5643 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
5644
5645         * ComboBox.cs: Removed unnecessary initializations. Marked items field
5646         private. Clear textbox when Text is set to null and SelectedIndex is
5647         already -1.
5648         * FileDialog.cs: Removed unnecessary initializations. Removed 
5649         workarounds for ComboBox bugs that are now fixed. Modified
5650         DefaultExt, InitialDirectory and Title property to change null to
5651         zero-length string in getters. Avoid directly accessing fields.
5652
5653 2007-02-20  Jackson Harper  <jackson@ximian.com>
5654
5655         * TextControl.cs: Remove RecalAlignments call, that was some
5656         debugging leftovers.
5657         - Don't use the line indent when we shouldn't.
5658         * RichTextBox.cs: Add support for paragraph left indents.
5659
5660 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5661
5662         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
5663         Seems like the class status pages doesn't catch params differences.
5664
5665 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5666
5667         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
5668
5669 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5670
5671         * ComboBox.cs: Setting Text should have no effect if item text of
5672         selected item exactly matches value. First lookup text using
5673         case-sensitive comparison, and fallback to case-insensitive comparison.
5674         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
5675         allow startIndex to be last index. Changed ArgumentOutOfRangeException
5676         paramname to match MS. Restart from first item if string is not found
5677         after startIndex. Fixed paramname of ArgumentNullException that is
5678         thrown for null value in ObjectCollection.Contains.
5679
5680 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5681
5682         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
5683
5684 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5685
5686         * ListControl.cs: In SelectedValue use value.Equals to compare for
5687         equality instead of ==, otherwise it will fail for strings.
5688         Fixes #80794.
5689
5690 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5691         
5692         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
5693         since the caret won't show up unless ShowSelection is true. 
5694         Fixes #80795.
5695
5696 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5697
5698         * Application.cs: When disabling all forms but the main form, do not
5699           disable any descendants of the main form (such as mdi children or
5700           other parented forms). Fixes #80822 on Windows.
5701         * Form.cs: If we have a parent, set the WS_CHILD style.
5702         * Control.cs: Update the window styles if the control whose parent has
5703           changed is a form (the WS_CHILD style has to be switched).
5704
5705 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5706
5707         * XplatUIStructs.cs: MsgUIState structure added.
5708
5709 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5710
5711         * FileDialog.cs: Removed need for separate fileName field. On 2.0
5712         profile, do not check filename(s) for illegal character if filename(s)
5713         were set non-interactively but always check on 1.0 profile. Fixed NRE
5714          in DefaultExt and only strip off first leading dot. Improve exception
5715         message when invalid Filter is set. Do not ignore InitialDirectory if
5716         it does no exist. Store specified Title, and if empty use default
5717         title (depending on type of dialog). Added an internal DialogTitle 
5718         property for retrieving dialog title. Fixed logic of displayed dir to
5719         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
5720         string as its buggy.
5721         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
5722         FileName is a zero-length string (it can never be null). Override 
5723         DialogTitle property to set default title of dialog box.
5724         * SaveFileDialog.cs: Override DialogTitle property to set default
5725         title of dialog box.
5726
5727 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5728
5729         * FileDialog.cs: Modify default text of filename and filetype labels
5730         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
5731         after we've updated the SelectedIndex. Fixes part of bug #80887.
5732         * SaveFileDialog.cs: Set text of filetype label.
5733
5734 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5735
5736         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
5737         label field. Needed by latest Jackson's fixes for ListView.
5738
5739 2007-02-16  Andreia Gaita  <avidigal@novell.com>
5740
5741         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
5742         print preview images.
5743
5744 2007-02-16  Jackson Harper  <jackson@ximian.com>
5745
5746         * ListView.cs: Make AfterLabelEdit work correctly.
5747         * FileDialog.cs: After changing the name of the folder, we have to
5748         make sure that it is created, or that we pop up an error because
5749         it already exists.
5750
5751 2007-02-16  Jackson Harper  <jackson@ximian.com>
5752
5753         * X11Dnd.cs: Implement aliases on mime handlers, so things like
5754         System.String are mapped to text.
5755         - Handle dataobjects, getting all the possible formats out of them
5756         - We dont need the drag event args before we give feedback. This
5757         allows feedback cursors to be immediate before selections have
5758         been converted.
5759
5760 2007-02-16  Jackson Harper  <jackson@ximian.com>
5761
5762         * TextBoxBase.cs: Modified the method for inserting images to
5763         taking a line and position instead of tag and position.
5764         * RichTextBox.cs: Handle PngBlip data by inserting the png image
5765         into the RTF file.
5766         * TextControl.cs: Allow images to be inserted as the first tag of
5767         a line.
5768         - Fix some off by one issues when we assume the first tag is a
5769         text tag, not an image tag.
5770
5771 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5772
5773         * ListView.cs: Set focus to ListView when ItemControl gets a
5774         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
5775         Fixes part of #80467.
5776
5777 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5778
5779         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
5780           validate Text input (if null or empty string reset Value to default
5781           value). Fixes #80830.
5782
5783 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5784
5785         * ListView.cs: Set owner as null for columns and items when
5786         Dispose is invoked. Fixes #80607.
5787
5788 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
5789
5790         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
5791         showing DropDowns, don't show a Grip when doing Flow layout.
5792         [This fixes the toolbox in PDN 2.72.]
5793         * ToolStripItem.cs: Add Anchor property and some internal properties to
5794         reduces needed changes to FlowLayout.
5795         * ToolStripOverflow.cs: Remove unused variable.
5796         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
5797         use it in the layout calculations.
5798
5799 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5800
5801         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
5802         reported in #79640.
5803         
5804         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
5805         size calculation.
5806
5807 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5808
5809         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
5810         MeasureString format, it can make button very large in some cases, it is
5811         strange but is what win32 do.
5812
5813 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5814
5815         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
5816         size calculation.
5817
5818         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
5819         rendering, the value is based on MenuAccessKeysUnderlined.
5820
5821 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5822
5823         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
5824         for most themes.
5825         
5826         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
5827         
5828         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
5829         and use MenuAccessKeysUnderlined instead.
5830
5831 2007-02-13  Andreia Gaita  <avidigal@novell.com>
5832
5833         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
5834         A selected control would not get a Focus call if:
5835                 - the default active control of the container is the same as
5836                   the one that was selected
5837                 - we are switching from one container to another
5838         Under these conditions, the container being selected already has
5839         an active_control, which is the same as the one being activated, 
5840         so set_ActiveControl would always return and not send the Focus
5841         call. Fix to check if the currently active control of the container
5842         is actually focused.
5843
5844 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
5845
5846         * StatusStrip.cs: Implement the spring layout.
5847         * ToolStripControlHost.cs: Make sure the hosted control's visibility
5848         always matches the host.
5849         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
5850         and TextAfterImage.
5851
5852 2007-02-13  Andreia Gaita  <avidigal@novell.com>
5853
5854         * Control.cs: Code reorganization only.
5855           - Reorganize the WndProc cases so that each case has it's own handling method, 
5856           to help with the no-line-numbering stack traces.
5857           - Formatting changes (it's vstudio's fault, really :p)
5858
5859 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5860
5861         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
5862           Thread.CurrentUICulture to match DateTimePicker's (and MS)
5863           behaviour.
5864
5865 2007-02-12  Jackson Harper  <jackson@ximian.com>
5866
5867         * RichTextBox.cs:
5868         * TextBox.cs: By default we have a non multiline document
5869         - use the multiline property instead of the internal variable
5870         * TextBoxBase.cs: Treat multiline and non multiline the same in
5871         most places.
5872         - Use the documents multiline flag instead of tracking it ourself
5873         * TextControl.cs: Attempt at getting multiline to match MS
5874         behavior.  Lines now track an offset, which is either their X or Y
5875         offset depending on whether or not we are in multiline mode.
5876         - Update all the methods to understand that lines have an X value.
5877         - Fix crash in Undo::Duplicate when empty lines are deleted.
5878
5879 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
5880
5881         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
5882         code moved to properties PreferredHeight and PreferredWidth. It solve the
5883         all problems when preferred sizes must be recalculated. Fixes #80801.
5884
5885 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
5886
5887         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
5888         font height when compatible_text_rendering is false. Partially fix #80801.
5889
5890 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5891
5892         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
5893
5894 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5895
5896         * Form.cs: Improved exception messages in ShowDialog.
5897
5898 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5899
5900         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
5901         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
5902         if not set. Fixes bug #80764. Avoid accessing current_settings field
5903         directly.
5904
5905 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
5906
5907         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
5908         false.
5909
5910         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
5911         public in 2.0 and for easy maintenance and dont break compatibility it is 
5912         internal in 1.1.
5913         
5914 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5915
5916         * ToolStripItem.cs: Implement using images from ImageList.
5917
5918 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5919
5920         * DateTimePicker.cs: Change default date-formatting culture from
5921           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
5922           seems to be the way MS does it.
5923
5924 2007-02-08  Andreia Gaita  <avidigal@novell.com>
5925
5926         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
5927         (the 6 was cut off on the right side)
5928
5929 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5930
5931         * Form.cs: Tell MenuStrips to close when the form is clicked.
5932         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
5933         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
5934         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
5935         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
5936         support for Overflow, where items that do not fit are automatically
5937         reparented to a drop down menu.
5938         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
5939         Also: fixes bug #80747.
5940
5941 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5942
5943         * ComboBox.cs: Remove warning (unused code).
5944         * ScrollableControl.cs: Remove warning for 1.1 profile.
5945
5946 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5947
5948         * Form.cs: Remove a warning.
5949
5950 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5951
5952         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
5953           'g' specifier, not documented anywhere, but seems to always show up
5954           as a single space (might have something to do with the DateTime 'g'
5955           specifier, which is the era format, but since DateTimePicker can't
5956           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
5957           won't crash if the format has an unmatched quote. Now shows
5958           single-character formats correctly. Fixes #80744.
5959
5960 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5961
5962         * StatusStrip.cs: Stretch property needs to call base.Stretch,
5963         not this.Stretch to fix stack overflow. [Fixes bug #80760]
5964
5965 2007-02-07  Chris Toshok  <toshok@ximian.com>
5966
5967         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
5968         background color.  it overwrites the background image we've
5969         already painted.  Fixes #80599.
5970
5971 2007-02-07  Chris Toshok  <toshok@ximian.com>
5972
5973         * DataGrid.cs: return immediately from Edit() when there are no
5974         columns.  Fixes #80662.
5975
5976 2007-02-07  Chris Toshok  <toshok@ximian.com>
5977
5978         * MessageBox.cs: fix #80625.  don't always show the Help button in
5979         2.0.  use the displayHelpButton parameter to determine if we
5980         should show it. Also, make the internal show_help field private.
5981
5982 2007-02-07  Chris Toshok  <toshok@ximian.com>
5983
5984         * Control.cs (SetVisibleCore): check in the proposed patch for
5985         80604, and set is_visible before calling CreateControl.
5986
5987 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
5988
5989         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
5990         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
5991         on it.
5992
5993 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
5994
5995         * MenuAPI.cs: hotkey_active internal field added, it is required because
5996         we need to know when hotkeys must be draw, before this change a keystate
5997         Navigating was used but we can have menu in navigating state without
5998         hotkeys. Fixes #80694.
5999         
6000         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
6001
6002 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6003
6004         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
6005           corresponding events and methods to be internal for 1.1 profile and
6006           public for 2.0 profile (required by SizeGrip).
6007         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
6008           implicit control list). Don't set the size nor the location of the
6009           SizeGrip anymore as it's not needed.
6010         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
6011           draw directly on the captured control (fixes #80656). Removed
6012           ShowGrip (it wasn't used anywhere), redraw (always true), added
6013           GetDefaultSize and GetDefaultRectangle to calculate defaults.
6014         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
6015           be called from SizeGrip.
6016
6017 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6018
6019         * Timer.cs: Throw ArgumentException if Interval <= 0.
6020
6021 2007-02-05  Jackson Harper  <jackson@ximian.com>
6022
6023         * TreeView.cs: We need to check scrollbar visibility when window
6024         visibility is updated, because non visible trees don't ever add
6025         scrollbars.
6026         * Cursor.cs: We want the override cursor to be reset to NULL when
6027         we set current cursor to the default cursor.
6028
6029 2007-02-05  Jackson Harper  <jackson@ximian.com>
6030
6031         * TextControl.cs: Don't have crlfs when we are non multiline.
6032         - Consolidate the line position.
6033
6034 2007-02-05  Jackson Harper  <jackson@ximian.com>
6035
6036         * X11Keyboard.cs: BACK+CTRL gets a special char code.
6037
6038 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6039
6040         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
6041           handling LeaveNotify->NotifyUngrab in order to send
6042           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
6043           after calling XUngrabPointer, so we call WindowUngrabbed directly
6044           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
6045         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
6046           MouseCaptureChanged correctly. Also create handles if changing
6047           Capture (matches MS behaviour).
6048
6049 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6050
6051         * SizeGrip.cs: Make the last change 2.0 only.
6052
6053 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6054
6055         * SizeGrip.cs: If resizing and the capture is lost, revert any size
6056           changes to initial size (fixes #80597).
6057
6058 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6059
6060         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
6061
6062 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6063
6064         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
6065           background) and only allow dragging if enabled. This way the
6066           sizegrip can be used to fill the open square that otherwise would
6067           have been shown in the bottom right corner of ScrollableControl
6068           when ScrollableControl is not suppose to support sizing.
6069         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
6070           sizegrip is shown and enabled, and hook up with necessary events.
6071
6072 2007-02-01  Chris Toshok  <toshok@ximian.com>
6073
6074         * DataGridTextBoxColumn.cs: clean up the
6075         GetFormattedString/GetColumnValueAtRow combination of functions.
6076         Also fix UpdateUI, and the initial state of
6077         IsInEditOrNavigateMode.
6078
6079         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
6080         aren't supposed to scroll the textbox here, we're supposed to
6081         scroll the datagrid.
6082
6083 2007-02-01  Chris Toshok  <toshok@ximian.com>
6084
6085         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
6086         setting the position.
6087
6088 2007-02-01  Chris Toshok  <toshok@ximian.com>
6089
6090         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
6091         here, since the most recent focus fixes keep us from generating
6092         the Leave event when our textbox gets focus.
6093         (Edit): we should be passing null for the column style's
6094         instantText parameter.
6095         
6096 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
6097
6098         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
6099         raised.  Fixes menu text/icons not showing up in PDN.
6100
6101 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6102
6103         * Control.cs: Remove code in constructor that makes every
6104         control with WS_CHILD set have initial location -1, -1.
6105
6106 2007-01-31  Jackson Harper  <jackson@ximian.com>
6107
6108         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
6109         XplatUIX11.
6110         * XplatUIX11.cs: Give teh keyboard to teh dnd.
6111
6112 2007-01-31  Jackson Harper  <jackson@ximian.com>
6113
6114         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
6115         - Remove some debug code.
6116
6117 2007-01-31  Jackson Harper  <jackson@ximian.com>
6118
6119         * XplatUIX11.cs: If you set the override cursor during a grab, it
6120         should actually override the grab cursor.  This comes into play
6121         when you are setting custom cursors in a DND feedback method.
6122
6123 2007-01-31  Jackson Harper  <jackson@ximian.com>
6124
6125         * X11Dnd.cs: Add support for handling the QueryContinue and
6126         GiveFeedback events.
6127         - Cancel drag and drop actions when the escape key is clicked.
6128         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
6129         can handle the ESCAPE key.
6130         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
6131         done when dnd events are continued after the button is released.
6132         - Add a new helper method so that dnd can translate key events.
6133
6134 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
6135
6136         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
6137         make it more obvious what is happening.
6138
6139 2007-01-30  Jackson Harper  <jackson@ximian.com>
6140
6141         * XplatUIX11.cs: Don't break when handling button release in drag
6142         and drop operations. We need that BUTTONUP message to get through
6143         so capture is released.
6144         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
6145         this is handled automatically when the mouse is down.
6146
6147 2007-01-30  Jackson Harper  <jackson@ximian.com>
6148
6149         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
6150         is closed, so we need to make sure that we aren't changing the
6151         dialog result when the OK (Open or Save) button has been clicked
6152         and we are closing the window ourselves.  Note we don't need to
6153         worry about the cache being written in this case, because it was
6154         already done in the previous FilOk call.
6155
6156 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6157         
6158         * DateTimePicker.cs: Remove a warning.
6159         * ComboBox.cs: Remove a couple of warnings.
6160
6161 2007-01-29  Chris Toshok  <toshok@ximian.com>
6162
6163         * XplatUIX11.cs: don't crash, and remove the icon if the user has
6164         set one, if SetIcon is passed a null icon.
6165
6166 2007-01-29  Andreia Gaita  <avidigal@novell.com>
6167
6168         * TextBox.cs: Redraw when the password characters changes
6169         * TextControl.cs: Check if textbox has a password char and draw 
6170         a line of password chars instead of the text in the line. LineTag gets 
6171         an extra Draw() method which allows document.Draw to override the text 
6172         that will be drawn. Removes 1024 char limitation on length of passworded 
6173         lines.
6174
6175 2007-01-29  Jackson Harper  <jackson@ximian.com>
6176
6177         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
6178         single chars is not.
6179
6180 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
6181
6182         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
6183         one pixel.  Fix a StackOverflowException caused by an overload wrongly
6184         calling itself.
6185
6186 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
6187
6188         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
6189         also remove ProcessArrowKey and put the code inside ProcessKeys.
6190
6191 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
6192
6193         * PaddingConverter.cs: Added.
6194
6195 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6196         
6197         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
6198         ShowPanels is false (fixes #80600). Only draw up to 127 characters
6199         of text (fixes #80601). For panels clip the text to draw to the
6200         panel (fixes #80603).
6201
6202 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6203
6204         * ComboBox.cs: Fixed implementation of ResetText.
6205
6206 2007-01-25  Jackson Harper  <jackson@ximian.com>
6207
6208         * TextControl.cs: For the last char of a line we need to use the
6209         line size, not that chars width, since it won't actually be
6210         computed since the right side of a char is based on the start of
6211         the left side of the next char, and the next char does not exist.
6212
6213 2007-01-25  Chris Toshok  <toshok@ximian.com>
6214
6215         * Splitter.cs: fix the new unit tests, and reindent some switch
6216         statements.
6217
6218 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6219
6220         * ComboBox.cs: Implemented 2.0 methods and events.
6221         * TextBoxBase.cs: Added OnTextUpdate, so that
6222         ComboBox.ComboTextBox can inform ComboBox of it.
6223
6224 2007-01-25  Jackson Harper  <jackson@ximian.com>
6225
6226         * TextControl.cs: Respect ShowSelection when deciding whether or
6227         not to display the caret, this allows comboboxes to have carets
6228         when the combotextbox does not have focus.
6229
6230 2007-01-25  Jackson Harper  <jackson@ximian.com>
6231
6232         * TextControl.cs: Add a Suspend/Resume for updating, basically the
6233         same as the Suspend/Resume for recalc, except this will do actual
6234         Invalidates.
6235         - New Undo manager, works much like the MS version.
6236         - Implemented Redo
6237         * TextBoxBase.cs: The Cut operation is undoable.
6238
6239 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6240         
6241         * TextBoxBase.cs: Don't antialias text. Makes it look way better
6242         on Windows (no difference on Linux).    
6243
6244 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6245
6246         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
6247         we don't want to activate any windows. Fixes #79433.
6248
6249 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
6250
6251         - ButtonBase.cs: Fix capitalization of parameter: disposing.
6252         [Fixes bug #80609]
6253
6254 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
6255
6256         * FileDialog.cs:
6257         - Move to using System.ComponentModel.EventHandlerList
6258         - Replace Refresh with Invalidate
6259         - Clear the mime filecache on closing
6260         - Some other memory reducing work. After beeing closed FD now uses
6261           only about 300 KB for the fdo mime stuff plus the memory of the
6262           cached icons.
6263         * Mime.cs: Changed coding style and removed unnecessary commented
6264         code. Some more memory memory reducing work.
6265
6266 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6267
6268         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
6269         a few other missing 2.0 properties.
6270         * Theme.cs: Added DrawFlatStyleComboBox.
6271         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
6272
6273 2007-01-24  Chris Toshok  <toshok@ximian.com>
6274
6275         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
6276         wake_waiting flag, not just when there's data to be read.  if we
6277         don't, then future wakeup's won't reach us and we'll be doomed to
6278         wait for the entire 1 second timeout forever (unless there are X
6279         events to be had).
6280
6281 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6282
6283         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
6284         until you pass Items.Count, not Items.Count - 1 like 1.1.
6285
6286 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
6287
6288         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
6289
6290 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6291
6292         * ToolStripContainer.cs: The recent Dock fix exposed that I was
6293         adding the panels in the wrong order.
6294
6295 2007-01-24  Jackson Harper  <jackson@ximian.com>
6296
6297         * TextBoxBase.cs: When we move the caret we also need to move the
6298         selection, this fixes some random crashing after doing select
6299         text, unselect, delete a char, paste.
6300
6301 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6302
6303         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
6304
6305 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6306
6307         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
6308         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
6309         * ToolBar.cs: Force redraw in BackgroundImageChanged.
6310
6311 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6312
6313         * ToolBar.cs:
6314         - Implement support for vertical toolbars. Fixes #80539;
6315         - Call LayoutToolBar when resize, it fix some other problems in layout.
6316         - Rename requested_height to requested_size, as we can have width on it
6317         when toolbar is vertical.
6318         - Create a private property "Vertical" that uses Dock to verify when 
6319         toolbar is vertical or not.
6320         - Set ControlStyles when change Dock property.
6321         - Refactory in LayoutToolBar to have better variables names and to support
6322         vertical toolbars.
6323         - Fixes default value for ButtonSize when button count is equal zero, size
6324         must be (39, 36) test case writed.
6325
6326 2007-01-23  Chris Toshok  <toshok@ximian.com>
6327
6328         * Control.cs: fix the checks so that they work correctly for mdi
6329         parents/children.
6330
6331 2007-01-23  Chris Toshok  <toshok@ximian.com>
6332
6333         * Control.cs: ControlCollection seems to have super-secret
6334         abstraction breaking knowledge of Mdi containers.  allow MdiClient
6335         to add toplevel controls.
6336
6337 2007-01-23  Chris Toshok  <toshok@ximian.com>
6338
6339         * Control.cs: throw an ArgumentException if a toplevel control is
6340         added to our control collection from ControlCollection.Add, as
6341         well as from ControlCollection.IList.Add.  This fixes the
6342         ControlSetTopLevelTest.TestTopLevelAdd unit test.
6343
6344         Also, in ControlCollection.IList.Add, don't through an
6345         ArgumentNullException, throw an ArgumentException, when value ==
6346         null.  This matches MS.
6347
6348 2007-01-23  Chris Toshok  <toshok@ximian.com>
6349
6350         * BindingSource.cs: initial, incomplete, implementation of
6351         BindingSource.
6352
6353 2007-01-23  Jackson Harper  <jackson@ximian.com>
6354
6355         * TextControl.cs:
6356         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
6357         that I can fix a broken unit test (TextBoxTest::ClearUndo)
6358         
6359 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6360
6361         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
6362
6363 2007-01-23  Andreia Gaita  <avidigal@novell.com>
6364
6365         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
6366         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
6367         IndexOfKey() for 2.0
6368
6369 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6370
6371         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
6372         to prevent it from changing z-order.
6373         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
6374         leave UI updates in MdiWindowManager.
6375         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
6376         1 sized (NC handling goes weird on Linux otherwise).
6377         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
6378         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
6379         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
6380         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
6381         and SetWindowState(s) to allow for changing the size of an activated child
6382         before activating it (reduces a lot of flicker).
6383
6384 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6385
6386         * Form.cs: Changing FormBorderStyle has different semantics based
6387         on whether the Form is visible or not.  If not visible, don't change
6388         the Size.  But InvalidateNC needs to be called to force the window
6389         to pick up the changes and redraw itself.  [Fixes bug #80574]
6390
6391 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6392
6393         [Moma work]
6394         * ContainerControl.cs: ProcessCmdKey.
6395         * ErrorProvider.cs: new constructor.
6396         * Form.cs: fix AutoValidateEvent compiler warning.
6397         * Label.cs: fix OnAutoSizeChanged compiler warning.
6398         * MenuStrip.cs: fix CanOverflow compiler warning.
6399         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
6400         * TextBox.cs: Dispose.
6401         * ToolStrip.cs: CanOverflow, re-enable double buffering.
6402         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
6403         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
6404         * ToolStripItem.cs: Overflow, RightToLeft properties.
6405
6406 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6407
6408         * Form.cs: Move the layout of the main form to MdiWindowManager.
6409         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
6410         do a layout of the main window to update MdiClient's client area to
6411         the right area. Fixes #80533. Remove the calculation of nc size, 
6412         it was just wrong and the correct one is the same as for 
6413         InternalWindowManager. 
6414
6415 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
6416
6417         * Control.cs: Setting Anchor or Dock needs to reset the other
6418         to its default.  [Fixes bug #80556]
6419
6420 2007-01-20  Chris Toshok  <toshok@ximian.com>
6421
6422         * CheckedListBox.cs: class status changes.
6423
6424         * ScrollableControl.cs: same.
6425
6426         * RichTextBox.cs: same.
6427
6428         * ContainerControl.cs: same.
6429
6430         * ListView.cs: same.
6431
6432         * NotifyIcon.cs: same.
6433
6434         * MenuStrip.cs: same.
6435
6436         * RadioButton.cs: same.
6437
6438         * CheckBox.cs: same.
6439
6440         * PrintPreviewDialog.cs: same.
6441
6442         * Form.cs: same.
6443
6444 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
6445
6446         * TreeNode.cs: Apply Alan's patch for Name property.
6447
6448 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6449         
6450         * Form.cs: Implemented SizeGripStyle.
6451         * SizeGrip.cs: Check for minimum and maximum size for the
6452         control being resized and only resize if size has actually
6453         changed.
6454
6455 2007-01-19  Chris Toshok  <toshok@ximian.com>
6456
6457         * DataGridColumnStyle.cs: stop setting _readonly in the
6458         PropertyDescriptor setter.  fixes a unit test failure.
6459
6460         also, rename ParentReadOnly to TableStyleReadOnly, and have it
6461         just consult our table style (if we have one).  We don't need to
6462         consult the datagrid readonly attribute because that's passed in
6463         as the _ro arg to Edit.  this simplifies things a little.
6464         
6465         * DataGrid.cs: use CurrentColumn instead of
6466         current_cell.ColumnNumber just to simplify some of the code.
6467
6468         switch the order of some things in the CurrentCell setter to keep
6469         the previous cell from getting a textbox again -
6470         EnsureCellVisibility causes scrolling to happen, which calls Edit.
6471         So we need to set the new cell before calling it.
6472         
6473         call Edit in OnEnter, as does Microsoft.
6474         
6475         also, make sure the current table style isn't the one we create
6476         initially when checking to see if it's different than the one
6477         we're setting it to in BindColumns (this fixes #80421).
6478
6479         * GridTableStylesCollection.cs: table styles can have "" for a
6480         mapping name.  part of the fix for #80421.
6481
6482         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
6483         Edit significantly.
6484
6485 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6486
6487         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
6488         and less GDI object leaky-er.
6489
6490 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6491
6492         * LinkLabel.cs: Add opaque control style
6493
6494 2007-01-18  Jackson Harper  <jackson@ximian.com>
6495
6496         * TextControl.cs: Calculate width properly.
6497         - Don't store the tag's X offset, this can be figured out very
6498         easily.
6499         - When getting the caret tag make sure to get the last empty tag.
6500
6501 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6502
6503         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
6504         [Fixes bug #79959]
6505
6506         * Control.cs: Color.Empty shouldn't count for previous transparent
6507         redraw changes.
6508
6509 2007-01-18  Jackson Harper  <jackson@ximian.com>
6510
6511         * TextBox.cs:
6512         * RichTextBox.cs:
6513         * TextControl.cs: Starting to merge in some pieces of my older
6514         undo work.  Basically just some slight cleanup of the undo API.
6515
6516 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6517
6518         * TrackBar.cs: Fix signature of RightToLeftLayout.
6519         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
6520         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
6521         * Application.cs: Implemented UseWaitCursor.
6522
6523 2007-01-18  Jackson Harper  <jackson@ximian.com>
6524
6525         * TextControl.cs: We can't skip tags if any part of the tag is
6526         visible.
6527
6528 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6529
6530         * ContainerControl.cs: Override OnLayout.
6531
6532 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6533
6534         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
6535
6536         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
6537         everything else.
6538
6539 2007-01-18  Chris Toshok  <toshok@ximian.com>
6540
6541         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
6542         (leftover from the container_selected days, I'd wager).  fixes bug
6543         #80546.
6544
6545 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6546
6547         * Control.cs: Apply patch from George to fix the new testcase on
6548         bug #80451.  We can't just check for Color.Transparent, we need 
6549         to check if the back color's alpha channel is < 255.
6550
6551 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6552
6553         * Form.cs: Move setting show_icon = true to before the constructor
6554         so that the base constructor has that information when it calculates
6555         the form's size.  Was causing forms to be (6, 6) bigger than they
6556         were supposed to be.  Thanks for catching this Rolf!
6557
6558 2007-01-18  Jackson Harper  <jackson@ximian.com>
6559
6560         * TextControl.cs: When replacing a selection we need to invalidate
6561         from the initial selection start, because selection start is moved
6562         to the end of the replacement.
6563
6564 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6565
6566         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
6567
6568 2007-01-18  Chris Toshok  <toshok@ximian.com>
6569
6570         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
6571         I just added.
6572
6573 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
6574
6575         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
6576         layout methods and properties from ToolBarButton must be available
6577         into ToolBarButtonInfo.
6578
6579 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6580
6581         * Control.cs: If the control has a transparent background, we
6582         need to refresh it when it moves and when it's parent's background
6583         image changes.  [Fixes bug #80451]
6584
6585 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6586
6587         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
6588
6589 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6590
6591         * XplatUIWin32.cs: Implement proper double buffering for Windows.
6592         [Fixes bug #80447, and probably speeds up things as well]
6593
6594 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6595
6596         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
6597         * XplatUIWin32.cs: We need to recalculate NC size after changing 
6598         window style to toolwindow (otherwise the client rectangle will be
6599         3 pixels to small for some reason).
6600         * MdiWindowManager.cs: Revert NC size calculations to match how
6601         they are calculated only based on window styles (to match
6602         Win32AdjustWindowRectEx, since otherwise when setting size or 
6603         location, Control will call Win32AdjustWindowRectEx to update client 
6604         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
6605         calculate a different value of client size causing another paint 
6606         (and flickering))
6607         * InternalWindowManager.cs: When moving or resizing a window only
6608         update size or location if they actually changed.
6609         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
6610         (seems to match Windows behaviour better). Cleaned up 
6611         ManagedWindowDecorations to draw what's needed and nothing else
6612         (was drawing borders and lines where they shouldn't be)
6613         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
6614         (style = 0xFFFF) and takes into account caption height when 
6615         calculating window rectangle.   
6616
6617 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6618
6619         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
6620         can be added to toolbar multiple times, we need to maintain a list of 
6621         button information for each positions.
6622
6623 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6624
6625         * ToolBar.cs: Some small stetic changes.
6626
6627 2007-01-16  Jackson Harper  <jackson@ximian.com>
6628
6629         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
6630         that allow us to have nested recalc = false blocks.
6631         - Add paste support for images in the RichTextBox
6632         * RichTextBox.cs: flush the text after the color is changed, so
6633         the change takes effect.
6634         - Use SuspendRecalc
6635         - Some extra debugging info
6636         * TextControl.cs: Tags no longer track their length, it is just
6637         computed from the next tags length, this makes things a little
6638         simpler and reduces places that we have to track length changes.
6639         - Refactored the linetag class a little so we could make it
6640         a base class for different kinds of tags
6641         - Created a image tag, a tag that can have a single image inserted
6642         into it
6643         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
6644         that we can call suspend multiple times.
6645         - Add some debugging methods
6646
6647 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6648
6649         * MdiClient.cs: Add ActivatePreviousChild for 
6650         mdi child window navigation.
6651         * Form.cs: Use MdiClient.ActivateNextChild/
6652         ActivatePreviousChild instead of Form.SelectNextControl
6653         to select the next/previous child since 
6654         SelectNextControl doesn't do it in the same order
6655         as mdi children should do it.
6656
6657 2007-01-16  Chris Toshok  <toshok@ximian.com>
6658
6659         * Control.cs: remove container_selected field.
6660
6661 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6662
6663         * MdiClient.cs: Update main form's ActiveChild when
6664         updating keyboard focus for the mdi child.
6665
6666 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
6667
6668         * Control.cs: PreferredSize fix.
6669
6670         * Form.cs: Add several 2.0 events, properties, and methods.
6671
6672 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
6673
6674         * Form.cs: Provide meaningful message when MdiParent is assigned a
6675         Form that is not an MdiContainer.
6676
6677 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6678
6679         * MdiClient.cs: Update main form's ActiveChild when
6680         activating a mdi child.
6681
6682 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6683
6684         * MdiWindowManager.cs: Fix NRE when merging menus and main form
6685         doesn't have a menu.
6686
6687         * Form.cs: Request NCRecalc after creating a mdi child window.
6688         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
6689         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
6690         
6691         * MdiClient.cs: Add new method SendFocusToActiveChild that either
6692         sends keyboard focus to the active child, or to the MdiClient
6693         if there are no child forms.
6694         
6695 2007-01-15  Chris Toshok  <toshok@ximian.com>
6696
6697         * ListView.cs: drop the *Internal overrides, just do our work in
6698         ItemControl's WndProc instead.
6699
6700         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
6701         of the various controls, and forward the events properly (in the
6702         same manner as MS) from the textbox to the UpDown.  Also the
6703         ActiveControl of the UpDownBase gets set properly now.  Finally,
6704         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
6705
6706         * NumericUpDown.cs: set Text in the ctor.
6707
6708         * DomainUpDown.cs: call UpdateEditText in the ctor.
6709         
6710         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
6711         so even a Selectable = false textbox can be focused if you click
6712         in it.  Go figure.
6713
6714         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
6715         just add their handling in their respective WndProc's.  Also add
6716         an explicit FocusInternal method that doesn't consult CanFocus
6717         before calling Select(this).
6718
6719         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
6720         do our work in WndProc instead.
6721
6722         * TabControl.cs: same.
6723
6724         * ComboBox.cs: same.
6725
6726 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6727
6728         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
6729         Fixes #80006.
6730
6731 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
6732
6733         * ListViewItem.cs:
6734         * ThemeWin32Classic.cs: Don't draw the item text outside
6735         item bounds in Details view, as well as use trimming.
6736         Fixes bug #80376.
6737
6738 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6739
6740         * Form.cs: Implement Form.ShowIcon.
6741         
6742         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
6743         null, which when combined with the DlgModalFrame window style removes
6744         the icon from the title bar.
6745
6746 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6747
6748         * Control.cs: Call OnMouseClick after OnClick. (2.0)
6749
6750 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6751
6752         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
6753         menu when mdi child windows theres a menu, uses insert to get icon
6754         at first position. Partially fix #80006.
6755
6756 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6757
6758         * Clipboard.cs: Implement 2.0 methods.
6759
6760 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6761
6762         * Menu.cs: Implement Insert method of MenuItemCollection class
6763         to fix MenuMerge.
6764
6765 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6766
6767         * ListView.cs: Implement 2.0 FindItemWithText method.
6768
6769 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
6770
6771         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
6772         to calculate menu bar size. Fixes #80290.
6773
6774 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
6775
6776         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
6777
6778 2007-01-11  Chris Toshok  <toshok@ximian.com>
6779
6780         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
6781         initial form.
6782
6783 2007-01-11  Chris Toshok  <toshok@ximian.com>
6784
6785         * LinkLabel.cs: make sure to call base.Select in our Select method
6786         if it turns out we're going to be selected (i.e. if we have a link
6787         that is going to receive focus).  That way our container's
6788         ActiveControl is updated properly.
6789
6790 2007-01-11  Chris Toshok  <toshok@ximian.com>
6791
6792         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
6793         they have 1 or more links.  this fixes the crash gert reported.
6794
6795 2007-01-11  Andreia Gaita  <avidigal@novell.com>
6796
6797         * ContainerControl.cs: Remove ContainerSelected flag, not needed
6798         anymore.
6799
6800         * Control.cs (Controls.Add): Check if control to be added to the collection
6801         is a top level control, and throw an ArgumentException if it is.
6802         Remove ContainerSelectedFlag, not needed anymore.
6803
6804         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
6805         top most control doesn't activate the form. This fixes a problem in the
6806         MessageBox, where the default button wouldn't get focus because the form
6807         was activated before being Loaded - when the Owner is set, SetTopMost is
6808         called, and it would activate it.
6809
6810 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
6811
6812         * Button.cs: When clicked and setting the parent form's DialogResult,
6813         use FindForm instead of Parent, since parent could be a container
6814         control and not the Form.  Fixes bug #80495.
6815
6816 2007-01-10  Chris Toshok  <toshok@ximian.com>
6817
6818         * Form.cs: move the call to SendControlFocus into the same
6819         is_loaded check.
6820
6821 2007-01-10  Chris Toshok  <toshok@ximian.com>
6822
6823         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
6824         It breaks in the face of the new ActiveControl stuff, and should
6825         be unnecessary.
6826
6827         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
6828         activecontrol's focus if it's not already set, after we set
6829         ActiveControl, but before we call OnActivated.  Re-fixes #79667
6830         after the previous focus/active control fixes regressed it.
6831
6832         * Control.cs: reindent some code.
6833         
6834 2007-01-10  Chris Toshok  <toshok@ximian.com>
6835
6836         * Splitter.cs: clearing some outstanding changes from my tree.
6837         Replace all accesses (not writes) to the internal dock_style field
6838         with the Dock property.
6839
6840 2007-01-10  Chris Toshok  <toshok@ximian.com>
6841
6842         * Control.cs: make FireEnter, FireLeave, FireValidating, and
6843         FireValidated virtual.
6844
6845         * Form.cs: override and don't chain up calls to FireEnter and
6846         FireLeave.
6847
6848 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6849
6850         * ListView.cs: Add more text padding space when using
6851         auto resize for columns (the previous value didn't work fine).
6852
6853         * ThemeWin32Classic.cs: Update text position inside columns,
6854         to match the appeareance of .Net.
6855
6856         * ColumnHeader.cs: When using auto resize, only the Width should
6857         depend on the sub items, not the Height. Also, set width after
6858         auto resizing (the value of Width should never remain as -1 or -2).
6859
6860 2007-01-10  Chris Toshok  <toshok@ximian.com>
6861
6862         * Application.cs: fix compilation errors when debug is enabled.
6863
6864 2007-01-10  Chris Toshok  <toshok@ximian.com>
6865
6866         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
6867         add some nice ascii art pictures and explanation of the process).
6868         (GetMostDeeplyNestedActiveControl): new utility function we need
6869         because our ActiveControl can refer to a child container with its
6870         own ActiveControl.
6871
6872         * Form.cs (OnActivated): remove the call to SelectActiveControl
6873         from here, since you can override this method and not chain up,
6874         and winforms still sets the active control.
6875         (OnCreateControl): also remove the unnecessary SelectActiveControl
6876         call from here.
6877         (WndProc): it's actually called from the WM_ACTIVATE block, just
6878         before calling OnActivated.
6879
6880         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
6881         inside the else.  the ActiveControl setter will end up setting
6882         focus on @control.  This keeps us from setting it again (and
6883         generating an extra LostFocus/GotFocus pair).
6884         (Select (bool, bool)): reindent.
6885
6886 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
6887
6888         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
6889         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
6890         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
6891         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
6892         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
6893         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
6894         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
6895         ToolStripTextBox.cs: Another wave of corcompare work.
6896
6897 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6898
6899         * ColumnHeader.cs: Implement 2.0 AutoResize method using
6900         the Width property.
6901
6902         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
6903         methods by callling Column.AutoResize method on columns.
6904
6905 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
6906
6907         * Control.cs: Provide proper implementations of PreferredSize
6908         and GetPreferredSize (2.0).
6909
6910 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
6911
6912         * Form.cs: Remove one character (!) to make my previous OnClosing
6913         stuff work for modal windows like MessageBox.
6914
6915 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6916
6917         * ListView.cs:
6918         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
6919         ListView.Columns to get the last displayed column. Fixes #80452.
6920
6921 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
6922
6923         * Label.cs, LinkLabel.cs: Source code identation fixes.
6924
6925 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
6926
6927         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
6928         we dont need to invalidate only borders because when we invalidate four
6929         border lines the invalidate's generates a complete redraw of button, 
6930         because it now invalidate a complete rect some other redraws operations
6931         are fixed. Fixes #80196.
6932         
6933         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
6934         Remove ToolBarInvalidateEntireButton as it is not used.
6935
6936 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
6937         
6938         * Form.cs: Make sure that both OnClosing and OnFormClosing are
6939         called for 2.0 profile.
6940         * CloseReason.cs: Make class internal for 1.1.
6941
6942 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
6943
6944         * ToolStripManager.cs: Implement FindToolStrip functionality.
6945         * ToolStrip.cs: Register and unregister with ToolStripManager.
6946
6947 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
6948
6949         * Control.cs: This was messy.  2.0 moves much of ControlCollection
6950         to ArrangedElementCollection.  Implemented this with as few #if's as 
6951         possible (which is still too many).
6952
6953 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
6954
6955         * Control.cs: Implement SizeFromClientSize() [2.0].
6956
6957 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
6958
6959         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
6960         use Theme.BorderSize to calculate area instead of static value 1, 
6961         by the way use new BorderStaticSize instead     Border3DSize when 
6962         border_static is true. Fixes #79537.
6963         
6964         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
6965         
6966         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
6967         it is not needed.
6968
6969 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
6970
6971         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
6972
6973 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
6974
6975         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
6976         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
6977         
6978         * Hwnd.cs: 
6979         - border_static field added, it will used to define when a control 
6980         theres 3D border but it must be static (thin).
6981         - In GetWindowRectangle use Theme.BorderSize to calculate area 
6982         instead of static value 1, by the way use new BorderStaticSize instead
6983         Border3DSize when border_static is true.
6984
6985         * XplatUIX11.cs, XplatUIOSX.cs: 
6986         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
6987         
6988         * Theme.cs: BorderStaticSize field added.
6989
6990 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
6991
6992         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
6993
6994 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
6995
6996         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
6997         mimic same behavior than win32 that set border only in CreateParams,
6998         it fix problems under CreateParams overrides. Fix #79442 and partial
6999         fix #79537.
7000         
7001         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
7002         of thi control you must call recreate handle. 
7003         
7004         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
7005         need to do anything as RecreateHangle will take care about borders.
7006
7007 2007-01-05  Mike Kestner  <mkestner@novell.com>
7008
7009         * ListView.cs: hack to eliminate Lost/Got focus notifications on
7010         cycles between the ItemControl and parent.  Fixes #80388.
7011
7012 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7013
7014         * Control.cs: Lazy init layout engine. Do not directly use 
7015         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
7016
7017 2007-01-05  Chris Toshok  <toshok@ximian.com>
7018
7019         * DataGrid.cs: don't forceably rebind columns in SetDataSource
7020         unless our list manager has changed (i.e. unless we have reason to
7021         believe our columns have changed).  Fixes #80422.
7022         
7023         also, disable the call do BindColumns in
7024         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
7025         1.1 the event isn't raised in response to a column addition on a
7026         table.)
7027
7028 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7029
7030         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
7031         that inheritors can not call it if they choose.  Fixes bug #80456.
7032
7033 2007-01-05  Andreia Gaita  <avidigal@novell.com>
7034
7035         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
7036         doesn't blow up with a null exception on marshalling.
7037         
7038 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7039
7040         * Control.cs: Implement several 2.0 protected properties and methods.
7041         Ensure that all necessary events are being called when properties
7042         are set.
7043
7044 2007-01-05  Mike Kestner  <mkestner@novell.com>
7045
7046         * ListView.cs: implement PgUp/PgDn for Details view.  Also
7047         fixes First/LastVisibleIndex to use the item_control.ClientRect 
7048         instead of the parent control.  Fixes #80378.
7049
7050 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
7051
7052         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
7053           determine whether to use yard-pound or not (bug #78399).
7054
7055 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
7056
7057         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
7058         problems. So it is time to bring back the old popupbutton colors.
7059
7060 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7061
7062         * ColumnHeader.cs:
7063         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
7064         property by using the internal information of the
7065         columns order in ListView.
7066
7067 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
7068
7069         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
7070         Add 2.0 Tag properties.
7071
7072         * LinkArea.cs: Add 2.0 ToString method.
7073
7074 2007-01-03  Chris Toshok  <toshok@ximian.com>
7075
7076         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
7077         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
7078         when we're editing, which fixes #80047.
7079
7080 2007-01-03  Chris Toshok  <toshok@ximian.com>
7081
7082         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
7083         #80404.
7084
7085 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
7086
7087         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
7088         property and implementation.
7089
7090         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
7091         for MdiWindowListItem property.
7092
7093         * ToolStripDropDown.cs: Don't consider hidden menu items while
7094         laying out the menu.
7095
7096 2007-01-03  Andreia Gaita  <avidigal@novell.com>
7097
7098         * SendKeys.cs: window handle is not needed in win32, so just
7099         get the active window for X after parsing keys and don't use
7100         it when building the message; it is passed by parameter to the 
7101         Xplat method and used there to build the message instead. Also,
7102         wait for events to be processed on SendWait, as opposed to Send,
7103         which doesn't wait :) Playing with threads and Send() completely 
7104         hangs on ms.net, only SendWait() works.
7105         
7106         XplatUIX11.cs
7107         X11Display.cs: Check for valid window handle.
7108
7109 2007-01-03  Jackson Harper  <jackson@ximian.com>
7110
7111         * TextControl.cs: Need to prevent wrap calculations when replacing
7112         text (this was there before i removed it accidently).
7113         - Don't update the cursor during the positioning, just set it to
7114         selection_start at the end of the operaion.
7115
7116 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7117
7118         * Control.cs:
7119         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
7120         
7121 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7122
7123         * MonthCalendar.cs: Added Click and DoubleClick events again,
7124         but this time they only hide Control's Click and DoubleClick.
7125         
7126 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
7127
7128         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
7129         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
7130
7131 2007-01-02  Jackson Harper  <jackson@ximian.com>
7132
7133         * TextBoxBase.cs: We move the caret with the split now, so we
7134         don't need to explicitly move the caret after splitting.  This
7135         fixes the caret bumping down an extra line on Enter.
7136
7137 2007-01-02  Miguel de Icaza  <miguel@novell.com>
7138
7139         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
7140         2.72). 
7141
7142         * ScrollableControl.cs: Add Scroll event.
7143
7144 2007-01-02  Mike Kestner  <mkestner@novell.com>
7145
7146         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
7147         to fix all hdr height padding codepaths.  Fixes #80207.
7148
7149 2007-01-02  Chris Toshok  <toshok@ximian.com>
7150
7151         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
7152         setting it to the Control defaults anyway, and it being after the
7153         Dock set was screwing up layout.
7154         (set_Dock): don't short circuit out of setting base.Dock.  Also,
7155         no need to call UpdateStatusBar here, as it'll be re-layed out if
7156         it needs to be.
7157
7158 2007-01-02  Mike Kestner  <mkestner@novell.com>
7159
7160         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
7161         to header height for width == -1. Fixes the rest of #80207.
7162
7163 2007-01-02  Mike Kestner  <mkestner@novell.com>
7164
7165         * ListView.cs: rework the mouse event forwarding everaldo added
7166         to translate the coordinates to the parent control not
7167         raise the parent events until after we've done our work. Hover
7168         needs more work, in the case where HoverSelection is on, because
7169         the item control receives more than one MouseHover per Enter
7170         event, so we need to ensure only the "first" hover gets forwarded.
7171         Opening a minor bug for that.
7172
7173 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
7174
7175         * CheckedListBox.cs: Fixed SelectionMode to match MS.
7176         * ListControl.cs: Implemented AllowSelection property. Removed extra
7177         tabs.
7178         * ListBox.cs: Implemented AllowSelection property.
7179
7180 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7181
7182         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
7183         SelectedItem, it prevent for errors when you must disable item
7184         before perform click. Fixes #80409.
7185
7186 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7187
7188         * MenuAPI.cs: Prevent second level and beyond submenus to close
7189         until first level when move out side of popup.
7190         
7191 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7192
7193         * MenuAPI.cs:
7194         - Down submenu positin in three pixels.
7195         - Closes sub menu when mouse leaves from menu. Fixes #80402.
7196
7197 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7198
7199         * ThemeWin32Classic.cs:
7200         - Fix popup menu size adding one pixel on the top.
7201         - Down menu item border from two to one to mimic Win32.
7202         - Some source identation fixes. 
7203
7204 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7205
7206         * ThemeWin32Classic.cs: Use float numbers to calculate size and
7207         position of menu arrows, it fix wrong arrow size.
7208
7209 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7210
7211         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
7212         instead of line, it simplify draw operation and fix it using 3D
7213         borders to mimic Win32.
7214
7215 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
7216
7217         * StatusStrip.cs: Add implementation of the sizing grip.
7218
7219         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
7220         StatusStrip rendering.
7221
7222 2006-12-31  Chris Toshok  <toshok@ximian.com>
7223
7224         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
7225         override the layout style (anchor/dock) of the control.  assign to
7226         Dock instead.  Fixes bug #80416.
7227
7228         * ToolStrip.cs: same.
7229
7230 2006-12-31  Andreia Gaita  <avidigal@novell.com>
7231
7232         * ContainerControl.cs: Use ContainerSelected flag to check if 
7233         a Container is directly selected, or if Select is called on a 
7234         non-container. If a container is directly selected, focus events 
7235         should not be raised.
7236         Apply #80411 patch to throw exception on set_ActiveControl if 
7237         control is the same as the current one.
7238         
7239         * Control.cs: Use ContainerSelected flag (see above).
7240         Add invalidation check to raise event but not invalidate if 
7241         dimensions are 0.       
7242         Apply #80411 patch.
7243         
7244
7245 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
7246
7247         * MenuAPI.cs: After click, dont close popup menu when menu is
7248         ContextMenu. Fixes #80399.
7249
7250 2006-12-30  Chris Toshok  <toshok@ximian.com>
7251
7252         * ContainerControl.cs: make sure we throw the exception if the
7253         container control doesn't contain the control we're setting
7254         ActiveControl to.
7255
7256 2006-12-30  Chris Toshok  <toshok@ximian.com>
7257
7258         * Control.cs (SetTopLevel): fix the exception raised by
7259         SetTopLevel for child controls.
7260         (set_Anchor): call UpdateDistances when setting the anchor type.
7261         This fixes bug #80336.
7262
7263 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7264
7265         * Theme.cs: For now, revert back to 8pt font.
7266
7267 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
7268
7269         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
7270         Fixes #80395.
7271
7272 2006-12-29  Chris Toshok  <toshok@ximian.com>
7273
7274         * Control.cs: reorder the code in OnResize to give the same event
7275         ordering as MS.
7276
7277 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7278
7279         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
7280         TileHorizontally and TileVertically.
7281         
7282 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
7283
7284         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
7285         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
7286         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
7287         Corrected copyright and email adress.
7288
7289 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7290
7291         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
7292         of Exception in FullPath property if no TreeView is associated with
7293         the TreeNode.
7294
7295 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7296
7297         * Theme.cs: Marked default_font as private, and initialize it in ctor
7298         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
7299         on 2.0 profile.
7300         * ThemeGtk.cs: Removed default_font intialization.
7301         * ThemeWin32Classic.cs: Removed default_font initialization.
7302
7303 2006-12-28  Chris Toshok  <toshok@ximian.com>
7304
7305         * Control.cs: fix a couple of place where we were creating handles
7306         more aggressively than we should be.  Fixes ControlRefresh unit
7307         tests.
7308
7309 2006-12-28  Chris Toshok  <toshok@ximian.com>
7310
7311         * Control.cs: contrary to what the comment said, Control.Dock does
7312         not supercede Control.Anchor - the last one you assign to decides
7313         the layout behavior.  so we need to keep track of which was the
7314         last set.  Also, fix some of the affected property arguments in
7315         PerformLayout calls, and remove an redundant parent.PerformLayout
7316         call in OnResized.
7317
7318         Add a VisibleInternal property, which returns is_visible.  We
7319         can/should get rid of all the usage of this field elsewhere.
7320
7321 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7322         
7323         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
7324         control style, not DoubleBuffer. Added UseDoubleBuffering property
7325         that indicates whether doublebuffering is enabled and supported.
7326         (comment from and code based on Gert Driesen's patch in #80324).
7327         Fixes #80324.
7328
7329 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7330         
7331         * Control.cs: Fixed a NRE.
7332
7333 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7334
7335         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
7336         for 2.0.
7337
7338 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7339
7340         * Control.cs: Rewrote double buffering, now a seperate
7341         class handles all the buffering, no Graphics is disposed of
7342         until the painting is finished (earlier implementation 
7343         would crash if the control was resized in the OnPaint, 
7344         since it would cause the double buffer to be recreated
7345         and the old one disposed), a separate Graphics is 
7346         created for every paint (MS behaviour and anyways the state
7347         of the Graphics would have to be saved and restored otherwise)
7348         
7349         * XplatUIDriver.cs: 
7350         * XplatUIX11.cs:
7351         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
7352         so that we can get the graphics for the back buffer without
7353         having to create a new one and remove the offscreen_dc parameter
7354         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
7355         
7356 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7357
7358         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
7359         Also make virtual all the key-related methods.
7360
7361         * ListViewItem.cs: Make virtual the key related methods for
7362         ListViewSubItemCollection.
7363
7364 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7365
7366         * ListView.cs:
7367         * ListViewItem.cs:
7368         * ThemeWin32Classic.cs:
7369         * Theme.cs: Initial support for Tile view in ListView,
7370         as well as the implementation of the required bits for it (Item
7371         and Subitem).
7372
7373 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7374
7375         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
7376         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
7377         Provide useful exception messages.
7378
7379 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7380
7381         * TrackBar.cs: Remove a warning.
7382         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
7383         when used by DateTimePicker, fixes #80287. This also requires that 
7384         MonthCalendar implements it's own drawing for the yearly updown control,
7385         otherwise the Capture tracking would be too complicated. Removed the Click 
7386         and DoubleClick events (according to comments they were hiding the base class
7387         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
7388         raise these events, not that they cannot be raised. It is possible to raise 
7389         them by calling OnClick and OnDoubleClick). Added two internal fields in 
7390         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
7391         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
7392         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
7393         event, no longer needed.
7394         
7395 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7396
7397         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
7398         true if new value differs from current value.
7399
7400 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7401
7402         * Control.cs: ControlCollection.Count must be public. Fixed build of
7403         unit tests.
7404
7405 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7406
7407         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
7408
7409 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7410
7411         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
7412
7413 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7414
7415         * Control.cs: Invalidates control including when Width and Height is 
7416         equal zero or is not visible, only Paint event must be care about 
7417         this. Fixes #79913.
7418
7419 2006-12-26  Chris Toshok  <toshok@ximian.com>
7420
7421         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
7422         more corcompare work.
7423
7424         * DataGridView.cs: fix compiler warning.
7425
7426         * ColumnHeader.cs: some corcompare work, and also take the
7427         opportunity to make the internal fields private.
7428
7429         * ListView.cs: fix the fallout from the above field change.
7430
7431 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7432
7433         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
7434         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
7435         ToolStripTextBox.cs: Fixes to events and corcompare.
7436
7437 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7438
7439         * ListView.cs: Call owner.OnMousexx event to propagate events from
7440         item to ListView. Fixes #80367.
7441
7442 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7443
7444         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
7445         if value is less than one. ItemHeight should not be set to a value
7446         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
7447         Removed extra tabs.
7448
7449 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7450
7451         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
7452         * ToolStripStatusLabel.cs: Add Spring for Moma.
7453
7454 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7455
7456         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
7457         Fixed code formatting. Removed debug code.
7458         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
7459
7460 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7461
7462         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
7463         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
7464         ArgumentOutOfRangeException if ColumnCount is negative. In 
7465         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
7466         less than 4 or higher than 32768.
7467         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
7468         Fixed FormatProvider to return CurrentCulture unless explicitly set.
7469         Fixed IsFormatProviderDefault to return true if FormatProvider has
7470         not been explicitly set.
7471
7472 2006-12-25  Chris Toshok  <toshok@ximian.com>
7473
7474         * Application.cs: add a couple of 2.0 events.
7475
7476 2006-12-25  Chris Toshok  <toshok@ximian.com>
7477
7478         * Control.cs: fix compiler warning.
7479
7480         * AxHost.cs: corcompare fixes.
7481
7482         * ApplicationContext.cs: corcompare fixes.
7483
7484 2006-12-25  Chris Toshok  <toshok@ximian.com>
7485
7486         * Control.cs: only update dist_right/dist_bottom if the
7487         width/height is > 0.  this fixes anchored controls being resized
7488         smaller until they disappear and then resized larger again.
7489
7490 2006-12-25  Chris Toshok  <toshok@ximian.com>
7491
7492         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
7493         since they're nothing more than X/Left and Y/Top, respectively.
7494
7495         Also, move back to a per-control Bitmap/Graphics for
7496         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
7497         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
7498         Height.
7499
7500 2006-12-25  Miguel de Icaza  <miguel@novell.com>
7501
7502         * MessageBox.cs: Implemented overload that takes a new "bool
7503         displayHelpButton" by adding a new internal field "show_help".
7504         When clicked this will raise the HelpRequested on the owner or the
7505         main form. 
7506
7507         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
7508         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
7509
7510         * ListView.cs: Add support ColumnWidthChanged and
7511         ColumnWidthChanging. 
7512
7513         Add support for ColumnReordered event.
7514         (ReorderColumn): Add NET_2_0 specific support for cancelling the
7515         reorder.
7516
7517         Very nice codebase!
7518
7519         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
7520
7521         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
7522
7523 2006-12-24  Chris Toshok  <toshok@ximian.com>
7524
7525         * GridTablesFactory.cs: 2.0 corcompare work.
7526
7527         * ToolStripContainer.cs: add "override" to
7528         ContextMenuStripChanged, and remove the local event object.
7529
7530         * ToolStripDropDown.cs: same with a couple properties.
7531
7532         * ToolStripPanel.cs: same with AutoSizeChanged event.
7533
7534         * TextBoxBase.cs: add "override" to AutoSizeChanged.
7535
7536         * Form.cs: add the remaining 2.0 events, and do some corcompare
7537         attribute work.
7538
7539         * DateTimePicker.cs: add "new" to padding.
7540
7541         * ButtonBase.cs: use Control's use_compatible_text_rendering.
7542
7543         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
7544
7545         * DataGridView.cs: PaddingChanged is overridden.
7546
7547 2006-12-24  Chris Toshok  <toshok@ximian.com>
7548
7549         * Control.cs: corecompare work here too.
7550
7551         * DataGridViewElement.cs, DataGridView.cs,
7552         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
7553         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
7554         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
7555         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
7556         work.
7557
7558 2006-12-24  Miguel de Icaza  <miguel@novell.com>
7559
7560         * Control.cs: Switched the error message on the console for a
7561         todo.  A review of the code will have to cope with this anyways
7562         (since its a large feature, it is in our radar) and it was
7563         producing too much output when running PDN.
7564
7565         * ToolStripComboBox.cs: Set the text when the SelectedIndex
7566         changes.  Applications depend on this (PDN 2.72)
7567
7568 2006-12-23  Chris Toshok  <toshok@ximian.com>
7569
7570         * TableLayoutSettings.cs: finish up the corcompare work for this
7571         class.
7572
7573 2006-12-23  Chris Toshok  <toshok@ximian.com>
7574
7575         * Control.cs: make SetImplicitBounds internal, do some futzing
7576         with LayoutEngine so that it's available in 1.1, and remove the
7577         entire duplicated code mess from PerformLayout.  Use
7578         System.Windows.Forms.Layout.DefaultLayout instead.
7579
7580         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
7581
7582 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7583
7584         * Form.cs: Add MainMenuStrip property.
7585
7586 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7587
7588         * Control.cs: Add ContextMenuStrip property and implementation.
7589         Fix ContextMenu implementation to show menu centered on control when
7590         activated using the keyboard instead of showing at screen (0,0).
7591
7592         * ToolStripDropDown.cs: Fix needed overload of Show ().
7593
7594 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7595
7596         * Menu.cs: Name property added for 2.0 profile.
7597         
7598 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7599
7600         * Menu.cs: Update information about FindMenuItem, method to be
7601         implemented soon.
7602
7603 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7604
7605         * MenuAPI.cs: When deselect items deselect also selected subitems.
7606         
7607 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7608
7609         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
7610         FindSubItemByCoord to found itens that is not active, also an
7611         cheking added to FindSubItemByCoord to search for items only 
7612         in visible popup windows. Fixes #80274.
7613
7614 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
7615
7616         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
7617         internal property, it be care about change ExStyle. 
7618
7619 2006-12-22  Andreia Gaita  <avidigal@novell.com>
7620
7621         * ContainerControl.cs: set activeControl for parent forms up the 
7622         tree when the new activecontrol is a container.
7623         When validating the active control, if it is a container, also
7624         raise up the validation for it's active control. Fixes #80280
7625         
7626         * Control.cs: Add internal property flag and check to prevent
7627         Focus events from getting raised when Select() is called for
7628         a ContainerControl. There are still too many focus events being
7629         raised at the moment though.
7630         Cleaned up the code a bit.
7631
7632 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7633
7634         * Control.cs: Added all missing 2.0 events.and
7635         fixed a couple of corcompare issues.
7636         * TrackBar.cs: Implemented missing 2.0 bits.
7637         * MonthCalendar.cs, 
7638         * DateTimePicker.cs, 
7639         * MdiClient.cs: Fixed some corcompare issues.
7640
7641 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7642
7643         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
7644         SplitterPanel.cs: corecompare work.
7645
7646 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7647
7648         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
7649         Clean up warnings for BackgroundImageChanged and PaddingChanged
7650         events now that they are implemented in Control.cs.
7651
7652 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7653
7654         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
7655         
7656         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
7657         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
7658         of TableLayoutPanel and supporting cast.
7659
7660 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7661
7662         * XplatUIWin32.cs: 
7663         - GrabWindow now confines the mouse pointer to the confine window.
7664         - Added Win32ClipCursor and Win32GetClipCursor.
7665
7666         * Control.cs: 
7667         - Added CaptureWithConfine to be able to capture and confine 
7668         mouse pointer.
7669         
7670         * InternalWindowManager.cs: 
7671         - Call CaptureWithConfine instead of Capture if we're an
7672         MdiChild (fixes #79982).
7673
7674 2006-12-21  Chris Toshok  <toshok@ximian.com>
7675
7676         * DataGrid.cs: guard against the initial state of selection, where
7677         selection_start == -1.  make sure we only select from index >= 0.
7678         Fixes bug #80291.
7679
7680 2006-12-21  Chris Toshok  <toshok@ximian.com>
7681
7682         * Control.cs: we don't need to be so draconian with
7683         UpdateDistances, and we thusly don't need to call it before
7684         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
7685
7686 2006-12-21  Daniel Nauck  <dna@mono-project.de>
7687
7688         * ComboBox.cs,
7689         TextBox.cs: Implemented AutoComplete properties.
7690
7691 2006-12-20  Chris Toshok  <toshok@ximian.com>
7692
7693         * DataGridView*.cs: some corecompare work.
7694
7695 2006-12-20  Jackson Harper  <jackson@ximian.com>
7696
7697         * XplatUIX11.cs: We need to hide the caret when deleting it,
7698         otherwise you get carets left lying around everywhere.
7699         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
7700         prevents getting some weird half drawn caret tracers when
7701         scrolling.
7702         * TextControl.cs: Attempt to reduce the number of times we need to
7703         recreate the caret.
7704
7705 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
7706
7707         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
7708
7709 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7710
7711         * DateTimePicker.cs:
7712         - Implemented missing 2.0 bits.
7713         - Changed some default values to match MS.
7714         
7715 2006-12-20  Jackson Harper  <jackson@ximian.com>
7716
7717         * TextBoxBase.cs: When changing the font across the document we
7718         can't recalculate after changing each line, since that will cahnge
7719         the line count.
7720         - PreferredHeight is a little different than i thought.
7721         - When backspacing, move the caret before we do the actual char
7722         delete, because when that delete crosses a wrap boundary the
7723         positional information will change.
7724
7725 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7726
7727         * Control.cs: Added some missing 2.0 bits: 
7728         BackgroundImageLayout, BackgroundImageLayoutChanged, 
7729         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
7730         add IBindableComponent and IDropTarget implementation.
7731         
7732         * MonthCalendar.cs: 
7733         - Added all missing 2.0 features:
7734         BackgroundImageLayout, RightToLeftLayout, 
7735         OnHandleDestroyed, RightToLeftLayoutChanged, 
7736         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
7737         PaddingChanged.
7738         - Rewrote all the BoldDate code, it was completely broken.
7739         - Fixed all the tests (the tests can now be re-enabled, the
7740         problems were not with the tests, but with the control, it was
7741         mostly broken).
7742         
7743         * DateTimePicker.cs: Changed the location where the 
7744         MonthCalendar is shown.
7745         
7746 2006-12-19  Chris Toshok  <toshok@ximian.com>
7747
7748         * DataGridView.cs: add IDropTarget implementation.
7749
7750         * ToolStripPanel.cs: add IDropTarget implementation.
7751
7752 2006-12-19  Jackson Harper  <jackson@ximian.com>
7753
7754         * TextControl.cs: soft now means something different than what it
7755         used to mean, we want to move the caret regardless of whether or
7756         not this break was soft (would we really have wanted the caret
7757         to not move with the break in the old context?)
7758         * TreeView.cs: Make sure we factor in the vert scrollbar when
7759         calculating the horizontal scrollbar's maximum.
7760
7761 2006-12-19  Andreia Gaita  <avidigal@novell.org>
7762
7763         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
7764         check for keywords in alternate casing, close bug #80049.
7765
7766 2006-12-19  Chris Toshok  <toshok@ximian.com>
7767
7768         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
7769         methods (which all do nothing).
7770
7771         * IDropTarget.cs: add the 4 missing methods.
7772
7773 2006-12-19  Chris Toshok  <toshok@ximian.com>
7774
7775         * TableLayoutRowStyleCollection.cs: corcompare work.
7776         
7777         * TableLayoutSettings.cs: same.
7778
7779         * TableLayoutStyle.cs: same.
7780
7781         * TableLayoutColumnStyleCollection.cs: same.
7782
7783 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
7784
7785         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
7786         TableLayoutPanel I've had in my local tree for way too long.
7787
7788 2006-12-19  Miguel de Icaza  <miguel@novell.com>
7789
7790         * TableLayoutSettings.cs: Finish the public API (still needs all
7791         the logic to update on changes). 
7792
7793         * TableLayoutPanelCellPosition.cs: new file.
7794         
7795         * TableLayoutRowStyleCollection.cs,
7796         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
7797         TableLayoutSettings.cs: Track the final 2.0 table api.
7798
7799 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7800
7801         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
7802         and Image List 2.0 members for ColummnHeader.
7803         * ListView.cs: Add key-related 2.0 methods for
7804         ColumnHeaderCollection.
7805
7806 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
7807
7808         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
7809         ArgumentNullException if items argument is null. Ignore null item in
7810         arrays. Removed extra tabs.
7811
7812 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
7813
7814         * MonthCalendar.cs: Fixed InvalidCastException.
7815
7816 2006-12-19  Jackson Harper  <jackson@ximian.com>
7817
7818         * TextControl.cs: Don't increment the position here.
7819         - When calculating char positions only add in the line break size
7820         for hard line breaks.
7821
7822 2006-12-19  Andreia Gaita  <avidigal@novell.org>
7823
7824         * SendKeys.cs: Changed some things to match ms.net behaviour
7825         when parsing shifted capital letters.
7826         
7827         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
7828         Add window handle as parameter to SendInput. X11 needs the 
7829         window handle, and the handle being passed      to it in the keys 
7830         queue is the active control handle (which windows needs), not 
7831         the window handle.
7832         
7833         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
7834         to support SendKeys on X.       
7835         
7836         * X11Keyboard: Implement helper method to lookup a linux keycode
7837         given the virtual keycode. Added table of keycode-2-virtualkey
7838         values to support this.
7839
7840 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7841
7842         * ListView.cs: Add support for SelectedIndexCollection
7843         and SelectedItemCollection 2.0 methods. Implement support
7844         for ImageKey too.
7845         * ListViewItem.cs: Add support for ListViewSubItemCollection
7846         2.0 methods. Also, fix an incorrect behavior of AddRange method
7847         (it shouldn't call Clear).
7848         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
7849
7850 2006-12-19  Jackson Harper  <jackson@ximian.com>
7851
7852         * RichTextBox.cs: 
7853         * TextBoxBase.cs: New args for FormatText
7854         * TextControl.cs: Rewrote the main drawing method, this version
7855         feels a little easier to understand and debug to me.  Hopefully it
7856         does to others also
7857         - Fix FormatText to OR in the new formating values.  Added
7858         FormatSpecified param, basically this works in the same way as
7859         BoundsSpecified in Control.
7860         - Set the caret properties when the caret is positioned.
7861         - When wrapping text make sure that we calculate the width of the
7862         last character
7863         - when calculating alignments we might have wrapped down to the
7864         next line, so don't search for an individual tag, search for the
7865         end of the line
7866         - We need to invalidate the selection area when we replace the
7867         selection.
7868         
7869 2006-12-19  Daniel Nauck  <dna@mono-project.de>
7870
7871         * Application.cs: add Restart () 2.0 support
7872
7873 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7874
7875         * MenuItem.cs: Invalidate menu item rectangle after change Enable
7876         property. Fixes #80268.
7877         
7878 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7879
7880         * MenuAPI.cs: Dont trigger select event when closes top menu
7881         item. Fixes #80270.
7882
7883 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7884
7885         * MenuAPI.cs: When you click on menuitem only trigger onselect
7886         event for top menu itens. Fixes #80271.
7887         
7888 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7889
7890         * MdiWindowManager.cs: Make IconicBounds depend on
7891         the bottom of MdiClient, not the top (fixes #80267)
7892         
7893 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7894
7895         * MdiClient.cs: Added missing 2.0 attribute
7896
7897 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7898
7899         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
7900         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
7901
7902 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7903
7904         * MenuAPI.cs: Fix click when menuitem is not popup,
7905         this regression was caused by last commit (#80272).
7906
7907 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
7908
7909         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
7910         fire click event or close menu. Fixes #80272.
7911
7912 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7913
7914         * ListViewHitTestInfo.cs: add
7915
7916 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7917
7918         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
7919         * FlatButtonAppearance.cs: add
7920         * DockingAttribute.cs: add
7921
7922 2006-12-17  Chris Toshok  <toshok@ximian.com>
7923
7924         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
7925         and rebind our columns when it does - this way, if you make
7926         changes to the DataTable (or set the Table attribute on a DataView
7927         after setting it as the DataGrid's DataSource, the changes are
7928         made visible.)  Fixes bug #80107.
7929
7930 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7931
7932         * ListViewGroup.cs: add internal Location property for layouting.
7933         * Theme.cs: add abstract ListViewGroupHeight function.
7934         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
7935
7936 2006-12-16  Andreia Gaita  <avidigal@novell.com>
7937
7938         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
7939         Added reset of selected index to 0 when adding first tab page.
7940         Fixes #80264
7941         
7942         * NumericUpDown.cs: Fix NET_2_0 check
7943
7944 2006-12-16  Daniel Nauck  <dna@mono-project.de>
7945
7946         * ListViewGroup.cs: fixed DefaultValueAttribute value
7947
7948 2006-12-16  Daniel Nauck  <dna@mono-project.de>
7949
7950         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
7951
7952 2006-12-15  Miguel de Icaza  <miguel@novell.com>
7953
7954         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
7955         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
7956         ScrollableControl.cs: Add a handful of methods that are
7957         overwritten in 2.0 
7958
7959 2006-12-15  Chris Toshok  <toshok@ximian.com>
7960
7961         * XplatUIWin32.cs: initial implementation of the Reversible
7962         drawing functions.  there are some problems.  DrawReversibleFrame
7963         doesn't seem to work at all for Dashed FrameStyle, and in the
7964         Thick case there are drawing errors at the corners (we probably
7965         need to bind Rectangle instead of doing moveto/lineto's.)
7966
7967 2006-12-16  Andreia Gaita  <avidigal@novell.com>
7968         
7969         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
7970         to send blocks of key messages. Send accumulates keys to send with Flush, 
7971         while SendWait sends all keys immediately.
7972                 
7973         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
7974         XplatUIX11.cs,  XplatUIX11-new.cs:
7975         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
7976         to Win32 SendInput.
7977         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
7978         
7979         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
7980         testing for ms.net on this class is very tricky, as the tests run too fast 
7981         to allow the hook to release, essentially freezing the keyboard and the 
7982         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
7983         category :p
7984
7985 2006-12-16  Daniel Nauck  <dna@mono-project.de>
7986
7987         * Padding.cs: fixed serialization compability to MS ("_var" field names),
7988                         added missing attributes.
7989  
7990 2006-12-15  Daniel Nauck  <dna@mono-project.de>
7991
7992         * ListViewGroup.cs: Added missing attributes.
7993         * ListViewGroupCollection.cs: Added missing attributes.
7994
7995 2006-12-15  Daniel Nauck  <dna@mono-project.de>
7996
7997         * ListViewItem.cs: fixed ListViewSubItem text property.
7998
7999 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8000         
8001         * Control.cs: Added missing 2.0 attributes
8002         
8003 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8004         
8005         * MdiClient.cs: Added missing 2.0 attribute.
8006         * MonthCalendar.cs: Added some missing 2.0 attributes 
8007         and properties.
8008         
8009 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8010
8011         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
8012
8013 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
8014
8015         * MainMenu.cs: Add the new 2.0 constructor to help out people
8016         using the MainMenu in VS2005.
8017
8018 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8019         
8020         * MdiChildContext.cs: Removed it, no longer used.
8021         * MdiClient.cs: Added missing 2.0 attributes.
8022         
8023 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8024         
8025         * InternalWindowManager.cs: Fix a NullRef with previous 
8026         changes for toolwindows.
8027         
8028 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8029
8030         * Control.cs: 
8031         - Added AfterTopMostControl to allow for certain controls 
8032         to always stay on top when normal controls are brought to 
8033         front.
8034         
8035         * XplatUIWin32.cs: 
8036         - (DrawInversibleRectangle): Get window rectangle from Win32 
8037         in stead of from control, since Win32 doesn't calculate
8038         screen coords correctly from control's Location if it 
8039         have docked siblings.
8040         
8041         * MdiWindowManager.cs:
8042         - Correct the control menu popup location when clicked on
8043         the maximized form icon. (fixes #80223.1)
8044         - Don't show moving rectangle if mouse hasn't moved from
8045         the original clicked point.
8046         - Removed FormGotFocus handler (not used).
8047         - Calculate the control buttons location from the main
8048         window's size and not client size (fixes #79770).
8049         - Form is now closed when the form icon is double-clicked
8050         (fixes #79775). 
8051         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
8052         
8053         * InternalWindowManager.cs:
8054         - Moved some MDI-only methods to MdiWindowManager.
8055         - Removed unused properties and methods.
8056         - Unified method naming for methods handling wm messages.
8057         - Moved all message handling to seperate methods for
8058         each message.
8059         
8060         * ThemeWin32Classic.cs:
8061         - DrawManagedWindowDecorations now draws the title bar 
8062         with a gradient brush.
8063         - Add a CPDrawButtonInternal that allows us to specify
8064         light, normal and dark colors for the buttons (control 
8065         buttons for MDI children were drawn with the same light
8066         color as the background, therefore loosing the 3D effect).
8067         
8068         * SizeGrip.cs:
8069         - Add a CapturedControl property that is used to 
8070         determine the control to resize (defaults to parent). 
8071         Needed for MdiClient, since its SizeGrip's parent is
8072         MdiClient, but the control to resize is the main form.
8073         
8074         * MdiClient.cs:
8075         - Set SizeGrip's CapturedControl to the main form in order
8076         to resize the main form and not the MdiClient.
8077         - Override AfterTopMostControl to leave the scrollbars 
8078         always on top.
8079
8080 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8081
8082         * ListView.cs: fixed ListViewItemCollection AddRange and
8083                         implemented ListViewItemCollection AddRange 2.0 support.
8084
8085 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8086
8087         * ListViewGroup.cs: Add.
8088         * ListViewGroupCollection.cs: Add
8089         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
8090         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
8091                                 stub for ImageKey 2.0 support.
8092
8093 2006-12-14  Mike Kestner  <mkestner@novell.com>
8094
8095         * ListView.cs: add text padding to the autocalculation for columns
8096         of width -2.  Fixes #80207.
8097  
8098 2006-12-14  Mike Kestner  <mkestner@novell.com>
8099
8100         * ListView.cs: add some index guarding for partial row navigation 
8101         logic.  Fixes #80250.
8102
8103 2006-12-14  Mike Kestner  <mkestner@novell.com>
8104
8105         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
8106         are added or inserted to the collection.  Fixes #81099.
8107
8108 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
8109
8110         * MenuAPI.cs: Closes menu when right click out side of popup
8111         it fix problem in ContextMenu and MainMenu. Fixes #80252.
8112
8113 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8114
8115         * ListViewItem.cs: Fix dumb error.
8116
8117         * ListView.cs: Add Find and ContainsKey methods in 
8118         ListViewItemCollection, and also return true for IsReadOnly
8119         and IsFixedSize (changes for 2.0). 
8120
8121 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
8122
8123         * Control.cs: Allow Region to be set to null.
8124
8125 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8126
8127         * MdiWindowManager.cs: Remove unused (commented out) code.
8128         * Form.cs: When the MdiChild is maximized, the form needs 
8129         WM_NCMOUSELEAVE, so request it.
8130         * InternalWindowManager.cs: 
8131         - Added tooltips to control buttons.
8132         - Removed duplicated control button handling code.
8133         - Removed unused (commented out) code.
8134         
8135 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
8136
8137         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
8138         was used because we must set cursor without trigger ChangeCursor event
8139         and without change Cursor control property. Fixes #79963.
8140
8141 2006-12-12  Andreia Gaita  <avidigal@novell.com>
8142         
8143         * Control.cs: Check if Region setter value is null, and ignore
8144
8145 2006-12-12  Jackson Harper  <jackson@ximian.com>
8146
8147         * TextControl.cs: We were almost always drawing one more line then
8148         needed, since the GetLineByPixel will return the last line found
8149         at that pixel. In most cases though, we were invalidating up to
8150         the junction between two lines.
8151         - Improve debug code.
8152
8153 2006-12-12  Chris Toshok  <toshok@ximian.com>
8154
8155         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
8156         and FillReversibleRectangle.
8157
8158         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
8159         and FillReversibleRectangle.
8160
8161         * XplatUIWin32.cs: add stubs which do nothing for
8162         DrawReversibleFrame, DrawReversibleLine, and
8163         FillReversibleRectangle.
8164
8165         * XplatUIOSX.cs: add stubs which raise NIE for
8166         DrawReversibleFrame, DrawReversibleLine, and
8167         FillReversibleRectangle.
8168
8169         * XplatUIX11.cs: add working implementation for
8170         DrawReversibleFrame, DrawReversibleLine, and
8171         FillReversibleRectangle.
8172         
8173         * ControlPaint.cs: implement DrawReversibleFrame,
8174         DrawReversibleLine, and FillReversibleRectangle, by calling into
8175         the appropriate XplatUI method.
8176
8177 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8178
8179         * Form.cs: Make MdiClient have the focus even if it's
8180         not selectable, since it should receive WM_KEY* and WM_MOUSE 
8181         messages. Fixes #79907.
8182         
8183 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8184
8185         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
8186         queried after the window is created.
8187         
8188         * XplatUIX11.cs: Added SendParentNotify to implement 
8189         WM_PARENTNOTIFY logic. Fixes #79965.
8190         
8191         * Control.cs: Added MakeParam.
8192         
8193 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8194
8195         * MdiClient.cs: Resume Layout before setting window
8196         states (fixes #80201).
8197
8198 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8199
8200         * MenuAPI.cs: Deselect a menu item after performing
8201         the click (fixes #80197).
8202
8203 2006-12-11  Jackson Harper  <jackson@ximian.com>
8204
8205         * TextBoxBase.cs: We need to cap this value, since Maximum -
8206         ViewPortHeight can be less than zero.
8207         - Only do selection with the left mouse button.
8208         * TextBox.cs: Don't tell the world that we have a context menu.
8209         * Control.cs: New method so that we can control whether or not the
8210         context menu is visible outside MWF.
8211
8212 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8213
8214         * ToolBarButton.cs: Fix text positon. 
8215
8216 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8217
8218         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
8219
8220         * Control.cs (DoubleBuffered): Add implementation.
8221
8222         * Application.cs (OpenForms): Add.
8223
8224 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8225
8226         * Form.cs: Use opacity instead of Opactiy to determine if we need
8227         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
8228
8229 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8230
8231         * Control.cs: Fix NRE if Control.Site was set to null.
8232
8233 2006-12-11  Chris Toshok  <toshok@ximian.com>
8234
8235         * Control.cs: ControlCollection.Remove should return if the arg is
8236         null, and ControlCollection.SetChildIndex should raise a ANE.
8237
8238 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
8239
8240         * Control.cs: Verify value set for Dock property. Code formatting
8241         updates.
8242
8243 2006-12-11  Jackson Harper  <jackson@ximian.com>
8244
8245         * TextControl.cs: Draw the caret and the selection when a flag is
8246         set on the owner.
8247         * TextBoxBase.cs: We want to draw the caret and the selection for
8248         TextBox but not for TextBoxBase.
8249         - If the window is resized and scrolling is no longer needed (the
8250         whole doc is visible) set the scroll position to zero.
8251         - The default SelectWord (the one TextBox uses) should move the
8252         caret to the end of the word.
8253         - SelectAll moves the caret to the end of the selection.
8254         * TextBox.cs: We don't selectall on focus, we just do it when the
8255         control is created.
8256         
8257 2006-12-11  Mike Kestner  <mkestner@novell.com>
8258
8259         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
8260
8261 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8262
8263         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
8264         2.0 support.
8265         * ListViewItem.cs: Add Name 2.0 property.
8266
8267 2006-12-11  Andreia Gaita  <avidigal@novell.com>
8268
8269         * TabControl.cs: Set visibility on selected or default tab 
8270         when tabcontrol handle is created, so that it's contents
8271         actually show up (duh). Fixes #80193
8272         Don't redraw the control if there is no handle created, as
8273         the selected index might be completely invalid. Added some tests
8274         to check for this.
8275
8276 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8277
8278         * ToolBar.cs: Uses maximun width and height of all buttons as 
8279         button rectangle when ButtonSize specified, it looks strange but
8280         is what happens in Win32. Fixes #80189.
8281
8282 2006-12-11  Jackson Harper  <jackson@ximian.com>
8283
8284         * TextControl.cs: Need to track undo levels ourself, since
8285         compound actions will mess them up.
8286
8287 2006-12-10  Andreia Gaita  <avidigal@novell.com>
8288
8289         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
8290         SelectedIndex value is changed (even if it's not valid).
8291         Reset SelectedIndex to 0 when the handle is created and if
8292         the current index is invalid.
8293         Fixes SelectdeIndex unit tests and #80128
8294
8295 2006-12-08  Chris Toshok  <toshok@ximian.com>
8296
8297         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
8298         calls EndEdit, it needs to be called before we set current_cell to
8299         its new value.  Otherwise, we end up committing the value in the
8300         textbox to the new cell as well.  Fixes bug #80160.
8301
8302 2006-12-08  Chris Toshok  <toshok@ximian.com>
8303
8304         * Form.cs (set_CancelButton): if the button's DialogResult is
8305         None, set it to Cancel.  Fixes bug 80180.
8306
8307 2006-12-08  Jackson Harper  <jackson@ximian.com>
8308
8309         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
8310         to watch ourselves when setting the canvas size and setting the
8311         scrollbar values.
8312
8313 2006-12-08  Chris Toshok  <toshok@ximian.com>
8314
8315         * DataGrid.cs: comment out the two MakeTransparent calls for the
8316         time being so people using trunk (and not 1.2.2) on windows can
8317         actually use the datagrid.  This deals with bug #80151.
8318
8319 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8320
8321         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
8322         Graphics.DrawImage (image, int, int, int, int) overload instead
8323         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
8324         the dpi difference and was blurring images it drew.
8325         [Fixes bug #79960]
8326
8327 2006-12-08  Chris Toshok  <toshok@ximian.com>
8328
8329         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
8330         rowcnt is 0 (such as with an empty datasource), and make sure we
8331         initialize not_usedarea.Y to cells.Y, so we don't draw over the
8332         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
8333
8334 2006-12-08  Chris Toshok  <toshok@ximian.com>
8335
8336         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
8337         grid.
8338
8339 2006-12-08  Chris Toshok  <toshok@ximian.com>
8340
8341         [ Fixes bug #80167 ]
8342         
8343         * ThemeWin32Classic.cs: don't draw the image if the button's flat
8344         style is FlatStyle.System.
8345
8346         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
8347         ButtonBase.flat_style private, and switch uses of it to the public
8348         property.
8349         
8350 2006-12-08  Chris Toshok  <toshok@ximian.com>
8351
8352         [ Fixes bug #80121 ]
8353         
8354         * ThemeWin32Classic.cs: center the caption text in the datagrid
8355         when we draw it.
8356
8357         * DataGrid.cs: lessen the amount we add to the caption height from
8358         6 to 2.  6 was making it huge.
8359
8360 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8361
8362         * UpDownBase: Handle MouseWheel call directly instead of capturing
8363         the inner textbox's OnMouseWheel. Fixes #80166
8364
8365 2006-12-08  Jackson Harper  <jackson@ximian.com>
8366
8367         * TextControl.cs: We need to invalidate the textbox when we empty
8368         it (how had this not been discovered before?)
8369
8370 2006-12-08  Jackson Harper  <jackson@ximian.com>
8371
8372         * TextBoxBase.cs: Reworked the mouse down code so I could get it
8373         to behave like MS, we now ignore the eventargs.Click and just
8374         track state ourself, which we were already doing anyways.
8375         - Constrain the double click handler to the double click size.
8376         
8377 2006-12-08  Chris Toshok  <toshok@ximian.com>
8378
8379         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
8380         direction if that scrollbar isn't shown.  fixes bug #80158.
8381
8382 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8383
8384         * NumericUpDown.cs: Update value on getter. Fixes #79950
8385
8386 2006-12-08  Chris Toshok  <toshok@ximian.com>
8387
8388         * MenuItem.cs: add back in the event cloning code.  I didn't know
8389         how to do it in the face of the EventHandlerList work i'd done
8390         last week.  Fixes bug #80183.
8391
8392 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8393
8394         * Control.cs: Add an invalidate to the BackgroundImage setter.
8395         [Fixes 80184]
8396
8397 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8398
8399         * ToolStrip*: Add some small properties reported by MoMA, fix event
8400         firing and default properties based off of unit tests, and add some
8401         attributes based off of the class status page.
8402
8403 2006-12-07  Jackson Harper  <jackson@ximian.com>
8404
8405         * TextBoxBase.cs: Take HideSelection into account when determining
8406         whether or not to show the selection.
8407         * RichTextBox.cs: After inserting the RTF into the document move
8408         the cursor to the beginning of the document.
8409
8410 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8411
8412         * Control.cs: Remove static ArrayList "controls" which maintained
8413         a reference to every control created.
8414         * Application.cs: Create a static FormCollection to maintain a reference
8415         to every form created.  Use it in places that formerly enumerated through
8416         the controls one looking for forms.
8417         * Form.cs: Add and remove self from above FormCollection.
8418
8419 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
8420
8421         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
8422           not libgdk (though it makes me wonder why I didn't have any
8423           problems)
8424
8425 2006-12-07  Chris Toshok  <toshok@ximian.com>
8426
8427         [ you had to know this was coming after that last commit...]
8428         
8429         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
8430         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
8431         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
8432         XCopyArea).
8433
8434 2006-12-07  Chris Toshok  <toshok@ximian.com>
8435
8436         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
8437         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
8438         all the behavior we need for double buffering.
8439
8440         * XplatUIDriver.cs: implement the 3 double buffer methods using a
8441         client side Bitmap, just like the old Control-based double buffer
8442         code did.  The methods are virtual, so each XplatUI driver
8443         subclass can replace the implementation to use a faster, platform
8444         specific approach.
8445
8446         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
8447         double buffer code, and clean things up a bit in the process.
8448
8449 2006-12-06  Chris Toshok  <toshok@ximian.com>
8450
8451         * Control.cs: reindent WndProc.
8452
8453 2006-12-06  Chris Toshok  <toshok@ximian.com>
8454
8455         [ I wanna be like BenM when I grow up ]
8456         
8457         * Hwnd.cs: create a single static Graphics object on the static
8458         Bitmap we create.  use this for our text measurements.
8459
8460         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
8461         This was causing us to allocate a backbuffer for every control,
8462         even when it wasn't flagged as double buffered.  Instead use the
8463         single graphics instance.  This might have implications for
8464         multithreaded applications.  If we run into problems we can switch
8465         to creating 1 Graphics per control, on the static Hwnd bitmap.
8466
8467         this change nets us a 7M savings in private dirty mappings when
8468         running FormsTest.exe.
8469
8470 2006-12-06  Chris Toshok  <toshok@ximian.com>
8471
8472         * ListView.cs: the BackgroundImage override is just to set
8473         attributes.  chain up to base.BackgroundImage.
8474
8475         * RichTextBox.cs: same.
8476
8477         * ToolBar.cs: same, but we need to also redraw the toolbar when it
8478         changes, so instead a handler for BackgroundImageChanged.
8479         
8480         * Control.cs: make background_image private.
8481
8482 2006-12-06  Chris Toshok  <toshok@ximian.com>
8483
8484         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
8485         sure we even need this assignment, but roll with it for now.
8486
8487         * Control.cs: make the cursor field private.
8488
8489 2006-12-06  Chris Toshok  <toshok@ximian.com>
8490
8491         * Form.cs: we don't need to explicitly set ImeMode to
8492         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
8493         behavior in the face of ImeMode.Inherit.
8494
8495         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
8496         change the ctor's assignment to use ImeMode instead of ime_mode.
8497
8498         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
8499         ImeModeInherit.  Only check for the parent's imemode (and return
8500         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
8501         This fixes the button unit test, which sets both ImeMode and
8502         DefaultImeMode to ImeMode.Disable.
8503
8504         also make the ime_mode field private.
8505
8506 2006-12-06  Chris Toshok  <toshok@ximian.com>
8507
8508         * Control.cs: make control_style private.
8509
8510         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
8511         setting the styles to true, then setting them to false instead of
8512         reverting to their previous values.
8513
8514         also, call SetStyle on the scrollbars instead of using
8515         control_style directly.
8516
8517 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
8518
8519         * FormCollection.cs: Implement. [2.0]
8520
8521 2006-12-06  Chris Toshok  <toshok@ximian.com>
8522
8523         * Control.cs: make tab_stop private.
8524
8525         * Label.cs: set TabStop, not tab_stop.  reformat some event
8526         add/remove methods to make them more compact.
8527
8528 2006-12-06  Chris Toshok  <toshok@ximian.com>
8529
8530         * RadioButton.cs: fix TabStop handling.
8531
8532 2006-12-06  Chris Toshok  <toshok@ximian.com>
8533
8534         * TextBox.cs: remove the explicit assignments to has_focus.
8535         Control does that.
8536
8537         * ButtonBase.cs: remove the assignment to has_focus.  Control will
8538         manage that.
8539         
8540 2006-12-06  Chris Toshok  <toshok@ximian.com>
8541
8542         * ButtonBase.cs: remove all uses of is_enabled from this code.
8543         it's always true when any of the code containing the checks is
8544         executed.
8545
8546 2006-12-06  Chris Toshok  <toshok@ximian.com>
8547
8548         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
8549         with different semantics (some are present in both 1.1 and 2.0
8550         profiles) so that we match MS's behavior in our unit tests.
8551
8552 2006-12-06  Jackson Harper  <jackson@ximian.com>
8553
8554         * TextControl.cs: Make this operation undoable.
8555         * TextBoxBase.cs: Factor the border width into the preferred
8556         height.
8557         - implement Modified as per the spec.
8558
8559 2006-12-06  Chris Toshok  <toshok@ximian.com>
8560
8561         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
8562
8563 2006-12-06  Chris Toshok  <toshok@ximian.com>
8564
8565         * Control.cs: make right_to_left and context_menu fields private.
8566
8567 2006-12-06  Chris Toshok  <toshok@ximian.com>
8568
8569         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
8570         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
8571         Control.child_controls private.  switch all uses over to
8572         Control.Controls.
8573
8574 2006-12-06  Chris Toshok  <toshok@ximian.com>
8575
8576         * System.Windows.Forms/GroupBox.cs,
8577         System.Windows.Forms/AccessibleObject.cs,
8578         System.Windows.Forms/ErrorProvider.cs,
8579         System.Windows.Forms/Control.cs,
8580         System.Windows.Forms/UpDownBase.cs,
8581         System.Windows.Forms/ScrollBar.cs,
8582         System.Windows.Forms/DateTimePicker.cs,
8583         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
8584         System.Windows.Forms/ToolTip.cs,
8585         System.Windows.Forms/RadioButton.cs,
8586         System.Windows.Forms/LinkLabel.cs,
8587         System.Windows.Forms/Splitter.cs,
8588         System.Windows.Forms/TextBoxBase.cs,
8589         System.Windows.Forms/ToolStripTextBox.cs,
8590         System.Windows.Forms/ContainerControl.cs,
8591         System.Windows.Forms/ThemeWin32Classic.cs,
8592         System.Windows.Forms/SizeGrip.cs,
8593         System.Windows.Forms/ToolStripDropDown.cs,
8594         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
8595         private.  switch all uses over to Control.Parent.
8596
8597 2006-12-06  Chris Toshok  <toshok@ximian.com>
8598
8599         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
8600         Control does this before calling emitting these events.
8601
8602         * TabControl.cs: same.
8603
8604         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
8605         Control.client_rect.
8606
8607         * ButtonBase.cs: use the ClientSize property instead of the
8608         client_size field.
8609
8610         * ScrollableControl.cs: same.
8611
8612         * Control.cs: another pass at making properties private.  also,
8613         move the initialization of tab_stop to the ctor.
8614
8615 2006-12-05  Andreia Gaita <avidigal@novell.com>
8616
8617         * TabControl.cs: Let the selected index be set freely if the 
8618         control handle is not yet created.
8619
8620 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8621
8622         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
8623         internal until I can rewrite DefaultLayout.
8624         * ToolStrip.cs: Fix build error and some general cleaning.
8625         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
8626         Fix build errors caused by making some of Control's fields private.
8627
8628 2006-12-05  Jackson Harper  <jackson@ximian.com>
8629
8630         * TextControl.cs: Redo Insert a little so that it use IndexOf
8631         instead of Split, this prevents it from messing up on things like
8632         \n\n\n. Also more effecient since the split array doesn't need to
8633         be created.
8634         * TextBoxBase.cs: AppendText doesnt handle multiline and non
8635         multiline text differently, this is the first of many fixes that
8636         will make multiline/non-multiline the same thing as far as the
8637         TextBoxBase is concerned.
8638         - Don't split the text and insert lines, this can lose some line
8639         endings (like is the last line a soft or hard break). Instead use
8640         the new Insert.
8641         - Fix an off by one when combining all the lines in the Text
8642         getter.
8643         - Remove separate multiline handling from the Text getter/setter.
8644
8645 2006-12-05  Chris Toshok  <toshok@ximian.com>
8646
8647         * ButtonBase.cs: a few changes:
8648
8649         - don't reinitialize internal Control fields in the ctor when they
8650         have the same values as Control sets them.
8651
8652         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
8653         this before calling those methods.
8654
8655         - we don't need to call Refresh for anything.  use Invalidate
8656         instead.
8657
8658         - OnEnabledChanged doesn't need to redraw at all - Control.cs
8659         calls Refresh in its OnEnabledChanged.
8660         
8661         - several of the events we were registered for in the ctor to
8662         redraw ourselves already include calls to Invalidate in the
8663         property setters that raise the events.  remove the extra
8664         invalidation.
8665
8666         - reformat a switch statement that was 83274658 columns wide.
8667         
8668 2006-12-05  Mike Kestner  <mkestner@novell.com>
8669
8670         * ComboBox.cs: fix a unit test regression from a TextBox
8671         SelectionLength return of -1 when there's no selection.  
8672
8673 2006-12-05  Chris Toshok  <toshok@ximian.com>
8674
8675         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
8676         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
8677         cleaning up some of the internal Control fields being used by
8678         subclasses.
8679
8680 2006-12-05  Mike Kestner  <mkestner@novell.com>
8681
8682         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
8683         listbox after AddImplicit calls since it defaults to hidden. Add a 
8684         hack to preserve requested heights across DropDownStyle changes.
8685
8686 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8687
8688         * PropertyGrid.cs: Hide FindFirstItem method from public API.
8689
8690 2006-12-05  Chris Toshok  <toshok@ximian.com>
8691
8692         * DataGridView.cs: fix compiler warnings.
8693
8694         * PrintControllerWithStatusDialog.cs: same.
8695
8696         * ToolBar.cs: same.
8697
8698         * FolderBrowserDialog.cs: same.
8699
8700         * Splitter.cs: same.
8701
8702         * DataGridViewComboBoxCell.cs: same.
8703
8704         * XplatUIWin32.cs: same.
8705
8706         * PictureBox.cs: same.
8707
8708         * Win32DnD.cs: same.
8709
8710         * PageSetupDialog.cs: same.
8711
8712         * FileDialog.cs: same.
8713
8714         * PrintDialog.cs: same.
8715
8716         * DataGridTextBoxColumn.cs: same.
8717
8718         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
8719
8720 2006-12-05  Chris Toshok  <toshok@ximian.com>
8721
8722         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
8723         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
8724         System.ComponentModel.EventHandlerList work.
8725
8726 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
8727
8728         * DrawTreeNodeEventArgs.cs: Added.
8729
8730 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8731         
8732         * InternalWindowManager.cs: Remove an unused field.
8733         
8734 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8735
8736         * InternalWindowManager.cs:
8737         - Save the point where the title bar is clicked.
8738         
8739         * MdiWindowManager.cs:
8740         - Only allow moving of the window as long as the 
8741         clicked point on the title bar does not get out of
8742         MdiClient's rectangle. Fixes #79982.
8743         
8744         * MdiClient.cs:
8745         - Added Horizontal/VerticalScrollbarVisible.
8746         - Simplified the scrollbar sizing algorithm.
8747         - Cache the difference in scrolled value in
8748         H/VBarValueChanged and move the calculation out
8749         of the for loop.
8750
8751 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8752
8753         * Control.cs: Make the Console.WriteLine in WndProc 
8754         write more info.
8755
8756 2006-12-05  Chris Toshok  <toshok@ximian.com>
8757
8758         * ToolStripManager.cs, ToolStripButton.cs,
8759         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
8760         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
8761         ToolStripSplitButton.cs, ToolStripSeparator.cs,
8762         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
8763         ToolStripProgressBar.cs, ToolStripContainer.cs,
8764         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
8765         to using System.ComponentModel.EventHandlerList.
8766
8767 2006-12-04  Chris Toshok  <toshok@ximian.com>
8768
8769         * LinkLabel.cs: fix up compiler warnings.
8770
8771         * TableLayoutSettings.cs: same.
8772
8773         * TreeView.cs: same.
8774
8775         * ToolBar.cs: same.
8776
8777         * TabControl.cs: same.
8778
8779         * RichTextBox.cs: same.
8780
8781         * ListViewItem.cs: same.
8782
8783         * PropertyGrid.cs: same.
8784
8785         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
8786
8787         * ToolTip.cs same.
8788
8789         * TextRenderer.cs: fix up compiler warnings.
8790
8791         * Label.cs: same.
8792
8793         * Form.cs: corcompare fixes.
8794
8795         * PictureBox.cs: fix up compiler warnings.
8796
8797         * ImageListStreamer.cs: same.
8798
8799         * TrackBar.cs: corcompare fix.
8800
8801         * Control.cs: fix up compiler warnings.
8802
8803         * SplitterPanel.cs: same.
8804
8805         * NumericTextBox.cs: same.
8806
8807         * ImageList.cs: same.
8808
8809         * StatusStrip.cs: same.
8810
8811         * ProgressBar.cs: corcompare fix.
8812
8813         * ToolStripButton.cs: fix up compiler warnings.
8814
8815         * ToolStripStatusLabel.cs: same.
8816
8817         * ToolStripSplitButton.cs: same.
8818
8819         * ToolStripSeparator.cs: same.
8820
8821         * ToolStripProgressBar.cs: same.
8822
8823         * ToolStripDropDownMenu.cs: same
8824
8825         * ToolStripDropDown.cs: same.
8826
8827         * ToolStripDropDownButton.cs: same.
8828
8829         * ToolStrip.cs: same.
8830
8831         * ToolStripControlHost.cs: same.
8832
8833         * ToolStripContentPanel.cs: same.
8834
8835         * ToolStripDropDown.cs: same.
8836
8837         * ToolStripContainer.cs: same.
8838
8839         * ToolStripPanel.cs: same, and add "new" where we need it to work
8840         with the new ArrangedElementCollection.
8841
8842         * ToolStripItemCollection.cs: add "new" where we need it to work
8843         with the new ArrangedElementCollection.
8844
8845 2006-12-04  Andreia Gaita <avidigal@novell.com>
8846
8847         * TabControl.cs: Fix default tab selection to after TabControl
8848         gets focus and not before. Fixes #80128
8849
8850 2006-12-04  Chris Toshok  <toshok@ximian.com>
8851
8852         * DataGridTableStyle.cs: remove the gross calling of
8853         datagrid.Refresh from here.  It's a broken idea and it doesn't
8854         work anyway.
8855
8856         * DataGrid.cs: instead, just register/unregister from the
8857         DataGridTableStyle events in CurrentTableStyle.  we play it
8858         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
8859         even though some would most likely not require it.  Fixes bug
8860         #80115 (and one portion of #80117 as a side effect).
8861
8862 2006-12-04  Chris Toshok  <toshok@ximian.com>
8863
8864         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
8865         so the textbox (if any) goes away.  Fixes bug #80117.
8866
8867 2006-12-04  Chris Toshok  <toshok@ximian.com>
8868
8869         * DataGridColumnStyle.cs: set the column's readonly property
8870         initially based on the property descriptor's IsReadOnly.  Fixes
8871         bug #80044.
8872
8873 2006-12-04  Chris Toshok  <toshok@ximian.com>
8874
8875         * ComboBox.cs: wrap the dropdown style changing work in
8876         SuspendLayout/ResumeLayout.  Fixes bug #79968.
8877
8878 2006-12-04  Jackson Harper  <jackson@ximian.com>
8879
8880         * TextBoxBase.cs: Fix off by one, since these are one-based.
8881         * TextBox.cs: Select all the text when we get focus.  The TextBox
8882         does this but the RTB does not.
8883
8884 2006-12-04  Chris Toshok  <toshok@ximian.com>
8885
8886         * DataGridTextBoxColumn.cs: remove some spew.
8887
8888         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
8889         but some part of me is saying "it shouldn't be here.."  At any
8890         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
8891         setting the value.
8892
8893 2006-12-04  Chris Toshok  <toshok@ximian.com>
8894
8895         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
8896         to reassign the propertydescriptor.
8897
8898 2006-12-04  Jackson Harper  <jackson@ximian.com>
8899
8900         * TextBoxBase.cs:
8901         * TextControl.cs: Remove some unused variables.  Maybe this will
8902         patch things up between mike and I.
8903         - don't split lines less then one char wide, if the viewport is
8904         that small text won't be visible anyways.
8905         
8906 2006-12-04  Jackson Harper  <jackson@ximian.com>
8907
8908         * TextBoxBase.cs: Default selection length is -1, need to do some
8909         more testing on windows to see when this is used for the property.
8910         - Redid the Lines [] property to that we properly remove soft line
8911         breaks
8912         - added support for preserving carriage returns
8913         -  CanUndo is not a variable like 'is undo enabled' it just returns
8914         true if there is undo operations available.
8915         - AppendText doesn't need to grab the last tag itself anymore,
8916         this happens automatically when we move the cursor.
8917         * TextControl.cs: Add CompoundActions to the undo class. This
8918         allows combining the other operations into one big option.  ie a
8919         paste will combine { delete old, insert new, move cursor }
8920         - Add InsertString undo operation
8921         - New method for deleting multiline text
8922         - Add carriage returns to lines. So we can preserve carriage
8923         returns when text is 'roundtripped'
8924
8925 2006-12-04  Chris Toshok  <toshok@ximian.com>
8926
8927         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
8928         minimum 0.  Fixes the scrollbar exception in bug #80136.
8929
8930 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8931
8932         * MdiClient.cs: 
8933         * MdiWindowManager: Removed unused fields and methods.
8934         
8935 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8936         
8937         * StatusBar.cs: Update all panels when a AutoSize=Contents
8938         panel needs updating.
8939         
8940         * StatusBarPanel.cs: Remove twidth and only use initialize.
8941         Fixes #80031.
8942                 
8943 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8944
8945         * Form.cs: When a form's MdiParent is set add it directly
8946         on top of the z-order in stead of relying on MdiClient's
8947         ActivateChild to do it. Fixes #80135.
8948         
8949         * MdiClient.cs: 
8950         - Remove original_order, mdi_child_list is already doing
8951         the same thing.
8952         - Create mdi_child_list on construction in
8953         stead of first use (avoids a few null checks).
8954
8955         * MenuItem.cs: Use an already existing list of mdi children
8956         to get the correct order of children and remove the other
8957         redundant list.
8958
8959 2006-12-04  Chris Toshok  <toshok@ximian.com>
8960
8961         * PropertyGridView.cs: cached_splitter_location is only used in
8962         !DOUBLEBUFFER code.
8963
8964         * PropertyGrid.cs: implement the ComComponentNameChanged event
8965         using Events, hoping that would fix the warning.  Looks like a
8966         compiler bug instead (#80144).
8967
8968         * PropertyManager.cs: remove unused method.
8969
8970 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
8971
8972         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
8973         include parentesis to fix expression evaluation. Fixes #79634.
8974
8975 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
8976         
8977         * MenuAPI.cs:
8978         - Changes to fix behavior in Menu control, some reported in #80097
8979         and other detected during behavior refactory like a select event
8980         problems.
8981         - Remove unneded "if's" conditions.
8982         - Created an internal to flag when popup is active in control, we need 
8983         it because in .NET you can have menu active but without popup active
8984         when you active menu using popup without visible items.
8985         - Mimic win32 behavior for Select and Popup events.  
8986         - Dont open popup menu when you dont have visible subitems.
8987         - Do nothing when click on disabled menu item.
8988         - Some small changes to follow the coding style guidelines.
8989         - Unselect menu only when another control gives focus. Fixes #80097.
8990         - Remove unused code.
8991         
8992         * MenuItem.cs: internal VisibleItems method to check if menu
8993         theres visible subitems, it will be usefull to fix some 
8994         behavior in Menu control.
8995         
8996 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
8997         
8998         * Timer.cs: Tag property for 2.0 profile.
8999         
9000 2006-12-01  Chris Toshok  <toshok@ximian.com>
9001
9002         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
9003         
9004         * Win32DnD.cs: comment out some unused fields.
9005
9006         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
9007         some unused properties/methods.
9008
9009         * XplatUIX11.cs: fix MousePosition so we override the base class's
9010         property instead of conflicting with it.
9011
9012         * PictureBox.cs: comment out some unused fields
9013
9014         * OSXStructs.cs: make some struct fields public.
9015
9016         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
9017         MousePosition so we override the base class's property instead of
9018         conflicting with it.
9019
9020         * X11Dnd.cs: comment out some unused fields
9021
9022         * X11DesktopColors.cs: fix some struct field visibility to quiet
9023         the compiler.
9024
9025         * X11Dnd.cs: remove some debug code.
9026
9027         * ThemeClearlooks.cs: comment out unused field.
9028
9029         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
9030
9031         * ThemeGtk.cs: comment out some unused pinvokes.
9032
9033         * Timer.cs: remove some unused fields.
9034
9035         * ThemeClearlooks.cs: comment out unused field.
9036
9037         * UpDownBase.cs: comment out unused field.
9038
9039         * DataObject.cs: comment out unused field.
9040
9041         * DataGridBoolColumn.cs: reomve unused field.
9042
9043         * DataGrid.cs: remove unused field.
9044
9045         * Cursor.cs: remove old ToBitmap code.
9046
9047         * ControlPaint.cs: remove unused method.
9048
9049         * ScrollBar.cs: remove unused fields.
9050
9051         * ComboBox.cs: remove unused field, and chain up to
9052         AccessibleObject ctor.
9053
9054         * ListBox.cs: remove unused field.
9055
9056         * ButtonBase.cs: wrap a couple fields in NET_2_0.
9057
9058         * GridEntry.cs: remove unused fields.
9059
9060         * Binding.cs: remove unused fields.
9061
9062         * AxHost.cs: remove unused method.
9063
9064         * ContainerControl.cs: remove unused field.
9065
9066         * ScrollableControl.cs: remove unused fields.
9067
9068 2006-12-01  Chris Toshok  <toshok@ximian.com>
9069
9070         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
9071         the Where/WhereString stuff.  it's easy enough to CWL
9072         Environment.StackTrace.
9073
9074         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
9075         unused private fields.
9076
9077 2006-12-01  Jackson Harper  <jackson@ximian.com>
9078
9079         * TextControl.cs: Do not update the view while inserting multiline
9080         text. If we update the view we might wrap lines, before entering
9081         the new lines, which causes the new line insertion calculations to
9082         be totally fubared.
9083         - Remove an old TODO
9084         - Make debug output a little nicer
9085         
9086 2006-12-01  Chris Toshok  <toshok@ximian.com>
9087
9088         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
9089
9090 2006-12-01  Chris Toshok  <toshok@ximian.com>
9091
9092         [ fix the majority of the CS0108 warnings we've been suppressing ]
9093         
9094         * TreeView.cs: mark BackgroundImageChanged as 'new'.
9095
9096         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
9097         to "LayoutToolBar" to quiet mcs.
9098         
9099         * TabControl.cs: mark our ControlCollection class as 'new'.
9100
9101         * TextBoxBase.cs: mark some events as 'new'.
9102
9103         * Splitter.cs: TabStop is 'new'.
9104
9105         * ControlBindingsCollection.cs: mark a few methods as new since
9106         they change the visibility from protected to public.
9107
9108         * RadioButton.cs: DoubleClick -> base class, and remove unused
9109         HaveDoubleClick.
9110
9111         * MonthCalendar.cs: ImeMode property -> base class, and mark many
9112         events as new.
9113
9114         * NumericUpDown.cs: TextChanged -> base class.
9115
9116         * CheckedListBox.cs: mark our ObjectCollection class as new to
9117         quiet mcs.
9118
9119         * FolderBrowserDialog.cs: make HelpRequest event new and have it
9120         muck with the base class.
9121
9122         * StatusBar.cs: fix some mcs warnings about Update being the same
9123         name as a base class method.
9124
9125         * RichTextBox.cs: mark some events as new, and make them do things
9126         to the base class impl.
9127
9128         * UserControl.cs: mark TextChanged as new, and have it manipulate
9129         base.TextChanged.
9130
9131         * UpDownBase.cs: mark some things new.
9132
9133         * CheckBox.cs: mark DoubleClick "new", and add some text about
9134         what we need to look at.
9135
9136         * Panel.cs: make the events "new", and manipulate the base
9137         version.  these are just here for attributes.
9138
9139         * AccessibleObject.cs: make owner private.
9140
9141         * Control.cs: deal with AccessibleObject.owner being private.
9142         cache our own copy if we need it.
9143
9144         * Button.cs: add "new" to the DoubleClickEvent.
9145
9146         * ListBox.cs: no need to track our own has_focus here.  let
9147         Control.has_focus do it for us.  Also some other work to clear up
9148         warnings about not overriding base class methods of the same name.
9149         
9150         * ComboBox.cs: clear up some warnings about not override base
9151         class methods of the same name.
9152
9153 2006-12-01  Chris Toshok  <toshok@ximian.com>
9154
9155         * Form.cs: flag a few things as "new" to quiet some of the mcs
9156         warnings.
9157
9158         * AxHost.cs: same.
9159
9160         * PrintPreviewDialog.cs: same.
9161
9162         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
9163         now DGV isn't so horrible on the class status page.  also, move
9164         all events to using System.ComponentModel.EventHandlerList.  my
9165         wrists hurt.
9166
9167 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9168
9169         * MdiWindowManager.cs:
9170         - Set form to active mdi child if shown,
9171         and update the active mdi child to the next 
9172         remaining child in the z-order if the form is hidden.
9173
9174         * Form.cs: 
9175         - Track if the form has been visible and if its 
9176         visibility is beeing changed, so that the MdiClient
9177         can properly decide the ActiveMdiChild. The MdiClient 
9178         cannot track this since the form can change visibility 
9179         before MdiClient is created.
9180
9181         * MdiClient.cs:
9182         - Don't activate anything of the parent form is changing
9183         its visibility.
9184         - Rework ActiveMdiChild to only return visible mdi 
9185         children and take into account several other corner 
9186         cases.
9187
9188 2006-12-01  Chris Toshok  <toshok@ximian.com>
9189
9190         * IBindableComponent.cs: new 2.0 interface.
9191
9192 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
9193
9194         * DataGrid.cs: Font for caption area is bold by default.
9195
9196 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
9197
9198         * Menu.cs: Tag property for 2.0.
9199         
9200 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9201
9202         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
9203         
9204 2006-12-01  Chris Toshok  <toshok@ximian.com>
9205
9206         * TreeView.cs: doh, the Begin* events should be
9207         TreeViewCancelEventHandler.
9208
9209 2006-12-01  Chris Toshok  <toshok@ximian.com>
9210
9211         * Form.cs: Form.ControlCollection already stores off the
9212         form_owner field.  don't access the base class's internal "owner"
9213         field.
9214
9215         * Control.cs: make all the fields in Control.ControlCollection
9216         private.  there's no need for any internal fields here.
9217
9218 2006-12-01  Chris Toshok  <toshok@ximian.com>
9219
9220         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
9221         OnHandleCreated.  Fixes bug #80109.
9222
9223 2006-12-01  Chris Toshok  <toshok@ximian.com>
9224
9225         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
9226         SplitContainer.cs, Control.cs, StatusStrip.cs,
9227         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
9228         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
9229         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
9230         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
9231         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
9232         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
9233         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
9234         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
9235         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
9236         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
9237
9238         do most of the work to convert our code over to use
9239         System.ComponentModel.Component.Events for
9240         adding/removing/dispatching events.
9241
9242
9243 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9244
9245         * DataGridView.cs: Fix an ArgumentNullException reported 
9246         twice today in IRC.
9247
9248 2006-11-30  Mike Kestner  <mkestner@novell.com>
9249
9250         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
9251         grabbed listbox.  Fixes #80036 and #80101.
9252
9253 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9254
9255         * Message.cs: Changed ToString() to match MS.
9256         
9257 2006-11-30  Jackson Harper  <jackson@ximian.com>
9258
9259         * TextBoxBase.cs: You can still change the selected text on a read
9260         only textbox.
9261         * TextControl.cs: Lower magic number for wrap calculations. This
9262         lets text get closer to the right (far) edge.
9263
9264 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9265
9266         * Control.cs: Tweak 2.0 layout properties.
9267         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
9268         * TextRenderer.cs: Add a new overload.
9269         * ToolStrip*: Huge amount of changes and new features.
9270
9271 2006-11-30  Mike Kestner  <mkestner@novell.com>
9272
9273         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
9274         scroll range correct.  Fixes #79994.
9275
9276 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9277
9278         * MdiWindowManager.cs: Update main form's text when
9279         a form is closed. (fixes #80038)
9280         
9281 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
9282
9283         * ToolBar.cs:
9284         - Fix an regression in ButtonSize.
9285         - Get ImeMode default value change to "Disable".
9286         - Get ShowTooltips default value change to true, default value is 
9287         "false" but after make a test in .NET we get "true" result as default.
9288         
9289 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
9290
9291         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
9292
9293 2006-11-29  Chris Toshok  <toshok@ximian.com>
9294
9295         * XplatUIWin32.cs (GetWindowTransparency): check return value of
9296         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
9297         SetWindowTransparency hasn't been called.
9298
9299 2006-11-29  Chris Toshok  <toshok@ximian.com>
9300
9301         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
9302         if it's supported.
9303         (set_AllowTransparency): reorder things a little so that the
9304         WS_EX_LAYERED style is removed properly.
9305
9306 2006-11-29  Chris Toshok  <toshok@ximian.com>
9307
9308         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
9309         
9310         * Form.cs: only call the XplatUI transparency method (get/set) if
9311         SupportsTransparency says it's supported. Otherwise fallback to
9312         doing nothing (in the set case) or returning the instance field we
9313         cache (in the get case).
9314
9315         * XplatUIStructs.cs: add TransparencySupport flag enum.
9316         
9317         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
9318         change to SupportsTransparency.
9319
9320         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
9321         TransparencySupport.None from SupportsTransparency.
9322
9323         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
9324         TransparencySupport.Set from SupportsTransparency.
9325
9326         * XplatUIWin32.cs: implement GetWindowTransparency calling
9327         GetLayeredWindowAttributes, and implement SupportsTransparency by
9328         checking whether or not both
9329         GetWindowTransparency/SetWindowTransparency are available
9330         entrypoints.  We need to do this since SetWindowTransparency is
9331         available as of win2k, but GetWindowTransparency requires winxp.
9332         yay win32 api.
9333
9334         * XplatUI.cs: Add GetWindowTransparency, and change
9335         SupportsTransparency to allow for either/both Get/Set.
9336
9337 2006-11-29  Chris Toshok  <toshok@ximian.com>
9338
9339         * DataGrid.cs: keep from going into an infinite loop redrawing a
9340         datagrid that has no datasource.  Fixes bug #80033.
9341
9342 2006-11-29  Chris Toshok  <toshok@ximian.com>
9343
9344         * MenuItem.cs: fix the NRE when we assign text (and therefore call
9345         Invalidate) before the mainmenu has been assigned to a control.
9346
9347 2006-11-29  Chris Toshok  <toshok@ximian.com>
9348
9349         * DataGrid.cs: detect when we should be double the double click
9350         row/column autosize stuff, although that codepath has yet to be
9351         written.  part of the work for bug #79891.
9352
9353 2006-11-29  Chris Toshok  <toshok@ximian.com>
9354
9355         * Binding.cs (SetControl): fix unit test.
9356
9357 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9358
9359         * PageSetupDialog.cs: Validate the margins and set them in
9360         PageSettings. 
9361         * NumericTextBox.cs: New class to mimic the behavior of the
9362         textboxes used in the printing dialogs.
9363
9364 2006-11-29  Andreia Gaita  <avidigal@novell.com>
9365         
9366         * Form.cs: Revert previous change (remove call UpdateBounds
9367         from form constructor), because it messes with the handle creation
9368         order, and that one needs lots and lots of love.
9369         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
9370         for valid printer and throw InvalidPrinterException if document
9371         is set but printer not valid), adding a MonoTODO. Once 
9372         handle creation is done properly, we can put this back in.
9373
9374 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9375
9376         * MenuItem.cs: Create a invalidate method for menu item, to be
9377         calling from set text, it make text changes to imadiate update
9378         on screen. Fixes #80013. 
9379         
9380 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9381
9382         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
9383         fixes bug #80070 and some other problem on toolbar buttons
9384         layout.
9385
9386 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9387
9388         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
9389         with dotted brush.      Fixes #79564
9390         
9391 2006-11-28  Andreia Gaita  <avidigal@novell.com>
9392
9393         * Form.cs: Removed call to UpdateBounds on Form
9394         constructor, it was causing a call to CreateHandle
9395         before it was supposed to.
9396         * PrintControllerWithStatusDialog: Applied patch
9397         by Chris Toshok to hide controller when there are
9398         no printers available.
9399         PrintDialog.cs: initialize printer settings to 
9400         null - correct DefaultValues test #5
9401         * PrintPreviewControl.cs: Move PrintController
9402         initialization to GeneratePreview
9403         * PrintPreviewDialog.cs: 
9404         - Remove Preview generation     from Document_set(). It is 
9405         called on OnPaint
9406         - Throw InvalidPrinterException on CreateHandle if
9407         a Document is set but there are no printers or 
9408         printer is not valid.
9409         * ThemeWin32Classic: don't paint PrintPreviewControl
9410         if there is nothing to paint    
9411
9412 2006-11-28  Miguel de Icaza  <miguel@novell.com>
9413
9414         * Form.cs: Add another popular method.
9415
9416         * TabPage.cs: ditto.
9417
9418 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9419
9420         * MenuItem.cs: Fixed a warning.
9421         * InternalWindowManager: Fixed a warning.
9422
9423 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9424
9425         * MenuItem.cs:
9426         - When cloning a menu also clone MdiList and clone the 
9427           window menu items properly (as the forms and menuitems
9428           are kept in an internal hashtable, these need updating 
9429           as well)
9430         - Rewrote the window menu code, menu items are added in the
9431           order the forms were added to their parent, and they are
9432           updated every time the window menu is shown (before the
9433           list was only generated once, in the current order of the
9434           forms, and would never be updated). A checkmark is shown
9435           next to the item corresponding to the active mdi child.
9436
9437 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9438
9439         * XplatUIStructs.cs: 
9440         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
9441         
9442         * XplatUIWin32.cs: 
9443         - Added TME_NONCLIENT to TMEFlags.
9444         - Handles WM_NCMOUSEMOVE in GetMessage to 
9445           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
9446
9447         * MdiWindowManager:
9448         - Now merges mdi child menu to parent menu when maximized.
9449         - Recalculate NC areas of both mdi child and mdi parent. 
9450           Fixes #79757 (4).
9451           on window state and size changes.Fixes #79844 (3).
9452         - Handle WM_NCCALCSIZE to properly calculate borders.
9453
9454         * Form.cs:
9455         - Add/remove to the mdi containers list of mdi children 
9456           in the order they are added.
9457         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
9458           to the maximized mdi child.
9459         
9460         * InternalWindowManager.cs:
9461         - Only execute a click on the control buttons on the mouse up,
9462           not on the mouse down. Show the state of the button 
9463           (was only showing Normal state, never Pressed state). The
9464           pressed button now follows the mouse (if you click the Close 
9465           button and move the mouse over the Maximize button, the 
9466           Maximize button will be shown as pressed). Since Win32 does
9467           not generate WM_NCLBUTTONUP if you release the button outside
9468           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
9469           it as a mouse up.
9470         
9471         * ThemeWin32Classic.cs:
9472         - Draw a missing border around mdi child forms. Fixes #79844 (2).
9473
9474         * MdiClient.cs:
9475         - Added a list of forms which contains the order the forms are
9476           added to the mdi parent.
9477         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
9478         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
9479         - If the active form changes set the scrollbars to the top
9480           of the Z order, otherwise the form could hide them.
9481         - Scrollbars are now sized according to ClientSize, not 
9482           to Size, and they take into account the other scrollbar
9483           to determine maximum.
9484         
9485 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
9486         
9487         * XplatUI.cs:
9488         * XplatUIDriver.cs:
9489         * XplatUIX11.cs:
9490         * XplatUIWin32.cs:
9491         * XplatUIOSX.cs:
9492         - Added RequestAdditionalWM_NCMessages for windows to 
9493           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
9494           Currently only implemented in XplatUIWin32.
9495
9496 2006-11-27  Chris Toshok  <toshok@ximian.com>
9497
9498         * Hwnd.cs: only add the hwnd to the windows hash in
9499         set_WholeWindow and set_ClientWindow if whole_window/client_window
9500         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
9501
9502 2006-11-27  Mike Kestner  <mkestner@novell.com>
9503
9504         * ComboBox.cs: remove redundant OnDropDown call.  It is called
9505         from the ComboListBox.ShowWindow code. Fixes #79969.
9506
9507 2006-11-27  Chris Toshok  <toshok@ximian.com>
9508
9509         * Hwnd.cs: remove the setters for ExposePending and
9510         NCExposePending - noone uses them.
9511
9512 2006-11-27  Jackson Harper  <jackson@ximian.com>
9513
9514         * TextControl.cs: new param for ReplaceSelection which determines
9515         whether we select the new selection, or set the cursor to the end
9516         of the new selection.
9517         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
9518         pasting, select the new text.
9519         * RichTextBox.cs: Use new param for ReplaceSelection.
9520
9521 2006-11-27  Jackson Harper  <jackson@ximian.com>
9522
9523         * TextBoxBase.cs: Set the selection to the caret after the caret
9524         is moved, otherwise they get out of sync.
9525
9526 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9527
9528         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
9529         it fixes #80015
9530
9531 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9532
9533         * ThemeWin32Classic.cs: 
9534         - Fix toolbar drop down arrow position.
9535         - Fix drop down appearance when ToolBar.Appearance is normal,
9536         it fixes #80018.
9537         
9538 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
9539
9540         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
9541         * Control.cs: Same.
9542         * UpDownBase.cs: Same.
9543         * ButtonBase.cs: Same.
9544         * ScrollBar.cs: Same.
9545         * TrackBar.cs: Same.
9546         * PictureBox.cs: Same.
9547         * UserControl.cs: Same.
9548         * Label.cs: Same.
9549         * ListControl.cs: Same.
9550         * TextBoxBase.cs: Same.
9551         * ListView.cs: Same.
9552         * RichTextBox.cs: Same.
9553         * TreeView.cs: Same.
9554
9555 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
9556
9557         * PrintDialog.cs:
9558         - Text label for where 
9559         - Text label comment was not shown
9560
9561 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
9562
9563         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
9564
9565 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9566
9567         * InternalWindowManager.cs: 
9568         - Handle WM_PARENTNOTIFY to activate the form
9569         if any child control is clicked.
9570         - The form is only sizable if not minimized.
9571
9572         * MdiWindowManager.cs:
9573         - Save the IconicBounds if the form is moved.
9574         - Rework SetWindowState, now the window bounds 
9575         are stored only if the old window state is Normal.
9576         
9577         * MdiClient.cs:
9578         - In SetWindowStates store the old window state if 
9579         the window is maximized and restore window state if
9580         the window looses focus.
9581         - Don't handle any scrollbar value changes if 
9582         initializing the scroll bars. Fixes #79771.
9583         - Reworked ArrangeIconicWindows. Current algorithm
9584         tests bounds agains all other minimized windows, if
9585         any intersections create new bounds (going left to 
9586         right, bottom to top) and then test again. When 
9587         successful the bounds are saved and never computed
9588         again. Fixes #79774.
9589
9590 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9591
9592         * InternalWindowManager.cs: Added HandleTitleBarUp.
9593
9594 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9595
9596         * NumericUpDown.cs: In .NET 1.1, user entered text is still
9597         hexadecimal in ParseUserEdit.
9598
9599         
9600 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9601
9602         * MdiWindowManager.cs: 
9603         - Handle a click on the form's icon to show the 
9604         system menu (when maximized). Fixes #79775.
9605         - Change the existing click handler for the form's
9606         icon when not maximized to show on MouseUp.
9607         Fixes #79776.
9608
9609         * Form.cs: In OnResize only layout the mdi child's
9610         parent if it actually has a parent. Might not if
9611         the window is closing.
9612
9613
9614 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9615
9616         * MdiClient.cs: Ignore active MDI client for text of parent, if
9617         child has no text set.
9618
9619 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9620
9621         * ToolBar.cs: Fixed ToString to match MS.
9622
9623 2006-11-22  Andreia Gaita  <avidigal@novell.com>
9624
9625         * NumericUpDown: 
9626         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
9627         update inner values on set. Fixes #79966.
9628         - Override OnLostFocus to update value on NET 2. Fixes #79950.
9629         - Fix hexadecimal parsing.
9630         
9631         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
9632         parent. Fixes #79957
9633
9634 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9635
9636         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
9637         the actual size has to be queried, since if height /
9638         width is negative Win32 changes it to 0. 
9639         Fixes #79999 on Windows.
9640         
9641         * XplatUIX11.cs: Set height / width to 0 if negative
9642         in SetWindowPos. Fixes #79999 on Linux.
9643         
9644 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9645
9646         * ThemeWin32Classic.cs: Fix text redenring when button is
9647         pressed.
9648
9649 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9650
9651         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
9652         and later navigate by mouse. Fixes #79528.
9653
9654 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9655
9656         * ToolBar.cs: Set default value for TabStop to false in
9657         constructor, it fixes remaining behavior of bug #79863.
9658
9659 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9660
9661         * MdiWindowManager.cs:
9662         * InternalWindowManager.cs:
9663         - Moved a few methods specific to Mdi from 
9664         InternalWindowManager to MdiWindowManager.
9665         Fixes #79996.
9666         
9667 2006-11-21  Chris Toshok  <toshok@ximian.com>
9668
9669         * XplatUIOSX.cs: stub out InvalidateNC.
9670
9671         * XplatUIWin32.cs: implement InvalidateNC using the call I found
9672         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
9673
9674         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
9675
9676         * XplatUIDriver.cs: add InvalidateNC abstract method.
9677
9678         * XplatUI.cs: add InvalidateNC.
9679
9680 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9681
9682         * ToolBar.cs: Invalidate complete button area when pressed status 
9683         was changed.
9684         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
9685         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
9686         by 1 when button is pressed.
9687
9688 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9689
9690         * ToolButton.cs: Invalidate middle of DropDown button when
9691         ToolBar theres DropDownArrows.
9692         * ThemeWin32Classic.cs: Change position of DropDown arrow and
9693         fix DropDown drawing operations.
9694
9695 2006-11-20  Chris Toshok  <toshok@ximian.com>
9696
9697         * NativeWindow.cs: fix the formatting of functions ('{' on the
9698         following line), and enable the thread exception dialog.
9699
9700         * Application.cs: remove the duplicate exception catching from
9701         here.
9702
9703 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9704
9705         * Toolbar.cs: Triggers button click event when click on icon
9706         of dropdown ToolBarButton. Fixes #79912.
9707         
9708 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9709
9710         * Theme.cs:
9711         * ThemeWin32Classic.cs:
9712         - Added a property WindowBorderFont to enable themeing
9713           of mdi child windows' Text.
9714           
9715 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9716
9717         * InternalWindowManager.cs:
9718         * Form.cs:
9719         * MdiClient.cs:
9720         * MdiWindowManager.cs: 
9721         - If mdi child is maximized, set mdi parent's
9722           text to "Parent - [Child]". Fixes #79770.
9723         - If there is any maximized mdi child windows, only the active 
9724           window (and any new windows) is maximized, the rest are normal.
9725         - On a WindowState change only save mdi child's window bounds 
9726           if the old window state was normal. Fixes #79774.
9727         - The scroll bars are now calculated on hopefully all
9728           necessary events. Fixed #79771 / #79844->6 / #79906.
9729         - MdiClient.SizeScrollBars() now takes into account docked 
9730           controls in the parent when calculating available space.
9731         - InternalWindowManager now always repaints the entire title
9732           area. Fixes #79844->1/4/5.
9733         - Added RequestNCRecalc on mdi child windowstate changes.
9734           Fixes #79772.
9735
9736 2006-11-20  Mike Kestner  <mkestner@novell.com>
9737
9738         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
9739         in the MouseUp handler of the listbox and move the return handling
9740         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
9741
9742 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9743
9744         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
9745
9746 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9747
9748         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
9749           working in 1.2.x anymore. So, updated.
9750
9751 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
9752
9753         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
9754         NumberGroupSeparator of current culture instead of assuming en-US.
9755         Fixed bug #79967.
9756
9757 2006-11-17  Mike Kestner  <mkestner@novell.com>
9758
9759         * Control.cs: Add the concept of implicit bounds setting so that
9760         dock/undock round trips preserve explicitly set size/locations.
9761         Fixes #79313.
9762
9763 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9764
9765         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
9766           can't handle those filters. (Fixes bug #79961)
9767
9768 2006-11-17  Chris Toshok  <toshok@ximian.com>
9769
9770         [ fixes the exit/crashes associated with #79835.  it's clearly
9771         suboptimal though, we need to figure out a better way to solve
9772         this. ]
9773         
9774         * PrintPreviewControl.cs: deal with the new invalid printer
9775         exceptions.
9776
9777         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
9778         and return false (so CommonDialog.ShowDialog doesn't actually show
9779         the form.)
9780
9781         * PrintDialog.cs: enable/disable the Ok button depending on
9782         whether or not the printer is valid.
9783
9784         * CommonDialog.cs (ShowDialog): only actually show the form if
9785         RunDialog returns true.
9786
9787 2006-11-17  Jackson Harper  <jackson@ximian.com>
9788
9789         * TextControl.cs: When soft splitting a line, mark it as a soft
9790         split line. Also carry over the current line break to the next
9791         line.
9792
9793 2006-11-17  Chris Toshok  <toshok@ximian.com>
9794
9795         * XplatUIX11.cs: when scrolling a window with an invalid area, we
9796         only want to shift the part of the invalid area that overlaps the
9797         area we're scrolling.  we also don't want to clear the invalid
9798         area unless the invalid area was entirely contained within the
9799         scrolling area.
9800
9801 2006-11-16  Chris Toshok  <toshok@ximian.com>
9802
9803         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
9804         also make sure to free the memory returned by XGetWindowProperty
9805         in GetText().
9806
9807         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
9808
9809 2006-11-16  Chris Toshok  <toshok@ximian.com>
9810
9811         * XplatUI.cs: add a new super secret way to get at the totally
9812         unsupported X11 backend.
9813
9814 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
9815
9816         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
9817
9818 2006-11-16  Jackson Harper  <jackson@ximian.com>
9819
9820         * TreeView.cs: Allow more explicit setting of top node position
9821         for scrollbars. Slower algo, but more accurate.
9822         - CollapseAll should maintain the current top node.
9823         * TextBoxBase.cs: When positioning the caret, use the line, pos
9824         method, since the x, y method does not grab the correct tag, and
9825         the caret height never gets set correctly. (Maybe I should just do
9826         away with the caret having its own height, and always use the
9827         carets current tag for height).
9828
9829 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
9830
9831         [Fixes 79778, 79923]
9832
9833         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
9834         Parent to the FosterParent instead.
9835
9836 2006-11-16  Jackson Harper  <jackson@ximian.com>
9837
9838         * TreeView.cs: Need to recalc the topnode when we expand or
9839         collapse. The scrolling methods can't handle this on their own,
9840         since they use differences between the last scroll position, and
9841         those difference get completely messed up since we are expanding
9842         nodes.  This problem should probably be fixed in the scrolling
9843         methods, so they can figure out exactly where they are, but this
9844         will slow things down a little.
9845         * ThemeWin32Classic.cs: Special case for groupboxes with empty
9846         strings, makes nunit-gui look a lot nicer.
9847
9848 2006-11-16  Chris Toshok  <toshok@ximian.com>
9849
9850         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
9851         the broken multithreaded event handling we have in here.  File
9852         this entry under "Why we should move to the new X11 backend".
9853
9854         Any thread can make it into UpdateMessageQueue, which gets events
9855         from the X socket - some of which could belong to hwnds being
9856         managed by a different thread.  We can also have multiple threads
9857         in UpdateMessageQueue at the same time, with each one reading from
9858         the X socket.  This leads to many problems, with the following
9859         solutions:
9860
9861         We can't use hwnd.Queue.Enqueue anywhere in here and must use
9862         EnqueueLocked.
9863
9864         The MotionNotify compression we do can't work across threads
9865         (without locking the entire queue, perhaps) since we call
9866         hwnd.Queue.Peek, so we just punt and don't compress motion events
9867         unless the owning thread is the one which got the X event.
9868
9869         ConfigureNotify is another fun one, since it modifies the hwnd's
9870         bounds and then enqueues the event.  We add a lock to Hwnd which
9871         is held when setting configure_pending to true (and enqueuing the
9872         event).
9873
9874         There is a race wrt the wake socket.  we need to make sure that
9875         only 1 thread is waiting on that socket, or else a thread could
9876         sleep waiting for data that never comes.  It's difficult (but not
9877         impossible) to make happen, because it seems to require something
9878         like the following:
9879
9880             1. Thread 1 polls on wake_receive
9881         
9882             2. poll returns saying there's data to be read on
9883                wake_receive.
9884         
9885             3. Thread 2 polls on wake_receive and immediately returns
9886                saying there's data to be read.
9887
9888             4. Thread 2 reads the wakeup byte from wake_receive
9889
9890             5. Thread 1 attempts to read the wakeup byte from
9891                wake_receive.
9892
9893             6. Thread 2 exits (due to a form closing, perhaps).
9894
9895             7. Thread 1 blocks forever.
9896         
9897         Fun, eh?
9898
9899         Fixing the Expose handling isn't done yet, and the races inherent
9900         in that piece of code are responsible for the drawing mistakes you
9901         see when generating expose events in a MT app (like NPlot).  This
9902         one is the likely to be the hardest to bandaid, and it doesn't
9903         appear to cause anything but drawing problems.  The other issues
9904         caused apps to exit or hang.
9905
9906         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
9907         called from a different thread than the one that should be calling
9908         these functions.
9909
9910         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
9911
9912 2006-11-15  Chris Toshok  <toshok@ximian.com>
9913
9914         * Application.cs: null out the context's MainForm when we exit
9915         RunLoop.  Fixes a newly checked in unit test as well as the last
9916         ODE from bug #79933.
9917
9918 2006-11-15  Chris Toshok  <toshok@ximian.com>
9919
9920         * Form.cs (set_Owner): allow a null value so we can clear the
9921         form's owner.
9922         (Dispose): set all our owned_form's Owner properties to null, and
9923         clear the owned_forms collection.
9924         (WM_CLOSE): clean up this a little bit.. still not right though.
9925
9926         * ApplicationContext.cs: OnMainFormClosed should only call
9927         ExitThreadCore if the main form isn't recreating.  Fixes unit
9928         test.
9929
9930 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9931
9932         [Fixes 78346]
9933
9934         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
9935
9936 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9937
9938         [Fixes 79433]
9939
9940         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
9941         keep popup window types from stealing focus from the main form
9942         on Windows.
9943
9944         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
9945
9946         * MenuAPI.cs: Set above flag to true.
9947
9948 2006-11-15  Chris Toshok  <toshok@ximian.com>
9949
9950         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
9951         the button being released is not in wParam.
9952
9953 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9954
9955         * Form.cs: Add the released button to MouseEventArgs.Button
9956         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
9957         on Win32.
9958
9959 2006-11-15  Chris Toshok  <toshok@ximian.com>
9960
9961         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
9962         GetText().  untested because it's unused in our implementation.
9963         Control.Text always caches the text, even if
9964         ControlStyles.CacheText is not set.
9965
9966         fixes bug #79939.
9967
9968 2006-11-15  Chris Toshok  <toshok@ximian.com>
9969
9970         [ fixes #79933 ]
9971         
9972         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
9973         message.  no hiding, no disposing.
9974
9975         in the WM_CLOSE handler, hide the form if it's modal.
9976
9977 2006-11-15  Chris Toshok  <toshok@ximian.com>
9978
9979         * XplatUIX11.cs: use AddExpose instead of sending a message.
9980         fixes textbox border drawing.
9981
9982 2006-11-15  Chris Toshok  <toshok@ximian.com>
9983
9984         * PropertyGridView.cs: keep from crashing on mouse move/down when
9985         the property grid is empty.
9986
9987 2006-11-14  Jackson Harper  <jackson@ximian.com>
9988
9989         * TextControl.cs: Make PageUp and PageDown more like the MS
9990         versions.
9991         * TextBoxBase.cs: When we set the text property position the
9992         cursor at the beginning of the document.
9993
9994 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9995
9996         * Form.cs: if a mdi child's WindowState has changed
9997         before it's creation, it would display wrong control
9998         buttons.
9999         
10000 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
10001
10002         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
10003           (Fixes bug #79927)
10004
10005 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
10006
10007         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
10008         the window gets to paint its borders even if the window is
10009         getting smaller.
10010         
10011         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
10012         otherwise the old control buttons would still be painted 
10013         if the window gets bigger.
10014         
10015         * PaintEventArgs.cs: add an internal method so that the clip 
10016         rectangle can be changed.
10017         
10018 2006-11-13  Chris Toshok  <toshok@ximian.com>
10019
10020         [ fixes bug #79745 ]
10021         
10022         * NotifyIcon.cs: lots of cleanup.
10023
10024         * X11Structs.cs: add an enum for XEMBED messages.
10025
10026         * XplatUIX11.cs: reindent one of the giant switch statements, it
10027         was taking up an additional tab stop, and this file is already way
10028         too wide for my laptop's screen.
10029
10030         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
10031         we get it, resize the hwnd to the WMNormalHints max_width/height.
10032
10033 2006-11-13  Jackson Harper  <jackson@ximian.com>
10034
10035         * TextBoxBase.cs: Compute the value changes for the mouse wheel
10036         teh simple way.
10037
10038 2006-11-13  Chris Toshok  <toshok@ximian.com>
10039
10040         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
10041         #79898.  force a reference to the Region to stick around so the
10042         unmanaged object isn't collected (rendering our handle in the MSG
10043         stale).
10044
10045 2006-11-13  Chris Toshok  <toshok@ximian.com>
10046
10047         * XplatUIX11.cs: fix #79917 for window managers which support
10048
10049         using XStoreName on the raw utf8, and we need to convert to
10050         COMPOUND_TEXT if it's non-latin1.
10051
10052 2006-11-13  Chris Toshok  <toshok@ximian.com>
10053
10054         * Form.cs (set_DialogResult): we need to set closing to false if
10055         we're setting our result to None.  fixes bug #79908.
10056
10057 2006-11-13  Jackson Harper  <jackson@ximian.com>
10058
10059         * TextControl.cs: When formatting text, compute the adjusted tag
10060         lengths correctly, using FindTag for the end tag instead of trying
10061         to figure it out outselves.
10062         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
10063         the item, ItemHeight doesn't work, because trees with large
10064         imagelists use those for their height
10065         * TreeView.cs: ActualItemHeight factors in the image height
10066         - compute left edge of checkboxes correctly
10067         - when expanding/collapsing move the bottom down one pixel, so we
10068         aren't moving part of the node
10069
10070 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10071
10072         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
10073         stack in PaintEventStart so that it won't get disposed by the gc
10074         before reaching PaintEventEnd.
10075
10076 2006-11-13  Jackson Harper  <jackson@ximian.com>
10077
10078         * TextBoxBase.cs: Don't select the word if we are on a line with
10079         no text.
10080         - We don't need to position the caret on mouse up, since the mouse
10081         move handler should be doing this
10082         - When double clicking a blank line, the caret is advanced to the
10083         next line.
10084
10085 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
10086
10087         * TreeNodeCollection.cs: Avoid duplicating indexer code.
10088
10089 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
10090
10091         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
10092         Fixes part of bug #79910.
10093
10094 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
10095
10096         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
10097           (bug #79903). Some minor string updates to match ms.
10098
10099 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10100
10101         * FileDialog.cs: Don't add an extension if the filename
10102           already ends with that extension.
10103
10104 2006-11-10  Jackson Harper  <jackson@ximian.com>
10105
10106         * TreeView.cs: Use the currently highlighted node for the
10107         BeforeSelect event.
10108         * TextBoxBase.cs: There is no need to expand selection on
10109         MouseMove.
10110         - CanUndo means 'is there any undo operations', not 'is undo
10111         allowed on this textcontrol. Fixed ClearUndo unit test.
10112
10113 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
10114
10115         * Button.cs: only perform click when button is Selectable (so as 
10116         not to activate default buttons when they're disabled)
10117         
10118         * Control.cs: Rewrite of the SelectNextControl and related 
10119         methods. HandleClick now selects next control if the current one
10120         is being disabled.
10121         
10122         * Form.cs: OnActivated selects next active control only if Load 
10123         has already occurred. If Load hasn't run, there's no point in 
10124         selecting here, Load might change the state of controls.
10125         
10126         * FocusTest.cs: Tests marked as working again for these fixes
10127
10128 2006-11-10  Chris Toshok  <toshok@ximian.com>
10129
10130         * XplatUIX11.cs: a couple of fixes.
10131
10132         - use XInternAtoms with almost all the atoms we need to register,
10133         instead of many, many calls to XInternAtom.  should help a bit on
10134         startup time, at the expense of making the code look a little
10135         worse.
10136
10137         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
10138         isn't reparented (which seems to be a clue that we're running fon
10139         compiz) and they have an Owner form.  This fixes the tool windows
10140         in paint.net when running under compiz.
10141
10142         - when setting the opacity of a window, support both the case
10143         where the window has been reparented and also when it hasn't been.
10144         Since compiz/beryl doesn't seem to reparent windows, and these are
10145         the only window managers which support translucency, I'm not sure
10146         why we need the hwnd.reparented case at all.. but leave it in.
10147         now we get translucent windows in paint.net under compiz/beryl.
10148
10149 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10150
10151         * FileDialog.cs: Always return the value for FilterIndex that
10152           was set. Internally convert it to values that make sense.
10153
10154 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
10155         
10156         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
10157
10158 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
10159
10160         * Toolbar.cs: Change default value of DropDownArrows to true, the 
10161         signature still using false to make it compatible with MS but the 
10162         initial value is true. Fixes #79855.
10163
10164 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10165
10166         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
10167           only available on Linux.
10168
10169 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
10170
10171         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
10172         reduce number of calls to redraw method during toolbar creation.
10173
10174 2006-11-09  Mike Kestner  <mkestner@novell.com>
10175
10176         * ListView.cs : raise SelectedIndexChanged when an item is selected
10177         programmatically via the Item.Selected property.  Gert's nice 
10178         ListViewSelectedIndexChanged test fixture now runs clean.
10179
10180 2006-11-09  Mike Kestner  <mkestner@novell.com>
10181
10182         * ListView.cs : raise SelectedIndexChanged when a selected item is
10183         removed from the item collection using Remove or RemoveAt.
10184
10185 2006-11-09  Mike Kestner  <mkestner@novell.com>
10186
10187         * ListView.cs : raise SelectedIndexChanged once per selected item
10188         for compat with MS.  Fixes #79849+.
10189
10190 2006-11-09  Chris Toshok  <toshok@ximian.com>
10191
10192         * TabControl.cs: initialize row_count to 0, and set it to 1 when
10193         we need to (if we have any tab pages).  Fixes unit test.
10194
10195 2006-11-09  Chris Toshok  <toshok@ximian.com>
10196
10197         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
10198         width is 0, not 3.  Fixes a unit test.
10199
10200 2006-11-09  Mike Kestner  <mkestner@novell.com>
10201
10202         * ListView.cs : use Implicit scrollbars so that focus isn't 
10203         stolen from the listview when they are clicked. Fixes #79850.
10204
10205 2006-11-09  Chris Toshok  <toshok@ximian.com>
10206
10207         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
10208         have a root item.  Fixes #79879.
10209
10210 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
10211
10212         * FileDialog.cs:
10213           - Fix ToString ()
10214           - An ArgumentException is now thrown if a wrong filter
10215             is applied (matches ms). The previous filter doesn't change
10216             anymore if an exception is thrown.
10217           - Changing the FileName property also affects FileNames
10218         * ColorDialog.cs: The length of the CustomColors array is always
10219           16. It doesn't matter if we use a smaller array or null to update
10220           or change the custom colors property.
10221         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
10222           for RootFolder if we get a undefined value.
10223
10224 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10225
10226         * StatusBarPanel.cs: 
10227         - Width is set to MinWidth if Width is smaller than
10228         MinWidth. Fixes #79842.
10229         - MinWidth now always overrides Width (MSDN says MinWidth
10230         is set to Width when AutoSize = None, but they do not 
10231         behave like that).
10232         - Style has now the the correct default value.
10233         
10234 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10235  
10236         * TrackBar.cs: 
10237         - The control is completely invalidated on 
10238         Got/LostFocus to draw the focus rectangle correctly.
10239         - When AutoSize then height is always 45 (width for 
10240         vertical controls).
10241         
10242         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
10243         on the mouse when moved and it doesn't move when grabbed
10244         until the mouse moves as well. Also fixed some wrong 
10245         calculations when clicking on the thumb (control thought
10246         click was outside of thumb and didn't grab it).
10247         Fixes some of the issues in #79718.
10248
10249 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
10250
10251         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
10252
10253 2006-11-08  Chris Toshok  <toshok@ximian.com>
10254
10255         * PropertyGridView.cs: only call ToggleValue if the item is not
10256         readonly.
10257
10258 2006-11-08  Jackson Harper  <jackson@ximian.com>
10259
10260         * TextBoxBase.cs: The RichTextBox and textbox have very different
10261         word selection methods.  Implement the textbox's simple word
10262         selection here, and let the RichTextBox override and provide it's
10263         own.
10264         - Don't do extra selection on mouseup
10265         * RichTextBox.cs: Use the documents word selection algorithm, I
10266         think ideally, this function will be pulled into the
10267         RichTextBox.cs code someday.
10268
10269 2006-11-08  Chris Toshok  <toshok@ximian.com>
10270
10271         * RootGridEntry.cs: new class to represent GridItemType.Root.
10272
10273         * CategoryGridEntry.cs: reformat, and add boilerplate.
10274         
10275         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
10276         returns the UI parent anyway, and we need special handling to
10277         implement the GetTarget method in the face of it.  Also, implement
10278         Select().
10279
10280         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
10281         a root grid item, and use that instead of PropertyGrid.grid_items.
10282         Also, make use of TypeConverters (and add limitted support for
10283         ICustomTypeDescriptors) when initially populating the grid.
10284         Arrays now show up more or less properly.
10285
10286 2006-11-08  Chris Toshok  <toshok@ximian.com>
10287
10288         * Application.cs: set the modal dialog to non modal after we close
10289         it.  Fixes bug #79866.
10290
10291 2006-11-08  Jackson Harper  <jackson@ximian.com>
10292
10293         * TextControl.cs: When combining lines carry over the line end
10294         style from the end line.
10295         - Invalidate the selected area when setting it, if it is visible.
10296         * TextBoxBase.cs: Only rich text box can do full line selects.
10297         - Make sure to set the cursor position when there is a click,
10298         otherwise two clicks in separate areas could cause a large chunk
10299         to be selected.
10300
10301 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10302
10303         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
10304         Fixes #79863.
10305
10306 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10307
10308         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
10309         time. Remove tooltips when ToolButton click events.  Fixes #79856.
10310
10311 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10312
10313         * MenuAPI.cs: Ignore right click for menu actions and fixes
10314         menu border when clicked.  Fixes #79846.
10315
10316 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10317
10318         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
10319         MouseState after create wParam for message, this fixes mouse button 
10320         equal none in mouse up events.
10321         
10322 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
10323
10324         * Control.cs : Focus() now calls Select to set the Container's
10325         Active Control and to give it focus. To avoid infinite recursion
10326         (because ActiveControl also calls Focus at one point), a check 
10327         is made in Focus with the help of a new internal variable
10328         is_focusing.
10329
10330 2006-11-07  Mike Kestner  <mkestner@novell.com>
10331
10332         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
10333         if there's a selection.  Fixes #79849.
10334
10335 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
10336
10337         * PropertyGrid.cs: Avoid fixed height of help description label.
10338         Fixes part of bug #79829.
10339
10340 2006-11-07  Chris Toshok  <toshok@ximian.com>
10341
10342         * XplatUIX11.cs: fix #79790 again, by using the
10343         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
10344
10345 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10346
10347         * ToolBar.cs: Fix left click checking.
10348
10349 2006-11-07  Chris Toshok  <toshok@ximian.com>
10350
10351         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
10352
10353 2006-11-07  Chris Toshok  <toshok@ximian.com>
10354
10355         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
10356         PropertyManager unit tests.
10357
10358         * PropertyManager.cs: make property_name internal.
10359
10360 2006-11-07  Chris Toshok  <toshok@ximian.com>
10361
10362         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
10363         pass a unit test.  Also, don't set image_index to anything in
10364         response to setting the ImageList property.
10365
10366 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10367
10368         * ToolBar.cs: Ignore click events when mouse button is not a
10369         left button, only accepts other button for dropdown menus.  
10370         Fixes #79854.
10371
10372 2006-11-07  Chris Toshok  <toshok@ximian.com>
10373
10374         * DataGrid.cs: make the back and parent row buttons a little less
10375         ugly.
10376
10377 2006-11-07  Jackson Harper  <jackson@ximian.com>
10378
10379         * TextBoxBase.cs: When converting to Text don't put line breaks in
10380         for soft line breaks.
10381         * TextControl.cs: There is an initial "fake" line in the document,
10382         this is now a soft break line, so that an extra line feed doesn't
10383         get added to the end of documents.
10384
10385 2006-11-07  Chris Toshok  <toshok@ximian.com>
10386
10387         [ fix bug #79778 ]
10388         
10389         * CurrencyManager.cs: if the list is readonly, don't bother
10390         checking if IBindingList.AllowNew is true.
10391
10392         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
10393         for non-DataRowView datasources..  or rather, make it not crash.
10394         (DataGridPaintRelationRow): make sure we limit the row painting to
10395         the area not covered by the row header, and make our cell width at
10396         least large enough to cover the relation area.  This allows grids
10397         that have relations but no rows to render correctly.
10398         (DataGridPaintRowContents): same type of changes here.
10399         (SetDataSource): move back to always calling
10400         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
10401         navigating back through relations.
10402         (HitTest): handle the case where we have no cells but have
10403         relations.  Right now we generate a hit in cell 0 of whatever the
10404         row is, not sure if this is strictly correct, but it works for our
10405         purposes.
10406         
10407         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
10408         bother doing anything.
10409
10410 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
10411
10412         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
10413         early version of StatusStrip.  Not responsible for eaten
10414         application or firstborn children.
10415
10416 2006-11-06  Chris Toshok  <toshok@ximian.com>
10417
10418         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
10419         call GetTabRect with a -1 index.  Fixes #79847.
10420
10421 2006-11-06  Jackson Harper  <jackson@ximian.com>
10422
10423         * TreeNodeCollection.cs: Update scrollbars after clearing.
10424
10425 2006-11-06  Chris Toshok  <toshok@ximian.com>
10426
10427         * NumericUpDown.cs: fix the ToString method for some unit test
10428         love.
10429
10430 2006-11-06  Chris Toshok  <toshok@ximian.com>
10431
10432         * PropertyGrid.cs:
10433         - set the initial SelectedGridItem if we can.
10434
10435         - Exclude non-mergable properties only if we're merging > 1
10436         object.  Merging 1 object isn't really merging, obviously.
10437
10438         - Handle PropertySort.NoSort just like Alphabetical, which is
10439         wrong of course, but at least gets things on the screen.
10440         
10441         * PropertyGridView.cs:
10442         - Add method "FindFirstItem" which finds the first property grid
10443         item, so we can select it by default.
10444
10445         - make use of GridEntry.CanResetValue.
10446
10447         - Don't call RedrawBelowItemOnExpansion here anymore, the
10448         individual GridEntry's will do that.
10449
10450         - Remove the ITypeDescriptorContextImpl internal class.
10451         
10452         * GridEntry.cs:
10453         - this class needs to implement ITypeDescriptorContext, as it's
10454         what MS's PropertyDescriptorGridEntry does, which means we can
10455         remove the ITypeDescriptorContextImpl internal class from
10456         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
10457
10458         - keep a reference to our PropertyGridView, and move the call to
10459         RedrawBelowItemOnExpansion here from PGV.  This means
10460         programmaticly setting Expanded actually does something visible.
10461
10462         - add a CanResetValue() function which takes into account our
10463         possibly multiple "selected_objects" in the merged case.  Shifting
10464         PropertyGridView to use this method fixes another unreported
10465         crasher found running the test for #79829.
10466
10467         - when Top or Bounds is updated, make sure the PropertyGridTextBox
10468         is updated to reflect this.
10469
10470         * CategoryGridEntry.cs: the ctor takes the PGV now.
10471         
10472 2006-11-06  Jackson Harper  <jackson@ximian.com>
10473
10474         * TextControl.cs: These are 1 based.
10475         * TextBoxBase.cs: When setting the selected text, don't change the
10476         selected text tags, this is done by ReplaceText, just position the
10477         cursor at the end of the new text.
10478
10479 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10480
10481         * ListView.cs: Allow label edit only when, when LabelEdit is
10482           set to true.
10483
10484 2006-11-06  Jackson Harper  <jackson@ximian.com>
10485
10486         * TextControl.cs: If a suitable wrapping position isn't found,
10487         just wrap right in the middle of a word.
10488
10489 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10490
10491         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
10492           bug #79820.
10493
10494 2006-11-06  Jackson Harper  <jackson@ximian.com>
10495
10496         * TreeView.cs: Can't use the VisibleCount property when setting
10497         scrollbar heights, because this doesn't take into account whether
10498         or not the horz scrollbar just came visible.
10499
10500 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
10501
10502         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
10503         activated.  Fixes #79369, #79832.
10504
10505 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
10506
10507         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
10508           had to remove support for links that point to a directory. FileInfo
10509           returns no usefull information (means, the directory they point to)
10510           for such links. Replaced some empty string ("") with String.Empty.
10511
10512 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10513
10514         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
10515         NullReferenceException when attempting to remove node that is not in
10516         collection. Throw NullReferenceException when null is passed to 
10517         Remove. Allow first element of the collection to be removed. Fixes
10518         bug #79831.  In GetEnumerator ().Current return null if positioned 
10519         before the first element of the collection. In GetEnumerator ().Reset,
10520         position before first element of the collection.
10521
10522 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10523
10524         * PropertyGrid.cs: To match MS, remove default title and description
10525         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
10526         buttons.
10527
10528 2006-11-04  Chris Toshok  <toshok@ximian.com>
10529
10530         * Theme.cs: add a Clamp method, just for kicks.
10531
10532         * ThemeWin32Classic.cs: clamp all color components to [0..255].
10533
10534 2006-11-04  Chris Toshok  <toshok@ximian.com>
10535
10536         * Form.cs: if the form isn't visible, Close() does nothing.
10537
10538 2006-11-03  Chris Toshok  <toshok@ximian.com>
10539
10540         * Form.cs (Close): if the form is modal, don't Dispose of it, only
10541         Hide it.
10542         (WndProc): don't Dispose after handling the WM_CLOSE message.
10543
10544         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
10545         them as such, instead of using casts from Control to Form.  Also,
10546         don't Dispose of the modal dialog when we fall out of the loop -
10547         Close() it instead.
10548
10549         fixes bug #79813.
10550
10551 2006-11-03  Chris Toshok  <toshok@ximian.com>
10552
10553         * Control.cs (Dispose): only go through the dispose thing if we're
10554         @disposing, and we haven't already been disposed.  Fixes bug
10555         #79814.
10556
10557         * Form.cs: no reason to call "base.Dispose()" here instead of
10558         "Dispose()".
10559
10560 2006-11-03  Mike Kestner  <mkestner@novell.com>
10561
10562         * ComboBox.cs : use ToString instead of casts in AddItem for
10563         sorting functionality.  Fixes #79812.
10564
10565 2006-11-03  Chris Toshok  <toshok@ximian.com>
10566
10567         * Application.cs: pave the way for actually using the thread
10568         exception dialog.  it's ifdefed out at the moment.
10569
10570 2006-11-03  Chris Toshok  <toshok@ximian.com>
10571
10572         * ThreadExceptionDialog.cs: until we get a better layout, actually
10573         hide the details textbox and label when we shouldn't see them.
10574
10575 2006-11-03  Jackson Harper  <jackson@ximian.com>
10576
10577         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
10578         multiline textboxes anymore.  This method also determines the
10579         width/height of a textboxes canvas area.
10580         - Sorta a revert of the last patch.  For multiline just position
10581         the controls, then bail.  This way the scrollbar width won't be
10582         altered.
10583
10584 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
10585
10586         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
10587         it dont need.  Fixes #79537.
10588
10589 2006-11-02  Jackson Harper  <jackson@ximian.com>
10590
10591         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
10592         send the status after firing the DndOver event.
10593
10594 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10595
10596         * TrackBar.cs: Now orientation only switches height / width if
10597         the control's handle is created (Win32 does it like this). Also 
10598         fixed a typo in ToString() for a test to pass, changed the 
10599         exception thrown in set_LargeChange and set_SmallChange to 
10600         match Win32 behaviour, and added TrackBar tests to the unit 
10601         tests.
10602
10603 2006-11-02  Chris Toshok  <toshok@ximian.com>
10604
10605         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
10606         not _NET_WM_STATE_NO_TASKBAR.
10607
10608 2006-11-02  Jackson Harper  <jackson@ximian.com>
10609
10610         * TextControl.cs: Increment count by one, since in the update view
10611         count - 1 is used.
10612
10613 2006-11-02  Jackson Harper  <jackson@ximian.com>
10614
10615         * TextBoxBase.cs: Use client rectangle not bounds for checking if
10616         the mouse is in the client rectangle (duh).
10617
10618 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10619         
10620         * TrackBar.cs: Fixed trackbar jumping around when clicking
10621         on it - the trackbar was not detecting correctly at which
10622         side of the thumb the click was done. (fixes #79718)
10623
10624 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10625
10626         * ListBox.cs: scroll visible area when change SelectedIndex to
10627         a non visible area.  Fixes #79481.
10628
10629 2006-11-01  Jackson Harper  <jackson@ximian.com>
10630
10631         * TextControl.cs: When replacing the selection move the selection
10632         start/end/anchor to the end of the new text.
10633
10634 2006-11-01  Jackson Harper  <jackson@ximian.com>
10635
10636         * XplatUIWin32.cs: When setting the parent change the controls
10637         visibility to it's visibility flag, not to it's old parents
10638         visibility (.Visible walks the parent chain).
10639
10640 2006-11-01  Chris Toshok  <toshok@ximian.com>
10641
10642         * XplatUIX11.cs: revert the #79790 fix, as the simple.
10643         XSetTransientForHint fix breaks paint .net's tool windows.  more
10644         work needed for that one.
10645
10646 2006-11-01  Chris Toshok  <toshok@ximian.com>
10647
10648         * ScrollBar.cs: throw ArgumentException instead of Exception in
10649         LargeChange/SmallChange setters.  fixes unit tests.
10650
10651 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10652
10653         * ContainerControl.cs: reverted rev.67183 (which was itself
10654         a reversion of rev.66853... eh).
10655         
10656         * Control.cs: Fixes Reflector hang by changing Focus() call
10657         to what it was before rev.66643 (calling Select() here sets 
10658         ActiveControl, which in some situations calls back Focus and 
10659         eventually does a stack overflow). Temp fix.    
10660         Changes to GetNextControl() to not look for children to select when
10661         parent cannot be selectable (so it looks for siblings instead)  
10662         
10663 2006-10-31  Mike Kestner  <mkestner@novell.com>
10664
10665         * CheckedListBox.cs : off by one error in returned index from
10666         ObjectCollection.Add.  Fixes #79758.
10667
10668 2006-10-31  Chris Toshok  <toshok@ximian.com>
10669
10670         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
10671         calls for the textbox/spinner, to keep from recursing to the point
10672         where we crash.  Fixes #79760.
10673
10674 2006-10-31  Chris Toshok  <toshok@ximian.com>
10675
10676         * ListControl.cs (set_SelectedValue): don't throw exceptions on
10677         null/"" value, just return.  matches ms's behavior and fixes some
10678         failing tests.
10679
10680 2006-10-31  Chris Toshok  <toshok@ximian.com>
10681
10682         * Control.cs (set_Capture): make a logic a little easier to
10683         follow.
10684
10685         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
10686         if it's being destroyed.  A necessary fix surely, but a bandaid
10687         also, to fix the stuck capture problem in bug #78413.
10688
10689 2006-10-31  Chris Toshok  <toshok@ximian.com>
10690
10691         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
10692         convention of clearing hwnd.ClientRect when we set the
10693         width/height (so it'll be recalculated by Hwnd).
10694
10695 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10696
10697         * ContainerControl.cs: reversed Contains check from
10698         ActiveControl due to hanging problems. This fix
10699         partly regresses #79667 (button does not have
10700         initial focus), so this might be a symptom for 
10701         a larger parenting problem (set_ActiveControl
10702         is being called but the child control does
10703         not have the parent set yet?)   
10704         
10705 2006-10-31  Mike Kestner  <mkestner@novell.com>
10706
10707         * MenuAPI.cs : fix keynav when menu is click activated.
10708
10709 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
10710
10711         * ToolStrip*: Version 0.2.
10712
10713         * MenuStrip.cs: Version 0.1.
10714
10715         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
10716
10717 2006-10-30  Chris Toshok  <toshok@ximian.com>
10718
10719         [ fixes the oversized notify icon issue in bug #79745 ]
10720         
10721         * NotifyIcon.cs: scale the icon down to the size we're given by
10722         the XplatUI layer (this would be faster if we did it once instead
10723         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
10724         since it's never invoked.
10725
10726         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
10727         pixels high by default, so let's hardcode our systray icon to that
10728         size.  The SYSTEM_TRAY protocol should really have a way for
10729         client apps to query for the correct icon size.. but oh well.  A
10730         couple of patches to deal with the screwy client_window ==
10731         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
10732         instance, and also make sure we don't XSelectInput twice).
10733
10734 2006-10-30  Chris Toshok  <toshok@ximian.com>
10735
10736         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
10737         recreating forms.  Control recreation is the bane of my existence.
10738         Fix it in a way that keeps everyone happy.
10739
10740 2006-10-30  Chris Toshok  <toshok@ximian.com>
10741
10742         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
10743         just non-CHILD ones.  otherwise sometimes scrollbars end up with
10744         client_windows not being resized to the proper size (ReportBuilder
10745         shows this extremely well).
10746
10747 2006-10-30  Chris Toshok  <toshok@ximian.com>
10748
10749         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
10750         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
10751         showing up in the gnome taskbar.  Fixes bug #79790.
10752
10753 2006-10-30  Chris Toshok  <toshok@ximian.com>
10754
10755         * ApplicationContext.cs: guard against a NRE.
10756
10757         * Application.cs: null out the old MainForm for the context, so we
10758         don't try to use it again once it's disposed.  Fixes bug #79783.
10759
10760 2006-10-30  Chris Toshok  <toshok@ximian.com>
10761
10762         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
10763         BindingContext, set the data source directly, otherwise do the
10764         lazy approach - the actual ListManager will be created when we get
10765         a BindingContext. Fixes bug #79700.
10766
10767 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
10768
10769         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
10770           XplatUIX11.cs: Remove old 2 parameter SetVisible.
10771
10772         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
10773
10774 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
10775
10776         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
10777         of SetVisible that allows a window to be shown, but not activated.
10778         This is needed on Windows for MenuStrip, and can probably be used
10779         with MainMenu and ComboBox to fix the focus stealing issues on
10780         Windows.
10781
10782         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
10783
10784 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
10785
10786         * PictureBox.cs: Fix the output of the ToString method.
10787
10788 2006-10-29  Chris Toshok  <toshok@ximian.com>
10789
10790         * Control.cs (get_TopLevelControl): fix bug #79781.
10791
10792 2006-10-29  Chris Toshok  <toshok@ximian.com>
10793
10794         * ListControl.cs (set_DataSource): throw Exception here, not
10795         ArgumentException, to match MS behavior.
10796
10797 2006-10-29  Chris Toshok  <toshok@ximian.com>
10798
10799         * Form.cs: remove the try-catch's around calls to GetWindowState.
10800         We can just check the return value.
10801
10802         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
10803         Instead return -1.
10804
10805         * XplatUI.cs: Add note about additional return value for
10806         GetWindowState.
10807
10808 2006-10-29  Chris Toshok  <toshok@ximian.com>
10809
10810         * Control.cs (CreateHandle): when we create our handle, we also
10811         create the handles of our child controls.  Fixes one of the
10812         Control unit tests (CH11).
10813
10814 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
10815
10816         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
10817
10818 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
10819
10820         * ThemeClearlooks.cs: A little speedup.
10821
10822 2006-10-27  Chris Toshok  <toshok@ximian.com>
10823
10824         * Control.cs: implement Control.FromChildHandle in a way that
10825         matches the docs (and fixes the failed test.)
10826
10827 2006-10-27  Chris Toshok  <toshok@ximian.com>
10828
10829         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
10830         comments).
10831
10832         * DataGrid.cs: implement ResetForeColor such that the tests
10833         succeed.
10834         
10835 2006-10-27  Chris Toshok  <toshok@ximian.com>
10836
10837         * ToolBarButton.cs: setting text/tooltiptext to null results in it
10838         being set to "".  Fixes bug #79759.
10839
10840 2006-10-27  Jackson Harper  <jackson@ximian.com>
10841
10842         * TextControl.cs: We need to clear the entire selection area when
10843         setting the start, otherwise multiline selections are still
10844         visible.
10845
10846 2006-10-26  Chris Toshok  <toshok@ximian.com>
10847
10848         * PropertyGridView.cs: 
10849
10850         - ifdef all the code specific to the double
10851         buffer case, and provide some alternatives in the non-doublebuffer
10852         code, which makes heavy use of XplatUI.ScrollWindow to move things
10853         around without having to invalidate (and cause flicker).  There
10854         are still some drawing problems in the non-doublebuffered case, so
10855         DOUBLEBUFFER is defined by default.
10856
10857         - Fix the way dropdowns are handled.  now we explicitly watch for
10858         the events which might cause the dropdown to close, and break out
10859         of the nested event loop there.  This gets rid of all Capture
10860         code, at the expense of the Msg special casing.  Seems to work,
10861         though, and fixes bug #79743.
10862
10863 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
10864         * Control.cs: SetIsRecreating now recreates implicitly added
10865         child controls as well. Finally fixes #79629. The flag passed to 
10866         SetIsRecreating has also been removed since it wasn't used.
10867         
10868 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10869
10870         * PageSetupDialog.cs: Clean some code, fix some bits, 
10871         add some checks, and add a printer sub-dialog.
10872
10873 2006-10-26  Chris Toshok  <toshok@ximian.com>
10874
10875         * PropertyGrid.cs: make set_SelectedObject call
10876         set_SelectedObjects, and move the duplicate logic to the
10877         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
10878
10879         * PropertyGridView.cs: hide the textbox when we get a
10880         SelectedObjectsChanged event.
10881
10882         Fixes bug #79748.
10883
10884 2006-10-26  Chris Toshok  <toshok@ximian.com>
10885
10886         * PropertyGridView.cs: deal with the type converter not supporting
10887         GetStandardValues() or GetStandardValues() returning null, which
10888         is does in the default case.  Fixes #79742.
10889
10890 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
10891
10892         * CheckedListBox.cs: nunit no longer crashes when selecting 
10893         Project/Edit menu option
10894         
10895 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
10896
10897         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
10898         is no menu selected. fixes #79739
10899
10900 2006-10-25  Chris Toshok  <toshok@ximian.com>
10901
10902         * PropertyGridView.cs: factor out the splitter invalidation code
10903         into the SplitterPercent setter, and for kicks implement the
10904         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
10905         amount in either direction.
10906
10907 2006-10-25  Chris Toshok  <toshok@ximian.com>
10908
10909         * PropertyGridView.cs: do some cleanup of the brush used to draw
10910         text - read only fields should be grayed out.  not sure how to do
10911         this with the textbox, though.  but the textbox's should also be
10912         readonly now at least.  Also, hide/show the textbox when resizing
10913         the control.
10914         
10915         * CursorConverter.cs: use System.Reflection when getting the
10916         properties of Cursors, as TypeDescriptor.GetProperties isn't
10917         returning static properties.
10918
10919 2006-10-25  Chris Toshok  <toshok@ximian.com>
10920
10921         * PropertyGridView.cs: factor out the up/down handling, and reuse
10922         it for page up/down.  also add End/Home support.
10923
10924 2006-10-25  Chris Toshok  <toshok@ximian.com>
10925
10926         * PropertyGridView.cs:
10927
10928         - ensure the selected grid item is visible in the scrolled area,
10929         fixes bug #79572.
10930
10931         - fix Keys.Down handling when you're on the last item in the
10932         propertygrid.
10933
10934 2006-10-25  Mike Kestner  <mkestner@novell.com>
10935
10936         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
10937         clicks too.  Fixes #79725.
10938
10939 2006-10-24  Chris Toshok  <toshok@ximian.com>
10940
10941         * PropertyGrid.cs: use property.Converter instead of
10942         TypeDescriptor.GetConverter(property.PropertyType), so we catch
10943         TypeConverters declared on the property as well as on the
10944         PropertyType.  Fixes bug #79678.
10945
10946 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
10947
10948         * MimeIcon.cs, Mime.cs:
10949           Fallback to the default platform handler if no shared mime info
10950           stuff exists (fixes #79693).
10951
10952 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
10953         * ContainerControl.cs: Incorrect contains check in ActiveControl 
10954         from previous fix (duh).
10955
10956 2006-10-20  Chris Toshok  <toshok@ximian.com>
10957
10958         * PropertyGridView.cs: the dropdown should be MIN(number of items
10959         in list, 15).  Fixes #79551.
10960
10961 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
10962         Fixes #79384, #79394, #79652, #79667
10963         * Application.cs: 
10964         
10965         - Modal windows are now destroyed in the proper order for windows
10966         
10967         * ContainerControl.cs:
10968         
10969         - ActiveControl setter has more conditions on when to return:
10970                 - if we're reselecting the active control, but it actually
10971                 didn't have focus (window hidden or some such), it runs
10972                 - if the active control being selected doesn't actually 
10973                 exist in the container, it returns
10974         
10975         * Form.cs
10976         
10977         - The ShowDialog now gets the current form as the owner when
10978         invoking without parameters, and correctly activates the owner 
10979         when returning
10980         
10981         * MessageBox.cs
10982         
10983         - MessageBox now catches the Escape key to exit
10984
10985 2006-10-20  Chris Toshok  <toshok@ximian.com>
10986
10987         * PropertyGridView.cs: fix a number of issues (bug #78565, and
10988         most of bug #79676):
10989
10990         - you can navigate around the property grid with the arrow keys.
10991
10992         - the dropdown is sized properly when the pg has a vertical
10993         scrollbar.
10994
10995         - fix the indentation for subentries, and properly select the
10996         entire label rect.
10997
10998         - fix the gray bar's drawing (only draw it to the last element,
10999         not for the height of the control.  Also make sure we draw that
11000         last horizontal grid line.
11001
11002         - use the same mechanism the datagrid uses wrt the editing textbox
11003         when scrolling/resizing/etc.  Namely, we hide it first, do the
11004         operation, then show it again (if it's still visible).
11005         
11006         - aggressively remove a lot of unnecessary refreshes (and also
11007         calls to Invalidate(). call more limited variants, and only redraw
11008         what we need.)
11009         
11010         * PropertyGrid.cs:
11011
11012         - when we're populating the merged collection, fill in the UI
11013         parent with either the passed in item, or the category item we
11014         create.
11015
11016         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
11017
11018         * GridItem.cs: drop some fully qualified names.
11019         
11020         * GridEntry.cs: add a "UIParent", which is basically the parent
11021         treenode.
11022
11023         * GridItemCollection.cs: add an IndexOf method.
11024
11025 2006-10-20  Mike Kestner  <mkestner@novell.com>
11026
11027         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
11028         a working win32 NC invalidation mechanism, we can't invalidate
11029         menus.  [Fixes #79705]
11030
11031 2006-10-20  Mike Kestner  <mkestner@novell.com>
11032
11033         * ListBox.cs : don't update the VScrollbar if the list is empty,
11034         just hide it.  [Fixes #79692]
11035
11036 2006-10-20  Jackson Harper  <jackson@ximian.com>
11037
11038         * RichTextBox.cs: Handle some special chars better, and don't skip
11039         the entire group when we encounter a special char that we don't
11040         handle correctly.
11041
11042 2006-10-18  Chris Toshok  <toshok@ximian.com>
11043
11044         * PropertyGridView.cs: address a number of issues from bug #79676,
11045         mostly of the cosmetic variety.
11046
11047         - The highlight rectangle for indented items not extends all the
11048         way to the left.
11049
11050         - Indented items aren't indented so much.
11051
11052         - the dropdown is properly sized width-wise if the pg has a
11053         vertical scrollbar.
11054
11055 2006-10-18  Chris Toshok  <toshok@ximian.com>
11056
11057         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
11058         systray stuff is rather convoluted to begin with.
11059
11060         systray icons are a single window for some reason (that I haven't
11061         figured out yet), and for them, client_window == whole_window.
11062         Given the way the tests are structured elsewhere to determine
11063         which paints are pending (client vs. nc), that situation will
11064         always yield PAINT, not NCPAINT.  So, if we have a pending
11065         nc_expose and no pending expose, remove the hwnd from the paint
11066         queue, and also set nc_expose_pending to false, to keep us from
11067         blocking further expose's adding the hwnd to the paint queue.
11068
11069         phew.  like i said, a rather convoluted change.  Fixes the
11070         notifyicon repaint issues in bug #79645.
11071
11072 2006-10-18  Chris Toshok  <toshok@ximian.com>
11073
11074         * Form.cs: when getting the backcolor of the form, don't get
11075         base.BackColor, as this allows parents to influence the background
11076         color.  This breaks mdi forms.  Instead, if the background_color
11077         is empty, return the default.
11078
11079 2006-10-18  Chris Toshok  <toshok@ximian.com>
11080
11081         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
11082         to being private instead of internal static.
11083
11084         * Control.cs: remove all the stupid ParentWaitingOnRecreation
11085         crap, it wasn't working for more deeply nested controls anyway,
11086         and we already have the is_recreating flag - use that instead.
11087         Before calling DestroyHandle in RecreateHandle, recurse through
11088         the control tree setting it to true.  this returns the recreate
11089         code to much of its original simplicity, while now guaranteeing we
11090         actually recreate everything we're supposed to.  This change gets
11091         fyireporting actually showing mdi children.
11092
11093 2006-10-17  Chris Toshok  <toshok@ximian.com>
11094
11095         * Form.cs: remove some debug spew, and collapse some duplicate
11096         code at the end of SetClientSizeCore.
11097
11098         * XplatUIX11.cs: 
11099         - add some more debug spew here too wrt Destroy handling.
11100         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
11101         in Control's handling of WM_DESTROY.
11102         - Remove the handling of zombie window DestroyNotifies from the
11103         event loop - we don't need it.  Now the only DestroyNotifies we
11104         actually handle are ones generated by X.
11105         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
11106         match gtk's (functioning) handling of this. This keep metacity
11107         from leaving droppings in the form of wm borders with no window
11108         contents all over the place.
11109
11110         * Control.cs:
11111         - add a bunch of debug spew wrt control recreation.
11112         - fix a bug where we weren't tracking Visible properly on
11113         recreated hwnds.
11114         - fixed the WM_PAINT double buffer handling to support re-entrant
11115         calls (yes, i know it's gross, but it's happening to us).
11116
11117 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11118         * ThemeWin32Classic.cs: changed drawing of selected days
11119         to make them look better.
11120
11121 2006-10-16  Chris Toshok  <toshok@ximian.com>
11122
11123         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
11124         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
11125
11126         * XplatUIX11.cs: move away from using hwnd.client_dc and
11127         hwnd.non_client_dc and on to a stack of dc's (and in window's
11128         case, PAINTSTRUCT's), so we can deal with nested Paint calls
11129         without puking or not disposing of Graphics objects.
11130
11131         * XplatUIOSX.cs: same.
11132
11133         * XplatUIWin32.cs: same.
11134
11135 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11136
11137         * FileDialog.cs: Don't call on_directory_changed inside
11138           OnSelectedIndexChanged (it changes the SelectedIndex too).
11139           Instead move it to OnSelectionChangeCommitted.
11140
11141 2006-10-13  Chris Toshok  <toshok@ximian.com>
11142
11143         * XplatUIX11.cs: more Destroy work.  the current code does the
11144         following things, in order:
11145
11146         1. Enumerates all handles of all controls at or below the one
11147         being destroyed, in pre-order.  As it is doing this, it marks the
11148         handles as zombie and clears all references to them.
11149         
11150         2. calls XDestroyWindow on the window passed in.
11151
11152         3. SendMessage's WM_DESTROY to all he handles in the accumulated
11153         list.
11154
11155 2006-10-13  Chris Toshok  <toshok@ximian.com>
11156
11157         * XplatUIX11.cs: set hwnd.zombie to true before calling
11158         SendMessage (WM_DESTROY).  this keeps us from marking the new
11159         window a zombie, and also keeps us from calling sendmessage at
11160         all.
11161
11162 2006-10-13  Jackson Harper  <jackson@ximian.com>
11163
11164         * TextControl.cs: Do not show the caret and selection at the same
11165         time.  Reduces ugliness by 35%.
11166
11167 2006-10-13  Chris Toshok  <toshok@ximian.com>
11168
11169         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
11170         zombie after we do the recursive call, so we actually do call
11171         SendMessage on the children controls.
11172         (GetMessage): if we find a pending paint event for a zombie hwnd,
11173         remove the hwnd from the paint queue, or else it will always be
11174         there (and we'll effectively loop infinitely)
11175
11176 2006-10-13  Mike Kestner  <mkestner@novell.com>
11177
11178         * MenuItem.cs : add Selected format under keynav too.
11179         Fixes #79528.
11180
11181 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
11182
11183         * PropertyGrid.cs: Fixed some NRE's and small difference between our
11184         implementation and that of MS.
11185
11186 2006-10-13  Chris Toshok  <toshok@ximian.com>
11187
11188         * Control.cs (OnInvalidated) only futz with the invalid_region if
11189         the control is double buffered.  this fixes the apparent hang in
11190         the ListView unit tests.  Someone needs to make the
11191         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
11192
11193 2006-10-13  Chris Toshok  <toshok@ximian.com>
11194
11195         * PropertyGridView.cs:
11196
11197         - do a little refactoring so that only one place calls
11198         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
11199         else call that.  Also make it Refresh, since there are redraw bugs
11200         otherwise (we should take a look at that...)
11201
11202         - do a little more refactoring work to share the body of code
11203         involved with the drop down.  it was duplicated in the code
11204         dealing with the listbox handling and in the code dealing with the
11205         UITypeEditors.
11206
11207         - add a Capture to the dropdown form's control once it's
11208         displayed, and add a MouseDown handler that checks to make sure
11209         the position is inside the control.  If it's not, close the
11210         dropdown.  This fixes #78190.
11211
11212         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
11213         if the value is different than the initial value.
11214         
11215 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
11216
11217         * Control.cs: see #78650
11218         - Fixed GetNextControl for several cases:
11219                 - Changed FindFlatForward to return 
11220                 correct sibling control when more than one
11221                 control has same TabIndex as the currently 
11222                 focused one.
11223                 - Changed FindFlatBackward to loop children
11224                 from last to first and apply same logic as in
11225                 FindFlatForward
11226                 - Changed FindControlForward to search for
11227                 children when control is not a container
11228                 but has children, or search for siblings if
11229                 control is a container...
11230                 - Changed FindControlBackward   to continue
11231                 searching for child controls when hitting 
11232                 Panel-like parents
11233                 
11234         - Fixed Focus method to update ActiveControl
11235         (FocusTest.FocusSetsActive failure)
11236         
11237         * TabControl.cs:
11238         - Focus rectangle now refreshes when gaining
11239         or losing focus
11240         - Removed grab for Tab key on IsInputKey that 
11241         was keeping tab navigation from working (#78650)
11242
11243 2006-10-13  Chris Toshok  <toshok@ximian.com>
11244
11245         * PropertyGridView.cs:
11246         - Rewrite SetPropertyValue to loop over SelectedGridItem's
11247         SelectedObjects.
11248
11249         - Deal with GridItem.Value == null a few places.
11250
11251         * PropertyGrid.cs: 
11252         - replace the PopulateGridItemCollection with a pair of methods
11253         which compute the intersection of all the properties in the
11254         SelectedObjects array.  Fixes #79615.
11255
11256         - Throw ArgumentException from set_SelectedObjects if there's a
11257         null in the array.
11258
11259         - Add GetTarget method which can be used to traverse up the
11260         GridItem.Parent chain.  It depends on the assumption that
11261         selected_objects for different GridEntries are always in the same
11262         order (a safe assumption).  Use this method and loop over all the
11263         selected objects in the entry when calling RemoveValueChanged and
11264         AddValueChanged.
11265         
11266         * GridEntry.cs: Make this handle multiple selected objects.
11267         .Value returns null if not all the selected objects share the same
11268         value.
11269
11270 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
11271         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
11272           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
11273           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
11274           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
11275           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
11276         add additional functionality.
11277
11278 2006-10-12  Mike Kestner  <mkestner@novell.com>
11279
11280         * ErrorProvider.cs : new ToolTipWindow ctor sig.
11281         * HelpProvider.cs : new ToolTipWindow ctor sig.
11282         * ToolTip.cs : remove ToolTip param from Window sig since it is
11283         not used.
11284         * ToolBar.cs : add tooltip support.  Fixes #79565.
11285
11286 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11287
11288         * ComboBox.cs: move the events in set_SelectedIndex to 
11289         after the call to HighlightIndex in order to avoid 
11290         possible recursion and subsequent problems with the call
11291         to HighlightIndex and include a range check in 
11292         set_HighlightIndex. Fixes #79588
11293         
11294 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11295
11296         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
11297         to ui thread's settings instead of sunday. 
11298         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
11299
11300 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11301
11302         * DateTimePicker.cs
11303         * MonthCalendar.cs
11304         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
11305         and implement missing functionality (selecting different parts 
11306         of the date and edit them individually with the keyboard).
11307         
11308 2006-10-11  Chris Toshok  <toshok@ximian.com>
11309
11310         * Control.cs (OnInvalidated): fix NRE relating to last change.
11311
11312 2006-10-11  Chris Toshok  <toshok@ximian.com>
11313
11314         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
11315         atoms in _NET_WM_STATE here if the window is maximized.  We need
11316         to do this because we're *replacing* the existing _NET_WM_STATE
11317         property, so those atoms will be lost otherwise, and any further
11318         call to GetWindowState will return Normal for a window which is
11319         actually maximized.  Fixes #79338.
11320
11321 2006-10-11  Jackson Harper  <jackson@ximian.com>
11322
11323         * TextControl.cs: Special case for setting selection end to
11324         selection start, we basically kill the anchor.
11325         - some todo comments.
11326
11327 2006-10-11  Chris Toshok  <toshok@ximian.com>
11328
11329         * Control.cs: switch to using an "invalid_region" to track which
11330         parts of the image buffer need updating.  This is more code than
11331         the simple fix from r66532.  That version just attempted to always
11332         fill the entire buffer on redraw, which turns out to be
11333         inefficient when invalidating small rectangles.  This version
11334         simply adds the invalid rectangle to the invalid region.  When we
11335         get any WM_PAINT message we see if it can be filled using the
11336         image buffer, and if it can't (if the paint event's clip rectangle
11337         is visible in the invalid region) we first fill the image buffer.
11338         So, the image buffer is still a cache, we just fill it lazily.
11339
11340         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
11341         need it any longer.
11342
11343 2006-10-11  Chris Toshok  <toshok@ximian.com>
11344
11345         * XplatUIX11.cs (SetWindowPos): we need to update both position as
11346         well as size after calling XMoveResizeWindow.  This keeps us from
11347         ignoring future SetWindowPos calls.  Fixes the disappearing
11348         DateTimePicker in the ToolBarDockExample from bug #72499.
11349
11350 2006-10-11  Chris Toshok  <toshok@ximian.com>
11351
11352         * TextBoxBase.cs: reorder things a bit when it comes to
11353         resizing-causing-recalculation.  we were recalculating the
11354         document when our position was changed, which shouldn't happen.
11355         We only care about size changes.  Clear up some more redundant
11356         recalculation calls while I'm at it.  This makes the toolbar dock
11357         example snappy when you're just dragging toolbars around (since it
11358         causes a relayout whenever you move one.)
11359
11360 2006-10-11  Chris Toshok  <toshok@ximian.com>
11361
11362         * ToolBarButton.cs (get_Rectangle): this only returns
11363         Rectangle.Empty if Visible == false, or Parent == null.
11364         Parent.Visible doesn't matter.
11365
11366 2006-10-10  Chris Toshok  <toshok@ximian.com>
11367
11368         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
11369         by .net 1.1, so switch to an internal method instead.
11370
11371 2006-10-10  Chris Toshok  <toshok@ximian.com>
11372
11373         * Control.cs (WM_PAINT): when a control is double buffered we draw
11374         initially to the ImageBuffer and then copy from there.  But when a
11375         parent control which has child controls is double buffered, the
11376         initial drawing doesn't encompass the entire ClientRectangle of
11377         the parent control, so we end up with uninitialized bits (this is
11378         easily seen by dragging the top toolbar in
11379         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
11380         manually set the ClipRectangle of the paint_event (only the one we
11381         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
11382         of the nastiness in bug #72499.
11383
11384         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
11385         which we use in Control.cs's WM_PAINT handling.
11386
11387 2006-10-10  Jackson Harper  <jackson@ximian.com>
11388
11389         * TextBoxBase.cs: Finish off the autoscrolling stuff.
11390
11391 2006-10-10  Chris Toshok  <toshok@ximian.com>
11392
11393         * Cursor.cs: Apply a slightly different patch to the one suggested
11394         in #79609.
11395
11396 2006-10-10  Jackson Harper  <jackson@ximian.com>
11397
11398         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
11399         not the parent form.
11400         * TextControl.cs: use difference in old line count vs new count to
11401         calculate how many lines were added, this takes into account soft
11402         line breaks properly.
11403
11404 2006-10-10  Chris Toshok  <toshok@ximian.com>
11405
11406         * LinkLabel.cs: don't call MeasureCharacterRanges against a
11407         rectangle located at 0,0 and the size of the text.  Use
11408         ClientRectangle instead.  This fixes rendering of non-left aligned
11409         link labels.
11410
11411 2006-10-10  Jackson Harper  <jackson@ximian.com>
11412
11413         * TextBoxBase.cs: When we set the selection start position the
11414         caret.
11415         * TextControl.cs: Need to update the caret when we decrement it to
11416         zero.
11417         - Make sure that the selection_visible flag gets reset to false if
11418         the selection isn't visible.  Before this you could get it set to
11419         visible by changing the selection start, then changing the end to
11420         equal the start.
11421
11422 2006-10-09  Jackson Harper  <jackson@ximian.com>
11423
11424         * TreeView.cs: Don't update scrollbars when we aren't visible.
11425         * TreeNodeCollection.cs: Only need to update scrollbars if being
11426         added to an expanded visible node or the root node.
11427
11428 2006-10-09  Chris Toshok  <toshok@ximian.com>
11429
11430         * XplatUIX11.cs (SendMessage): fix NRE.
11431
11432 2006-10-09  Jackson Harper  <jackson@ximian.com>
11433
11434         * TextBoxBase.cs: Implement horizontal autoscrolling.
11435         * TextControl.cs: Add a movement types that allows moving forward
11436         and backwards without wrapping.
11437
11438 2006-10-09  Mike Kestner  <mkestner@novell.com>
11439
11440         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
11441         with focus "expansion" of labels.  Fixes #79532 and then some.
11442         * ThemeWin32Classic.cs : add LineLimit to ListView label format
11443         when wrapping.
11444
11445 2006-10-09  Jackson Harper  <jackson@ximian.com>
11446
11447         * TextBoxBase.cs: Set the default max values to MaxValue since
11448         we use the scrollbar for autoscrolling and the default value is
11449         100.  If we don't do this the caret won't keep up with typing
11450         after about 18 characters.
11451         * TextControl.cs: Make sure the selection is offset by the
11452         viewport x.  This fixes selection when using auto scrolling.
11453
11454 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
11455         
11456         * Form.cs: The active control should be selected after the 
11457         OnLoad so that any child control initialization that affects
11458         the selection is done. Fixes #79406
11459
11460 2006-10-06  Chris Toshok  <toshok@ximian.com>
11461
11462         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
11463         to have no evil effects.
11464
11465         - Stop selecting StructureNotifyMask on non-toplevel windows.
11466
11467           The only way children should be resized is by using the SWF api,
11468           and we already send WM_WINDOWPOSCHANGED messages in those cases.
11469           Toplevel windows can be interacted with via the window manager,
11470           and so we keep the input mask there.
11471
11472           The other event StructureNotifyMask gives us (that we care
11473           about) is DestroyNotify.  The code is already structured such
11474           that it assumes we won't be getting a DestroyNotify event for
11475           the window we pass to XDestroyWindow (which is what
11476           StructureNotifyMask is supposed to guarantee.)  So, that code
11477           shouldn't be affected by this either.
11478
11479         - Stop selecting VisibilityChangeMask altogether.
11480
11481           We weren't doing anything with the resulting events anyway.
11482         
11483         This vastly reduces the number of X requests and events we see
11484         when resizing/laying out a large ui.
11485
11486 2006-10-06  Chris Toshok  <toshok@ximian.com>
11487
11488         * ScrollableControl.cs (DisplayRectangle): we need to take into
11489         account the DockPadding regardless of whether or not auto_scroll
11490         == true.  rework this slightly to this effect, and fix bug #79606,
11491         and part of #72499 (you can now see the drag handles and drag
11492         toolbars around).
11493
11494 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
11495
11496         * ListViewItem.cs: Collections of selected and checked items are now
11497         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
11498         we mark the collection "dirty".
11499         * ListView.cs: Marked collections readonly. Modified UpdateSelection
11500         to only clear SelectedItems when a new item is selected and MultiSelect
11501         is enabled. CheckedItems and SelectedItems now subscribe to Changed
11502         event of ListViewItemCollection, and mark its list dirty whenever
11503         that event is fire. This allows us to return selected/checked items 
11504         in the same order as they are in the Items collection. This matches
11505         the MS behavior.
11506
11507 2006-10-06  Chris Toshok  <toshok@ximian.com>
11508
11509         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
11510         right mouse clicks.  Fixes bug #79593.
11511
11512 2006-10-06  Chris Toshok  <toshok@ximian.com>
11513
11514         * Splitter.cs: doh, fix splitters that don't want to cancel the
11515         movement when you drag them.  Also, impose the limits on the
11516         values we send to the SplitterMovingEvent.  Fixes #79598.
11517
11518 2006-10-06  Jackson Harper  <jackson@ximian.com>
11519
11520         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
11521         since we use this for auto scrolling also.
11522
11523 2006-10-05  Chris Toshok  <toshok@ximian.com>
11524
11525         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
11526         beginning to think that most datagrid column types don't need this
11527         method.  Fixes bug #79392.
11528
11529 2006-10-05  Chris Toshok  <toshok@ximian.com>
11530
11531         * DataGrid.cs: move back to a more lazy scheme for creating the
11532         CurrencyManager, so we aren't updating it every time you set
11533         either DataSource or DataMember.  Also, don't call
11534         RecreateDataGridRows if the currency manager hasn't changed.
11535
11536 2006-10-05  Chris Toshok  <toshok@ximian.com>
11537
11538         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
11539         emitted, SelectedIndex should already be updated.  Fixes bug
11540         #78929.
11541
11542 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
11543
11544         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
11545           ToolStripTextBox.cs: Initial commit.
11546         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
11547
11548 2006-10-05  Jackson Harper  <jackson@ximian.com>
11549
11550         * TabControl.cs: We need to invalidate the tab control area when
11551         new ones are added (duh).
11552
11553 2006-10-03  Chris Toshok  <toshok@ximian.com>
11554
11555         * Form.cs (ProcessDialogKey): if the focused control is in this
11556         form and is a button, call its PerformClick method here.  Fixes
11557         #79534.
11558
11559 2006-10-04  Jackson Harper  <jackson@ximian.com>
11560
11561         * TabPage.cs: Ignore setting of Visible, and add an internal
11562         method for setting the controls visibility.  TabPage's Visible
11563         property is a little strange on MS, this seems to make us
11564         compatible, and fixes cases where people set all the tab pages to
11565         visible.
11566         * TabControl.cs: Use the new internal setting on tab pages
11567         visibility.
11568
11569 2006-10-03  Mike Kestner  <mkestner@novell.com>
11570
11571         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
11572
11573 2006-10-03  Mike Kestner  <mkestner@novell.com>
11574
11575         * ListView.cs : use is_visible instead of Visible to check if 
11576         scrollbars should be placed/sized.  Also some max_wrap_width
11577         love for LargeIcon view.  [Fixes #79533]
11578
11579 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
11580
11581         * TextControl.cs :
11582           Make set_TextAlign() do actually update the align. Fixed #78403.
11583
11584 2006-10-03  Chris Toshok  <toshok@ximian.com>
11585
11586         * DataGrid.cs: fix a crash when switching datasources if the
11587         vertical scrollbar is at someplace other than Value = 0.  Also,
11588         reduce the number of recalculation passes we do in SetDataSource
11589         from 2 to 1.
11590
11591 2006-10-03  Jackson Harper  <jackson@ximian.com>
11592
11593         * TextBoxBase.cs: Move the if value the same bail check up, we
11594         don't want to empty the document if it is already empty, this
11595         seems to severly mess up the caret.  TODO: I should probably fix
11596         the empty statement to update teh caret somehow.
11597
11598 2006-10-03  Chris Toshok  <toshok@ximian.com>
11599
11600         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
11601         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
11602         reflection, an internal row type, properties on said type, etc.)
11603         will work with our datagrid.  Fixes #79531.
11604
11605 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11606
11607         * FileDialog.cs: Don't crash if a path is not accessible
11608           (System.UnauthorizedAccessException). Fixes #79569.
11609         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
11610           a ':' too. Return unknown icon for those paths/files.
11611
11612 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
11613
11614         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
11615         GetContainerControl returns null.
11616
11617 2006-10-02  Chris Toshok  <toshok@ximian.com>
11618
11619         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
11620         call to XGetWindowAttributes instead of "handle".  fixes an X
11621         error using notifyicon after the NotifyIconWindow to Form base
11622         class switch.
11623
11624 2006-10-02  Chris Toshok  <toshok@ximian.com>
11625
11626         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
11627         server grab and looping we need to do to get down to the most
11628         deeply nested child window.
11629         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
11630         QueryPointer again after the WarpPointer so we can generate a
11631         proper (fake) MotionNotify event to be enqueued in the destination
11632         window's queue.
11633         (GetCursorPos): call QueryPointer.
11634
11635         Fixes #79556.
11636
11637 2006-10-02  Jackson Harper  <jackson@ximian.com>
11638
11639         * NotifyIcon.cs: Derive the notify icon from a form, so things
11640         like FindForm work on it.
11641         - Swallow the WM_CONTEXTMENU message, since that is generated on
11642         mouse down, and context menu is a mouse up kinda guy.  I believe
11643         the correct fix here is probably to make the notify icon entirely
11644         NC area, but this seems to work fine for anyone not manipulating
11645         WndProc.
11646
11647 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
11648
11649         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
11650           ToolStripItemCollection.cs, ToolStripLabel.cs,
11651           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
11652           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
11653           Initial implementation.
11654         * TextRenderer.cs: Provide padding to MeasureText.
11655
11656 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
11657
11658         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
11659         of ButtonBaseAccessibleObject. Fix bug #79552.
11660
11661 2006-10-02  Jackson Harper  <jackson@ximian.com>
11662
11663         * MdiWindowManager.cs: When maximizing use the containers client
11664         rect, not it's bounds, so nc area is accounted correctly.
11665         - Use the parent form's size for the menu position, since the
11666         client isn't always the full form size.
11667
11668 2006-10-01  Chris Toshok  <toshok@ximian.com>
11669
11670         * ScrollableControl.cs: make sure neither right_edge or
11671         bottom_edge are < 0, since they're used as LargeChange for the
11672         horiz/vert scrollbars respectively.  Fixes #79539.
11673
11674 2006-10-01  Chris Toshok  <toshok@ximian.com>
11675
11676         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
11677         the xplatuix11 code can cause us to destroy/recreate our handle.
11678
11679         * XplatUIX11.cs
11680         (SystrayAdd):
11681         - this code can be invoked many times for the same Hwnd.  Make
11682           sure we only destroy the client window once (the first time this
11683           method is called).  This fixes bug #79544.
11684         - Remove the call to the improperly bound XSync.  why we had two
11685           bindings to this, I will never know, but this call resulted in
11686           events being discarded from the queue(!).
11687         - correct a misunderstanding of _XEMBED_INFO - the second atom is
11688           not our current state but the state we wish to be in.  So, 0 if
11689           we don't want to be mapped.  Change it to 1.
11690         (SystrayRemove): The XEMBED spec makes mention of the fact that
11691         gtk doesn't support the reparent of client windows away from the
11692         embedder.  Looking at gtksocket-x11.c seems to agree with this.
11693         The only avenue we have for removing systray icons is to destroy
11694         them.  We don't want the handle to go away for good, though, so
11695         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
11696         #79545.
11697         
11698 2006-10-01  Chris Toshok  <toshok@ximian.com>
11699
11700         * Form.cs (WndProc): inline the native_enabled variable usage into
11701         the cases in which it's used.  Fixes #79536.
11702
11703 2006-09-29  Mike Kestner  <mkestner@novell.com>
11704
11705         * ListView.cs : toggle the selection state for ctrl clicks in 
11706         multiselect mode. [Fixes #79417]
11707
11708 2006-09-29  Mike Kestner  <mkestner@novell.com>
11709
11710         * ListView.cs : kill CanMultiSelect and refactor the selection
11711         code to support multiselection in the absence of mod keys. Steal
11712         arrow/home/end keys by overriding InternalPreProcessMessage to
11713         restore regressed keynav behavior.
11714         [Fixes #79416]
11715
11716 2006-09-29  Jackson Harper  <jackson@ximian.com>
11717
11718         * MdiClient.cs: Repaint the titlebars when the active window is
11719         changed.
11720
11721 2006-09-29  Chris Toshok  <toshok@ximian.com>
11722
11723         * Application.cs: when entering a runloop with a modal, make sure
11724         the hwnd is enabled.  Fixes #79480.
11725
11726 2006-09-29  Chris Toshok  <toshok@ximian.com>
11727
11728         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
11729         when ListManager.CanAddRows == false, bump us back one.
11730
11731         * DataGridColumnStyle.cs (ParentReadOnly): remove the
11732         listmanager.CanAddRows check.  This makes ArrayLists uneditable
11733         using a datagrid, which is not right.
11734         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
11735         is an IEditable, but call property_descriptor.SetValue regardless.
11736         fixes #79435.
11737
11738 2006-09-29  Chris Toshok  <toshok@ximian.com>
11739
11740         * DataGridBoolColumn.cs: we need to test equality in the face of
11741         possible null values (as is the case with the default NullValue).
11742         This patch keeps us from crashing in that case.
11743
11744 2006-09-29  Jackson Harper  <jackson@ximian.com>
11745
11746         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
11747         here, since it will get called for every node collection in the
11748         tree. This is now done in the treeview once the sorting is
11749         finished.
11750         * TreeView.cs: Recalculate the visible order, and update the
11751         scrollbars after sorting, set the top nope to the root so that the
11752         recalc actually works.
11753
11754 2006-09-29  Chris Toshok  <toshok@ximian.com>
11755
11756         * LinkLabel.cs: more handling of the default link collection in
11757         the face of LinkArea manipulation.  The default link collection
11758         contains 1 element (start=0,length=-1).  If the user sets LinkArea
11759         to anything and the links collection is the default, clear it.
11760         Then only add the link if its nonempty.  Fixes #79518.
11761
11762 2006-09-29  Chris Toshok  <toshok@ximian.com>
11763
11764         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
11765         piece correctly when we hit a '\n'.  Fixes #79517.
11766
11767 2006-09-29  Chris Toshok  <toshok@ximian.com>
11768
11769         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
11770         change the binding of gdk_init_check to take two IntPtr's, and
11771         pass IntPtr.Zero for both of them.  Fixes #79520.
11772
11773 2006-09-29  Mike Kestner  <mkestner@novell.com>
11774
11775         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
11776         [Fixes #78779]
11777
11778 2006-09-28  Jackson Harper  <jackson@ximian.com>
11779
11780         * XplatUIX11.cs: When translating NC messages make sure we go from
11781         whole window to screen, not client window to screen.
11782         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
11783         method doesn't exist
11784         - Skip over controls that aren't forms when arranging.
11785
11786 2006-09-28  Jackson Harper  <jackson@ximian.com>
11787
11788         * XplatUIWin32.cs: Clip the rect to the parent window.
11789         * XplatUIStructs.cs: Add clipping modes struct.
11790         * InternalWindowManager.cs: New private method that factors title
11791         bar heights in when calculating the pos of an NC mouse message.
11792         - Use SendMessage to force a paint when the form's size is changed
11793         instead of painting the decorations immediately.
11794         - Don't let the NC button click messages get to DefWndProc,
11795         because they will attempt to handle windowing themself, and this
11796         messes up z-order (it will put them in front of the scrollbars).
11797         * XplatUIX11.cs: Make sure that we don't reset window managers if
11798         we already have one (ie the window is an MDI window).
11799
11800 2006-09-28  Chris Toshok  <toshok@ximian.com>
11801
11802         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
11803         menu code really needs going over.
11804
11805 2006-09-27  Chris Toshok  <toshok@ximian.com>
11806
11807         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
11808         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
11809         window is maximizable.  So, we need to make sure that even if we
11810         clear the border/wm frame of those functions, they're still
11811         available (basically, we remove the decoration without removing
11812         the function).  Half the fix for #79338.
11813
11814 2006-09-27  Chris Toshok  <toshok@ximian.com>
11815
11816         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
11817         Fixes bug #79515.
11818
11819 2006-09-27  Chris Toshok  <toshok@ximian.com>
11820
11821         * Splitter.cs: reorder things a bit so that we don't actually
11822         draw/move the splitter until after calling OnSplitterMoving.  This
11823         lets users cancel/disallow the movement by explicitly setting
11824         event.SplitX/SplitY.  Fixes #79372.
11825
11826 2006-09-27  Jackson Harper  <jackson@ximian.com>
11827
11828         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
11829         because it is most likely on a window being destroyed, and that
11830         will give us an X11 error.
11831
11832 2006-09-27  Chris Toshok  <toshok@ximian.com>
11833
11834         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
11835         the dropdown button now toggles between showing and hiding the
11836         dropdown.  Also, get rid of dropdown_form_showing and just use
11837         dropdown_form.Visible.  We still don't do a grab, but I'll leave
11838         that part to someone who has handled Capture-fu before.
11839
11840 2006-09-27  Chris Toshok  <toshok@ximian.com>
11841
11842         * DataGrid.cs: return false if alt isn't pressed when '0' is
11843         pressed.  this keeps the '0' key from being swallowed, and fixes
11844         bug #79350.
11845
11846 2006-09-27  Chris Toshok  <toshok@ximian.com>
11847
11848         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
11849         Calling Refresh (in response to a scrollbar event) screws up the
11850         scrollbar painting.  Fixes bug #78923.
11851
11852 2006-09-27  Chris Toshok  <toshok@ximian.com>
11853
11854         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
11855         then insert into hashtable" blocks threadsafe.
11856
11857 2006-09-27  Chris Toshok  <toshok@ximian.com>
11858
11859         * MessageBox.cs (CreateParams): the styles should be |'ed with our
11860         baseclass's, since otherwise the
11861         ControlBox/MinimizeBox/MaximizeBox assignments above have no
11862         effect.  This gets the close button back in messageboxes.
11863
11864 2006-09-27  Chris Toshok  <toshok@ximian.com>
11865
11866         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
11867         flag, not just != 0.  this makes flags that are actually multiple
11868         bits (like WS_CAPTION) work.  fixes bug #79508.
11869
11870 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
11871
11872         * PageSetupDialog.cs: add support for getting and settings the 
11873         paper size, source and orientation.
11874
11875 2006-09-26  Chris Toshok  <toshok@ximian.com>
11876
11877         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
11878         and caption == "", we need to remove the resize handles as well as
11879         the title bar.
11880
11881         * Control.cs (set_Text): turns out that setting Text on a form
11882         should change the WM styles on the window, since if ControlBox ==
11883         false, the only way to get a window border is to have a non-""
11884         Text property.  check winforms/forms/text.cs for an example.  so,
11885         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
11886         update both window styles and title.  This fixes a lot of dialogs
11887         (including the preferences dialog in MonoCalendar.)
11888
11889 2006-09-26  Chris Toshok  <toshok@ximian.com>
11890
11891         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
11892         control isn't a Form), call Win32ShowWindow to hide the window,
11893         but don't update the control Visible property.  When we reparent
11894         back to a parent control, call SetVisible in order for the
11895         window's visibility to be reinstated.
11896
11897         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
11898         the FosterParent.
11899
11900         * Control.cs (ControlCollection.Remove): remove that value.Hide()
11901         call for good, since it breaks MonoCalendar (and other things I'm
11902         sure.) Also, set all_controls to null *after* the owner calls,
11903         which end up regenerating it.
11904         (ChangeParent): allow new_parent to be == null, passing
11905         IntPtr.Zero down to XplatUI.
11906
11907         this fixes #79294 the right way.
11908
11909 2006-09-26  Mike Kestner  <mkestner@novell.com>
11910
11911         * GridEntry.cs : internal SetParent method.
11912         * PropertyGrid.cs : attach to property changed on the proper
11913         target if we have a hierarchical grid with subobjects. Setup
11914         GridItem.Parent for hierarchical items.
11915         * PropertyGridView.cs : Set value on the correct target for
11916         hierarchical grids. [Fixes #78903]
11917
11918 2006-09-26  Chris Toshok  <toshok@ximian.com>
11919
11920         * Control.cs (ChildNeedsRecreating): this should return true if
11921         either we're being recreated and the child is in our list, or our
11922         parent is waiting for our recreation.
11923
11924 2006-09-26  Chris Toshok  <toshok@ximian.com>
11925
11926         * Control.cs (ControlCollection.Remove): reinstate the
11927         value.Hide() call as suggested in bug #79294.
11928
11929 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
11930
11931         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
11932         coordinates (versus a relative move).
11933
11934 2006-09-26  Chris Toshok  <toshok@ximian.com>
11935
11936         * Control.cs: rework child recreation a little bit.  It turns out
11937         that we race between the DestroyNotify the WM_DESTROY message.  If
11938         the parent gets its DestroyNotify before the child gets the
11939         WM_DESTROY message, the child ends up not recreating (since the
11940         parent finishes its recreation on DestroyNotify, and the child
11941         checks ParentIsRecreating.)
11942
11943         So, instead we store off a list of all the child controls which
11944         need to be recreated when the parent control starts to recreate
11945         itself.  Then, when child controls get their WM_DESTROY message we
11946         check to see if they're in the parent's pending recreation list,
11947         and if so, we recreate.  This removes all dependency on ordering
11948         from the code and fixes the initial MonoCalendar upgrade dialog.
11949         
11950 2006-09-26  Jackson Harper  <jackson@ximian.com>
11951
11952         * TextControl.cs: Use the Line to get the length of the line,
11953         since soft line breaks can change the end line.
11954
11955 2006-09-26  Chris Toshok  <toshok@ximian.com>
11956
11957         * Control.cs (ControlCollection.AddImplicit): don't add the
11958         control again if it's already in one of our lists.  This keeps us
11959         from adding controls over and over again for comboboxes when their
11960         handle gets recreated (as the combobox adds implicit controls in
11961         OnHandleCreated).  Fixes the X11 errors in bug #79480.
11962
11963 2006-09-26  Jackson Harper  <jackson@ximian.com>
11964
11965         * TextControl.cs: When deleting characters make sure that any
11966         orphaned zero lengthed tags get deleted.
11967         - Fix ToString for zero lengthed tags.
11968
11969 2006-09-25  Jackson Harper  <jackson@ximian.com>
11970
11971         * TextControl.cs: When getting a tag at the location there can be
11972         multiple tags at the same spot, these are 0-lengthed tags that
11973         appear when extra formatting has been stuck in a location.  We
11974         need to pull out the last of these 0 lengthed tags.
11975
11976 2006-09-25  Jackson Harper  <jackson@ximian.com>
11977
11978         * TextControl.cs: Fix print out in debug method.
11979         * TextBoxBase.cs: When text is set bail if we are setting to the
11980         previous value.
11981         
11982 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
11983
11984         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
11985           It is now possible to change the selected index in a FontXXXListBox
11986           with the up and down arrow keys from the FontXXXTextBoxes.
11987           Also, send the FontXXXTextBox mouse wheel event to the corresponding
11988           FontXXXListBoxes to match ms.
11989
11990 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
11991
11992         * SystemInformation.cs: Return a clone of the theme's MenuFont because
11993         anyone can dispose it, anytime. All other properties returns enums, 
11994         structs or basic types so they don't need such tricks.
11995
11996 2006-09-22  Jackson Harper  <jackson@ximian.com>
11997
11998         * XplatUI.cs:
11999         * XplatUIWin32.cs:
12000         * Clipboard.cs:
12001         * DataFormats.cs:
12002         * XplatUIOSX.cs:
12003         * XplatUIDriver.cs: Update interface to add a primary selection
12004         flag, so the driver can use the primary selection buffer if
12005         needed.
12006         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
12007
12008         * RichTextBox.cs: We need to supply the data object to paste now
12009         (so we can choose to supply CLIPBOARD or PRIMARY).
12010         * TextBoxBase.cs: Supply data object to paste (see above).
12011         - Middle click uses the primary selection data object.
12012         
12013 2006-09-21  Chris Toshok  <toshok@ximian.com>
12014
12015         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
12016         of SetWMStyles.  It's still a rat's nest and is largely
12017         order-dependent which I dislike immensely.  This also fixes the X
12018         button disappearing from toplevel forms.
12019
12020 2006-09-21  Mike Kestner <mkestner@novell.com>
12021
12022         * ListBox.cs: move Jordi's click/dblclick raising code to the
12023         mouse up handler.
12024
12025 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12026
12027         * ListBox.cs: Fixes 79450
12028
12029 2006-09-21  Mike Kestner <mkestner@novell.com>
12030
12031         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
12032         to deal with people updating the TreeNodeCollection after the tree
12033         is disposed.  "Fixes" 79330.
12034
12035 2006-09-20  Jackson Harper <jackson@ximian.com>
12036
12037         * TextControl.cs: Push the cursor record onto the undo stack
12038         before the delete action. This fixes 78651.
12039
12040 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
12041
12042         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
12043         CreateParams. Fixes 79329.
12044
12045 2006-09-19  Chris Toshok  <toshok@ximian.com>
12046
12047         * XplatUIX11.cs: a couple of blanket code massage passes to clean
12048         things up a bit.  First, get rid of the NetAtoms array (and the NA
12049         enum), and just embed the atoms as static fields.  Also, add a
12050         couple of functions (StyleSet and ExStyleSet) to clean up all the
12051         bitmask testing of styles.
12052
12053         * X11Structs.cs: remove the NA enum, not needed anymore.
12054         
12055 2006-09-19  Chris Toshok  <toshok@ximian.com>
12056
12057         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
12058         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
12059         added cleanup to get MessageBox titles appearing again, which were
12060         broken by my earlier fix for caption-less/ControlBox-less windows.
12061
12062 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
12063
12064         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
12065           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
12066           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
12067           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
12068           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
12069           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
12070           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
12071           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
12072           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
12073           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
12074           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
12075             Inital import.
12076         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
12077           ToolStripButton.cs: Stubs needed for above.
12078         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
12079
12080 2006-09-15  Chris Toshok  <toshok@ximian.com>
12081
12082         * XplatUIX11.cs:
12083         - make the MessageQueues hashtable Synchronized.
12084         
12085         - SendMessage: if the Hwnd is owned by a different thread, use the
12086         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
12087         thread.  Fixes bug #79201.
12088
12089 2006-09-15  Chris Toshok  <toshok@ximian.com>
12090
12091         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
12092         ControlBox == false, we disallow maximize/minimize/close.  If the
12093         form Caption is "" we also disallow move (and get rid of the Title
12094         decoration).  Unfortunately, regardless of how things are set,
12095         we're stuck with the Title and WM menu.
12096
12097 2006-09-15  Chris Toshok  <toshok@ximian.com>
12098
12099         * Application.cs: add locking around the static message_filters
12100         ArrayList, part of #79196.
12101
12102 2006-09-15  Chris Toshok  <toshok@ximian.com>
12103
12104         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
12105         Form.ControlBox == false, the window has no titlebar nor resize
12106         handles.  fixes bug #79368.
12107
12108 2006-09-15  Chris Toshok  <toshok@ximian.com>
12109
12110         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
12111         >= 0.  Fixes bug #79370.
12112
12113 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
12114         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
12115         * Control.cs:
12116             Add properties: LayoutEngine, Margin, DefaultMargin.
12117             Add method: GetPreferredSize.
12118             Move layout logic from PerformLayout to layout engines. 
12119
12120 2006-09-13  Chris Toshok  <toshok@ximian.com>
12121
12122         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
12123         fix for #79326 broke #78718, so this change addresses that.
12124
12125         - in SendWMDestroyMessages remove the call to
12126         CleanupCachedWindows, since we might be recreating the control and
12127         need to maintain the references to right Hwnd handles.  Also, set
12128         the zombie flag to true for each of the children in the hierarchy
12129         instead of calling hwnd.Dispose.  This will cause GetMessage to
12130         ignore all events for the window except for DestroyNotify.
12131
12132         - In GetMessage, ignore messages except for DestroyNotify for
12133         zombie hwnds.
12134         
12135         * Control.cs: revert the is_recreating fix from the last
12136         ChangeLog.  It's definitely "right", but it breaks switching from
12137         an MDI form to a non-MDI form.  Will need to revisit that.
12138
12139         * Hwnd.cs: add a zombie flag, which means "the
12140         client_window/whole_window handles are invalid, but we're waiting
12141         for the DestroyNotify event to come in for them".  Set the flag to
12142         false explicitly if setting WholeWindow/ClientWindow, and also
12143         when Disposing.
12144         
12145 2006-09-13  Chris Toshok  <toshok@ximian.com>
12146
12147         * XplatUIX11.cs: rework window destruction slightly.
12148
12149         - when destroying the windows associated with a control, we don't
12150         need 2 separate XDestroyWindow calls.  Just the one for the
12151         whole_window (or for client_window if whole_window is somehow
12152         IntPtr.Zero -- can this happen?) is enough.
12153
12154         - reworked SendWMDestroyMessages slightly, so we always dispose
12155         the child control hwnd's after sending the messages.
12156         
12157         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
12158         the two places it was used (one was even using hwnd.Handle and the
12159         other hwnd.client_window.  ugh), adding another call in
12160         SendWMDestroyMessages.  We need this new call because now the
12161         DestroyNotify events in the queue will be ignored for the child
12162         controls (as their hwnd's were disposed, and the window id's
12163         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
12164
12165         - this fixes bug #79326.
12166
12167 2006-09-13  Chris Toshok  <toshok@ximian.com>
12168
12169         * Control.cs: don't always set is_recreating to false at the end
12170         of RecreateHandle, since sometimes we're not done (and won't be
12171         until WndProc handles the WM_DESTROY message).  Also, set
12172         is_recreating to false in the WM_DESTROY handling code.  Part of
12173         the fix for bug #79326.
12174
12175 2006-09-13  Miguel de Icaza  <miguel@novell.com>
12176
12177         * X11DesktopColors.cs: Start the droppage of debugging messages.
12178
12179         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
12180
12181 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
12182
12183         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
12184
12185 2006-09-12  Chris Toshok  <toshok@ximian.com>
12186
12187         * DataGrid.cs (get_ListManager): if the list_manager is null, try
12188         to create it using SetDataSource.  Fixes bug #79151.
12189
12190 2006-09-11  Chris Toshok  <toshok@ximian.com>
12191
12192         * XEventQueue.cs: add a DispatchIdle property.
12193
12194         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
12195         either the queue is null, or the queue has DispatchIdle set to
12196         true.
12197         (DoEvents): set queue.DispatchIdle to false around the
12198         peek/translate/dispatch message loop in this method.  This keeps
12199         Application.Doevents from emitting idle events.  Part of the fix
12200         for #78823.
12201
12202 2006-09-11  Chris Toshok  <toshok@ximian.com>
12203
12204         * DataGrid.cs (set_DataSource): make this work for both the
12205         winforms/datagrid test and ReportBuilder.  It seems as though when
12206         we've created a ListManager (or maybe it's if we have a
12207         BindingContext?), when we set the DataSource it clears the
12208         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
12209         #79333.
12210
12211 2006-09-11  Chris Toshok  <toshok@ximian.com>
12212
12213         * XplatUIX11.cs: deal with queue being null, which happens in all
12214         the Clipboard functions.  Fixes one of the two problems mentioned
12215         in #78612.
12216
12217 2006-09-11  Chris Toshok  <toshok@ximian.com>
12218
12219         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
12220         button on various spots (including outside the menu) works closer
12221         to MS, and doesn't crash.  Fixes #79343.
12222
12223 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
12224
12225         * ListView.cs: Do not initialize item_sorter in init. To match MS,
12226         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
12227         and the internal comparer is set. When a new ListViewItemSorter is set,
12228         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
12229         was specified. No further processing is necessary if SortOrder is set
12230         to it's current value. If Sorting is modified to None, and View is
12231         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
12232         (either custom or our internal ItemComparer) to null, on 1.0 profile
12233         only set item_sorter to null if its our internal IComparer. If Sorting
12234         is modified to Ascending or Descending, then use our internal IComparer
12235         if none is set, and if the current IComparer is our internal one then:
12236         on 2.0 profile always replace it with one for new Sorting, and on 1.0
12237         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
12238         Enum.IsDefined to verify whether a valid View value is specified in
12239         its setter. Automatically sort listview items when listview is
12240         created. In Sort, do nothing if ListView is not yet created, or if
12241         no item_sorter is set (no Sorting was set, Sorting was explicitly set
12242         to None or ListViewItemSorter was set to null). Added Sort overload
12243         taking a bool to indicate whether the ListView should be redrawn when
12244         items are sorted (we use this in ListViewItemCollection to avoid double
12245         redraws). Modified our internal IComparer to take the sort order into
12246         account. In Add and AddRange methods of ListViewItemCollection, also
12247         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
12248         view), but use overload with noredraw option to avoid double redraw.
12249         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
12250         true when View is Tile, and do the same when attempting to set View to
12251         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
12252         for selected/checked indices, as it involves overhead when sorting is
12253         done while these collections are not used all that often. Instead
12254         we'll build the indices on demand. Modified IList implementation of
12255         CheckedIndexCollection to use public methods if object is int.
12256         Modified CheckedListViewItemCollection to hide checked items if
12257         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
12258         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
12259         IList implementation in SelectedIndexCollection to use public methods
12260         if object is int. Modified SelectedListViewItemCollection to hide
12261         selected items if listview is not yet created.
12262         * ListViewItem.cs: CheckedIndices list no longer needs to be
12263         maintained separately (see ListView changes). Also clone font, fixes
12264         test failure.
12265
12266 2006-09-11  Mike Kestner  <mkestner@novell.com>
12267
12268         * ComboBox.cs: if we are updating the contents of the currently
12269         selected index, refresh the control or the textbox selection.
12270         [Fixes #79066]
12271
12272 2006-09-11  Mike Kestner  <mkestner@novell.com>
12273
12274         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
12275         the 'specified' logic has been moved there.  This seems like a bug 
12276         in Control.cs, since our current SetBoundsCore completely ignores 
12277         the specified parameter.  Peter's commit seems to indicate that is 
12278         the way the MS control implementation works.  [Fixes #79325]
12279
12280 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
12281
12282         * XplatUI.cs: Set default_class_name to be composed
12283         of current domain id. This allows MWF to be loaded in multiple
12284         domains on Win32.
12285
12286 2006-09-09  Miguel de Icaza  <miguel@novell.com>
12287
12288         * X11Keyboard.cs: If we are unable to obtain the input method, do
12289         not call CreateXic to create the input context.   Should fix
12290         #78944/79276.
12291
12292 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
12293
12294         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
12295           Simplified gnome support by adding more pinvokes to get the
12296           icon for a file or mime type.
12297
12298 2006-09-08  Jackson Harper  <jackson@ximian.com>
12299
12300         * MenuAPI.cs: Deslect popup context menu items before closing the
12301         window, so that you don't see the previously selected item
12302         selected when you reopen the menu.
12303         * TextControl.cs: Update the cursor position even if we don't have
12304         focus.  This fixes typing in things like the ComboBox.  I'm not
12305         totally sure we should always set the visibility if we don't have
12306         focus, but couldn't find any corner cases where the cursor showed
12307         up when it shouldn't.
12308
12309 2006-09-08  Chris Toshok  <toshok@ximian.com>
12310
12311         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
12312         our arrays are length 256.  & 0xff before indexing.  Fixes the
12313         crash in bug #78077.
12314         
12315 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12316
12317         * ThemeWin32Classic.cs: 
12318         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
12319         is true. Handle that check box too.
12320
12321 2006-09-07  Chris Toshok  <toshok@ximian.com>
12322
12323         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
12324         79244.
12325
12326 2006-09-07  Chris Toshok  <toshok@ximian.com>
12327
12328         * Control.cs: in set_BackColor only do the work if
12329         background_color != value.
12330
12331         * XplatUIX11.cs: move the clearing of invalid areas (both client
12332         and nc) to the same block of code where we set (nc_)expose_pending
12333         to false.  That is, move it from PaintEventEnd to PaintEventStart,
12334         so things that cause invalidates from within OnPaint will trigger
12335         another call to OnPaint.  Fixes bug #79262.
12336
12337 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
12338
12339         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
12340         * FileDialog.cs: Fix typo
12341
12342 2006-09-07  Jackson Harper  <jackson@ximian.com>
12343
12344         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
12345         for tab pages if they have any.
12346
12347 2006-09-06  Mike Kestner  <mkestner@novell.com>
12348
12349         * Splitter.cs: use the "current" rect when finishing drag handle
12350         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
12351
12352 2006-09-06  Mike Kestner  <mkestner@novell.com>
12353
12354         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
12355         support offset splitters. [Fixes #79298]
12356
12357 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
12358
12359         * Mime.cs: Fixed a bug that could override the global mime type
12360           result.
12361
12362 2006-09-05  Jackson Harper  <jackson@ximian.com>
12363
12364         * TabControl.cs: Better calculation method for setting the slider
12365         pos. Prevents crashes on really wide tabs.
12366         - Draw Image on tab pages if an image list is used.
12367
12368 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12369
12370         * MonthCalendar.cs: When Font changes, the Size should be
12371         updated to fit the new font's space requirements.
12372
12373 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
12374
12375         * ListBox.cs: If the items are cleared with Items.Clear set
12376           top_index to 0.
12377
12378 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12379
12380         * MonthCalendar.cs: Handle arrow keys as input keys. Also
12381         fire DateChanged event instead of DateSelected event when
12382         the date was changed by keyboard interaction.
12383
12384 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12385
12386         * DateTimePicker.cs: Handle DateChanged for the associated
12387         month_calendar control, and set month_calendar.Font from 
12388         OnFontChanged method, as well as resize the height of the
12389         control when needed. Make PreferredHeight proportional.
12390
12391 2006-09-01  Chris Toshok  <toshok@ximian.com>
12392
12393         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
12394         properties.
12395
12396         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
12397
12398 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
12399
12400         * FileDialog.cs: Set ClientSize instead of window size, to allow space
12401           for decorations (Fixes #79219)
12402
12403 2006-09-01  Mike Kestner  <mkestner@novell.com>
12404
12405         * ComboBox.cs: first stab at sorting plus some selection handling
12406         fixes to bring us more in line with MS behavior.  Also switches back
12407         to index based selection.  Alternative patches for index-based 
12408         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
12409         and latency@gmx.de on bug 78848.  I assume they were similar to this
12410         code I've had simmering in my tree forever.
12411         [Fixes #78848]
12412
12413 2006-09-01  Chris Toshok  <toshok@ximian.com>
12414
12415         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
12416         when setting list position guard against ending up with a -1 index
12417         (the other part of the fix for #78812).  Should probably make sure
12418         we don't need the analogous fix in the ItemDeleted case.
12419
12420         * DataGrid.cs:
12421         - in SetDataSource, work around the fact that the way
12422         OnBindingContextChanged is invoked will cause us to re-enter this
12423         method.  I'll remove the hack once I investigate
12424         OnBindingContextChanged.
12425
12426         - fix the logic in set_DataSource and set_DataMember (basically
12427         what to do if the other of the two is null.)
12428         
12429         - in OnListManagerItemChanged, we need to take into account the
12430         edit row when deciding whether or not to call RecreateDataGridRows
12431         (part of the fix for #78812).
12432
12433 2006-09-01  Jackson Harper  <jackson@ximian.com>
12434
12435         * Splitter.cs: Don't do anything if there is no control to affect
12436         (prevents us from crashing in weird tet cases).
12437         * TreeView.cs: Bounding box for the mouse movement reverting
12438         focus/selection back to previously selected node.  This matches
12439         MS, and makes the tree a lot more useable.
12440         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
12441         use clipping so they are not drawn.  This fixes when the control
12442         is set to have a transparent background, or if it was over an
12443         image.
12444
12445 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
12446
12447         * MimeIcon.cs: Improved handling for reading default icons when
12448           using gnome (2.16 made it necessary). Check and read svg icons
12449           first, then 48x48 and then 32x32 icons.
12450
12451 2006-08-31  Chris Toshok  <toshok@ximian.com>
12452
12453         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
12454         visible.
12455
12456         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
12457         ProcessKeyPreview.  Fixes part of #77806.
12458
12459         * DataGrid.cs: big patch.
12460
12461         - revert the queueing up of DataSource/DataMember if inside
12462         BeginInit/EndInit calls.  That's not the way the datagrid achieves
12463         its delayed databinding.  Instead, call SetDataSource in
12464         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
12465         #78811.
12466
12467         - Also, it wasn't mentioned in #78811, but the test case exhibits
12468         behavior that was lacking in our datagrid implementation - Columns
12469         that have mapping names that don't exist in the datasource's
12470         properties aren't shown.  Yuck.  To fix this I added the bound
12471         field to the column style, and basically any calculation to figure
12472         out anything about columns uses a loop to find the bound columns.
12473         still need to investigate if I can cache an array of the bound
12474         columns or if the indices must be the same.
12475
12476         - When setting CurrentCell, we no longer abort if the cell being
12477         edited was in the add row.  This fixes the other part of #77806.
12478
12479         - The new code also fixes #78807.
12480         
12481         * ThemeWin32Classic.cs: perpetrate the same disgusting
12482         column.bound field hack, and only render bound fields.
12483
12484 2006-08-31  Chris Toshok  <toshok@ximian.com>
12485
12486         * DataGridColumnStyle.cs: add bound field.  this field is true if
12487         the datasource has a property corresponding to the mapping name.
12488
12489         * DataGridTableStyle.cs: set the bound field on the column styles
12490         depending on whether or not we have a column for that property.
12491
12492 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
12493
12494         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
12495           splitter control (fixes #79228)
12496
12497 2006-08-31  Chris Toshok  <toshok@ximian.com>
12498
12499         * DataGridColumnStyle.cs: we need to delay the assignment of
12500         property descriptor until the last possible moment due to the lazy
12501         databinding stuff in the datagrid.  Also, fix the exceptions
12502         thrown by CheckValidDataSource to match MS.
12503
12504 2006-08-31  Jackson Harper  <jackson@ximian.com>
12505
12506         * Form.cs: When activated select the active control, if there is
12507         no active control, we select the first control.
12508         * XplatUIX11.cs: If there is no focus control when we get a
12509         FocusIn event, find the toplevel form and activate it.  This
12510         occurs when you popup a window, it becomes the focus window, then
12511         you close that window, giving focus back to the main window.
12512
12513 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12514
12515         * MonthCalendar.cs: 
12516         * ThemeWin32Classic.cs: Cache Font in bold style, as well
12517         as StringFormat with Center alignments in MonthCalendar,
12518         instead of creating new ones when drawing the control. 
12519         Also, draw the month name in bold style.
12520
12521 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12522
12523         * Control.cs:
12524           - PerformLayout(): It would seem MS performs the fill even if the 
12525             control is not visible (part of #79218 fix)
12526           - ResetBackColor(): Use the setter to reset the color, to allow
12527             overriders to catch the change.
12528         * Form.cs:
12529           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
12530           - CreateHandle(): dito (part of $79218 fix)
12531           - Don't set an icon if we have a dialog
12532         * ScrollableControl.cs:
12533           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
12534           - ScrollIntoView(): No need to scroll if control is already visible
12535             (resolves fixme and fixes #79218)
12536
12537 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12538
12539         * MonthCalendar.cs: Change proportions in SingleMonthSize
12540         to match the aspect of the original control.
12541
12542 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
12543
12544         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
12545           get updated when they get maximized.
12546
12547 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
12548
12549         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
12550
12551 2006-08-29  Chris Toshok  <toshok@ximian.com>
12552
12553         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
12554
12555 2006-08-29  Jackson Harper  <jackson@ximian.com>
12556
12557         * TreeView.cs: Need to track selected node and highlighted node,
12558         they aren't always the same thing, when the mouse is down on a
12559         node it is hilighted, but not selected yet.
12560         - Do the HideSelection stuff right
12561         - Need to focus on rbutton mouse down. And redraw selection when
12562         right click is mouse upped.
12563
12564 2006-08-29  Mike Kestner  <mkestner@novell.com>
12565
12566         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
12567         when SubItems.Count < Columns.Count.  [Fixes #79167]
12568
12569 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
12570
12571         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
12572
12573 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
12574
12575         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
12576           from X. Only send based on ConfigureNotify if we don't have the
12577           correct location in hwnd (if the window manager moved us)
12578
12579 2006-08-28  Mike Kestner  <mkestner@novell.com>
12580
12581         * ListView.cs: remove a TODO. 
12582         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
12583         [Fixes ListView part of #79166]
12584
12585 2006-08-28  Mike Kestner  <mkestner@novell.com>
12586
12587         * ListView.cs: move wheel handler to parent since it is focused
12588         instead of the item_control now.  [Fixes #79177]
12589
12590 2006-08-28  Mike Kestner  <mkestner@novell.com>
12591
12592         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
12593         when the control is focused. [Fixes #79171]
12594
12595 2006-08-28  Mike Kestner  <mkestner@novell.com>
12596
12597         * ListView.cs: size the item and header controls for empty and
12598         unscrollable views.
12599         * ThemeWin32Classic.cs: draw disabled backgrounds.
12600         [Fixes #79187]
12601
12602 2006-08-28  Chris Toshok  <toshok@ximian.com>
12603
12604         * Form.cs: remove unused "active_form" static field.
12605
12606         * Hwnd.cs: lock around accesses to static windows collection.
12607
12608         * Application.cs: lock threads in Exit ().
12609
12610 2006-08-28  Chris Toshok  <toshok@ximian.com>
12611
12612         * NativeWindow.cs: lock around accesses to window_collection.
12613         
12614 2006-08-28  Chris Toshok  <toshok@ximian.com>
12615
12616         * Control.cs: err, fix this the right way, by locking on controls
12617         when using it.  not by making it synchronized.
12618
12619 2006-08-28  Chris Toshok  <toshok@ximian.com>
12620
12621         * Control.cs: make the static "controls" field synchronized, as it
12622         gets updated from multiple threads.
12623
12624 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12625
12626         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
12627           Prevent other threads from exiting when calling thread sets quit state.
12628         * XEventQueue.cs: Added PostQuitState property
12629
12630 2006-08-27  Chris Toshok  <toshok@ximian.com>
12631
12632         * AsyncMethodData.cs: add a slot for the window handle.
12633
12634         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
12635         window (the destination control's window, not the foster window).
12636
12637         * Control.cs (BeginInvokeInternal): store the window's handle in
12638         the AsyncMethodData.
12639         
12640
12641 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12642
12643         * XplatUIX11.cs:
12644           - PostQuitMessage: Removed resetting S.D display handle, we might have
12645             another loop started after calling PostQuitMessage (Fixes #79119)
12646           - Created destructor to reset S.D handle
12647
12648 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
12649
12650         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
12651
12652 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12653
12654         * TextControl.cs (Insert): Update the caret position even if we don't
12655           have a handle yet, just don't call the driver in that case.
12656         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
12657           to the end of the new selection text (Fixes #79184)
12658
12659 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12660
12661         * Form.cs (Activate): Only activate if the handle is created)
12662         * Control.c:
12663           - Mark window as invisible when it's disposed
12664           - Check if window handle is created when setting window visible, 
12665             instead of relying just on the is_created variable
12666           - Check if object is disposed when creating the control (Fixes #79155)
12667
12668 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12669
12670         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
12671           when allowing layout again. Otherwise we re-generate the anchoring 
12672           distance to the border again and actually alter what the user wanted
12673           This is ugly, it'd be better if we used DisplayRectangle instead of
12674           ClientRectangle for Control.UpdateDistances, but that causes us to
12675           have other problems (initial anchoring positons would be wrong)
12676           (Fixes #78835)
12677
12678 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12679
12680         * Control.cs:
12681           - The size and location setters shouldn't go directly to 
12682             SetBoundsCore, but to SetBounds, which triggers layout on the
12683             parent, then calls SetBoundsCore. (Related to fix for #78835)
12684           - SetBounds: Moved actual location update code into this function
12685             from SetBoundsCore, to match MS. Added call to PerformLayout if
12686             we have a parent (to trigger resizing of anchored parents if the 
12687             child size has changed (see testcase for #78835) 
12688         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
12689           new control code
12690         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
12691
12692 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12693
12694         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
12695           System.Drawing when a toplevel window gets closed; there might
12696           be other toplevel windows belonging to the same app (Fixes #78052)
12697
12698 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
12699
12700         * FileDialog.cs: After reading FileDialog settings from mwf_config
12701           use Desktop prefix only if a real folder doesn't exist anymore.
12702         * FontDialog.cs: Added char sets.
12703           It is now possible to select the font, size or style with the
12704           textboxes.
12705
12706 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
12707
12708         * PrintPreviewDialog.cs: Use assembly name constants.
12709
12710 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12711
12712         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
12713           scrollbar from whacking it's buttons)
12714
12715 2006-08-24  Chris Toshok  <toshok@ximian.com>
12716
12717         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
12718         in this patch (aggregating setting Left/Top/Width/Height to
12719         setting Bounds on the scrollbars), but the crux of the fix is in
12720         Recalculate, where we scroll by the remaining scroll_position if
12721         we're hiding a scrollbar.  The 2*$5 reward in the comment is
12722         serious.
12723
12724 2006-08-24  Jackson Harper  <jackson@ximian.com>
12725
12726         * MdiClient.cs:
12727         * MdiWindowManager.cs: If the form is made a non-mdi window we
12728         need to remove the form closed event so that closing forms works
12729         correctly.
12730
12731 2006-08-24  Jackson Harper  <jackson@ximian.com>
12732
12733         * Control.cs: Make IsRecreating internal so that the driver can
12734         check it
12735         - Temporarily remove the Hide when controls are removed, its
12736         making a whole bunch of things not work because visibility isn't
12737         getting reset elsewhere correctly
12738         * Form.cs: Need to do a full handle recreation when the mdi parent
12739         is set.
12740         * XplatUIX11.cs: If we are recreating handles don't dispose the
12741         HWNDs.  What was happening is the handles were being recreated in
12742         SendWMDestroyMessages, but then flow continued on in that method
12743         and destroyed the new handles.
12744
12745 2006-08-23  Jackson Harper  <jackson@ximian.com>
12746
12747         * Form.cs: MdiClient is always at the back of the bus
12748         * Control.cs: When the order of items in the collection is changed
12749         we need to reset the all_controls array
12750         - do the same sorta setup thats done when adding a control when a
12751         control is set on the collection.
12752
12753 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12754
12755         * TextBoxBase.cs (get_Text): Return an empty array if our document
12756           is empty (fixes #79052)
12757
12758 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12759
12760         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
12761           on WM_SYSCHAR messages (fixes #79053)
12762
12763 2006-08-23  Chris Toshok  <toshok@ximian.com>
12764
12765         * DataGrid.cs: fix flickering when scrolling vertically.
12766
12767 2006-08-23  Chris Toshok  <toshok@ximian.com>
12768
12769         * DataGrid.cs (EndEdit): only invalidate the row header when we
12770         need to.
12771
12772 2006-08-23  Chris Toshok  <toshok@ximian.com>
12773
12774         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
12775         methods.  fixes the flicker when scrolling around.
12776
12777 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12778
12779         * FileDialog.cs: Making sure the control is created before we get a 
12780           chance to use it with BeginInvoke (Fixes #79096)
12781
12782 2006-08-23  Chris Toshok  <toshok@ximian.com>
12783
12784         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
12785         width to use when painting the rows.
12786
12787 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12788
12789         * TextBoxBase.cs:
12790           - Throw ArgumentException if a negative value is passed to SelectionLength
12791           - Update the selection end if start is moved. end needs to be always
12792             after start. (Fixes #79095)
12793           - Track selection length; MS keeps the selection length even if start
12794             is changed; reset on all other operations affection selection
12795
12796 2006-08-22  Jackson Harper  <jackson@ximian.com>
12797
12798         * TreeView.cs: Make sure both scrollbars get displayed and sized
12799         correctly when the other bar is visible.
12800         - Use the original clip rectangle for checking if the area between
12801         the two scrollbars is visible, not the viewport adjusted clipping
12802         rectangle.
12803
12804 2006-08-22  Jackson Harper  <jackson@ximian.com>
12805
12806         * Binding.cs: We don't use IsBinding because it requires the
12807         control to be created, which really shouldn't be necessary just to
12808         set a property on the control.
12809
12810 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12811
12812         * ComboBox.cs: Some CB.ObjectCollection methods must throw
12813         ArgumentNullReferenceException when the argument is null.
12814
12815 2006-08-21  Jackson Harper  <jackson@ximian.com>
12816
12817         * Timer.cs: Track the thread that the timer is started in (NOT
12818         CREATED), this way messages for it will only be triggered on its
12819         queue.
12820         * XEventQueue.cs: Track the timers here, this makes timers per
12821         thread, like MS.
12822         * XplatUIX11.cs: The timers are moved to the XEventQueue.
12823
12824 2006-08-19  Chris Toshok  <toshok@ximian.com>
12825
12826         * XplatUIX11.cs: after further communication with pdb, we get the
12827         best of both worlds.  SetZOrder working for un-Mapped windows, and
12828         no X errors for un-mapped windows.
12829
12830 2006-08-19  Chris Toshok  <toshok@ximian.com>
12831
12832         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
12833         as it was causing pdn toolbars to not have the correct stacking.
12834
12835 2006-08-18  Mike Kestner  <mkestner@novell.com> 
12836
12837         * ListView.cs : guard against negative ClientArea.Width in scrollbar
12838         calculation.  Not sure why control should ever be setting a negative
12839         width though.  Fixes #78931.
12840
12841 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12842
12843         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
12844         null items in ObjectCollection class.
12845         * ListBox.cs.: Likewise.
12846
12847 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
12848
12849         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
12850           as the base method in ThemeWin32Classic should work fine.
12851           Fixed bug #78607.
12852
12853 2006-08-18  Jackson Harper  <jackson@ximian.com>
12854
12855         * Binding.cs: When validating if the value entered doesn't convert
12856         properly reset to the old value.
12857         * RadioButton.cs: Don't fire click when we get focus.
12858
12859 2006-08-18  Jackson Harper  <jackson@ximian.com>
12860
12861         * FileDialog.cs: Paint the selection on the directory combobox the
12862         same way as on MS. 
12863
12864 2006-08-17  Jackson Harper  <jackson@ximian.com>
12865
12866         * ErrorProvider.cs: Don't allow the error control to be selected.
12867         * Control.cs: Don't send the SetFocus messages, the control
12868         activation will do this, and if we do it blindly here validation
12869         does not work.
12870
12871 2006-08-17  Jackson Harper  <jackson@ximian.com>
12872
12873         * Control.cs:
12874         * ContainerControl.cs: Make validation events fire in the correct
12875         order.  TODO: For some reason the first validation event is not
12876         getting fired.
12877
12878 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12879
12880         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
12881
12882 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12883
12884         * ComboBox.cs : implement scroll wheel support for popped-down
12885         state. Fixes #78945. 
12886
12887 2006-08-17  Jackson Harper  <jackson@ximian.com>
12888
12889         * TreeView.cs: Specify treeview actions (old patch that didn't get
12890         committed for some reason).
12891         - Don't let the mouse wheel scroll us too far.  Just want to make
12892         the bottom node visible, not scroll it all the ways to the top.
12893
12894 2006-08-17  Jackson Harper  <jackson@ximian.com>
12895
12896         * XplatUIX11.cs: Mouse wheel events go to the focused window.
12897
12898 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12899
12900         * ComboBox.cs : don't do mouseover selection in simple mode.
12901
12902 2006-08-16  Jackson Harper  <jackson@ximian.com>
12903
12904         * Form.cs: Fire the closing events for all the mdi child windows
12905         when a window is closed.  If the cancel args are set to true, the
12906         main window still gets the event fired, but it doesn't not close.
12907         * MdiWindowManager.cs: Do this closing cleanup in a Closed
12908         handler, instead of when the button is clicked, so cancelling the
12909         close works correctly.
12910         * ComboBox.cs: Send the mouse down to the scrollbar.
12911
12912 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12913
12914         * ListBox.cs: When passing 'null' to SelectedItem,
12915         set SelectedIndex to -1, to unselect items. This is the
12916         observed behaviour in .Net.
12917
12918 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
12919
12920         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
12921           MS flags saying there won't be any. (fixes #78800)
12922         * Control.cs (HandleClick): Made virtual
12923
12924 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
12925
12926         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
12927           cultures. Fixed bug #78399.
12928
12929 2006-08-16  Jackson Harper  <jackson@ximian.com>
12930
12931         * Form.cs: Use the MdiClients MdiChildren property to access
12932         MdiChildren instead of creating the array from the child controls.
12933         * MdiClient.cs: Maintain a separate array of the mdi children, so
12934         that insertion order is maintained when the Z-order is changed.
12935
12936 2006-08-16  Mike Kestner  <mkestner@novell.com> 
12937
12938         * ListView.cs : add an ItemComparer and default to it for sorting.
12939         Fixes #79076, but sorting needs a complete overhaul to be compat with
12940         MS.
12941
12942 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
12943
12944         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
12945
12946 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12947
12948         * Hwnd.cs (Mapped): Properly traverse the tree
12949
12950 2006-08-15  Chris Toshok  <toshok@ximian.com>
12951
12952         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
12953         pass manager.Current.GetType() to ParseData.  It has to be the
12954         property type.  So, hold off doing the ParseData until we're in
12955         SetPropertyValue where we know the type.  This fixes the crash in
12956         #78821 but the textbox is still empty.
12957
12958 2006-08-15  Chris Toshok  <toshok@ximian.com>
12959
12960         * DataGrid.cs:
12961         - when we're scrolling, only call Edit() again if the
12962         current cell is still unobscured. Fixes bug #78927.
12963         - when handling mousedown on a cell, ensure the cell is visible
12964         before calling Edit.
12965         - remove the properties from DataGridRow, and remove the
12966         DataGridParentRow class altogether.
12967         
12968
12969 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12970
12971         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
12972           fire OnTextChanged by ourselves. There's no point calling base,
12973           we don't set the base value anywhere else. Fixes #78773.
12974
12975 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12976
12977         * ListBox.cs: Call CollectionChanged when modifying
12978         an item from Items indexer, to update the actual items
12979         in the list box.
12980
12981 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12982
12983         * PrintDialog.cs: Small fixes for focus and a pair of checks,
12984         to match .Net behaviour.
12985
12986 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12987
12988         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
12989
12990 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
12991
12992         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
12993
12994 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12995
12996         * MessageBox.cs: Prevent potential NRE exception.
12997         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
12998
12999 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13000
13001         * MessageBox.cs: Calculate the owner of a messagebox, also make
13002           it topmost. Fixes #78753
13003
13004 2006-08-14  Chris Toshok  <toshok@ximian.com>
13005
13006         * XplatUIX11.cs: A couple of fixes so that metacity will let us
13007         programmatically move windows.  first, set the PPosition hint as
13008         well as the USPosition hint.  Second include some code from pdb
13009         that sets the window type to NORMAL when we set the transient for
13010         hint.  This is because, in the absence of a window type, metacity
13011         thinks any window with TransientFor set is a dialog, and refuses
13012         to let us move it programmatically.  fascists.
13013
13014 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13015
13016         * XplatUIX11.cs: When setting normal hints, take into consideration
13017           an different hints previously set so we don't delete them (fixes #78866)
13018
13019 2006-08-12  Chris Toshok  <toshok@ximian.com>
13020
13021         * ToolBarButton.cs: make Layout return a boolean, if something to
13022         do with the button's layout changed.
13023
13024         * ToolBar.cs:
13025         - add another parameter to Redraw, @force, which all existing
13026           calls set to true.
13027         - make the Layout function return a boolean which is true if the
13028           layout has actually changed.  Redraw now uses this (and @force)
13029           to determine when to invalidate.  At present the only place
13030           where @force can be false is the call from OnResize, when
13031           background_image == null.  So, resizing a toolbar when the
13032           layout doesn't change results in no drawing.
13033
13034 2006-08-12  Chris Toshok  <toshok@ximian.com>
13035
13036         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
13037         the VScrollBar and HScrollbar reversed.  oops.
13038
13039         * DataGrid.cs: fix the logic that assigns sizes to the implicit
13040         scrollbars.  we were assigning them twice (once in
13041         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
13042         therefore causing two scrollbar resizes (and redraws?) to happen
13043         per grid resize.
13044
13045 2006-08-12  Chris Toshok  <toshok@ximian.com>
13046
13047         * ToolBarButton.cs: redraw the entire button if the theme tells us
13048         to.
13049
13050         * Theme.cs: add ToolBarInvalidateEntireButton.
13051
13052         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
13053         buttons, just the border.
13054
13055         * ThemeNice.cs: redraw the entire toolbar button since we need to
13056         draw the highlight image.
13057
13058         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
13059         we need to redraw the entire button (not just the border).
13060
13061 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13062
13063         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
13064           for vertical bars. Fixes the mismatches shown by #78513
13065
13066 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
13067
13068         * FileDialog.cs: If a saved/remembered path doesn't exist
13069           anymore, fall back to "Desktop".
13070
13071 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13072
13073         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
13074           parent. It's apparently legal to not have one
13075         * XplatUIX11.cs:
13076           - SetZOrder: Don't try to set Z-Order on an unmapped window
13077           - CreateWindow: 0,0 are legal coordinates for a window. don't move
13078             it unless the coordinates are negative
13079
13080 2006-08-10  Mike Kestner  <mkestner@novell.com>
13081
13082         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
13083         when setting to null per msdn docs.  Fixes #78854.
13084
13085 2006-08-10  Chris Toshok  <toshok@ximian.com>
13086
13087         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
13088         flickering by setting a clip rectangle on the Graphics when we
13089         need to redraw just a particular menuitem.  Also, rename "OnClick"
13090         to "OnMouseDown" to reflect what it actually is.
13091         
13092         * Form.cs: track the OnMouseDown change.
13093
13094 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
13095
13096         * CommonDialog.cs: Properly inherit the CreateParams from the form
13097           and only change what we need. Fixes #78865
13098
13099 2006-08-10  Chris Toshok  <toshok@ximian.com>
13100
13101         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
13102         flickering in flat mode (and most of the flickering in general) by
13103         only invalidating the button border (and not the entire rectangle)
13104         when the state changes.  A couple of cases still flicker:
13105         ToggleButtons, and the dropdown arrow case when the user mouse
13106         ups.
13107
13108 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
13109
13110         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
13111           for german keyboards. Numlock state shouldn't affect the behaviour
13112           of the Del key. Fixes bug #78291.
13113
13114 2006-08-10  Chris Toshok  <toshok@ximian.com>
13115
13116         * ListControl.cs: remove the items.Clear line from BindDataItems,
13117         as this is the first thing done by both subclasses in their
13118         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
13119         passed -1, refresh the list.  This gets databinding working when
13120         the datasource is set on the list before the datasource is
13121         populated (as in wf-apps/ReportBuilder.)
13122
13123         * ComboBox.cs: remove the argument to BindDataItems.  This call
13124         should really go away, and be initiated by the ListControl code.
13125
13126         * ListBox.cs: same.
13127
13128 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
13129
13130         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
13131           if no data is in the document when the control is displayed
13132
13133 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
13134
13135         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
13136           yes (fixes #78806)
13137         * TextControl.cs: 
13138           - PositionCaret: Allow positioning of caret but don't call methods 
13139             requiring a handle if the window isn't created yet
13140           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
13141           - owner_HandleCreated: Don't position the caret, just update it's 
13142             location. User might have already set a different position
13143
13144 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
13145
13146         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
13147           windows. Screws up the returned coordinates for child windows. 
13148           Fixes #78825. I'm hoping this doesn't break something, since the
13149           code was explicitly put in 8 months ago, but no bug was attached.
13150           Menus still seem to work properly.
13151
13152 2006-08-08  Chris Toshok  <toshok@ximian.com>
13153
13154         * DataGrid.cs: make BeginInit/EndInit actually do what they're
13155         supposed to do - delay data binding until the EndInit call.  Also,
13156         make the table style collection's CollectionChangeAction.Refresh
13157         work properly.
13158
13159         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
13160         (with action = Refresh) when a consituent table's MappingName is
13161         changed.
13162
13163 2006-08-08  Chris Toshok  <toshok@ximian.com>
13164
13165         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
13166         Invalidate, since changing the text can change the size of the all
13167         toolbar buttons.
13168
13169 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13170
13171         * Form.cs (AddOwnedForm): Still need to add the form to our listif
13172           we don't have it yet
13173
13174 2006-08-08  Chris Toshok  <toshok@ximian.com>
13175
13176         * PrintControllerWithStatusDialog.cs: don't .Close() the status
13177         dialog, as this causes X errors later on, since we actually
13178         destroy the window.  Instead, .Hide() it.
13179
13180 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13181
13182         * ComboBox.cs: Added focus reflection for popup window
13183         * XplatUIX11.cs: 
13184           - Removed transient setting for non-app windows for now, not sure it
13185             was needed
13186           - Fixed logic checking if we have captions when deciding 
13187             override_redirect, WS_CAPTION is two bits and a 0 check was not
13188             sufficient
13189           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
13190             complicated
13191         * Form.cs: 
13192           - AddOwnedForm: Don't just add the form to the list, call the property
13193             to ensure the driver is informed about the ownership as well
13194           - CreateHandle: Set the TopMost status in the driver if we have an owner
13195         * XplatUI.cs: Fixed debug statement
13196
13197 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
13198         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13199           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
13200           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
13201           TrackBarRenderer.cs: Make constructor private.
13202         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
13203         * ProfessionalColorTable.cs: Make properties virtual.
13204
13205 2006-08-06  Duncan Mak  <duncan@novell.com>
13206
13207         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
13208         is not changing.
13209
13210 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13211         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13212           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
13213           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
13214           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
13215           Initial import of new 2.0 classes.
13216
13217 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13218         * Application.cs: Add 2.0 VisualStyles properties.
13219
13220 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13221         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13222           XplatUIX11.cs: Create property to allow access to existing private
13223           variable "themes_enabled"
13224
13225 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13226
13227         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
13228         file size, as otherwise our class libraries fail using windows. Fixes
13229         bug #78759.
13230
13231 2006-08-04  Jackson Harper  <jackson@ximian.com>
13232
13233         * Form.cs:
13234         * XplatUIX11.cs: Move the toolwindow window manager creation into
13235         the X11 driver, this way on win32 we can let windows create/handle
13236         the toolwindows.
13237
13238 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13239
13240         * PrintDialog.cs: Remove some redundant checks, add some others,
13241         clean some code, and move the focus to the text boxes when the
13242         values are incorrect.
13243
13244 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
13245
13246         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
13247
13248 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13249
13250         * NumericUpDown.cs: Setting the Minimum and Maximum is now
13251           handled correctly. Fixes bug #79001.
13252
13253 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13254
13255         * PrintDialog.cs: The "Copies" numeric up down must have
13256         set the Minimum property to 1; only if the value is bigger
13257         than 1, activate "Collate" check box. This is the behaviour of .Net.
13258         Also modify the Document elements only if it is not null.
13259
13260 2006-08-03  Jackson Harper  <jackson@ximian.com>
13261
13262         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
13263         length. (We have a larger array then actual node count).
13264                 
13265 2006-08-03  Jackson Harper  <jackson@ximian.com>
13266
13267         * ComboBox.cs: Don't show selection by default.
13268         - The SelectAll isn't needed here, since the focus code should do
13269         that
13270         - DDL style lists to manual selection drawing, so when they
13271         get/lose focus they have to invalidate.
13272
13273 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
13274
13275         * TextBoxBase.cs: Don't always show all selections by default.
13276
13277 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
13278         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
13279           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
13280           Fixed various typos.
13281
13282 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13283
13284         * Control.cs: Removing the controls in a ControlCollection with
13285           Clear now hides the controls as expected. Fixes bug #78804. 
13286
13287 2006-08-03  Jackson Harper  <jackson@ximian.com>
13288
13289         * Control.cs: Revert previous focus patch, it breaks reflector.
13290
13291 2006-08-03  Jackson Harper  <jackson@ximian.com>
13292
13293         * ComboBox.cs: Cleanup selection and focus with the combobox.
13294         This also eliminates some duplicated keyboard code, since now
13295         everything is handled by the main class.
13296         - Make list selection work on mouse up instead of down, to match
13297         MS.
13298
13299 2006-08-02  Jackson Harper  <jackson@ximian.com>
13300
13301         * Control.cs: Setting focus needs to go through the whole
13302         selection mechanism.
13303
13304 2006-08-02  Chris Toshok  <toshok@ximian.com>
13305
13306         * PrintPreviewDialog.cs: change MinimumSize to use
13307         base.MinimumSize so it works.
13308
13309 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
13310
13311         * TextControl.cs:
13312           - UpdateCaret: Added sanity check in case caret isn't defined yet
13313           - Line.Delete: Now updating selection and caret markers if we're
13314             transfering a node (Properly fixes #78323)
13315           - SetSelectionEnd: Added sanity check
13316         * TextBoxBase.cs: Removed broken attempt to fix #78323
13317
13318 2006-08-01  Chris Toshok  <toshok@ximian.com>
13319
13320         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
13321         Close() call is handled in Form, not here.
13322
13323 2006-08-01  Chris Toshok  <toshok@ximian.com>
13324
13325         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
13326         layout/rendering.
13327
13328         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
13329         for sizes < 100% zoom.  The code now aggressively attempts to keep
13330         from calling document.Print (), and tries not to use the scaling
13331         g.DrawImage whenever possible (it still does if you scale to >
13332         100%, since usually that involves huge images).
13333
13334         * PrintPreviewControl.cs: hook up the close button.
13335
13336 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
13337         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
13338           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
13339           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
13340           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
13341           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
13342           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
13343           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
13344           Removed [Serializable] for 2.0 Event Handlers.
13345
13346 2006-07-31  Jackson Harper  <jackson@ximian.com>
13347
13348         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
13349         * TextControl.cs: Uncomment out the body of this method.
13350
13351 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
13352
13353         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
13354           standard cursors.
13355
13356 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13357
13358         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
13359           that embed TextBox and need selections visible even if textbox is not
13360           focused to enforce that behaviour.
13361         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
13362           selection drawing
13363
13364 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13365
13366         * TextControl.cs:
13367           - Added new SetSelectionStart/SetSelectionEnd overloads
13368           - Fixed viewport width assignment to be accurate
13369           - Adjusted alignment line shift calculations to allow cursor on right
13370             aligned lines to be always visible at the right border (like MS)
13371         * TextBoxBase.cs:
13372           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
13373           - TextBoxBase_SizeChanged: recalculating canvas on size changes
13374           - CalculateScrollBars: Use ViewPort size instead of window size, to
13375             properly consider space occupied by the border and scrollbars 
13376             (Fixes #78661)
13377           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
13378             calculations; no longer leaves artifacts
13379           - CaretMoved: Adjusted window scrolling to match MS and fixed several
13380             calculation bugs (Still missing right/center align calculations)
13381
13382 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
13383
13384         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
13385           use of both scroll rect and clip rect, as they do the same.
13386
13387 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13388
13389         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
13390           in the event handler (fixes #78912)
13391
13392 2006-07-31  Chris Toshok  <toshok@ximian.com>
13393
13394         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
13395         grid.ListManager.Count, since grid.ListManager might be null.
13396         This of course begs the question "why are we drawing rows for a
13397         grid with no list manager (and therefor no rows)?"  Fixes the
13398         crash in bug #78929.
13399
13400 2006-07-31  Chris Toshok  <toshok@ximian.com>
13401
13402         * RelatedPropertyManager.cs: Don't always chain up to the parent
13403         ctor.  instead, call SetDataSource if the parent's position is !=
13404         -1.  Fixes the crash in #78822.
13405
13406 2006-07-31  Chris Toshok  <toshok@ximian.com>
13407
13408         * DataGrid.cs (get_ListManager): use field instead of property
13409         accessors for datasource and datamember.
13410         (RowsCount): make internal again.
13411         (OnMouseDown): end edits before resizing columns/rows.
13412         (OnMouseUp): restart edits after resizing columns/rows.
13413
13414 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
13415
13416         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
13417           This fixes the situation where the last set cursor is displayed
13418           whenever the mouse is over scrollbars.
13419
13420 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13421
13422         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
13423         Document properties, as well as initial values.
13424
13425 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
13426
13427         * XplatUIWin32.cs (SetBorderStyle): Setting both border
13428           and ClientEdge results in a 3-pixel border, which is
13429           wrong.
13430
13431 2006-07-28  Jackson Harper  <jackson@ximian.com>
13432
13433         * TreeNodeCollection.cs: Fix the clear method.
13434         - Fix the Shrink also
13435
13436 2006-07-27  Jackson Harper  <jackson@ximian.com>
13437
13438         * TreeView.cs: Make sure the visible order is computed when we
13439         attempt to size the scrollbars (for trees that mess with the
13440         scrolling when they shouldn't.
13441         - Make sure to give the scrollbars valid values.
13442
13443 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13444
13445         * XplatUIX11.cs: Move motion compression code to where it
13446           has less performance impact
13447
13448 2006-07-26  Jackson Harper  <jackson@ximian.com>
13449
13450         * UpDownBase.cs: When the control is selected make the child
13451         controls non selectable, so that a click on them won't do a
13452         focus/unfocus cycle.
13453         - Don't give focus to the text box when the spinner is selected.
13454         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
13455
13456 2006-07-26  Chris Toshok  <toshok@ximian.com>
13457
13458         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
13459         satisfied with this solution.  If the bitmaps are small, we should
13460         just cache them in the PrintPreviewDialog and draw them here.
13461         Also, the layout is broken for the 2-up and 3-up cases.
13462
13463         * Theme.cs: add PrintPReviewControlPaint.
13464
13465         * PrintPreviewDialog.cs: first pass implementation.
13466
13467         * PrintPreviewControl.cs: first pass implementation.  No
13468         scrollbars yet.
13469
13470         * PrintDialog.cs: only validate fields if that particular portion
13471         of the UI is enabled.  Also, set the document's controller to a
13472         PrintControllerWithStatusDialog wrapping the document's print
13473         controller.
13474
13475         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
13476         bring up a SaveFileDialog (i hope we don't want to match the
13477         behavior of the crappy windows file entry) and set the
13478         PrinterSettings.PrintFileName accordingly.
13479
13480 2006-07-26  Jackson Harper  <jackson@ximian.com>
13481
13482         * ContainerControl.cs: Add a field that disables auto selecting
13483         the next control in a container when the container is activated.
13484         * UpDownBase.cs: Don't select the text box when the up down is
13485         selected.
13486
13487 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13488
13489         * XEventQueue.cs: Added methods for peeking (used for compression
13490           of successive events)
13491         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
13492           mouse move events (fixes #78732)
13493
13494 2006-07-25  Jackson Harper  <jackson@ximian.com>
13495
13496         * UpDownBase.cs: Use an internal class for the textbox so that we
13497         can control focus.  the updown control should always have focus,
13498         if either the text area or the buttons are clicked.
13499         - Send the key messages to the textbox, since it never actually
13500         has focus
13501         - Activate and decativate the textbox caret.
13502
13503 2006-07-24  Jackson Harper  <jackson@ximian.com>
13504
13505         * Control.cs: Use the directed select when selecting a control,
13506         this way the container controls override will get called and the
13507         whole ActiveControl chain will get triggered.  TODO: probably need
13508         to make sure this gets done everywhere instead of the old
13509         Select(Control).
13510         * ContainerControl.cs: Implement the directed Select method to
13511         find and activate the correct child control.    
13512         
13513 2006-07-22  Mike Kestner  <mkestner@novell.com>
13514
13515         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
13516         menu handling code so that clicks without a grab work too.
13517         [Fixes #78914]
13518
13519 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
13520
13521         * FileDialog.cs: Enable the BackButton when dirstack has one element.
13522           Added some small optimizations.
13523
13524 2006-07-21  Matt Hargett  <matt@use.net>
13525
13526         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
13527
13528 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
13529
13530         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
13531           tests pass and match MS in some strange border cases.
13532
13533 2006-07-21  Chris Toshok  <toshok@ximian.com>
13534
13535         * ThemeWin32Classic.cs: handle drawing of the relation links and
13536         parent row buttons.
13537
13538         * Theme.cs: change args to DataGridPaintParentRow.
13539
13540         * DataGrid.cs: Don't use controls for the relation links and
13541         parent buttons, so we have to handle all their interactions in
13542         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
13543         when we're navigating through child tables, so we can reinstate
13544         selection, expanded state, current cell, etc.
13545
13546 2006-07-20  Chris Toshok  <toshok@ximian.com>
13547
13548         * ToolBar.cs: When we redraw a button, for whatever reason,
13549         there's no reason to redraw the entire toolbar.  Also, don't call
13550         Control.Refresh from within Redraw, as it's much heavier than
13551         Invalidate (which is really what we want).
13552
13553 2006-07-20  Chris Toshok  <toshok@ximian.com>
13554
13555         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
13556         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
13557         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
13558         traces from within a debug IBindingList datasource
13559         (in mono/winforms/datagrid) for *days*, I've finally gotten things
13560         to work in a similar fashion.
13561
13562 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13563
13564         * ListBox.cs: Don't call Sort () when setting 
13565         the Sorted property to false (avoid an unnecessary sort).
13566
13567 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13568
13569         * ListControl.cs: DataSource should throw an ArgumentException
13570         instead of a normal exception when the argument is not of the 
13571         correct type.
13572
13573 2006-07-20  Mike Kestner  <mkestner@novell.com>
13574
13575         * Control.cs: add InternalPreProcessMessage to allow us to steal
13576         key events before MWF gets its paws on them.  Adapted from a
13577         suggestion by eno.
13578         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
13579         up/down/left/right navigation. Override the new internal control
13580         method to steal the events since they never make it to WndProc.
13581         * ToolBarButton.cs: don't worry about pushed when setting hilight
13582         since the drawing code prefers pushed to hilight. Invalidate on 
13583         Hilight changes. Fixes #78547 and #78525.
13584
13585 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13586
13587         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
13588           the canvas size. Fixes #78868
13589
13590 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
13591
13592         * Splitter.cs: Track requested split position until first layout
13593           is performed. Fixes #78871
13594
13595 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13596
13597         * Application.cs: Removed code that forces 1.x for the version
13598           number if the version started with 0. Not sure why that code was
13599           there and I couldn't find any bugs that indicated we needed it.
13600           Fixes #78869
13601
13602 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
13603
13604         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
13605           ResetDefaults(), just write some output to the console until it's
13606           implemented. Fixes bug #78907 for now. Eliminated two warnings.
13607
13608 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
13609
13610         * PropertyGridView.cs: set StartPosition of drop down forms
13611         so they appear in correct initial spot.  Fixes #78190.
13612
13613 2006-07-19  Mike Kestner  <mkestner@novell.com>
13614
13615         * ThemeWin32Classic.cs: use parent background color when drawing
13616         flat toolbars.  Restructure the conditionals to make sure non-flat
13617         non-Divider toolbars are filled too.  Fixes #78837.
13618
13619 2006-07-19  Mike Kestner  <mkestner@novell.com>
13620
13621         * ListBox.cs: Sort on collection changes even if the handle
13622         isn't created yet.  Fixes #78813.
13623
13624 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13625
13626         * ListControl.cs: DisplayMember should never be null,
13627         and now we assign String.Empty when null is passed to it (this
13628         is the .Net way).
13629
13630 2006-07-17  Mike Kestner  <mkestner@novell.com>
13631
13632         * ListViewItem.cs: restructure Font and subitem Font handling 
13633         to hold a specific font and refer back to owner on null.
13634         Fixes #78761.
13635
13636 2006-07-17  Mike Kestner  <mkestner@novell.com>
13637
13638         * ToolBar.cs: bandaid for side-effect of previous patch which was
13639         discarding explicit heights for non-AutoSize toolbars.  Need to
13640         extend my format tester to deal with AutoSize=false. Fixes #78864.
13641
13642 2006-07-15  Jackson Harper  <jackson@ximian.com>
13643
13644         * LabelEditTextBox.cs:
13645         * TreeView.cs: Use a new LabelEdit class for node editing, this
13646         class automatically 'closes' itself when it gets the enter key or
13647         loses focus.
13648         - Use the client rectangle when setting the trees scrollbars, so
13649         border style is taken into account.
13650         
13651 2006-07-14  Jackson Harper  <jackson@ximian.com>
13652
13653         * TreeNode.cs:
13654         * TreeView.cs: Make the editing work similar to MSs, firing the
13655         events correctly and ending edits correctly.
13656
13657 2006-07-14  Mike Kestner  <mkestner@novell.com>
13658
13659         * ToolBarButton.cs:
13660         * ToolBar.cs: layout restructuring and redraw enhancements to support
13661         formatting changes gracefully, like setting TextAlign, ImageList, 
13662         ButtonSize, and Appearance.  Handles explicit button sizing quirks
13663         of the MS controls.  Things like flat toolbars ignoring button size
13664         but becoming constant sized at the largest button's size.  Normal
13665         toolbars with an image set cannot be shrunk smaller than the image,
13666         but text can be clipped/ignored.
13667         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
13668         is zero.  Seems like DrawString should be smart enough to not put
13669         anything on screen though. Also trim labels and ellipsize at the char
13670         boundary, not word.
13671         Fixes #78711 and #78483.
13672
13673 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13674
13675         * FolderBrowserDialog.cs: Disable "New Folder" button and
13676           "New Folder" contextmenu menuitem if a folder like "My Computer"
13677           is selected.
13678
13679 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13680
13681         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
13682         * FolderBrowserDialog.cs:
13683           - Use MWFConfig to store and read size and position settings
13684           - Added code to create a new folder (button or context menu).
13685             Use TreeView labeledit to change the name of the new folder.
13686
13687 2006-07-14  Jackson Harper  <jackson@ximian.com>
13688
13689         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
13690         when the tree is scrolled we end editing.
13691
13692 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13693
13694         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
13695           Down arrows
13696
13697 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
13698
13699         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
13700         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
13701         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
13702         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
13703         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
13704         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
13705         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
13706         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
13707         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
13708         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
13709         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
13710         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
13711         ListViewItemSelectionChangedEventHandler.cs,
13712         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
13713         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
13714         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
13715         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
13716         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
13717         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
13718         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
13719         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
13720         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
13721         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
13722         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
13723         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
13724         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
13725         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
13726         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
13727         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
13728         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
13729         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
13730         WebBrowserNavigatingEventHandler.cs, 
13731         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
13732
13733 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
13734
13735         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
13736         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
13737         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
13738         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
13739         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
13740         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
13741         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
13742         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
13743         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
13744         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
13745         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
13746         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
13747         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
13748         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
13749         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
13750         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
13751         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
13752         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
13753         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
13754         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
13755         ListViewItemStates.cs, MaskFormat.cs: Added
13756
13757 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
13758
13759         * PropertyGridView.cs: Fix keyboard navigation of drop down.
13760         Patch from eno for bug 78558.
13761         
13762 2006-07-13  Jackson Harper  <jackson@ximian.com>
13763
13764         * TreeView.cs: When an edit is finished make sure that the
13765         selected node is visible.
13766         - When setting the top/bottom use the scrollbars is_visible, so
13767         everything will be set correctly even if the tree isn't visible
13768         yet.
13769
13770 2006-07-13  Jackson Harper  <jackson@ximian.com>
13771
13772         * ComboBox.cs: Revert the item->index part of my previous patch.
13773         * TreeView.cs: Use LostFocus instead of Leave for detecting when
13774         the edit box has lost focus (duh).
13775         - Just make the edit box not visible when we get return, that will
13776         take the focus, which will call EndEdit
13777         * TreeNode.cs When we start editing, notify the treeview.
13778
13779 2006-07-12  Jackson Harper  <jackson@ximian.com>
13780
13781         * ComboBox.cs: Clear out old items before setting the item list.
13782         This prevents databound controls from having their items added
13783         twice.
13784         - Switch the combobox to use indices whereever possible instead of
13785         using Item's.  This allows usto navigate through lists that have
13786         more then one item with the same string value (ie a, b, b, a).
13787         - Scroll the listboxes scrollbar when a non visible item is
13788         highlighted
13789         - Allow keypress to cycle through all the possible values. For
13790         example if you have b1, b2, b3 and hold down the B key all the
13791         values will be cycled through.
13792         
13793 2006-07-12  Jackson Harper  <jackson@ximian.com>
13794
13795         * TextBoxBase.cs:
13796         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
13797         this using the internal methods.
13798         * Control.cs: Add OnGotFocusInternal.  A new method that allows
13799         controls to "override" OnGotFocus and change focus behavior if
13800         needed.
13801         - Same thing for LostFocus
13802         * ComboBox.cs: Pass off focus to the text control properly.
13803
13804 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
13805
13806         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
13807         * FolderBrowserDialog.cs: Almost a complete rewrite.
13808           - Better support for Environment.Specialfolders
13809           - Added support for MWFVFS
13810           - Made setting SelectedPath work
13811
13812 2006-07-12  Jackson Harper  <jackson@ximian.com>
13813
13814         * Control.cs: Optimze getting all the controls.
13815
13816 2006-07-11  Jackson Harper  <jackson@ximian.com>
13817
13818         * ContainerControl.cs: Override SETFOCUS in the container control,
13819         so that it is not selected on mouse click.
13820
13821 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
13822
13823         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
13824           Hopefully we will have a better way once all of focus is complete.
13825
13826 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
13827
13828         * ThemeWin32Classic.cs: Commented out some debug code and fixed
13829           a compile error with csc.
13830
13831 2006-07-11  Jackson Harper  <jackson@ximian.com>
13832
13833         * Control.cs: When hiding a control only select the next control
13834         if the current control was focused.
13835         - Don't handle enter/leave when setting/killing focus, this is
13836         done by the container control.
13837         - Remove is_selected, it's not needed anymore.
13838         - Add utility methods for selecting a child control, and for
13839         firing the Enter/Leave events.
13840         * ContainerControl.cs: When a control is activated fire the
13841         enter/leave events.
13842         - Don't wrap when processing the tab key, so that focus can be
13843         moved outside of the container.
13844         - Use the correct active control
13845
13846 2006-07-11  Jackson Harper  <jackson@ximian.com>
13847
13848         * ComboBox.cs: Remove some debug code that was blinding me.
13849         * UpDownBase.cs: These controls actually aren't implicit, they are
13850         visible to the user.
13851
13852 2006-07-10  Chris Toshok  <toshok@ximian.com>
13853
13854         * DataGrid.cs: move back to the is_adding boolean field.  god i
13855         hate this is_editing/is_adding/is_changing stuff.
13856
13857 2006-07-10  Chris Toshok  <toshok@ximian.com>
13858
13859         * DataGridTableStyle.cs: just check if the property type is bool.
13860         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
13861         Don't use CanRenderType.
13862
13863         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
13864         if our text == NullText.  Remove CanRenderType.
13865
13866         * DataGridBoolColumn.cs: nuke CanRenderType.
13867
13868         * DataGrid.cs: reenable some code to end the current edit inside
13869         of set_CurrentCell.  This fixes the other 1.1.16 regression.
13870         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
13871         Also, remove the visible_row_count arg from CalcRowHeaders, since
13872         we don't need to worry about the actual height of the area.
13873
13874 2006-07-10  Chris Toshok  <toshok@ximian.com>
13875
13876         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
13877         mode, just return.
13878
13879         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
13880         the real sense of the IsInEditOrNavigateMode property (true =
13881         navigate, false = edit).  Also, update OnKeyPress to reflect this.
13882
13883         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
13884         column style exists, we still need to set its property descriptor
13885         to match up with our list manager.
13886
13887 2006-07-10  Chris Toshok  <toshok@ximian.com>
13888
13889         * ThemeWin32Classic.cs: implement the new row/header painting
13890         approach.  The parent row painting will likely go away and
13891         replaced with label controls, but the rest seems to work ok (and
13892         efficiently).
13893
13894         * Theme.cs: change the way we draw datagrid rows.  we don't draw
13895         the row headers as a block now.  Instead we draw them in the
13896         normal draw-row loop.  Add some calls for drawing parent rows and
13897         relation rows.
13898
13899         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
13900         a default table style.  Set the defaults from ThemeEngine.Current,
13901         not SystemColors.  Fix lots of misc issues with property setters.
13902
13903         * DataGrid.cs: move loads of style information out of this class
13904         as it's being duplicated with DataGridTableStyle.  keep track of a
13905         special DataGridTableStyle for the properties we used to mirror
13906         here.  Switch all the style properties to access this table style
13907         instead of instance fields of this class.  Also add a internal
13908         class to represent parent rows (more needs to be stored here, like
13909         the selection state from the parent table, as well as the
13910         expansion state.)  Also, for datasources with relations, do the
13911         right thing for collapse/expand, and add support for the
13912         navigation/parent row buttons.
13913
13914         Lastly, fix the crash in the 1.1.16 build.
13915
13916         * GridTableStylesCollection.cs: make the explicit interface
13917         implementations call the class's methods as opposed to duplicating
13918         them.
13919
13920         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
13921         0 so the text doesn't jump around when we move the cursor.
13922
13923 2006-07-10  Jackson Harper  <jackson@ximian.com>
13924
13925         * TextBoxBase.cs:
13926         * ListBox.cs: Match MS's ToString (this makes debugging focus
13927         stuff infinitely easier).
13928
13929 2006-07-10  Jackson Harper  <jackson@ximian.com>
13930
13931         * Control.cs (SelectNextControl): When checking the control's
13932         parent use this instead of ctrl.parent so that null can be passed
13933         to SelectNextControl. (I have unit tests for this).
13934         - Remove unused var.
13935
13936 2006-07-10  Chris Toshok  <toshok@ximian.com>
13937
13938         * CurrencyManager.cs: correct one regression, the removal of the
13939         finalType field.  Also, add a MonoTODO on CanAddRows, implement
13940         Refresh() correctly, and fix some event emission in
13941         ListChangedHandler.
13942
13943 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
13944
13945         * FileDialog.cs: Don't use brackets for new folders if they exist
13946           under *nix. Instead use -(number of existing folders +1).
13947
13948 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
13949
13950         * FileDialog.cs:
13951           - Fixed really nasty bug #78771
13952           - Don't block the whole GUI when reading directories with a lot of
13953             entries. Use an other thread instead and call BeginInvoke to
13954             update the ListView in MWFFileView
13955
13956 2006-07-07  Chris Toshok  <toshok@ximian.com>
13957
13958         * Control.cs (Dispose): release any Capture when disposing.
13959
13960 2006-07-07  Chris Toshok  <toshok@ximian.com>
13961
13962         * LinkLabel.cs (Select): if we chain up to the parent, set
13963         focused_index to -1 so we'll search for the first available link
13964         the next time the user tabs into us.  Also, if the direction is
13965         backward and focused_index == -1, start the search from the last
13966         element.
13967
13968 2006-07-07  Chris Toshok  <toshok@ximian.com>
13969
13970         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
13971         is beyond the end of the text, don't do anything.
13972         (CreateLinkPieces): set our ControlStyles.Selectable based on
13973         whether or not we have any links.
13974         (Link.Invalidate): use a loop instead of foreach.
13975         (Link.set_Start): null out owner.sorted_links so it'll be
13976         recreated by CreateLinkPieces.
13977
13978 2006-07-06  Chris Toshok  <toshok@ximian.com>
13979
13980         * LinkLabel.cs: revert the SetStyle change.
13981
13982 2006-07-06  Chris Toshok  <toshok@ximian.com>
13983
13984         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
13985         (OnEnableChanged): s/Refresh/Invalidate
13986         (OnGotFocus): if we have a focused index already, refocus it (so
13987         if we mouse out/in to the window it'll focus the right link).
13988         (OnKeyDown): move the tab handling out of here.
13989         (OnLostFocus): don't set focused_index to -1, so we can refocus it
13990         when we lose focus.
13991         (OnMouseDown): don't Capture here - Control handles it.  Also,
13992         focus the active link.
13993         (OnMouseUp): don't deal with Capture.
13994         (OnPaintBackgroundInternal): remove.
13995         (OnTextAlignChanged): CreateLinkPieces before calling the
13996         superclass's method.
13997         (OnTextChanged): call CreateLinkPieces before calling superclass's
13998         method.
13999         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
14000         move around.
14001         (Select): implement this, moving the selection between different
14002         links, and call parent.SelectNextControl if we don't have another
14003         link to focus in the given direction.
14004         (CreateLinkPieces): call Invalidate instead of Refresh.
14005         
14006 2006-07-06  Chris Toshok  <toshok@ximian.com>
14007
14008         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
14009         new LinkLabel internals.
14010
14011         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
14012         over pieces looking for active/focused/etc links.  also, deal with
14013         runs of text (and links) with embedded \n's in them, and use
14014         MeasureCharacterRanges instead of MeasureString to figure out the
14015         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
14016         two-step.
14017
14018 2006-07-04  Jackson Harper  <jackson@ximian.com>
14019
14020         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
14021         XKB or key auto repeat, do it manually.  Without key auto repeat,
14022         when a key is held down we get key press, key release, key press,
14023         key release, ... with auto repeat we get key press, key press, key
14024         press ..., and then a release when the key is actually released.
14025
14026 2006-07-03  Jackson Harper  <jackson@ximian.com>
14027
14028         * TabControl.cs:
14029         * ThemeWin32Classic.cs: Tabs do not obey normal background color
14030         rules, they are always control color regardless of the background
14031         color.
14032
14033 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
14034
14035         * FileDialog.cs: Added internal class MWFConfig.
14036           Removed Registry support and replaced it with support for the new
14037           MWFConfig class. See MWFConfig comments for more information.
14038
14039 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
14040
14041         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
14042           rectangle. Added some patches from eno from bug #78490 and fixed
14043           the arrow position for small up and down CPDrawScrollButtons.
14044
14045 2006-06-30  Jackson Harper  <jackson@ximian.com>
14046
14047         * InternalWindowManager.cs: Remove some debug code.
14048         * Form.cs: When an MdiParent is set to null, the window is
14049         "detatched" and becomes a normal window.
14050         * MdiClient.cs: Don't bring the new child form to the front until
14051         it is activated (setting it as active does this), this makes the
14052         previously active forms titlebar get redrawn as inactive.
14053
14054 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
14055
14056         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
14057           with later controls
14058
14059 2006-06-29  Mike Kestner  <mkestner@novell.com>
14060
14061         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
14062         arrow in keynav state.  Fixes #78682.
14063
14064 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14065
14066         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
14067           order (fixes #78393)
14068
14069 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
14070
14071         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
14072           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
14073           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
14074           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
14075           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
14076           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
14077           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
14078           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
14079           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
14080           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
14081           enumerations (FlagsAttribute, SerializableAttribute, added/removed
14082           values)
14083
14084 2006-06-28  Mike Kestner  <mkestner@novell.com>
14085
14086         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
14087
14088 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14089
14090         * PropertyGrid.cs,
14091           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
14092           item lines from other area (It also makes BackColor consistent and
14093           compatible with .NET). Fixed bug #78564.
14094
14095 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
14096
14097         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
14098         Patch from Eno for #78555.
14099
14100 2006-06-27  Chris Toshok  <toshok@ximian.com>
14101
14102         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
14103
14104         * DataGridColumnStyle.cs: same.
14105
14106         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
14107         
14108         * DataGridDrawingLogic.cs: nuke.
14109
14110 2006-06-27  Chris Toshok  <toshok@ximian.com>
14111
14112         * DataGridTableStyle.cs: clean up the constructors, and build the
14113         list of child relations for this table.  I have no idea if this is
14114         where we should be doing it (it probably isn't), but since we're
14115         already iterating over the properties..
14116
14117         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
14118         struct and array for keeping track of row information, similar to
14119         what's shown in a hack on
14120         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
14121
14122         * Theme.cs: be consistent about the naming of DataGrid methods,
14123         prefering ColumnWidths and RowHeights over columnsWidths and
14124         RowsHeights.
14125
14126         * ThemeWin32Classic.cs: same, and also add support for variable
14127         sized rows (and the +/- expansion icons for related rows).
14128
14129 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
14130
14131         * TextBoxBase.cs: Applied Eno's patch from #78660
14132
14133 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
14134
14135         * Form.cs (ScaleCore): We don't want to scale our form if it's
14136           state is minimized or maximized, but we still need to scale our
14137           child windows. Also, added try/finally block to ensure layout
14138           gets reset (Fixes #78697)
14139
14140 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
14141
14142         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
14143
14144 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
14145
14146         * Form.cs: Fixed c+p error and added check to resize form if minimum
14147           size is bigger than current size (Fixes #78709)
14148
14149 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
14150
14151         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
14152
14153 2006-06-26  Mike Kestner  <mkestner@novell.com>
14154
14155         * ComboBox.cs: only do Keypress handling in the combo when there  
14156         are items in the collection. Fixes #78710.
14157
14158 2006-06-26  Chris Toshok  <toshok@ximian.com>
14159
14160         * Binding.cs: make this work bi-directionally.  also, clear up
14161         other mixups between Push/Pull Data (e.g. we're supposed to pull
14162         data when validating).
14163
14164         * BindingManagerBase.cs: trim some fully qualified collection
14165         types.
14166
14167         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
14168
14169 2006-06-23  Chris Toshok  <toshok@ximian.com>
14170
14171         * PropertyManager.cs: It appears (according to the unit tests)
14172         that PropertyManager doesn't use
14173         PropertyDescriptor.AddValueChanged to track propery value changes
14174         in its datasource, but uses the same scheme as Binding, where it
14175         looks for a <Property>Changed event and binds to it.
14176
14177         Also, according to the docs, IsSuspended always returns false for
14178         a property manager with a non-null datasource.
14179
14180 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
14181
14182         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
14183           need to update the actual DialogResult. (Fixes #78613)
14184
14185 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
14186
14187         * Form.cs (ShowDialog): Release any captures before running the
14188           new message pump (fixes #78680)
14189
14190 2006-06-22  Mike Kestner  <mkestner@novell.com>
14191
14192         * ListView.cs: Layout column widths properly in details mode even 
14193         if HeaderStyle.None is set.  Fixes #78691.
14194
14195 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
14196
14197         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
14198
14199 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
14200
14201         * Control.cs (ContainsFocus): Using new driver method to get focused
14202           window, instead of trying to use internal tracking var, which can
14203           recursion issues (Fixes #78685)
14204         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
14205           XplatUIWin32.cs: Added GetFocus method to return focused window
14206
14207 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14208
14209         * ColorDialog.cs: when the mouse button is pressed inside the color
14210         matrix, don't let the cursor move out of it until the button is
14211         released, which is the behavior on windows. Changed 'colours' by
14212         'colors' to use the same word consistently.
14213
14214 2006-06-21  Chris Toshok  <toshok@ximian.com>
14215
14216         * DataGrid.cs: add in some basic navigation stuff (navigating to a
14217         child relation and back, using a stack).  Also, remove
14218         GetDataSource and the code that calls it - it's not needed.  Also,
14219         track CurrencyManager.ListName's removal.
14220
14221 2006-06-21  Chris Toshok  <toshok@ximian.com>
14222
14223         * CurrencyManager.cs: push some of the original type checking from
14224         BindingContext.CreateBindingManager to here, and remove some of
14225         the finalType stuff.  Need more tests to make sure I've got the
14226         ListName part right, and we might need more in SetDataSource.
14227
14228         * PropertyManager.cs: add a ctor that takes just the datasource,
14229         and no property name.  Make SetDataSource work with a null
14230         property_name, and make Current return the data_source if the
14231         property descriptor is null.  this makes 'string foo = "hi";
14232         BindingContext[foo].Current' return "hi" as it should.
14233
14234         * RelatedCurrencyManager.cs: make this code more generic - there's
14235         no reason the parent manager has to be CurrencyManager, and
14236         there's no reason to pass the DataRelation.  It suffices to use a
14237         BindingManagerBase and PropetyDescriptor.
14238
14239         * RelatedPropertyManager.cs: make a similar change here.
14240         
14241         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
14242         flower I knew it could be.
14243
14244 2006-06-20  Chris Toshok  <toshok@ximian.com>
14245
14246         * PropertyManager.cs: the PropertyChangedHandler is invoked when
14247         data in the source has changed and we need to update the control,
14248         so s/PullData/PushData.
14249
14250         * CurrencyManager.cs: Refresh is meant to update the control from
14251         data in the datasource.  So, s/PullData/PushData.
14252
14253         * BindingContext.cs: add more ugliness (we weren't handling the
14254         case where data_source = DataTable and data_member = column_name).
14255
14256         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
14257         from the perspective of the datasource.  PullData pulls from the
14258         control, PushData pushes to the control.
14259
14260 2006-06-20  Chris Toshok  <toshok@ximian.com>
14261
14262         * BindingContext.cs: rewrite the CreateBindingManager code to
14263         handle navigation paths more or less properly.  This could
14264         definitely stand some more work, in particular to push the
14265         recursion up to the toplevel.  But that relies on fixes in other
14266         places (System.Data comes to mind).
14267
14268         Also, move to a flat hashtable (and encode the twolevel nature of
14269         the dictionary into the hash key).  This lets us implement the
14270         IEnumerable.GetEnumerator method.
14271
14272         * RelatedCurrencyManager.cs: new class.  Update our view based on
14273         our relation and our parent CurrencyManager's position.
14274
14275         * CurrencyManager.cs: split out some logic from the ctor into
14276         SetView, so it can be called from the new RelatedCurrencyManager
14277         subclass.
14278
14279         * RelatedPropertyManager.cs: new class.  Update our datasource
14280         based on the position of our parent CurrencyManager.
14281
14282         * PropertyManager.cs: split out some logic from the ctor into
14283         SetDataSource, so it can be called from the new RelatedDataSource
14284         subclass.  Also, make the Current getter return the value
14285         of the PropertyDescriptor, not the data_source.
14286
14287         * Binding.cs: no need to duplicate the string splitting code here.
14288
14289 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14290
14291         * Control.cs:
14292           - set_Enabled: OnEnabledChanged is not called if the inherited state 
14293             of the control is not altered, even though  we might be changing the
14294             internal state of the control (#78458)
14295           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
14296             OnEnabledChanged, to allow easy altering of any child window state
14297           - OnEnabledChanged: Added code to enable/disable driver window state
14298           - OnParentEnabledChanged: Instead of firing the event, call 
14299             OnEnabledChanged, which will fire the event and also a) set driver
14300             window state and pass the enabled state to any grandchildren (#78458)
14301
14302 2006-06-19  Jackson Harper  <jackson@ximian.com>
14303
14304         * InternalWindowManager.cs: We don't set the cursor explicitly
14305         thats done via the response to NCHITTESTs.
14306         - Don't need to adjust for titlebar heights anymore, the
14307         coordinates are coming in the correct coordinates now (see peters
14308         last patch).
14309
14310
14311 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14312
14313         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
14314           being translated relative to whole window, instead of client window.
14315           That caused broken offsets on mouseclick (and caused gas for our
14316           InternalWindowManager)
14317
14318 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14319
14320         * TextControl.cs:
14321           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
14322           - Undo(): Added replay of cursor move on DeleteChars action; added
14323             calling Undo() again if a recorded cursor move is invalid (to
14324             ensure that some action is performed on Undo)
14325         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
14326
14327 2006-06-16  Jackson Harper  <jackson@ximian.com>
14328
14329         * MdiClient.cs: Instead of just sizing maximized windows when
14330         there is a resize we also have to adjust the Y of minimized
14331         windows, so they stay pinned to the bottom of the mdi container.
14332         - Eliminate separate tracking of the active control, we can just
14333         get this from the controls collection.
14334         - Paint the decorations for the newly activated titlebar so we get
14335         a pretty blue bar.
14336         * InternalWindowManager.cs:
14337         * ThemeWin32Classic.cs: Minimized windows get all three buttons
14338         even if they are a tool window.
14339         
14340 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14341
14342         * TextControl.cs (Undo): Handle non-existent cursor locations in the
14343           undo buffer, these can happen when text was deleted and the cursor
14344           was recorded first. Since we will also have a recorded cursor
14345           after the delete this is not an issue. (Fixes #78651)
14346
14347 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
14348
14349         * AccessibleObject.cs: Remove dependence on Control.is_selected;
14350           instead properly track control states internally (allows us to
14351           remove is_selected from Control)
14352
14353 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14354
14355         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
14356         whose width is not a multiple of 8.
14357
14358 2006-06-13  Jackson Harper  <jackson@ximian.com>
14359
14360         * MdiClient.cs:  Only maximize the next child if the current one
14361         is maximized.
14362
14363 2006-06-13  Chris Toshok  <toshok@ximian.com>
14364
14365         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
14366         modified.  Also, guard against grid or grid_drawing being null in
14367         Invalidate.
14368
14369         * DataGrid.cs: Reformat tons of getters/setters.  In the
14370         DataMember setter, just call SetNewDataSource instead of
14371         duplicating some of its functionality.  In SetNewDataSource, don't
14372         check ListManager for null, since the property getter creates the
14373         object if needed.
14374
14375         * DataGridTableStyle.cs: don't set TableStyle or call
14376         SetDataGridInternal on the column here, it's done in
14377         GridColumnStylesCollection.Add.
14378
14379         * GridColumnStylesCollection.cs: fix all the explicit interface
14380         implementations to just call our methods.  Nuke AddInternal() and
14381         move the body of it to Add().  Also, add a call to
14382         column.SetDataGridInternal to Add().
14383
14384         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
14385         base()+duplicate code.  Also, use the Format property instead of
14386         format to generate an Invalidate ala MS.  Lastly, create the
14387         textbox here, unconditionally.
14388         (set_Format): call Invalidate.
14389         (get_TextBox): no need to call EnsureTextBox.
14390         (Commit): remove the message box.
14391         (Edit) remove the call to EnsureTextBox.
14392         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
14393         (EnterNullValue): no need to check textbox for null.
14394         (HideEditBox): no need to check textbox for null.
14395         (SetDataGridInColumn): add the textbox to the grid's controls.
14396         (EnsureTextBox): nuke.
14397         
14398 2006-06-13  Jackson Harper  <jackson@ximian.com>
14399
14400         * MdiWindowManager.cs: Hook up to the maximized menus paint event
14401         and redraw the buttons when needed. Unhook when the window is
14402         unmaximized.
14403         * MainMenu.cs: Add an internal Paint event, the mdi window manager
14404         needs this so that it can redraw its buttons when the menu is
14405         repainted.
14406         * InternalWindowManager.cs:
14407         * Form.cs: The method order has changed for DrawMaximizedButtons,
14408         so that it can be a PaintEventHandler.
14409         
14410 2006-06-13  Jackson Harper  <jackson@ximian.com>
14411
14412         * MdiClient.cs: When we close a maximized mdi window, the next mdi
14413         window is activated and maximized, even if it wasn't before.
14414         - When  a new window is activated repaint the decorations of the
14415         old one, so that it no longer has the Active "look" (the blue
14416         titlebar).
14417         * InternalWindowManager.cs: Open up CreateButtons to base classes
14418         so they can recreate the buttons on state changes.
14419         - If a window is maximized give it all three buttons
14420         * MdiWindowManager.cs: Create the titlebar buttons when the state
14421         is changed, this is needed because a toolwindow will not have all
14422         three buttons until it is maximized.
14423
14424 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
14425
14426         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
14427           Fixed bug #78609.
14428
14429 2006-06-12  Jackson Harper  <jackson@ximian.com>
14430
14431         * KeysConverter.cs: Make sure we handle the Ctrl special case
14432         if its the only key.
14433         
14434 2006-06-12  Jackson Harper  <jackson@ximian.com>
14435
14436         * Theme.cs: Add a method to get the size of a managed window
14437         toolbar button.
14438         * InternalWindowManager.cs: Remove the ButtonSize property, this
14439         should be retrieved from the theme.
14440         * MdiWindowManager.cs: Get the button size from the theme
14441         * ThemeWin32Classic.cs: Make the method to get the managed window
14442         titlebar button size public.
14443         - Handle the different button sizes of maximized toolwindows
14444         (should match any maximized window).
14445         - Get the titlebar height from the theme, not the WM (which gets
14446         it from the theme).
14447
14448 2006-06-12  Jackson Harper  <jackson@ximian.com>
14449
14450         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
14451         event down to the mdi window manager.
14452         - Expose some extra stuff to base classes
14453         - Make sure to end the Capture on an NC Mouse up, so that we can
14454         get double clicks properly, and the sizing doens't stick.
14455         - When doing PointToClient contain it in the workable desktop
14456         area, this prevents windows from changing size when the cursor is
14457         pulled outside of the working area while sizing.
14458         * MdiWindowManager.cs: When we get a double click maximize the
14459         window.
14460         - Reset the cursor after handling mode changes.
14461
14462 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
14463
14464         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
14465           current desktop, instead of just assuming a 0, 0 origin. This
14466           is needed for our internal window manager, to know the top
14467           margin of the desktop
14468
14469 2006-06-12  Chris Toshok  <toshok@ximian.com>
14470
14471         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
14472         we need this to get rid of the selected background in the bool
14473         column.
14474         (CancelEditing): move the ConcedeFocus call to above the Abort
14475         call.  Also, set is_changing to false and invalidate the row
14476         header if we were changing before.
14477         (ProcessKeyPreviewInternal): remove, since noone outside this
14478         class calls it anymore.  Roll the code into ProcessKeyPreview.
14479         (EndEdit): remove the internal version.
14480         (InvalidateCurrentRowHeader): make private.
14481
14482         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
14483         Keys.Escape handling (and with it the last call to
14484         DataGrid.EndEdit from outside the class.)
14485
14486
14487 2006-06-12  Chris Toshok  <toshok@ximian.com>
14488
14489         * DataGridTextBox.cs (.ctor): isedit defaults to false.
14490         (OnKeyPress): set isedit to true.
14491         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
14492         already handled by the grid.
14493
14494         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
14495         right.  ugh.
14496         (set_DataSource): SetDataSource always returns true, so stop
14497         putting it in an if statement.
14498         (EndEdit): get rid of some {}'s
14499         (ProcessGridKey): return true in case Keys.Escape.
14500         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
14501         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
14502         PositionChanged, stopped connecting to CurrentChanged.
14503         (GetDataSource): simplify this a bunch.
14504         (SetDataSource): change return type from bool to void.
14505         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
14506         to this, and make sure we don't set ListManager.Position inside
14507         set_CurrentCell.
14508         (OnListManagerItemChanged): if we're passed an actual index,
14509         redraw that row.
14510
14511         * CurrencyManager.cs (set_Position): don't call PullData here.
14512
14513 2006-06-09  Jackson Harper  <jackson@ximian.com>
14514
14515         * TreeNode.cs:  Recalculate the visible order before doing the
14516         Expand/Collapse Below calls, because those calls generate an
14517         expose.
14518         - Reduce calls to the TreeView property, which is mildly expensive
14519         by using a local var.
14520         * Form.cs: Layout the MDI child windows when creating the parent
14521         form.
14522         - Don't use the internal constructor anymore
14523         * MdiClient.cs: use the parent form width/height (if available)
14524         when laying out the child windows, we do this because the
14525         mdiclient isn't docked yet when the initial layout is done.
14526         - Don't need an internal constructor anymore.
14527
14528 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14529
14530         * FileDialog.cs: handle access errors when trying to create a folder
14531         or changing to a directory. No need to initialize out parameters.
14532
14533 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14534
14535         * FileDialog.cs: Append a number when creating a new folder if the
14536           folder already exists (use parenthesis instead of square brackets)
14537
14538 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14539
14540         * FileDialog.cs:
14541           - Disabled registry support for windows and added better registry
14542             error checking for other systems (need to investigate why it
14543             works perfectly on my system)
14544           - If a folder already exist show an error MessageBox instead of
14545             trying to create an indexed name.
14546           - Fixed a non intentional typo.
14547
14548 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14549
14550         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
14551
14552 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14553
14554         * FileDialog.cs: When creating a new folder don't crash if the
14555           folder already exists.
14556
14557 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14558
14559         * FileDialog.cs: Allmost a complete rewrite.
14560           - added a "virtual" file system that handles the differences
14561             between unix and windows file systems (especially the directory
14562             structure). Moved most of the directory and file handling code
14563             into the vfs.
14564             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
14565             UnixFileSystem and FSEntry.
14566           - Recently used folder/directory, size, location and used file names
14567             (file name ComboBox) are now stored in the registry and get read
14568             before the dialog shows up (fixes part 6 of bug #78446).
14569           - Creation of new folders/directories is now possible (context menu
14570             or ToolBar). Added TextEntryDialog for this that fills in the gap
14571             until ListView.LabelEdit works.
14572           - Fixed cursor handling (bug #78527) and focus handling for
14573             PopupButtonPanel
14574           - Various "Search in" ComboBox enhancements. The content of the
14575             dropdown listbox now almost matches ms.
14576           - Changed the behaviour when the user switches to SpecialFolder
14577             Recent to show the ListView in View.Details.
14578           - Beside using the ToolBar to change the View property of the
14579             file ListView it is now possible to use the context menu too.
14580
14581 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14582
14583         * ComboBox.cs: Don't create a new ObjectCollection when an item
14584           gets inserted. Just insert the item in the existing object_items
14585           ArrayList.
14586
14587 2006-06-08  Jackson Harper  <jackson@ximian.com>
14588
14589         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
14590         that the treeview and root node checks are done also, this fixes a
14591         regression i caused in the unit tests.
14592
14593 2006-06-07  Wade Berrier <wberrier@novell.com> 
14594
14595         * RichTextBox.cs: More ISO8859-1 -> unicode
14596
14597 2006-06-07  Mike Kestner  <mkestner@novell.com>
14598
14599         * ComboBox.cs : use items to hold highlight/selection so that
14600         collection insertions don't require synchronization.
14601
14602 2006-06-07  Jackson Harper  <jackson@ximian.com>
14603
14604         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
14605         routine.  We now always keep the sized edge at the cursor instead
14606         of computing movement and adjusting rects.  There is one buglet
14607         with this method though when the cursor is moved over area that
14608         the window can not expand too (such as the toolbars on the desktop).
14609
14610 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14611
14612         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
14613         here. Fixes crash on startup in AlbumSurfer.
14614
14615 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
14616
14617         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
14618           values
14619
14620 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14621
14622         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
14623         statement to avoid calling XNextEvent which will block if another thread
14624         took the event that we were expecting. Fixes bug #78605.
14625
14626 2006-06-07  Mike Kestner  <mkestner@novell.com>
14627
14628         * ListView.cs : isolated checkbox clicking from the selection logic.
14629         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
14630
14631 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14632
14633         * Form.cs: Check that the value passed to Form.DialogResult
14634         is a valid enum value.
14635
14636 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14637
14638         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
14639         Computer'. Clicking it in the network view goes to 'My Computer'.
14640         Added CIFS filesystem type. Display the mount point of filesystems.
14641         Avoid duplicate mount points (happens for me with CIFS);
14642
14643 2006-06-06  Jackson Harper  <jackson@ximian.com>
14644
14645         * InternalWindowManager.cs: Draw the maximized windows buttons
14646         when resizing.
14647
14648 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14649
14650         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
14651         all other dialogs. Fixes bug #78585.
14652
14653 2006-06-06  Mike Kestner  <mkestner@novell.com>
14654
14655         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
14656         Only invalidate checkbox on checkstate changes to avoid flicker.
14657         * ListBox.cs : avoid unselect/select when clicking selected item.
14658         avoid reselection flicker for already multiselected items.
14659         Fixes #78382.
14660
14661 2006-06-06  Jackson Harper  <jackson@ximian.com>
14662
14663         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
14664         the parent form so that the menu is removed if needed.
14665
14666 2006-06-06  Mike Kestner  <mkestner@novell.com>
14667
14668         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
14669         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
14670
14671 2006-06-06  Mike Kestner  <mkestner@novell.com>
14672
14673         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
14674
14675
14676 2006-06-06  Jackson Harper  <jackson@ximian.com>
14677
14678         * Control.cs: Use the property (instead of the field) to get the
14679         default cursor so it is instantiated correctly.
14680         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
14681         resizes so we need to manually repaint the window decorations here.
14682         - Set the titlebar button locations as soon as they are created,
14683         otherwise they are not set correctly on win32.
14684         
14685 2006-06-06  Chris Toshok  <toshok@ximian.com>
14686
14687         * CurrencyManager.cs (set_Position): call PullData before
14688         OnCurrentChanged.
14689         (AddNew): after calling IBindingList.AddNew, update our
14690         listposition, and call OnCurrentChanged/OnPositionChanged (without
14691         calling PullData).
14692         (OnCurrentChanged): remove the call to PullData from here.
14693         (OnItemChanged): remove the call to PushData from here.
14694         (OnPositionChanged): change the test from == null to != null to
14695         match the other methods.
14696         (ListChangedHandler): the grossest part of the patch.  Implement
14697         this such that it passes the unit tests in CurrencyManagerTest and
14698         the output more or less matches that of MS's implementation.
14699  
14700 2006-06-06  Mike Kestner  <mkestner@novell.com>
14701
14702         * ListView.cs : only update check state on single click.
14703         * ThemeWin32Classic.cs : fix focus drawing for details view without
14704         fullrowselect.  Fixes #78454.
14705         * XplatUIX11.cs : fix for double click emission.
14706
14707 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
14708
14709         * PropertyGridView.cs : Applied Atsushi's patch to fix
14710         font dialog bug  (#78197).
14711
14712 2006-06-05  Jackson Harper  <jackson@ximian.com>
14713
14714         * TreeNode.cs: Compute the next node for expanding/collapsing
14715         correctly. We now factor in nodes without a NextNode
14716         correctly. (Fixes somes cases in nunit-gui).
14717         * InternalWindowManager.cs: Set the bounds when updating the
14718         virtual position of a tool window.
14719         
14720 2006-06-05  Chris Toshok  <toshok@ximian.com>
14721
14722         * DataGrid.cs: rename cached_currencymgr to list_manager.
14723         (set_CurrentCell): move SetCurrentCell code here, and clean it up
14724         some.
14725         (CurrentRow, CurrentColumn): single accessors so we can make the
14726         cursor movement code a lot easier to understand.
14727         (CurrentRowIndex): implement this in terms of CurrentRow.
14728         (BeginEdit): clean this up a bit.
14729         (CancelEditing): sort out the is_editing/is_changing/is_adding
14730         stuff a little.
14731         (EndEdit): minor changes.
14732         (OnKeyDown): add a comment about a (most likely) unnecessary
14733         check.
14734         (OnMouseDown): cancel editing when we click on a row header.  And
14735         use the CurrentRow setter, not CurrentCell.
14736         (ProcessDialogKey): directly call ProcessGridKey.
14737         (UpdateSelectionAfterCursorMove): factor out this common block of
14738         code (it's used everywhere that we move the cursor by updating row
14739         or column).
14740         (ProcessGridKey): pretty substantial overhaul.  Use the
14741         CurrentRow/CurrentColumn properties to make the code a lot more
14742         readable.  Only use the CurrentCell property when we have to
14743         modify both row and column at once.  Tab behavior is still broken,
14744         and Delete is untested.
14745         (Select): if we have no selected rows, set selection_start to
14746         @row.
14747         (EditCurrentCell): rename EditCell this.  It was only ever invoked
14748         with CurrentCell as the arg, so drop the arg and rename it.
14749
14750         * DataGridColumnStyle.cs: clean up the constructors a little, and
14751         drop CommonConstructor().
14752
14753         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
14754         actually get notified when the user hits it.
14755         (ProcessKeyMessage): *substantially* simplify this method.
14756         There's no reason (that I can see) for the textbox to be making
14757         calls into the datagrid at all.  Remove all of them but the ones
14758         for Enter handling.  those will take some more work.
14759
14760         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
14761         calling HideEditBox.
14762         (HideEditBox): if we have an active textbox, render it invisible
14763         without causing a re-layout of the datagrid.
14764
14765 2006-06-05  Mike Kestner  <mkestner@novell.com>
14766
14767         * ListView.cs : fix NRE crasher when focuseditem is cleared by
14768         collection changes by resetting it to Items[0].  Fixes #78587.
14769
14770 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14771
14772         * MessageBox.cs: if the height of the text is larger than the icon_size,
14773         use that. Fixes bug #78575.
14774
14775 2006-06-05  Jackson Harper  <jackson@ximian.com>
14776
14777         * TreeView.cs: Fix line drawing when scrolling.  To do this each
14778         node is basically responsible for drawing its entire horizontal
14779         area.  When drawing a node it draws its parent node lines if
14780         needed.
14781         - Adjust the clip area to the viewport rectangle
14782         - Fix Left/Right key handling to match MS. (It expand/collapses
14783         and moves to parents/first child but does not move selection to
14784         sibling nodes).
14785         - Fix SetTop to work with new bound calculation code
14786         - When scrollbars are no longer needed we need to reset scrolling
14787         vars and recalculate the visible order so the redraw is correct
14788         * TreeNode.cs: We can't expand/collapse nodes with no children.
14789
14790 2006-06-03  John Luke  <john.luke@gmail.com> 
14791
14792         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
14793         so the colors work without dev packages
14794         
14795 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
14796
14797         * Control.cs 
14798           - Select: Implemented to just use activate. Seems to match MS 
14799             behaviour closest. Documented to only do actual control walking 
14800             based on it's parameters if in a container control so I moved 
14801             the code there.
14802           - Removed selection check logic from our internal Select() method
14803         * ContainerControl.cs:
14804           - Select: Moved selection logic from Control here, since MS documents
14805             that containers obey the bool arguments. No longer calling base
14806
14807 2006-06-02  Jackson Harper  <jackson@ximian.com>
14808
14809         * TreeView.cs: If the selected node isn't changed when we get
14810         focus update the previously selected node so that we see the
14811         selection box.
14812
14813 2006-06-02  Mike Kestner  <mkestner@novell.com>
14814
14815         * ComboBox.cs: restructure grab and general mouse event handling.
14816         Make the composite control raise mouse events like it was a single
14817         control for leaves/enters/motion/up/down events.  fix dropdown list
14818         coordinate mangling and refactor it into the scrollbar subclass to
14819         reduce code duplication.  Fixes #78282 #78361 and #78457.
14820
14821 2006-06-02  Mike Kestner  <mkestner@novell.com>
14822
14823         * ScrollBar.cs: remove Capture setting/clearing, as it happens
14824         automatically in the Control.WndProc.
14825
14826 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14827
14828         * FileDialog.cs: fix crash when running SharpChess, which sets the
14829         FilterIndex to 2 with only one Filter.
14830
14831 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14832
14833         * ToolBar.cs: add SizeSpecified property.
14834         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
14835         try to figure out our real size, otherwise fallback to what the
14836         container says.
14837
14838 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
14839
14840         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
14841         * Control.cs (WndProc): MS always calls the DefWndProc to pass
14842           up the event
14843
14844 2006-06-01  Mike Kestner  <mkestner@novell.com>
14845
14846         * ListView.cs: revamp the focus management in ListView.  It still
14847         causes churn of LostFocus/GotFocus emissions on clicks, but it's
14848         better than not handling focus at all.  Will revisit when pdb feels
14849         the general focus handling is solid.  Fixes #78526.
14850
14851 2006-06-01  Jackson Harper  <jackson@ximian.com>
14852
14853         * TreeView.cs: Set the default border style in the constructor.
14854         - Move painting to use OnPaintInternal instead of capturing
14855         WM_PAINT, this is the correct way of doing things
14856         - UpdateBelow shouldn't invalidate the scrollbar area
14857         - Cap the top on update below in case the node was above the top
14858         of the viewport rectangle.
14859         - ExpandBelow and Collapse below need to obey Begin/End Update.
14860         * TreeNode.cs: Make is_expanded internal so the treenode
14861         collection can change it without firing the whole event chain.
14862         * TreeNodeCollection.cs: When clearing all the child nodes make
14863         sure to recalc the visible order.
14864         - Improve algo for remove the top node
14865
14866 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
14867
14868         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
14869           SendMessage directly calling window procedures, which in turn might
14870           call SetFocus()
14871
14872 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
14873
14874         * Control.cs: Don't handle WM_SETFOCUS if the same window already
14875           has focus (works around X11 sending a FocusIn after our SetFocus)
14876         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
14877
14878 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
14879
14880         * Mime.cs: Fix for the NET_2_0 build.
14881           NameValueCollection needs StringComparer now.
14882
14883 2006-05-31  Chris Toshok  <toshok@ximian.com>
14884
14885         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
14886         return (via an out parameter) the starting X of the column.
14887         (UpdateVisibleColumn): track change to FromPixelToColumn.
14888         (HitTest): add a ColumnResize case here.
14889         (DrawResizeLine): new function, probably poorly named.
14890
14891         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
14892         only need to keep one reference.
14893         (set_ListManager): same.
14894         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
14895         Also, add support for HitTestType.ColumnResize.
14896         (OnMouseMove): add column resize behavior here, and change the
14897         cursor to the correct one as we move around the datagrid.
14898         (OnMouseUp): terminate the column resize if we're resizing.
14899         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
14900         for the current cell.
14901         (ConnectListManagerEvents): use cached_currencymgr.
14902         (DisconnectListManagerEvents): fill this in, using
14903         cached_currencymgr.
14904         (SetCurrentCell): remove cached_currencymgr_events handling.
14905         (SetDataMember): only call DisconnectListManagerEvents if
14906         cached_currencymgr is != null.
14907         (SetDataSource): same.
14908         (OnListManagerCurrentChanged): cached_currencymgr_events ->
14909         cached_currencymgr.
14910
14911 2006-05-31  Jackson Harper  <jackson@ximian.com>
14912
14913         * BindingManagerBase.cs: Remove somedebug code that creeped into
14914         SVN.
14915         * TreeNode.cs: We get the indent level dynamically right now, so
14916         don't track it as a member.
14917         * TreeNodeCollection.cs: Make sure all nodes added to the list
14918         have parents, treeviews/topnodes setup properly.
14919         - Don't attempt to track indent level.
14920
14921 2006-05-30  Jackson Harper  <jackson@ximian.com>
14922
14923         * BindingContext.cs: Create the currency manager tables here.
14924         This allows us to more easily create null tables (when bad data
14925         members are used), and more easily create related currency
14926         managers.
14927         * CurrencyManager.cs: All the table creation stuff is done by the
14928         binding context now.
14929         - Current should throw an exception if listposition is -1.
14930         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
14931         been bound yet.
14932
14933 2006-05-30  Mike Kestner  <mkestner@novell.com>
14934
14935         * ListView.cs: allow reexpansion of zero-width column headers.
14936         Fixes #78528.
14937
14938 2006-05-28  Chris Toshok  <toshok@ximian.com>
14939
14940         * CurrencyManager.cs (get_Current): after the late binding
14941         listposition = -1 fix, we need to guard against it here and return
14942         null, otherwise we raise an exception (which is swallowed
14943         elsewhere, and breaks datagrid databinding.)
14944
14945 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
14946
14947         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
14948           than WM_SYSKEY, don't throw if get something unexpected (#78507)
14949
14950 2006-05-26  Jackson Harper  <jackson@ximian.com>
14951
14952         * ControlPaint.cs:
14953         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
14954         values, it's faster and it's all we care about (we don't care if
14955         the names aren't equal).
14956         * KeyboardLayouts.cs: Eliminate some dead code.
14957         - Lazy init things
14958         * X11Keyboard.cs: Lazy init keyboard detection.
14959         - Cleanup access modifiers a little.
14960
14961 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
14962
14963         * XplatUIX11.cs: Once again, attempting to get layout just right.
14964
14965 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
14966
14967         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
14968           the sizes of each link section, that will result in sizes that
14969           match DrawString's layout (Fixes #78391)
14970
14971 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
14972
14973         * FileDialog.cs: If AddExtension property is true autocomplete the
14974           extensions in SaveFileDialog correctly. Fixes bug #78453.
14975           Set MyNetwork and MyComputer to "C:\" for windows. This should
14976           fix part 8 of bug #78446 for now.
14977
14978 2006-05-26  Chris Toshok  <toshok@ximian.com>
14979
14980         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
14981         invalidate the current row header if we need to, but presumably
14982         we'll invalidate the row corrsponding to the bounds or
14983         editingControl.
14984         (GridHScrolled): switch back to this method, as it's part of the
14985         public api.  *sigh*.
14986         (GridVScrolled): same.
14987         (OnMouseWheel): hack up something that more or less works.  Call
14988         GridHScrolled/GridVScrolled directly, instead of duplicating much
14989         of their code here.
14990         (EnsureCellVisibility): reinstate a bunch of this code, since we
14991         can't just set the scrollbar Value and expect to do all the work
14992         in the ValueChanged handler.  Also, Call Update() after scrolling
14993         in one direction so the other XplatX11.ScrollWindow call has the
14994         proper stuff in the proper places.
14995         (EditCell): set is_editing to true before calling .Edit.
14996
14997         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
14998         don't bother comparing first.
14999         (OnKeyPress): call grid.ColumnStartedEditing before calling
15000         base.OnKeyPress.  this will set is_changing and invalidate the row
15001         header if necessary.
15002         (ProcessKeyMessage): for WM_CHAR messages, call
15003         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
15004         and WM_KEYDOWN.
15005         
15006         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
15007         it's done in the DataGrid.
15008         (NextState): call grid.ColumnStartedEditing, which takes care of
15009         invalidating the row header (and setting is_changing).
15010
15011         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
15012         here.  it's done in the DataGrid.
15013
15014 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15015
15016         * Control.cs: allow changing the cursor when the mouse position is
15017         out of bounds but Capture is set.
15018         * LinkLabel.cs: handle the case when the mouse button is pressed on the
15019         linklabel but released somewhere else.
15020
15021 2006-05-25  Jackson Harper  <jackson@ximian.com>
15022
15023         * TreeView.cs: When we get focus if there is no selected node make
15024         it the top node
15025         - Remove some uneeded setup code from Draw.
15026         * TreeNodeCollection.cs: If the tree doesn't have a top node when
15027         a new node is inserted make the new node the top.
15028         * XplatUIX11.cs:
15029         * Timer.cs: Use Utc time so that no local time zone stuff needs to
15030         be used (should be faster).
15031         
15032 2006-05-25  Chris Toshok  <toshok@ximian.com>
15033
15034         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
15035         problem with the last commit.
15036
15037 2006-05-25  Chris Toshok  <toshok@ximian.com>
15038
15039         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
15040         need the invalidate call here, while scrolling right-to-left via
15041         the left arrow key (i.e. moving the editing cell while scrolling).
15042
15043         * DataGrid.cs (.ctor): remove the initialization of
15044         ctrl_pressed/shift_pressed.  We no longer track them using key
15045         up/down handlers, but by using Control.ModifierKeys.  Also, switch
15046         to using ValueChanged handlers on the scrollbars instead of
15047         Scrolled event handlers.  This simplifies a bunch of the scrolling
15048         code.
15049         (GridHValueChanged): rename from GridHScrolled, and change it to
15050         work with the new event args.
15051         (GridVValueChanged): same.
15052         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
15053         (OnMouseWheel): actually scroll the datagrid.  Don't change the
15054         selected cell.
15055         (ProcessGridKey): correct all the keyboard navigation stuff I
15056         could find.  Ctrl up/down/left/right/home/end work now.
15057         (EnsureCellVisibility): correct method name spelling.  Also,
15058         simplify this a touch by not explicitly calling the
15059         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
15060         scrollbar value.
15061         (OnKeyUpDG): no need for this method now.
15062         
15063 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15064
15065         * LinkLabel.cs: display the OverrideCursor when hovering the label.
15066         Fixes bug #78392.
15067
15068 2006-05-25  Chris Toshok  <toshok@ximian.com>
15069
15070         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
15071         r61019.
15072
15073 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15074
15075         * Application.cs: Moved setting of is_modal and closing to before
15076           we create the control, to allow the event handlers called as a
15077           result of creation affect closing. Also removed Gonzalo's previous
15078           change to setting DialogResult, the behaviour has been moved to 
15079           Form.ShowDialog()
15080         * Form.cs: 
15081           - ShowDialog(): Removed explicit creation of the form, let RunLoop
15082             handle it instead
15083           - ShowDialog(): If no dialog result is set, we need to return Cancel
15084           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
15085             the close is cancelled
15086
15087 2006-05-25  Jackson Harper  <jackson@ximian.com>
15088
15089         * StatusBar.cs: We only need to update the sizes of the other
15090         panels when we have auto size contents.  Also we are only updating
15091         the contents of the panel, not the borders, so compensate for the
15092         border width (TODO: get this width from the theme somehow).
15093         * TreeView.cs: Scrollable is true by default
15094         - Use invalidate instead of refresh where needed
15095         - Factor the scrollable value into scrollbar updating
15096         - Update the scrollbars if the Scrollable property is altered
15097         - Update the selected node if its ImageIndex is changed
15098         - Handle null nodes in UpdateNode (mainly so we don't have to
15099         check if selected is null when updating it
15100         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
15101         are factored into the visible count
15102         - Use VisibleCount for clarity in the code
15103         - When the font is changed we need to recurse through all the
15104         nodes and invalidate their sizes
15105         
15106 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15107
15108         * Application.cs: set the DialogResult to fixed when the main form is
15109         hidden or destroyed while being modal.
15110
15111 2006-05-25  Miguel de Icaza  <miguel@novell.com>
15112
15113         * Theme.cs: Use Tangoified messagebox icons. 
15114
15115         (GetSizedResourceImage): Also cope with width = 0 and do not
15116         trigger a warning in that case (0 means "give me your icon from
15117         the resouce, no special size needed).
15118
15119 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15120
15121         * Application.cs: Leave runloop if the the main modal form is 
15122           hidden (fixes #78484)
15123
15124 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
15125
15126         * BindingContext.cs : reject null datasource in Contains() and
15127           Item[].
15128         * CurrencyManager.cs : check data_member validity when data_source
15129           is dataset. When it is late binding, the initial position is -1.
15130
15131 2006-05-24  Jackson Harper  <jackson@ximian.com>
15132
15133         * TreeNodeCollection.cs: Dont't recalculate the visible order on
15134         inserted nodes that aren't visible.  This changes the
15135         max_visible_order which confuses scrollbar settings.
15136         - Use the enumerator to get the prev node instead of duplicating
15137         code.
15138         * TreeView.cs: Use new method for setting scrollbar values
15139         - Don't set the bounds every time the scrollbar is updated
15140         - When updating below the root node use an invalidate instead of a
15141         refresh to prevent the child controls (scrollbars) from being
15142         refreshed. (UpdateBelow still needs to be reworked anyways).
15143         - Reenable SetBottom now that visible orders are set correctly,
15144         added some debug code incase we ever get bad values there again.
15145         - Set the scrollbar max to 2 less then the max value, this
15146         compensates for the max value being one above the node count, and
15147         for scrollbars adding one extra "notch".
15148         - When drawing image nodes if there is an imagelist we draw the
15149         first image in the list if the supplied image index is out of the
15150         image list's bounds.
15151         
15152 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15153
15154         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
15155           we receive a size change from the WM (Fixes #78503)
15156
15157 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
15158
15159         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
15160           rectangle (Fixes #78501)
15161
15162 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15163
15164         * ButtonBase.cs: 
15165           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
15166             as a bitfield.
15167           - Fixed MouseMove to no longer switch pressed state unless the left
15168             mouse button is pressed. Atsushi provided the original patch (#78485)
15169           
15170 2006-05-24  Jackson Harper  <jackson@ximian.com>
15171
15172         * ScrollBar.cs: New internal methods that allow us to change a
15173         couple values on the scrollbar (the most common case is maximum
15174         and large change) without getting multiple invalidates.
15175
15176 2006-05-24  Chris Toshok  <toshok@ximian.com>
15177
15178         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
15179         (Edit): save off the original state in oldState, and set
15180         grid.is_editing to true.
15181         (OnKeyDown): abort editing if escape is pressed.  also, call
15182         NextState if space is pressed.
15183         (OnMouseDown): call NextState.
15184         (NextState): factor out shared code from OnKeyDown and OnMouseDown
15185         here.  Also, only invalidate the row header once (on the initial
15186         is_changing switch) to save on redraws.
15187
15188 2006-05-24  Chris Toshok  <toshok@ximian.com>
15189
15190         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
15191         if the value in the cell is different than it was before.  This
15192         keeps us from triggering a layout when we move around a datarid
15193         with a highlighted cell.
15194         (Edit): suspend layout when creating/positining the text box, and
15195         resume passing false so we don't ever actually re-layout.
15196         (ReleaseHostedControl): same.
15197         (EnsureTextBox): reformat slightly, and set WordWrap to false.
15198
15199         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
15200         control-key sequences should go to the datagrid - remove that
15201         lock.  Also, modify the conditions under which we move between
15202         cells when moving the cursor within a cell, and remove the "this"
15203         and "base" from field accesses.  We weren't even consistent, given
15204         they all were in the base class.
15205
15206 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
15207
15208         * Binding.cs : (.ctor)
15209           An obvious NRE fix for BindingTest.CtorNullTest().
15210
15211 2006-05-23  Chris Toshok  <toshok@ximian.com>
15212
15213         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
15214         them between lines.  This fixes some quirks editing cells in the
15215         datagrid.
15216
15217 2006-05-23  Jackson Harper  <jackson@ximian.com>
15218
15219         * TreeView.cs: Use begin/end update when doing expand/collapse all
15220         so that we don't get flicker on the scrollbar.
15221
15222 2006-05-23  Jackson Harper  <jackson@ximian.com>
15223
15224         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
15225         treenode calculations to be independant of the painting code. To
15226         do this nodes track a visible order which is calculated by the
15227         treeview.
15228         - Call new methods for expanding/collapsing nodes.  These methods
15229         use scrollwindow so we don't have to update everything below the
15230         node.
15231         * TreeView.cs: Refactored drawing and scrolling code.  We don't
15232         need to update nodes when drawing anymore or calculate scrollbar
15233         stuff.
15234         - Added new methods for expanding/collapsing nodes. These methods
15235         use ScrollWindow so as to not have to redraw all the nodes below.
15236         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
15237         we add/remove nodes or sort.
15238         - Handle removing the selected and the top node properly.
15239
15240 2006-05-23  Chris Toshok  <toshok@ximian.com>
15241
15242         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
15243         maybe this should actually happen in the datagrid code?
15244         (EndEdit): no need to invalidate anything, given that
15245         ReleaseHostedControl causes the datagrid to relayout, which
15246         invalidates everything anyway.
15247
15248         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
15249         in SetCurrentCell).
15250         (set_SelectionBackColor): call InvalidateSelection instead of
15251         Refresh.
15252         (set_SelectionForeColor): same.
15253         (BeginEdit): Flesh this out a bit.
15254         (CancelEditing): only do any of this if we're editing/adding.
15255         (EndEdit): same.
15256         (OnMouseDown): there's no need to cancel editing here, it's done
15257         in SetCurrentCell.
15258         (SetCurrentCell): only invalidate the current row header if it's a
15259         different row than the new one.
15260         (ShiftSelection): fix this to work like MS does.
15261         (ResetSelection): factor out the invalidation of selected_rows to
15262         InvalidateSelection.
15263         (SetDataSource): cancel any editing that's going on.
15264
15265         * DataGridColumnStyle.cs
15266         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
15267         call the non-interface version.
15268
15269         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
15270         header rectangle with the clip rectangle so we don't redraw the
15271         entire header for just a small area.  Gets rid of the last flicker
15272         when horizontally scrolling.
15273         (DataGridPaintRow): same.
15274
15275 2006-05-23  Mike Kestner  <mkestner@novell.com>
15276
15277         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
15278         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
15279         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
15280         Critical bug report.
15281
15282 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15283
15284         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
15285           and this fixes #78493
15286
15287 2006-05-23  Miguel de Icaza  <miguel@novell.com>
15288
15289         * Theme.cs (GetSizedResourceImage): Scale images if the proper
15290         size is not found.  
15291         
15292         * FileDialog.cs: Do not change the background for the side bar as
15293         it wont work nicely with the theme, and also reduces the artifacts
15294         in rendering the icons (which I want to fix too).
15295
15296         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
15297         resources, not resgen resources. 
15298
15299         (PlatformDefaultHandler): Pull images using the new API.
15300
15301 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15302
15303         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
15304           a reference to the hwnd and will not remove it unless there are
15305           no pending exposures (fixes #78341)
15306         * XplatUI.cs: Improved debug
15307
15308 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
15309
15310         * MenuAPI.cs : don't handle OnClick event when it was not the left
15311           button. Fixed bug #78487.
15312
15313 2006-05-23  Mike Kestner  <mkestner@novell.com>
15314
15315         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
15316         prefer submenus to the top menu for item lookup, to avoid popping down
15317         top-row items.
15318
15319 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
15320
15321         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
15322           Graphics.FillRectangle as the visual results are really bad (even
15323           on win). We now draw perfect arrows (and perfect shadows when the
15324           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
15325           Pen.DashPattern to draw the dots of each line.
15326
15327 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
15328
15329         * FileDialog.cs: Update the filename combobox when navigating through
15330           the ListView with the cursor keys. Fixes part 7 of bug #78446.
15331
15332 2006-05-22  Mike Kestner  <mkestner@novell.com>
15333
15334         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
15335         Fixes #78463.
15336
15337 2006-05-22  Mike Kestner  <mkestner@novell.com>
15338
15339         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
15340         requests. Fix a misspelled parameter and a copy paste exception error
15341         in Select.
15342
15343 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
15344
15345         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
15346           to get the same width/height (5/13) on X11 as the default font has on
15347           win32. This means that our DefaultFont emSize is smaller than the 
15348           the MS SWF equivalent (even thought the width/height stays the same)
15349
15350 2006-05-20  Jackson Harper  <jackson@ximian.com>
15351
15352         * MdiClient.cs:
15353         * MdiWindowManager.cs:
15354         * InternalWindowManager.cs: Make sure to use the border width from
15355         the theme.
15356
15357 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
15358
15359         * PrintDialog.cs: Implements printer details
15360
15361 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
15362
15363         * FileDialog.cs: Added focus handling for PopupButtonPanel.
15364           Fixes part 1 and 2 of bug #78446
15365
15366 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
15367
15368         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
15369           instead of sticking to the first ever calculated value
15370
15371 2006-05-19  Mike Kestner  <mkestner@novell.com>
15372
15373         * ComboBox.cs: fix mouse motion selection to use MousePosition and
15374         PointToClient, since Capture is set. Fixes #78344.
15375
15376 2006-05-19  Mike Kestner  <mkestner@novell.com>
15377
15378         * ListView.cs: match MS behavior in Details view where items are not
15379         drawn if Columns.Count == 0. 
15380         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
15381         Use a separate pen to draw the check, since changing the width affects
15382         the box as well.  Fixes #78454.
15383
15384 2006-05-18  Miguel de Icaza  <miguel@novell.com>
15385
15386         * ListView.cs: ArgumentOutOfRangeException, single versions of the
15387         exception should throw the name of the invalid argument.
15388
15389         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
15390         there are no files listed. 
15391
15392 2006-05-18  Jackson Harper  <jackson@ximian.com>
15393
15394         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
15395         up.
15396
15397 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15398
15399         * Control.cs: Brought back our old UpdateZOrder method as a private
15400           function and switched our calls from UpdateZOrder to the new one.
15401           This fixes the Paint.Net canvas disappearing bug.
15402
15403 2006-05-18  Jackson Harper  <jackson@ximian.com>
15404
15405         * Theme.cs:
15406         * ThemeWin32Classic.cs:
15407         * InternalWindowManager.cs: Move the drawing into the theme,
15408         expose everything the theme should need from the window manager.
15409
15410 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15411
15412         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
15413           from the call to NativeWindow to avoid walking up the parent chain
15414           further than needed (speeds up setting cursors and avoids setting
15415           the wrong cursor if a parent has another cursor defined)
15416         * Cursor.cs: When loading an icon as cursor, MS uses the center of
15417           the icon as hotspot, not what's contained as hotspot in the icon
15418           file. This fixes the perceived drawing offset seen with Paint.Net
15419         
15420 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15421
15422         * XplatUIX11.cs: 
15423           - Store the calculated rectangle in Hwnd object and use it when 
15424             setting the client size
15425           - Force Toolwindows to always be type Dock, to ensure they're on top
15426
15427 2006-05-18  Mike Kestner  <mkestner@novell.com>
15428
15429         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
15430         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
15431         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
15432         Substantial refactoring to remove confusing nested classes. Coding
15433         standard and Get+Set->property refactorings.  Shift to index based
15434         highlighting in ComboListBox instead of constantly using IndexOf and
15435         Items[]. Add invalidations on resize for DropDownList to fix ugliness
15436         in FileDialog growth.  Draw borders manually since Simple mode needs
15437         to look like two independent controls.  Make listbox border
15438         conditional to DropDownStyle.  Improved OwnerDraw support.
15439
15440 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
15441
15442         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
15443         Don't set the disposed graphics to null, so we can throw the "right"
15444         exception if the graphics is reused later (added a flag to avoid 
15445         double disposing). Some behaviours are different under 2.0 and are
15446         filled under bug #78448.
15447
15448 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15449
15450         * Control.cs: When double-buffering is enabled, we need to reset
15451           our graphics context between paint calls. Otherwise, any 
15452           transformations and other alterations on the context will 
15453           become cumulative (#77734)
15454
15455 2006-05-18  Mike Kestner  <mkestner@novell.com>
15456
15457         * ListView.cs: do focused item selection like MS on clicks. 
15458         Rework focus handling for ItemControl so LostFocus invalidates as
15459         well.
15460         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
15461         the ListView ItemControl has focus.
15462
15463 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
15464
15465         * XplatUIX11.cs: If client_window ends up being width or height zero
15466           due to border settings, move it off window inside whole_window (#78433)
15467
15468 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15469
15470         * Mime.cs: Shrink the mime file cache correctly.
15471
15472 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15473
15474         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
15475
15476 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15477
15478         * XplatUIX11.cs (AddExpose): More sanity checks
15479
15480 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15481
15482         * XplatUIX11.cs:
15483           - AddExpose: Don't add expose ranges outside the size of our
15484             window
15485           - Cast opacity values to Int32 to avoid crashes with certain
15486             values
15487           - Added disabled code paths that protect against illegal cross-
15488             thread painting (Developers.exe)
15489
15490 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15491
15492         * ProgressBar.cs: Invalidate the control when it's resized
15493           since block size is based on control size. (#78388)
15494
15495 2006-05-16  Miguel de Icaza  <miguel@novell.com>
15496
15497         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
15498         of setting the incoming argument to the "reset" value, we set the
15499         this.datamember to string.empty (before we were invalidating the
15500         incoming data).   
15501
15502         Fixes 78420
15503
15504 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15505
15506         * Form.cs: Only apply transparency settings after the form
15507           is created. (Fixes #77800)
15508
15509 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15510
15511         * ApplicationContext.cs: Grab the HandleDestroyed event so
15512           we know when to fire OnMainFormClosed 
15513
15514 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15515
15516         * Application.cs: Introduced sub-class to allow tracking of
15517           threads and centralized triggering of the event mess for
15518           ThreadExit, AppExit, etc..  (#76156)
15519
15520 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
15521
15522         * MimeIcon.cs:
15523           - Do not return a null icon index value for a mime subclass.
15524             Instead try the main mime type class too.
15525           - Seems that some newer distributions don't have a link to some
15526             gnome default icons anymore. So check the default gnome dir too.
15527           
15528
15529 2006-05-16  Jackson Harper  <jackson@ximian.com>
15530
15531         * MdiClient.cs: Don't paint the parent background image if we have
15532         our own background image.
15533
15534 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15535
15536         * Control.cs:
15537           - PerformLayout: Do not shrink space filled by DockStyle.Fill
15538             controls, all filled controls are supposed to overlap (#78080)
15539           - UpdateZOrder is supposed to update the control's z-order in the
15540             parent's z-order chain. Fixed to behave like that
15541           - BringToFront: Removed obsolete code
15542           - SendToBack: Simplyfied
15543           - SetChildIndex: Trigger layout calculations when Z-order changes
15544             since layout is done by z-order
15545
15546 2006-05-16  Chris Toshok  <toshok@ximian.com>
15547
15548         [ fixes bug #78410 ]
15549         * DataGrid.cs (set_AlternatingBackColor): use
15550         grid_drawing.InvalidateCells instead of Refresh().
15551         (set_BackColor): call grid_drawing.InvalidateCells.
15552         (set_BackgroundColor): use Invalidate instead of Refresh.
15553
15554         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
15555         invalidate the cell area.
15556
15557 2006-05-15  Chris Toshok  <toshok@ximian.com>
15558
15559         [ fixes bug #78011 ]
15560         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
15561         on to DataGridPaintRow.
15562         (DataGridPaintRow): take a clip argument, and only draw the cells
15563         which intersect it.  same with the not_usedarea.
15564
15565         * Theme.cs (DataGridPaintRow) add @clip parameter.
15566
15567         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
15568         XplatUI.ScrollWindow.
15569         (ScrollToRow): same.
15570
15571         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
15572         with last column which was causing a gray swath to appear with the
15573         XplatUI.ScrollWindow code.
15574
15575 2006-05-15  Chris Toshok  <toshok@ximian.com>
15576
15577         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
15578         use XplatUI.ScrollWindow.
15579         (VerticalScrollEvent): use XplatUI.ScrollWindow.
15580
15581 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
15582
15583         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
15584
15585 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15586
15587         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
15588           file since there are no equivalent X11 cursors
15589
15590 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15591
15592         * MonthCalendar.cs : DateTimePicker should reflect selected date
15593           on mouse*up*, not mouse*down*. Fixed originally reported part of
15594           bug #76474.
15595
15596 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15597
15598         * TabControl.cs : When argument index is equal or more than tab
15599           count, just ignore. Fixed bug #78395.
15600
15601 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15602
15603         * Control.cs: Dispose all child controls when control is diposed (#78394)
15604
15605 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15606
15607         * ColorDialog.cs: Finally it is possible to select the color with
15608           the text boxes
15609
15610 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15611
15612         * PrintDialog.cs: Fix typo
15613
15614 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15615
15616         * PrintDialog.cs: PrintDialog is not resizable
15617         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
15618           color. Made some ToolBar drawing methods protected virtual.
15619
15620 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
15621
15622         * PrintDialog.cs: Implementation of the PrintDialog
15623
15624 2006-05-12  Chris Toshok  <toshok@ximian.com>
15625
15626         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
15627         thumb, instead use MoveThumb.  This has the side effect of making
15628         most of the other thumb moving machinery use MoveThumb as well.
15629         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
15630         need to actually invalidate the rectangle where the new thumb will
15631         go.
15632         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
15633         We force an Update() after, so it's not as fast as it could be,
15634         but at least there's zero flicker and no droppings.
15635         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
15636         (UpdateThumbPos): add another argument (dirty), which says whether
15637         or not to calculate/add dirty regions which we later invalidate.
15638         For cases where we know we're going to use MoveThumb, we pass
15639         false for this.  Otherwise, pass true.
15640
15641 2006-05-12  Jackson Harper  <jackson@ximian.com>
15642
15643         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
15644         the status bar.
15645         
15646 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
15647
15648         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
15649           and GetClipRegion methods and UserClipWontExposeParent property.
15650         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
15651           overriding UserClipWontExposeParent property, setting to false, since
15652           Win32 handles the required expose messages to draw our clipped parent
15653           areas internally
15654         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
15655           PaintEventStart to set the user clip region if set.
15656         * Control.cs: 
15657           - Now internally tracking the Region for the control since we need to
15658             store it if the handle is not yet created and only set it when it
15659             becomes created. Before setting the region forced handle creation
15660           - Added code to draw the parents underneath a user-clipped region
15661         * Hwnd.cs: Added UserClip property
15662
15663 2006-05-12  Chris Toshok  <toshok@ximian.com>
15664
15665         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
15666         (set_Maximum): same.
15667         (set_Minimum): same.
15668         (set_SmallChange): same.
15669         (OnMouseUpSB): remove the call to refresh when releasing the
15670         thumb.  We shouldn't need it.
15671         
15672 2006-05-12  Miguel de Icaza  <miguel@novell.com>
15673
15674         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
15675         AutoSize set to None, we do not need to relayout everything, we
15676         just need to invalidate the current region.
15677
15678         (Draw): Do not draw the entire ClientArea, just redraw the
15679         clip area being passed.
15680
15681         * MdiClient.cs: Make MdiClient constructor with the Form argument
15682         internal. 
15683
15684 2006-05-12  Jackson Harper  <jackson@ximian.com>
15685
15686         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
15687         parents background image,  but strangely not their own.
15688         - (DrawStatusBarPanel): Take into account horizontal alignment
15689         when drawing the strings and icons.
15690
15691 2006-05-12  Mike Kestner  <mkestner@novell.com>
15692
15693         * ListBox.cs: avoid invalidations for focus when the collection is
15694         empty. 
15695
15696 2006-05-12  Chris Toshok  <toshok@ximian.com>
15697
15698         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
15699         invalidate the entire thumb area.  Call InvalidateDirty which
15700         limits the redraw to the thumb itself and surrounding pixels.
15701
15702         * XplatUIX11.cs (ScrollWindow): optimize copying.
15703         
15704 2006-05-12  Chris Toshok  <toshok@ximian.com>
15705
15706         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
15707         Figure out the positioning/layout in a single pass instead of
15708         multiple recursive invocations.  Speeds up the initial display of
15709         the data grid.  Also, make many things private that were
15710         originally public but unused outside this class.
15711
15712 2006-05-11  Jackson Harper  <jackson@ximian.com>
15713
15714         * MdiClient.cs: Improved layout code.
15715
15716 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
15717
15718         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
15719           not SelectedObject.
15720
15721 2006-05-11  Chris Toshok  <toshok@ximian.com>
15722
15723         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
15724         union of that will always be {0,0,width,height}.
15725
15726 2006-05-11  Jackson Harper  <jackson@ximian.com>
15727
15728         * Form.cs: Match MS's DefaultSize for forms (they must have
15729         changed the size in sp2).
15730
15731 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15732
15733         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
15734
15735 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15736
15737         * TextControl.cs : Fixed bug #78109. This incorrect position
15738           comparison caused crash on automatic line split.
15739         * TextBoxBase.cs : reduce duplicate code.
15740
15741 2006-05-10  Jackson Harper  <jackson@ximian.com>
15742
15743         * MdiClient.cs: Active form is only sent to the back when using
15744         the Next form functionality, when a form is clicked the current
15745         active shouldn't be sent to the back.
15746         - Layout the mdi windows when the container is first made visible.
15747         * Form.cs: Give the MdiClient a ref to the containing form when we
15748         create it.
15749         
15750 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15751
15752         * LinkLabel.cs : link_font could be uninitialized, so populate one
15753           before actual use. Fixed bug #78340.
15754
15755 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15756
15757         * XplatUIX11.cs : clipboard format native value is IntPtr.
15758           Fixed bug #78283.
15759
15760 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15761
15762         * Control.cs: 
15763           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
15764             which is passed up the parent chain by DefWndProc
15765           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
15766             to DefWndProc (#77956)
15767         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
15768
15769 2006-05-10  Jackson Harper  <jackson@ximian.com>
15770
15771         * MdiClient.cs: We need to remove the controls from the mdi
15772         collection, when we close the window.
15773         * MdiWindowManager.cs: Special handling of closing mdi windows.
15774         * InternalWindowManager.cs: Make the close method virtual so the
15775         mdi window manager can handle it specially.
15776
15777 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
15778
15779         * DataGrid.cs:
15780           - Recalculate grid when the data source has changed
15781           - Matches styles provided by user from all data sources types
15782         * DataGridTableStyle.cs: For columns that provided by the user set the
15783         with the preferred value is there was unassigned.
15784         * CurrencyManager.cs: throw OnItemChanged event
15785
15786 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
15787
15788         * PictureBox.cs: Don't animate until handle is created. Start animation
15789           when handle is created.
15790
15791 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15792
15793         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
15794           current codebase.
15795         * XEventQueue.cs: We don't need to provide the extra info
15796
15797 2006-05-10  Jackson Harper  <jackson@ximian.com>
15798
15799         * MdiClient.cs: If the mdi clients parent form has a background
15800         image set, we draw that background image for the mdi area's
15801         background.
15802
15803 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15804
15805         * TextBoxBase.cs: Set IBeam cursor (#78347)
15806
15807 2006-05-10  Mike Kestner  <mkestner@novell.com>
15808
15809         * ToolBar.cs: fix some text padding issues with ButtonSize
15810         calculation. Update the default size to match MS documentation.
15811         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
15812         button size. Fixes #78296.
15813
15814 2006-05-10  Mike Kestner  <mkestner@novell.com>
15815
15816         * ListBox.cs: use is_visible for scrollbar positioning in case the
15817         control isn't on screen yet.  Fix off by one with Right vs Width
15818         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
15819         
15820 2006-05-10  Jackson Harper  <jackson@ximian.com>
15821
15822         * X11Dnd.cs: Drop to a control with another control on top of it.
15823         * ToolBar.cs: Work on a copy of the buttons list, so that it can
15824         be modified in click handlers. TODO: Look for similar problems in
15825         other controls.
15826
15827 2006-05-09  Jackson Harper  <jackson@ximian.com>
15828
15829         * Form.cs: Window managers need the old window state when setting
15830         window state now.
15831         * InternalWindowManager.cs: Allow the base mdi window manager to
15832         handle more of the MDI only stuff (like maximize buttons).
15833         * MdiWindowManager.cs: Fix some snafus in changing the window
15834         state.  Add all the menu functionality, for both popup and
15835         maximized menus.
15836         * MdiClient.cs: When a new form is selected the currently
15837         activated form is sent to the back, this matches MS.
15838         - Implement a new method to activate the next mdi child window.
15839
15840 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
15841
15842         * Control.cs: 
15843           - Added new InternalCapture method to allow controls to prevent
15844             the capture behaviour on the click handlers
15845           - Switched to use InternalCapture
15846         * ComboBox.cs:
15847           - Using InternalCapture to prevent mouse captures from being released
15848             on mouse button release (Fixes #78100)
15849         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
15850           returns Form borders if a caption is present. (Fixes #78310)
15851
15852 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
15853
15854         * TreeNode.cs: Changed serialization .ctor to not require every field
15855           to be present. (#78265)
15856         * OwnerDrawPropertyBag.cs: Added serialization .ctor
15857
15858 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
15859
15860         * MimeIcon.cs: for is faster than foreach for strings.
15861
15862 2006-05-05  Mike Kestner  <mkestner@novell.com>
15863
15864         * CheckedListBox.cs: update check handling code to not use selected.
15865         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
15866         behavior for visual feedback, motion response, shift/ctrl handling,
15867         and properly deal with all 4 selection modes. Updates to bounds
15868         handling logic.  Add scroll wheel support. [Fixes #77842]
15869
15870 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
15871
15872         * ListView.cs:
15873           - Moved adding of Implicit controls into .ctor. That way, subsequent
15874             creation of the controls will not cause them to think they are 
15875             toplevel windows (fixes #78200 header problem)
15876           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
15877           - Switched visibility setting of header control to use internal field
15878             to avoid triggering handle creation
15879           - Now checking if handle is created before causing a refresh when items
15880             are added (This makes us now match handle creation time with MS)
15881         * Splitter.cs: Removed loading of private splitter cursor, switched to
15882           Cursors version now that that is loading the right ones
15883         * Cursors.cs: Load proper splitter cursors from resources
15884         * Cursor.cs: Added second method of loading resource cursors for the 
15885           VS.Net users amongst us
15886
15887 2006-05-05  Mike Kestner  <mkestner@novell.com>
15888
15889         * ListView.cs: give header_control a minimum size based on the
15890         ListView size.
15891
15892 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
15893
15894         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
15895           window seems to do that with metacity, so set that type. (#78120)
15896
15897 2006-05-05  Mike Kestner  <mkestner@novell.com>
15898
15899         * ListViewItem.cs: fix Details mode checkbox layout bug.
15900         * ThemeWin32Classic.cs: draw a ListView column header for unused space
15901         at the end of the header, if it exists. [Fixes for #78200]
15902
15903 2006-05-04  Jackson Harper  <jackson@ximian.com>
15904
15905         * MdiClient.cs: Add a helper property to get the container form.
15906         * MdiWindowManager.cs: We have to make sure to use the menu origin
15907         when drawing the icons and buttons, this fixes maximized window
15908         icons/buttons on win32.
15909         * InternalWindowManager.cs: Reset the restore captions when a
15910         window goes from Maximized to Minimized and vice versa. Move the
15911         DrawMaximizedButtons into the MdiWindowManager source, tool
15912         windows can't be maximized. NOTE: This could use a little
15913         refactoring if time ever permits.
15914         
15915 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15916
15917         * TextBox.cs: Add MWFCategoryAttributes
15918         * TextBoxBase.cs: Add MWFCategoryAttributes
15919         * Form.cs: Add MWFCategoryAttributes
15920
15921 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15922
15923         * Control.cs: Add MWFCategoryAttributes
15924         * ScrollableControl.cs: Add MWFCategoryAttributes
15925
15926 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
15927
15928         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
15929           Divider is true. Fix a little glitch in PropertyToolBar
15930           drawing code
15931
15932 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
15933
15934         * Control.cs:
15935           - Dispose: Call base.Dispose, this causes the disposed event
15936             to be fired (and probably other, more important stuff)
15937           - SetVisibleCore: Set is_visible to true after creating the
15938             window so that the window still gets created invisible (if
15939             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
15940             to generate a WM_ACTIVE message
15941         * Form.cs: Call Dispose when we want to destroy the window, instead of
15942           just destroying the handle (Dispose will do that for us)
15943         * XplatUIX11.cs:
15944           - RootWindow also needs a queue, so we can properly process the
15945             property change events from RootWindow (like Activate)
15946           - Generatic synthetic WM_ACTIVE message when the active window is
15947             being destroyed
15948
15949 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
15950
15951         * LinkLabel.cs: Trigger a recalc of our label dimensions when
15952           bounds are changed
15953
15954 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
15955
15956         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
15957           for determining width and height (image might not be assigned if
15958           we're drawing an imagelist)
15959
15960 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
15961
15962         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
15963         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
15964           height from system
15965         * Theme.cs: No longer returns hardcoded menu height, instead calls
15966           new driver method
15967         * Form.cs (OnLoad): Scaling happens before triggering Load events 
15968           on MS (# 78257)
15969
15970 2006-05-01  Mike Kestner  <mkestner@novell.com>
15971
15972         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
15973
15974 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
15975
15976         * TextBoxBase.cs: Removed Fixme
15977         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
15978
15979 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
15980
15981         * XplatUIX11.cs:
15982           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
15983             the rectangle relative to the parent, considering borders. We
15984             don't really want that.
15985           - ScrollWindow: Fixed warning to be more understandable
15986         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
15987           scrollbars and scroll only the visible area
15988         * RichTextBox.cs: Removed debug output
15989
15990 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
15991
15992         * NumericUpDown.cs (Text): Just use base
15993         * UpDownBase.cs: Ensure txtView is created before using it
15994
15995 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
15996
15997         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
15998           casting to IntPtr to avoid 64bit overflow errors
15999
16000 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16001
16002         * Control.cs:
16003           - AllowDrop: Don't force handle creation.
16004           - CreateHandle: Added call to tell driver if we're allowed to drop
16005
16006 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16007
16008         * FileDialog.cs: Remember the last directory not only for the
16009           current instance but also for new FileDialog instances.
16010
16011 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16012         
16013         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
16014           broke sending async messages
16015
16016 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16017
16018         * XplatUIX11.cs:
16019           - ScrollWindow: Fixed method. We finally generate expose events again
16020             for scrolled areas. This was causing 'garbage' when scrolling
16021             textbox and other controls that used ScrollWindow
16022           - Switched from using the regular queue for paint events to the MS 
16023             model of 'generating' paint events when the queue is empty.
16024             We use the new XQueueEvent.Paint subclass to store which windows
16025             need painting.
16026           - AddExpose now takes the x/y/width/height of the exposed area
16027             and inserts the window into the paint queue if not already there
16028           - InvalidateWholeWindow: Switched to use new AddExpose method
16029           - UpdateMessageQueue: Added which queue to monitor for paint events
16030           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
16031             the unlikely case nothing above handles it. We reset the expose
16032             pending states to get them off the queue.
16033           - GetMessage: Now pulls a paint event if no other events are in the
16034             queue
16035           - Invalidate: Switched to new AddExpose method
16036           - PeekMessage: Updated to understand pending paint events
16037           - UpdateWindow: Fixed logic bug. We were only updating if the window
16038             didn't need updating. Also switched to sending WM_PAINT directly,
16039             like MS does.
16040         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
16041           and random access Remove(). The random access is needed to handle
16042           UpdateWindow() where a WM_PAINT is sent directly without accessing
16043           the queue.
16044         * ScrollBar.cs: Added Update() calls to cause immediate updates to
16045           allow for better feedback when scrolling. Scrollbars are small and
16046           the immediate update should make it 'feel' more responsive without
16047           slowing things down. ScrollBar still needs it's invaliate logic
16048           updated to not always invalidate the whole bar on certain changes.
16049
16050 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16051
16052         * Control.cs:
16053         (BackColor): if the control does not support a transparent background,
16054         return the default backcolor when the parent backcolor is transparent.
16055
16056 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
16057
16058         * Application.cs: Updated to new StartLoop/GetMessage API
16059         * RichTextBox.cs: Provide some output on RTF parsing errors
16060         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
16061           new queue_id argument to GetMessage and PeekMessage to allow faster
16062           handling of per-thread queues in drivers.
16063         * Hwnd.cs: Added Queue tracking and property
16064         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
16065         * XEventQueue.cs: Added thread trackingA
16066         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
16067         * XplatUIX11.cs:
16068           - Implemented new per-thread queue
16069           - GetMessage: Fixed return/break behaviour on several cases. We were
16070             returning stale messages in some cases, instead of just processing
16071             the next message
16072
16073 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16074
16075         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
16076
16077 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
16078
16079         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
16080           fixed off-by-one comparisons between Width/Height and Right/Bottom.
16081
16082 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16083
16084         * PropertyGridView.cs: Fix drop down width.
16085
16086 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16087
16088         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
16089           a mess in DrawToolBar, so I removed one of them.
16090
16091 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16092
16093         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
16094           needed (clip). Otherwise we get artifacts.
16095
16096 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16097
16098         * FixedSizeTextBox.cs: Added constructor to allow specifying which
16099           dimension is fixed
16100         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
16101           and switched FixedSizeTextBox to only be fixed vertical (#78116)
16102         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
16103           if it matches the scale base font (avoids unneeded scaling)
16104
16105 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
16106
16107         * X11DesktopColors.cs: One gtk_init_check should be enough
16108
16109 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
16110
16111         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
16112           match MS behaviour
16113
16114 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16115
16116         * TextBoxBase.cs: 
16117           - Generate OnTextChanged for Backspace even if we're only deleting
16118             the current selection
16119           - When setting the Text property, only select all text if the
16120             control does not have focus when it is being set. Otherwise
16121             just place the cursor at the beginning of the control
16122
16123 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
16124
16125         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
16126           Added a little helper to draw PropertyGrid ToolBar with a different
16127           border and a different BackColor.
16128         * PropertyGrid.cs: Some background parts didn't get painted with the
16129           correct background color. Added a class that helps us to draw the
16130           correct border for PropertyGridView and a class that helps us to
16131           draw ToolBars with a different backcolor
16132         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
16133
16134 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
16135
16136         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
16137         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
16138
16139 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
16140
16141         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
16142           into the palette entries. Also, since we're working on a copy
16143           we needed to copy the palette back onto the bitmap.
16144         * Cursor.cs: Same fix as XplatUIWin32.cs.
16145
16146 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
16147
16148         * ImageListStreamer.cs: Need to read the var (or we're off)
16149
16150 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
16151
16152         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
16153           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
16154           TextBoxBase.cs: Unused var fixes
16155         * AxHost.cs: Small 2.0 fix
16156         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
16157           as it seems that is what at least Metacity expects. This will make
16158           icons show up on 64bit platforms. We still have some 64bit size
16159           issues, though, since the startup app window size still won't match.
16160
16161 2006-04-25  Mike Kestner  <mkestner@novell.com>
16162
16163         * *.cs: cleanup newly reported exception var unused warnings.
16164
16165 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16166
16167         * ThemeWin32Classic.cs: Button image alignment now matches exactly
16168           ms
16169
16170 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16171
16172         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
16173           image. The image position is always the same, no matter if the
16174           button is pressed or not.
16175
16176 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16177
16178         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
16179           selection and set the correct filename for SaveFileDialog.
16180           Patch by Emery Conrad.
16181
16182 2006-04-24  Mike Kestner  <mkestner@novell.com>
16183
16184         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
16185         check for item.X outside the ClientRect instead of item.Y. Fixes
16186         #78151.
16187
16188 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16189
16190         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
16191         trust that value blindly and do some sanity check. Fixes bug #77814.
16192
16193 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16194
16195         * ImageListStreamer.cs: save the mask as a 1bpp image.
16196
16197 2006-04-21  Mike Kestner  <mkestner@novell.com>
16198
16199         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
16200         pass Checked and Indeterminate to the Theme Engine. Improve
16201         encapsulation with ListBox.
16202         * ListBox.cs: Keep a StringFormat instead of calculating it every item
16203         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
16204         nested types.  Move all CheckState functionality to CheckedListBox.
16205         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
16206         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
16207         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
16208         single base list. Fix scrollbar sizing and placement to mirror MS.
16209         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
16210         used.
16211         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
16212         for CheckedListBox by using new DrawItemState info.  Center the
16213         checkboxes on the items. Use new StringFormat property.
16214
16215 2006-04-18  Jackson Harper  <jackson@ximian.com>
16216
16217         * Form.cs: MdiChildren don't do default locations the same way as
16218         regular forms.  This prevents a crash when trying to position the
16219         mdi windows.
16220
16221 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
16222
16223         * PropertyGridTextBox.cs: Formatting, copyright
16224         * PropertiesTab.cs: Formatting
16225         * PropertyGrid.cs: Formatting
16226         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
16227           click toggling of values
16228           
16229 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
16230
16231         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
16232         * Control.cs (.ctor): verify_thread_handle is static, don't reset
16233           every time a control is created
16234         * Application.cs: Removed obsolete EnableRTLMirroring method
16235
16236 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
16237
16238         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
16239         SelectedIndex to -1. Fixes bug #78121.
16240
16241 2006-04-17  Jackson Harper  <jackson@ximian.com>
16242
16243         * Binding.cs: Handle null values for Current and BindingContext.
16244         This occurs when binding is a little delayed.
16245         * CurrencyManager.cs: return null for Current when there are no
16246         items in the list.
16247         - Hookup to the listchanged event on the DataView and update
16248         bindings when the list is changed.  This fixes late binding of
16249         controls.
16250
16251 2006-04-17  Jackson Harper  <jackson@ximian.com>
16252
16253         * X11Dnd.cs:
16254         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
16255         Ringenbach.
16256
16257 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
16258
16259         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
16260           place
16261         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
16262           with the correct ButtonState
16263
16264 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
16265
16266         * XplatUIX11.cs: Improved distinguishing between window types to
16267           tell the WM a type closer to what the app wants (Fixes #78107)
16268
16269 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16270
16271         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
16272           GrabHandle
16273
16274 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16275
16276         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
16277           drawing code to reflect the size grip changes
16278
16279 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16280
16281         * ImageListStreamer.cs: fix handling of the mask that follows the main
16282         bitmap when deserializing and serialize it properly. The generated mask
16283         should better be a 1bpp image, but I'll do that later.
16284
16285 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16286
16287         * FileDialog.cs: Show something in the DirComboBox on *nix if the
16288           path doesn't fit into some of our Current.Places
16289
16290 2006-04-13  Jackson Harper  <jackson@ximian.com>
16291
16292         * ComboBox.cs: Use borders instead of drawing our own decorations,
16293         try to obey correct rules for heights.
16294         * Theme.cs:
16295         * ThemeNice.cs:
16296         * ThemeClearLooks.cs:
16297         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
16298         this is now handled by borders.
16299         - Remove unused DrawListBoxDecorationSize method.
16300         
16301 2006-04-13  Mike Kestner  <mkestner@novell.com>
16302
16303         * MenuAPI.cs: null guarding for the disbled click check fixes crash
16304         reported by Alex.
16305
16306 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16307
16308         * ThemeWin32Classic.cs: 
16309           - Fixed CPDrawStringDisabled
16310           - Corrected drawing of disabled menu items
16311           - Fixed drawing of disabled radio buttons (bug #78095)
16312           - Draw check in a disabled CheckBox with color ControlDark 
16313
16314 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16315
16316         * Form.cs: Use the provided width when calculating the menu size;
16317           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
16318           and ClientSize.Width won't be updated yet
16319         * Application.cs: Use Visible instead of Show() to make form visible,
16320           this way we create the handle later and menusize is considered
16321
16322 2006-04-12  Mike Kestner  <mkestner@novell.com>
16323
16324         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
16325         reporting.
16326
16327 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16328
16329         * TextBox.cs: Implemented context menu
16330
16331 2006-04-12  Mike Kestner  <mkestner@novell.com>
16332
16333         * ListView.cs: implement box selection. fixes #77838.
16334         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
16335
16336 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16337
16338         * XplatUIX11.cs: Added setting of window type when transient window
16339           is created (metacity would move it otherwise)
16340         * X11Structs.cs: Added WINDOW_TYPE atoms
16341         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
16342           background (the control is Opaque but still wants transparent
16343           backgrounds)
16344
16345 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16346
16347         * Control.cs: Added OnPaintBackgroundInternal to allow controls
16348           that set Opaque but don't mean it (like all ButtonBase-derived
16349           controls) to still draw their background
16350         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
16351           the background
16352
16353 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16354
16355         * Control.cs (PaintControlBackground): Set the graphics object
16356           on our PaintEvent to null to prevent it from being disposed
16357           when the PaintEvent gets disposed
16358
16359 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
16360
16361         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
16362         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
16363
16364 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16365
16366         * Control.cs: 
16367           - Added transparency check to BackColor property. Transparent
16368             backgrounds are only allowed if the control styles permit it
16369           - Added recursive painting of parent control background and
16370             foreground if a control with a transparent backcolor is drawn
16371             (Thanks to Tim Ringenback for providing his 'hack' as a base
16372              for this patch) Fixes #77985 and #78026.
16373           - Added Opaque style check before calling OnPaintBackground, no
16374             need to draw the background if the control is opaque
16375           - Removed ControlAccessibleObject owner variable (inherited from
16376             base, no need to define again)
16377           - Added some documentation links explaining the drawing events
16378             and styles
16379
16380 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16381
16382         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
16383           that the affected control is the located at the left border of our
16384           parent (Fixes #77936)
16385
16386 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16387
16388         * TextBoxBase.cs: When rendering disabled or readonly controls,
16389           draw the background with 'Control' instead of 'Window' color as
16390           long as the user hasn't specifically set a color
16391
16392 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16393
16394         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
16395           since that won't be updated if the user types text (only if it's
16396           programatically set)
16397
16398 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16399
16400         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
16401           layout changes do to app-triggered resizes will have the proper
16402           display rectangle for layout
16403
16404 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
16405
16406         * ThemeWin32Classic.cs:
16407           - Make use of the SystemBrushes and SystemPens wherever possible
16408           - Corrected some highlight colors
16409           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
16410             drawing
16411         * Theme.cs: Added Empty field to CPColor struct
16412
16413 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16414
16415         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
16416           is displayed when calculating the display rectangle. Thanks to Mike
16417           for teaching me the err of my ways.
16418
16419 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
16420
16421         * ScrollableControl.cs:
16422           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
16423             (instead of 0,0) and we now return the real width/height instead of
16424             just the clientrectangle, adjusted for padding. The rectangle is
16425             now cached and created by the new CalculateDisplayRectangle method.
16426           - Created new CalculateDisplayRectange method, which basically does
16427             what get_DisplayRectangle() did originally, but now using the 
16428             right edge instead of DisplayRectangle to determine the size of
16429             our scrollbars
16430           - get_Canvas(): Fixed it to properly calculate canvas for 
16431             right/bottom controls which seem to be placed to the right/bottom
16432             of any controls that have a fixed location
16433           - Removed TODO that's taken care of
16434           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
16435             and SetDisplayRectLocation according to new MSDN2 docs
16436           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
16437             event when that is called, this is added for compatibility
16438           - ScrollControlIntoView(): Implemented.
16439           - Switched scrollbars to be implicit, they shouldn't be selectable
16440         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
16441           call it when the active control is set/changed
16442         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
16443         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
16444           implicit_control variable (used for native Win32 message generation)
16445         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
16446           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
16447         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
16448         * XplatUIStructs.cs: Added ScrollBarCommands enum
16449
16450 2006-04-10  Jackson Harper  <jackson@ximian.com>
16451
16452         * ButtonBase.cs:
16453         * CheckedListBox.cs:
16454         * ComboBox.cs:
16455         * DataGrid.cs:
16456         * DataGridView.cs:
16457         * Form.cs:
16458         * GroupBox.cs:
16459         * ListBox.cs:
16460         * PrintPreviewControl.cs:
16461         * ProgressBar.cs:
16462         * PropertyGrid.cs:
16463         * Splitter.cs:
16464         * StatusBar.cs:
16465         * TrackBar.cs:
16466         * UpDownBase.cs: Fixup base event overrides.
16467         
16468 2006-04-06  Mike Kestner  <mkestner@novell.com>
16469
16470         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
16471         all user-initiated value changes to min <= value <= max-thumbsz+1.
16472         (set_Value): check for vert/horiz when calculating new thumb position.
16473         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
16474         like MS does.
16475         (OnMouseMoveSB): refactor the thumb dragging code and refine
16476         invalidation logic to reduce flicker.
16477         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
16478         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
16479         (UpdateThumbPosition): small code readability cleanup
16480
16481 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
16482
16483         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
16484           different
16485
16486 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16487
16488         * ThemeNice.cs: Use a better graphics effect when a button is pressed
16489
16490 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16491
16492         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
16493         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
16494           This dramatically reduces the number of Pen.Dispose calls. 
16495           Where possible call ResPool methods only once instead of calling it
16496           over and over again (for example for the same color).
16497
16498 2006-04-06  Mike Kestner  <mkestner@novell.com>
16499
16500         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
16501         Also remove an unused private field on the collection. Fixes #77972.
16502
16503 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16504
16505         * ThemeNice.cs: Added ToolBar drawing code
16506
16507 2006-04-06  Mike Kestner  <mkestner@novell.com>
16508
16509         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
16510         I'm assuming that means we need to look up the toplevel for the
16511         provided control. Fixes the crash trace in #77911 but exposes another
16512         crash in some strange reflection usage in NDocGui.
16513
16514 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16515
16516         * ThemeNice.cs: Gave it a little silver touch and added Images
16517           method
16518         * FontDialog.cs: FontDialog is not resizable
16519         * FileDialg.cs: Added SizeGripStyle.Show
16520
16521 2006-04-05  Jackson Harper  <jackson@ximian.com>
16522
16523         * KeyboardLayouts.cs: Remove warning.
16524
16525 2006-04-05  Jackson Harper  <jackson@ximian.com>
16526
16527         * Control.cs: Enable OnPaintInternal so we can use it for drawing
16528         all of our controls instead of Paint +=.
16529         * ListBox.cs:
16530         * ListView.cs:
16531         * MenuAPI.cs:
16532         * MessageBox.cs:
16533         * NotifyIcon.cs:
16534         * ProgressBar.cs:
16535         * ScrollBar.cs:
16536         * Splitter.cs:
16537         * StatusBar.cs:
16538         * TabControl.cs:
16539         * TextBoxBase.cs:
16540         * ToolBar.cs:
16541         * TrackBar.cs:
16542         * UpDownBase.cs:
16543         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
16544         use OnPaintInternal. Remove Width/Height and Visible checks in
16545         paint handler, this is done at a higher level now.
16546         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
16547         * PaintEventArgs.cs: Add a handled flag so controls that don't
16548         want anymore painting after OnPaintInternal can make sure OnPaint
16549         isn't called.
16550
16551 2006-04-05  Mike Kestner  <mkestner@novell.com>
16552
16553         * Form.cs: fix the menu WndProc hacks to respect the native enabled
16554         state of the form, so that we don't process events when Modal dialogs
16555         are up. Fixes #77922.
16556
16557 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
16558
16559         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
16560           checking is done.
16561
16562 2006-04-05  Mike Kestner  <mkestner@novell.com>
16563
16564         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
16565
16566 2006-04-05  Mike Kestner  <mkestner@novell.com>
16567
16568         * ListView.cs (HeaderMouseMove): null guarding for the over column
16569         when setting up the drag_to_index.  Fixes #78015.
16570
16571 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
16572
16573         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
16574           in the taskbar. Transient windows seem to accomplish that.
16575
16576 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
16577
16578         * Form.cs:
16579           - Re-enabled CreateParams.X/Y code for FormStartPosition
16580           - Added code for manual placement when creating the Control
16581           - Incomplete patch to treat MDI forms differently when
16582             setting the ClientSizeCore. (Still need to figure out handling
16583             x/y coords there)
16584         * XplatUIX11.cs:
16585           - When we're explicitly setting the X/Y position of a non-Child
16586             window, let the WM know. Metacity really wants this.
16587
16588 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16589
16590         * ThemeNice.cs: Added CPDrawButton
16591
16592 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16593
16594         * ThemeNice.cs: Changed the color for focused buttons and activated
16595           the arrows for small scroll buttons.
16596
16597 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16598
16599         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
16600           anymore. Changed some method modifiers to protected (virtual)
16601         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
16602           changes
16603         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
16604           Updated drawing of menus, buttons and progressbars; added
16605           CPDrawBorder3D 
16606
16607 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16608
16609         * ImageListStreamer.cs: implemented serialization/deserialization
16610         of the images.
16611
16612 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
16613
16614         * ThemeWin32Classic.cs:
16615           - Removed all the DrawFrameControl stuff; CPDrawButton,
16616             CPDrawCheckBox and CPDrawRadioButton are now handled directly
16617             inside the methods
16618           - Updated and corrected the drawing code of CPDrawButton,
16619             CPDrawCheckBox and CPDrawRadioButton to better match ms
16620           - Updated theme checkbox and radiobutton code to use the CP*
16621             methods
16622
16623 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16624
16625         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
16626           bug is fixed
16627
16628 2006-03-31  Jackson Harper  <jackson@ximian.com>
16629
16630         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
16631         sometimes.
16632         * UpDownBase.cs: Don't CreateGraphics manually, use a
16633         Refresh. Ideally we would invalidate the correct areas here.
16634
16635 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16636
16637         * XplatUIX11.cs: 
16638           - We now track the mapping state of windows. If a window (or 
16639             one of it's parents) is not mapped we no longer permit
16640             WM_PAINT messages to be generated since we'd otherwise get 
16641             lots of BadMatch X errors. Jackson did all the work figuring
16642             out the problem.
16643           - Destroying the caret if the window it's contained in is 
16644             destroyed. Can't use regular DestroyCaret method since it
16645             might fall into a drawing function (trying to remove the
16646             caret) and with that generate new BadMatch errors. Again,
16647             Jackson tracked this down.
16648           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
16649             make sure we send the messages to all windows. (The old code
16650             would send the WM_DESTROY to the window, and then all child
16651             windows would be 'gone' because the WM_DESTROY handle lookup
16652             would no longer find the destroyed window)
16653         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
16654         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
16655
16656 2006-03-31  Jackson Harper  <jackson@ximian.com>
16657
16658         * ScrollableControl.cs: Dont recalc if we are not visible.
16659
16660 2006-03-31  Mike Kestner  <mkestner@novell.com>
16661
16662         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
16663         the visibility branch.
16664
16665 2006-03-31  Jackson Harper  <jackson@ximian.com>
16666
16667         * ScrollBar.cs: Cap values when incrementing/decrementing.
16668
16669 2006-03-31  Mike Kestner  <mkestner@novell.com>
16670
16671         * MenuAPI.cs: setup menu.tracker for popup/context menus.
16672         * ToolTip.cs: guard against timer expirations with no active control.
16673         Not sure why it happened.
16674
16675 2006-03-31  Mike Kestner  <mkestner@novell.com>
16676
16677         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
16678         text.
16679         * ToolTip.cs: Position the tooltip based on where the cursor is at
16680         popup time, not at MouseEnter time.  Add a Down state so that we don't
16681         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
16682         positioning offset. Lookup DisplaySize at positioning time, since it
16683         can theoretically change during invocation.
16684         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
16685         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
16686
16687 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16688
16689         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
16690           Fixes behaviour when the Text property of the box is String.Empty
16691
16692 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
16693
16694         * XplatUIX11.cs: Only send mouseleave for our client windows, not
16695           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
16696           a window)
16697
16698 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16699
16700         * FileDialog.cs: Visual enhancement for the popup buttons in 
16701           PopupButtonPanel
16702
16703 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16704
16705         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
16706           code
16707
16708 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
16709
16710         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
16711           highlighted menu items to match ms
16712
16713 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
16714
16715         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
16716
16717 2006-03-30  Mike Kestner  <mkestner@novell.com>
16718
16719         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
16720         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
16721         go active to account for HotLight to Selected transition.
16722         * MenuItem.cs: add internal Selected prop. Fill out the Status
16723         property by calculating it from item info. Add HotLight,
16724         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
16725
16726 2006-03-30  Mike Kestner  <mkestner@novell.com>
16727
16728         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
16729
16730 2006-03-29  Jackson Harper  <jackson@ximian.com>
16731
16732         * Form.cs: Implement TODO.
16733
16734 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
16735
16736         * PrintPreviewDialog.cs: Implemented missing methods and events; still
16737           missing proper dialog setup in the constructor
16738
16739 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
16740
16741         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
16742         * Control.cs:
16743           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
16744           - Fixed ResetBindings and removed TODO
16745           - Added check for cross-thread calls to get_Handle()
16746           - Added Marshaller attribute for set_Font to satisfy class status
16747         * FontDialog.cs: Removed TODOs that seemed implemented
16748         * UpDownBase.cs: Removed unneeded TODO and Fixme
16749         * MessageBox.cs: Implemented support for Default button and removed TODO
16750         * FileDialog.cs: Removed obsolete TODO
16751         * DomainUpDown.cs: Removed obsolete TODO
16752         * ButtonBase.cs: Removed obsolete TODO
16753         * XplatUIWin32.cs: Removed obsolete TODO
16754         * Form.cs:
16755           - Removed obsolete TODO
16756           - Calling CheckAcceptButton when the acceptbutton is changed to allow
16757             internal status updates
16758           - Making sure the active control is selected when the control is created
16759         * CurrencyManager.cs: Removed obsolete TODO
16760
16761 2006-03-29  Mike Kestner  <mkestner@novell.com>
16762
16763         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
16764         of PrintPreviewDialog and RichTextBox.
16765
16766 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16767
16768         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
16769           DarkDark, Light and LightLight colors for a specific color
16770         * ThemeWin32Classic.cs:
16771           - Use Button drawing code to draw RadioButtons and CheckBoxes with
16772             Appearance = Button 
16773           - Make use of the new ResPool helper CPColor
16774           - Draw ProgressBar and StatusBar with correct 3D borders
16775
16776 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16777
16778         * ColorDialog.cs: Return selected color. Fixes bug #77940.
16779
16780 2006-03-28  Mike Kestner  <mkestner@novell.com>
16781
16782         * ListView.cs: fix Icon layout to plan for scrollbar widths when
16783         calculating col/row counts.
16784
16785 2006-03-28  Mike Kestner  <mkestner@novell.com>
16786
16787         * ColumnHeader.cs:
16788         * ListView.cs:
16789         * ListViewItem.cs:
16790         * Menu.cs: 
16791         switch to explicit interface method implementation for some methods
16792         corcompare identifies as inconsistent with MS.
16793
16794 2006-03-28  Mike Kestner  <mkestner@novell.com>
16795
16796         * MainMenu.cs: 
16797         * Menu.cs:
16798         add a few missing methods from the class status output.
16799
16800 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
16801
16802         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
16803           correct.
16804
16805 2006-03-28  Mike Kestner  <mkestner@novell.com>
16806
16807         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
16808
16809 2006-03-27  Mike Kestner  <mkestner@novell.com>
16810
16811         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
16812         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
16813
16814 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
16815
16816         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
16817
16818 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16819
16820         * ThemeWin32Classic.cs:
16821           - GroupBox: Inserted a little gap between the text and the lines
16822             on the right side
16823           - Made the code in CPDrawBorder3D more readable
16824           - Corrected the drawing location of the up and down arrows in 
16825             CPDrawScrollButton
16826
16827 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16828
16829         * ControlPaint.cs: Corrected line widths in DrawBorder for
16830           ButtonBorderStyle Inset and Outset
16831
16832 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16833
16834         * ThemeWin32Classic.cs:
16835           - Rewrote the totally broken CPDrawBorder3D method. That was
16836             one of the main problems for the terrific ThemeWin32Classic
16837             look
16838           - Updated and corrected Button drawing
16839           - Correct the dimensions of the SizeGrip to match ms ones
16840           - Removed a small drawing glitch in DrawComboBoxEditDecorations
16841         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
16842           Border3DStyle.Sunken to match ms.
16843
16844 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16845
16846         * ThemeWin32Classic.cs: First small part of the "de-uglify
16847           ThemeWin32Classic" effort, SizeGrip
16848
16849 2006-03-24  Jackson Harper  <jackson@ximian.com>
16850
16851         * XplatUIX11.cs: Give a max idle time of one second, this matches
16852         MS and forces an Idle event every second when there are no other
16853         events in the queue.
16854
16855 2006-03-24  Mike Kestner  <mkestner@novell.com>
16856
16857         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
16858         * ListView.Item.cs: fix layout issues with null image lists and images
16859         smaller than checkbox size.
16860         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
16861         mode like MS does.  It's weird, but consistent.  ;-)
16862         Fixes #77890.
16863
16864 2006-03-24  Mike Kestner  <mkestner@novell.com>
16865
16866         * ListView.cs: Scroll wheel support for the item control.  Fixes
16867         #77839.
16868
16869 2006-03-23  Jackson Harper  <jackson@ximian.com>
16870
16871         * ScrollableControl.cs: Special case negative sized areas, not
16872         zero.
16873         * MonthCalendar.cs: Save the rect of the clicked date so we can
16874         use it for invalidation.
16875         - Try to cut down on the number of invalidates
16876         - Invalidate the rect the mouse is over and was over when moving
16877         the mouse, so we get the focus box following the cursor.
16878
16879 2006-03-23  Mike Kestner  <mkestner@novell.com>
16880
16881         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
16882         focus rectangle drawing. Fixes #77835.
16883
16884 2006-03-23  Mike Kestner  <mkestner@novell.com>
16885
16886         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
16887         the if and else if and reverting back to the original == check on the
16888         None conditional.
16889
16890 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
16891
16892         * FontDialog.cs: Update the example panel if the selected index of
16893           the fontListBox changes.
16894
16895 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
16896
16897         * FileDialog.cs: Make FileDialog remember which directory it was in
16898           last in the same execution.
16899
16900 2006-03-22  Mike Kestner  <mkestner@novell.com>
16901
16902         * FileDialog.cs: make the DropDownMenu on the toolbar display
16903         RadioChecks since they are mutually exclusive and that's what MS does.
16904
16905 2006-03-22  Mike Kestner  <mkestner@novell.com>
16906
16907         * Theme.cs: add Color param to CPDrawMenuGlyph.
16908         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
16909         checks and radio marks and arrows are visible on highlighted items.
16910         * ControlPaint.cs: update to use new Theme signature.
16911
16912 2006-03-22  Mike Kestner  <mkestner@novell.com>
16913
16914         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
16915         is active. Fixes #77870.
16916
16917 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
16918
16919         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
16920           to be focused/selected after startup
16921
16922 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
16923
16924         * ColorDialog.cs: 
16925           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
16926             CustomColors and ShowHelp properties
16927           - Some internal rewrites to get better results when using the
16928             ColorMatrix
16929
16930 2006-03-22  Mike Kestner  <mkestner@novell.com>
16931
16932         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
16933         HoverSelection.  Fixes #77836.
16934
16935 2006-03-22  Mike Kestner  <mkestner@novell.com>
16936
16937         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
16938         ToggleButtons.  (De)Sensitize the Back button around a stack count of
16939         1, not 0.  Update ButtonSize based on a pixel count of the win32
16940         control.  Adjust the toolbar size/location for new button size.
16941
16942 2006-03-22  Jackson Harper  <jackson@ximian.com>
16943
16944         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
16945         true.
16946         * ScrollBar.cs: When doing increments and decrements we need to
16947         set the Value property so that ValueChanged gets raised. A
16948         possible optimization here would be to make an internal SetValue
16949         that doesn't invalidate immediately.
16950         * ToolTip.cs: Tooltips get added to their container (when
16951         supplied) so they get disposed when the container is disposed.
16952         - Don't create tooltips for String.Empty. This prevents all these
16953         little 2-3 pixel windows from showing up when running nunit-gui
16954         and driving me mad.
16955         * Form.cs: Don't set topmost when setting the owner if the handles
16956         haven't been created yet.  The topmost set will happen when the
16957         handles are created.
16958
16959 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
16960
16961         * XplatUIX11.cs:
16962           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
16963           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
16964             visible (to allow them to recalculate their sizes)
16965
16966 2006-03-21  Mike Kestner  <mkestner@novell.com>
16967
16968         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
16969         methods. Removed a ton of redundant code.  Still not really happy with
16970         the border rendering, but I think that's mainly because of the
16971         ControlDarkDark being black instead of a dark grey. Depending on how 
16972         close we want to be, we might want to revisit those color choices.
16973         Among the new features added during the refactor were DropDownArrow
16974         pressed rendering, Disabled image rendering.  Proper flat appearance
16975         boundary rendering.  Removed the Divider and Wrapping dividers since I
16976         can't figure out any combination of themes and conditions to make the
16977         MS control draw a horizontal line on a toolbar despite what the
16978         Divider property docs indicate.
16979         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
16980         conditions and incorrect layout.  Updated to coding standard.
16981         * ToolBarButton.cs: refactored layout and positioning code from
16982         ToolBar to here.  Invalidate wherever possible instead of forcing
16983         redraws of the whole toolbar. 
16984         (Known remaining issues: explicit ButtonSize smaller than provided
16985         images.)
16986
16987 2006-03-21  Mike Kestner  <mkestner@novell.com>
16988
16989         * ContextMenu.cs (Show): use the position parameter instead of just
16990         showing at the MousePosition.
16991
16992 2006-03-21  Jackson Harper  <jackson@ximian.com>
16993
16994         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
16995         control handle this.
16996         * TreeNodeCollection.cs: If we are clearing the root node we need
16997         to reset top_node so calcs can still happen.
16998         * ThemeWin32Classic.cs: This is a Flags so we need to check
16999         properly.
17000         
17001 2006-03-21  Jackson Harper  <jackson@ximian.com>
17002
17003         * DataGrid.cs: Create columns when the binding context has been
17004         changed.
17005         * X11Structs.cs: Keysyms are uints.
17006         - Add size to fix build.
17007
17008 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
17009
17010         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17011           XplatUIOSX.cs: 
17012           - Added ResetMouseHover method to allow controls to retrigger
17013             hovering if they need it more than once
17014           - Implemented MouseHoverTime and MouseHoverSize properties
17015         * Timer.cs: Start() must reset the interval
17016         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
17017           properties
17018
17019 2006-03-21  Jackson Harper  <jackson@ximian.com>
17020
17021         * X11Keyboard.cs: improved layout detection. Move the nonchar
17022         tables into this file.
17023         * KeyboardLayouts.cs: Move the tables into resource files.
17024
17025 2006-03-21  Mike Kestner  <mkestner@novell.com>
17026
17027         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
17028
17029 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
17030
17031         * Mime.cs: Various speed optimizations. Looking up mime types
17032           is now 2 times faster than before
17033
17034 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
17035
17036         * CreateParams.cs: Added internal menu field
17037         * Control.cs: 
17038           - Switched call order for UpdateBounds; now we always call
17039             the one that also takes ClientSize, and we're calculating the 
17040             client size via driver method in the others. The previous
17041             method of tracking client size by difference wasn't working
17042             for forms where even the starting client size wouldn't match
17043             the overall form size (due to borders) (Part of fix for #77729)
17044           - CreateParams(): Do not use parent.Handle unless the handle is
17045             already created. Causes havoc with Nexxia and throws off our
17046             creation of controls
17047         * XplatUIX11.cs:
17048           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
17049           - Switched handling of ConfigureNotify over to new PerformNCCalc 
17050             method (consolidates code)
17051           - Changed RequestNCRecalc to use new PerformNCCalc method
17052           - Added calls to RequestNCRecalc when menus and borders are changed
17053             to allow app to set NC size. (Part of fix for #77729) This matches
17054             when MS send a WM_NCRECALC on Win32 windows.
17055           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
17056             (Part of fix for #77729). This matches what MS does, they also
17057             send that message when the form is made visible.
17058           - XException.GetMessage: Improved usability of X errors by including
17059             a translation of the window into Hwnd and Control class
17060           - Improved debug info for window creation, reparenting and destruction
17061           - Created helper method WindowIsMapped() [Currently not used]
17062         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
17063         * Form.cs:
17064           - CreateParams: Now setting our menu on the new internal menu field
17065           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
17066             avoid calculating the same property twice
17067         * Hwnd.cs:
17068           - Improved usability of ToString() for debugging purposes
17069           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
17070             determine the height of the menu, instead of just the font. This
17071             required to also create a graphics context and to keep a bmp 
17072             around (for performance reasons)
17073
17074 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
17075
17076         * MenuAPI.cs: Added OnMouseUp method
17077         * Form.cs:
17078           - Now remembering the requested client size, avoids size errors
17079           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
17080             instead of base if the menu is active. This is required due to
17081             control now capturing and releasing on down/up and it would
17082             prematurely release our menu capture
17083
17084 2006-03-17  Jackson Harper  <jackson@ximian.com>
17085
17086         * KeyboardLayouts.cs: Add the czech layouts.
17087
17088 2006-03-16  Jackson Harper  <jackson@ximian.com>
17089
17090         * Control.cs: Use the viewport space when sizing not the controls
17091         client size, so things like ScrollableControl that effect the
17092         viewport size (when scrollbars are added) are computed correctly.
17093         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
17094         of ManagerEntrys.
17095         - Handle creating BindingManagers for null data sources.
17096         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
17097         source, otherwise when rows are added they are added to the 'fake'
17098         datasource and we will crash when trying to set the position in
17099         those rows.
17100         - Use Implicit scrollbars on the datagrid so they arent
17101         selectable.
17102         
17103 2006-03-16  Jackson Harper  <jackson@ximian.com>
17104
17105         * Binding.cs:
17106         * InternalWindowManager.cs:
17107         * MdiWindowManager.cs:
17108         * X11Keyboard.cs: I really want Mike to love me again (fix
17109         compiler warnings).
17110
17111 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
17112
17113         * DataGrid.cs:
17114           - OnMouseDown: Switch to editing mode when clicking on the cell
17115                          even if we're clicking on the cell that's currently 
17116                          selected
17117           - ProcessGridKey: Left/Right now wrap like MS.Net does
17118           - ProcessGridKey: Tab now knows to add a new row when tab is
17119                             pressed in the cell of the last column of the 
17120                             last row
17121           - ProcessGridKey: Enter now adds another row  if pressed in the last
17122                             row and selectes the new row, same column cell
17123           - ProcessGridKey: Home/End navigate columns, not rows, like 
17124                             originally implemented
17125           - Broke ProcessKeyPreview code out into an extra Internal method
17126             so it can be called from the edit code
17127         * DataGridTextBox.cs (ProcessKeyMessage):
17128           - Switched to accept Tab keypresses
17129           - Added F2 handling to allow jumping to the end of the edited cell
17130           - Added logic to allow moving caret left/right inside edited cell
17131             and making the edited cell jump when the caret hits cell borders
17132           - Tab and Enter are now passed to the datagrid after being handled
17133         * TextBoxBase.cs:
17134           - Removed capture code now that Control handles it
17135           - set_SelectionStart now ensures caret is visible
17136
17137 2006-03-16  Jackson Harper  <jackson@ximian.com>
17138
17139         * TrackBar.cs: Debackwards the increment/decrement for handling
17140         mouse clicks on the bar with vertical trackbars.
17141         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
17142         bottom to match MS.
17143
17144 2006-03-16  Mike Kestner  <mkestner@novell.com>
17145
17146         * ListView.cs: make shift/ctrl keyboard and mouse selection 
17147         consistent with the MS control. Fix a bug in
17148         SelectedListViewItemCollection.Clear that was pissing me off for the
17149         better part of a day because the collection was being altered
17150         underneath us as we walked the list.
17151
17152 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
17153
17154         * Control.cs: Not sure how we could miss this so long, but it seems
17155           that MS.Net has Capture set all the way from before calling 
17156           OnMouseDown through sending the mouse events until after
17157           OnMouseUp. This will fix DataGrid's selection being set to end
17158           at the location of the MouseUp.
17159
17160 2006-03-15  Jackson Harper  <jackson@ximian.com>
17161
17162         * BindingContext.cs: Check the binding after its added so that it
17163           can initialize the binding managers and hookup to events.
17164         * Binding.cs: Data members seem to sometimes include rows/cols in
17165           the format Row.Column we now take this into account.
17166           - Hookup to the position changed event so we can update the
17167           control when the position has changed in the data set.
17168         * CurrencyManager.cs: Take into account the row/col naming
17169           convention when creating dataset tables.
17170         * BindingContext.cs: Using a newer better way of storing
17171           datasource/datamember pairs.  Hopefully this better matches MS for
17172           looking up binding managers.
17173
17174
17175 2006-03-15  Jackson Harper  <jackson@ximian.com>
17176
17177         * BindingContext.cs: The currency manager needs the data member
17178         name, if the member is a data set we use the name to find the
17179         correct table.
17180         * CurrencyManager.cs: When creating the list prefer an IList over
17181         an IListSource.
17182         - Attempt to create a DataTable from a DataSet (TODO: might need
17183         some better error checking here, although MS doesn't seem to have much)
17184         - If we have a DataTable create a view and use it as our list.
17185
17186 2006-03-15  Mike Kestner  <mkestner@novell.com>
17187
17188         * ListView.cs: keep a matrix of the icon mode layout to facilitate
17189         keyboard navigation. Support Up/Down/Left/Right selection correctly
17190         for all 4 View modes.
17191         * ListViewItem.cs: add internal row/col fields for icon layouts.
17192
17193 2006-03-15  Jackson Harper  <jackson@ximian.com>
17194
17195         * TabControl.cs: Redraw the tabs when we resize so their newly
17196         calculated sizes are drawn on screen.
17197         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
17198         composite characters.
17199         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
17200         - filter events so that composite characters can be created
17201         patches by peter
17202         * X11Structs.cs: Add XIMProperties enum.
17203
17204 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17205
17206         * Control.cs (BringToFront, SendToBack): Don't use window or handle
17207           unless it's created
17208
17209 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17210
17211         * Control.cs (PerformLayout): We don't need to consider visiblity
17212           for anchoring, only for docking. This fixes 'whacky' alignment
17213           in listbox and other controls that use implicit scrollbars after
17214           the previous PerformLayout patch
17215         * ListBox.cs: Switched to use implicit scrollbars
17216           
17217 2006-03-14  Mike Kestner  <mkestner@novell.com>
17218
17219         * ToolBar.cs: 
17220         * VScrollBar.cs:
17221         - chain up the "new event" overrides to base and use
17222         OnEvent to raise them.  Part of fix for bug #76509.
17223
17224 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
17225
17226         * FileDialog.cs: Do not select an item in the parent directory
17227           on backspace
17228
17229 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17230
17231         * Control.cs (PerformLayout): It would seem that we considered
17232           invisible windows for our layout. Not quite the right thing
17233           to do. Now we don't any longer, thereby fixing bug #76889.
17234
17235 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17236
17237         * Control.cs (CanFocus): I goofed. A control can have focus 
17238           even though it's not selectable. Made it match MS docs.
17239
17240 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17241
17242         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
17243           center by default (fixes #76895)
17244         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
17245           all uses of Border3DSides.All with the explicit ORd together
17246           Left|Right|Top|Bottom because I assume that nobody was aware 
17247           that All also implies a center fill. Most places I checked had
17248           a fill right above.
17249         * ProgressBarStyle.cs: Added
17250
17251 2006-03-13  Mike Kestner  <mkestner@novell.com>
17252
17253         * ListView.cs: fix breakage in drag shadow header positioning 
17254         from Peter's csc compilation fix.
17255
17256 2006-03-13  Mike Kestner  <mkestner@novell.com>
17257
17258         * ListView.cs: fix NRE produced by backspacing twice in a focused
17259         FileDialog.
17260
17261 2006-03-13  Mike Kestner  <mkestner@novell.com>
17262
17263         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
17264
17265 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17266
17267         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
17268           be changed
17269         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
17270           the allowed size before making programmatic size changes
17271
17272 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
17273
17274         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
17275           set, metacity is broken and will still use the emty sizes in 
17276           the struct. (Fix for #77089)
17277
17278 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17279
17280         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
17281           WindowExStyles and marked both enums as Flags
17282         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
17283           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
17284           to match WindowStyles split
17285         * XplatUIX11.cs:
17286           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
17287           - Updated to match WindowStyles split
17288         * XplatUIWin32.cs:
17289           - Fixed FosterParent creation, was using ExStyle on the Style field
17290             (This should help with Popup focus issues)
17291           - Updated to match WindowStyles split
17292
17293 2006-03-13  Jackson Harper  <jackson@ximian.com>
17294
17295         * MdiWindowManager.cs: Use the system menu height. Fixes some
17296         strange sizing issues.
17297
17298 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17299
17300         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
17301         * TextBoxBase.cs:
17302           - Scroll to caret after inserting text (#77672)
17303           - Make scroll range one pixel higher, fixes off-by-one error (and
17304             makes underlines visible on the last line)
17305
17306 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
17307
17308         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
17309           the keyboard state from being stuck with keys in 'pressed' state when
17310           focus is switched away via keyboard
17311         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
17312           reset the keyboard if no X11 KeyUp events are expected to come
17313         * X11Structs.cs: Switched type of Visible to bool to match driver
17314
17315 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17316
17317         * TextControl.cs:
17318           - Switched caret to be just 1 pixel wide, matches MS and looks less
17319             clunky
17320           - Moved caret display 1 pixel down from the top of the control
17321             to improve view
17322           - InsertCharAtCharet: Update the selection start if moving the caret
17323             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
17324           - No longer always creating the caret when the caret methods are
17325             called. Only the actual ShowCaret/HideCaret will do that now
17326           - Only setting caret visible if the owner control has focus
17327           - UpdateView: Added invalidation-shortcut logic for center and right 
17328             aligned text. Previously we'd update all according to the left
17329             logic which caused drawing errors. Also fixed height of invalidated
17330             areas, now properly invalidating the whole area (was off-by-one)
17331           - owner_HandleCreated: Always generate the document when the
17332             handle is created; this ensures that 
17333         * TextBoxBase.cs:
17334           - Fixed situation where caret would disappear under the right
17335             window border, also improved scrolling behaviour on left-
17336             aligned textboxes
17337           - Fixed right-aligned textboxes to have a border to the
17338             right instead of the caret being under the right border
17339         * XplatUIX11.cs:
17340           - Switched from 'nested' to simple visible/not visible tracking 
17341             for caret (part of fix for #77671)
17342           - No longer passing through translated FocusIn/FocusOut messages
17343             since we were notifying too often and the wrong windows. Instead
17344             we just notify our focussed window of receiving or loosing focus
17345         * XplatUIWin32.cs: Switched from 'nested' show/hide 
17346           counting for caret to simple visible yes/no behaviour (part of 
17347           fix for #77671)
17348
17349 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17350
17351         * Mime.cs: Remove debug code...
17352
17353 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17354
17355         * MimeGenerated.cs: Removed
17356         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
17357           and subclasses) from /usr/(local/)share/mime and
17358           $HOME/.local/share/mime.
17359
17360 2006-03-10  Jackson Harper  <jackson@ximian.com>
17361
17362         * MdiWindowManager.cs: Recalc the NC area when a window is
17363         maximized/restored so that the menu area is drawn on forms that
17364         don't have a menu.
17365
17366 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17367
17368         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17369           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
17370           us to force a WM_NCCALCRESIZE message being sent. This is needed
17371           for MDI maximizing.
17372
17373 2006-03-10  Jackson Harper  <jackson@ximian.com>
17374
17375         * Form.cs: We need to use the ActiveMenu when calculating menu
17376         height.
17377         - Fix nullref when the window manager hasn't been created yet.
17378         * Control.cs: Fix nullref when we try to bring a control to the
17379         front that has no parent.
17380         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
17381         height.
17382         - Add a dummy item to the maximized menu so it always has the
17383         correct height. Otherwise when there are no menus we don't get our
17384         icon and buttons.
17385         
17386
17387 2006-03-10  Jackson Harper  <jackson@ximian.com>
17388
17389         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
17390         stuff.
17391         * Form.cs: Make the window_state internal so the window managers
17392         can track it.
17393         - When an MDI child is maximized let its window manager create the
17394         main menu (so it can add its icon).
17395         - Notify the window managers of state changes
17396         - Let the window manager paint its buttons and handle button
17397         clicks on the menu when it is maximized.
17398         * InternalWindowManager.cs: Move the prev_bounds into the mdi
17399         window manager, since tool windows don't use it, only mdi windows.
17400         - Tell the main form that we don't want it to handle NCPAINT
17401         itself to avoid extra painting.
17402         - Handle clicks on a maximized windows menu.
17403         - Handle window state changes
17404         - Handle minimize/maximize clicks correctly by setting the window state.
17405         * MdiWindowManager.cs: Add an icon menu that (the menu you get
17406         when clicking on the forms icon).
17407         - New method to create a forms maximized menu. This is its normal
17408         menu + an icon.
17409         - Handle window state changes.
17410         - Handle sizing of maximized windows.  Maximized windows are just
17411         drawn bigger then the parent visible area. All controls are still
17412         there, they are just outside the visible area (this matches windows).
17413         * MdiClient.cs: No scrollbars when a child window is maximized.
17414         - Let the children windows figure out how big they should be when
17415         sizing maximized windows.
17416         - Implement a version of ArrangeIconicWindows somewhat similar to
17417         Windows version.  There are some little differences, but I don't
17418         think any app will rely on the layout of minimized mdi windows.
17419
17420 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17421
17422         * Padding.cs: Several fixes to allow compiling with csc 2.0
17423
17424 2006-03-09  Jackson Harper  <jackson@ximian.com>
17425
17426         * Menu.cs:
17427         * MenuItem.cs: Cheap hack so we can add items to the list without
17428         the events being raised.  This allows adding mdi items during
17429         drawing. TODO: Should probably find a better time to add the items.
17430
17431 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17432
17433         * ThemeWin32Classic.cs:
17434           - CheckBox_DrawText: Added logic to not wrap if not enough space
17435             is available (Fix for bug #77727)
17436           - RadioButton_DrawText: Added logic not to wrap if not enough
17437             space is available (Fix for bug #77727). Also removed some
17438             duplicate code, DrawString always drawing the regular text
17439             before hitting the if statement.
17440
17441 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
17442
17443         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
17444
17445 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17446
17447         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
17448         * ContainerControl.cs: Partial implementation of some 2.0 scaling
17449           methods. Moved the new 2.0 properties into alphabetical order with
17450           other properties and added MonoTODO tags
17451
17452 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17453
17454         * AutoScaleMode.cs: Added. Fix build.
17455
17456 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17457
17458         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17459           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
17460           and was requiring premature handle creation for calls from above
17461         * Form.cs, Control.cs: Removed handle arguments from calls to
17462           CalculateClientRect()
17463
17464 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17465
17466         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
17467           drag_column.column_rect is MarshalByRef and can't be used that way
17468
17469 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17470
17471         * AxHost.cs: Added deserialization constructor for 
17472           AxHost+State (fixes 77743)
17473
17474 2006-03-09  Mike Kestner  <mkestner@novell.com>
17475
17476         * ListView.cs: 
17477         - Added column drag reordering for details view.
17478         - fixed behavior when mouse is dragged off column and
17479         AllowColumnReorder is false.
17480         * ColumnHeader.cs: clone the format too in Clone.
17481         * Theme.cs: add DrawListViewHeaderDragDetails method.
17482         * ThemeWin32Classic.cs:
17483         - impl new method for drawing drag column shadows and targets.
17484         - support column offset for details mode in DrawListViewItem.
17485
17486 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17487
17488         * TextControl.cs: Reset the char_count when the document is cleared
17489           (Fixes bug reported on mono-winforms mailing list)
17490
17491 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17492
17493         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
17494           of calling base we simply process the key ourselves, since both
17495           DefWindowProc and the handled method would set m.Result. 
17496           (Fixes #77732)
17497
17498 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17499
17500         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
17501           method also moves the window; instead implemented a copy of
17502           Control.ScaleCore (Part of fix for #77456)
17503         * TextBoxBase.cs: 
17504           - Created new CreateGraphicsInternal method to allow providing
17505             a graphics context when no handle is created without triggering
17506             handle creation. (Part of fix for #77456)
17507           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17508         * TextControl.cs: 
17509           - Switched Constructor to require TextBoxBase instead of Control (to
17510             allow uncast access to CreateGraphicsInternal)
17511           - Safeguarded use of owner.Handle property. No longer accessing it
17512             unless the handle is already created.
17513           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17514           - Now triggering a recalc when owning control becomes visible
17515         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
17516           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
17517           premature handle creation (Part of fix for #77456)
17518         * Control.cs:
17519           - We now only destroy our double-buffering buffers when the
17520             control is resized or disposed, but not when visibility
17521             changes. (The code even re-created them twice every time)
17522           - Now requiring a redraw of the buffer on visibility changes
17523             (fixes bug 77654 part 2)
17524           - Not passing OnParentVisibleChanged up unless the control
17525             is visible
17526           - CanFocus: Fixed to match MS documentation
17527           - Focus: Fixed to return actual focus state and to check if
17528             setting focus is legal before setting it
17529
17530 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
17531
17532         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
17533           when to draw focus rectangle by looking at parent focus and
17534           selected state instead. This fixes TabPages on Linux sometimes
17535           having none or multiple focus rectangles.
17536         * XplatUIX11.cs (SetFocus): 
17537           - Don't set the focus if the same window already has focus
17538           - Use SendMessage instead of PostMessage (like it's Win32
17539             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
17540             to match MS behaviour
17541         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
17542           are not selectable.
17543
17544 2006-03-07  Jackson Harper  <jackson@ximian.com>
17545
17546         * PictureBox.cs: Revert line I accidently committed last week.
17547
17548 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17549
17550         * Control.cs: 
17551           - Added new IsRecreating and ParentIsRecreating properties to
17552             allow testing if RecreateHandle has been called on ourselves
17553             or one of our parents
17554           - WndProc(WM_DESTROY): If our control handle is being recreated
17555             we immediately need to create the handle when receiving the
17556             destroy, that way our child windows find a valid parent handle
17557             when they themselves are being recreated upon WM_DESTROY receipt
17558             (fix for bug #77654 part 1)
17559         * XplatUIX11.cs:
17560           - DestroyWindow: WM_DESTROY must be sent to our own window before
17561             notifying any child windows. MS documents that child windows
17562             are still valid when WM_DESTROY is received. (Control now relies on
17563             this behaviour)
17564           - Added some fine-grain debug options
17565
17566 2006-03-06  Jackson Harper  <jackson@ximian.com>
17567
17568         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
17569         box and base calculations off this.
17570         * MdiChildContext.cs:
17571         * MdiWindowManager.cs: Don't need to ensure scrollbars here
17572         anymore.
17573         
17574 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
17575
17576         * Splitter.cs: In situations where the affected control is added
17577           to the parent's control list after the splitter, we would not
17578           populate affected. Now we try populating it on mousedown, if
17579           it's not already set, and force it to be re-set whenever our
17580           parent changes.
17581
17582 2006-03-03  Matt Hargett  <matt@use.net>
17583
17584         * Control.cs: implement Control.Padding
17585         * Padding.cs: -Padding.All returns -1 when constructing with the
17586         implicit default ctor
17587         -Padding.ToString() matches MS.NET
17588         * ContainerControl.cs: implement
17589         ContainerControl.AutoScaleDimensions
17590         * ListControl.cs: implement ListControl.FormattingEnabled
17591         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
17592         * ButtonBase.cs:
17593         * TabPage.cs: Implement UseVisualStyleBackColor.
17594         * PictureBox.cs: Implement PictureBox.InitialImage.
17595
17596 2006-03-03  Mike Kestner  <mkestner@novell.com>
17597
17598         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
17599         event declarations to proxy to base event.
17600         * ListViewItem.cs: update to use ItemControl.
17601         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
17602         * ThemeWin32Classic.cs: update to new ListView theme API and fix
17603         column header label rendering for 0 width columns.
17604
17605 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
17606
17607         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
17608           that causes the control to be created. Fixes #77476.
17609
17610 2006-03-02  Jackson Harper  <jackson@ximian.com>
17611
17612         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
17613         expose_pending.
17614
17615 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
17616
17617         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
17618           passed in for the EventArgs (fixes #77690)
17619
17620 2006-03-01  Jackson Harper  <jackson@ximian.com>
17621
17622         * ScrollBar.cs: Refresh afterbeing resized.
17623
17624 2006-02-28  Mike Kestner  <mkestner@novell.com>
17625
17626         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
17627         Clean up a tracker compile warning.
17628         * MenuItem.cs: add internal PerformPopup method.
17629         [Fixes #77457]
17630
17631 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17632
17633         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
17634           implicit expose) when the text is set to null
17635
17636 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
17637
17638         * RichTextBox.cs (FlushText): When newline is true, we always
17639           need to split the line, even if no text is on it and we may
17640           never eat newlines. (Fixes #77669)
17641
17642 2006-02-28  Mike Kestner  <mkestner@novell.com>
17643
17644         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
17645         and set Selected instead.
17646         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
17647         collections.
17648
17649 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17650
17651         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
17652
17653 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
17654
17655         * FontDialog.cs:
17656           - Got rid of the panel. All controls are now directly added to
17657             the dialog form
17658           - It is now possible to set a font with the Font property
17659           - MinSize and MaxSize property do now what they should
17660           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
17661           - Searching and selecting a font with the font textbox works now,
17662             the same applies to the style and size textbox
17663           - Draw the correct 3D border in the example panel
17664           - Fixed a little mem leak (unused fonts didn't get disposed)
17665           - Many other internal updates/rewrites...
17666           - Fix typo
17667
17668 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17669
17670         * TextControl.cs: 
17671           - InsertRTFFromStream: Added 'number of characters inserted' argument
17672           - set_SelectedRTF: Now using the number of characters to calculate
17673             the new location for the selection and cursor (x/y cannot be used
17674             due to potentially already wrapped text)
17675
17676 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
17677
17678         * TextControl.cs: Added property and implemented means to allow 
17679           disabling recalculation of a document (can be used to speed up
17680           multiple inserts and is needed to make RTF inserts predictable, see
17681           bug #77659)
17682         * RichTextBox.cs: Using the new NoRecalc property of Document to
17683           keep x/y insert locations predictable. Also makes it faster inserting
17684           large chunks of RTF
17685
17686 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17687
17688         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
17689           it's easier for a child control to handle the other messages without
17690           having to duplicate the special functionality
17691         * TextBoxBase.cs
17692           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
17693             code to handle processing the key ourselves, in order to get 
17694             access to the result of KeyEventArgs.Handled. We now only call 
17695             ProcessKey if they key hasn't been handled already. Fixes #77526.
17696           - set_Text: If null or empty string is given, just clear the 
17697             document. Fixes part of #77526
17698
17699 2006-02-27  Jackson Harper  <jackson@ximian.com>
17700
17701         * SizeGrip.cs: Paint the background color before painting the grip
17702         so things look right.
17703         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
17704
17705 2006-02-27  Mike Kestner  <mkestner@novell.com>
17706
17707         * ListView.cs:
17708           - Restructure layout and invalidation model to remove a ton of
17709           flicker from the control and speed up performance in general.
17710           - Add manual column resize, flickers like crazy, but I already have
17711           some ideas on how I'll fix that. (#76822)
17712           - Merge the three Icon-based views into a single layout method.
17713           - Move item selection interaction logic from the item since 
17714           interaction with the collections is more appropriate to the view.
17715           - Deselection on non-item clicks.
17716         * ListViewItem.cs:
17717           - Encapsulate most of the layout. Add some internal props to trigger
17718           layout.  Move to a model where Items invalidate themselves instead
17719           of just invalidating the whole control every time something changes.
17720           - Invalidate on Text/Caption changes.
17721           - switch to an offset based layout model to avoid having to absolute
17722           position every element on item moves.
17723           - correct checkbox layout to conform to MS layout.
17724         * ThemeWin32Classic.cs:
17725           - refactor some column header drawing code.
17726           - fix string justification for column headers (#76821)
17727           - make SmallIcon labels top justified for compat with MS impl.
17728         * ThemeClearlooks.cs:
17729           - adjust to new ListViewItem internal checkbox bounds api.
17730
17731 2006-02-27  Jackson Harper  <jackson@ximian.com>
17732
17733         * Control.cs:  Change where implicit controls fall in the zorder.
17734         They are now on top of all children.
17735         - Synced AddImplicit code with Add
17736         - Removed unused enumerator.
17737         * SizeGrip.cs: Remove the TODO as its been TODONE.
17738
17739 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
17740
17741         * TextControl.cs(Insert): Combine the last lines unless the insertion
17742           string ends with \n\n, otherwise we leave one line too many (Fixes
17743           something I noticed with the testapp for #77526; the bug itself was
17744           already fixed in the previous checkin)
17745
17746 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
17747
17748         * RichTextBox.cs:
17749           - SelectionColor and SelectionFont methods no longer set absolute
17750             styles. Instead, the keep font or color respectively (This 
17751             resolves a long-standing FIXME in the code)
17752           - When flushing RTF text, the insert code now considers text trailing
17753             behind the insertion point (Fixes the bug where when replacing
17754             the selected text via SelectedRTF the remainder of the line behind 
17755             the selection would stay on the first insertion line)
17756         * TextBoxBase.cs:
17757           - AppendText now updates the selection points after inserting text
17758           - AppendText now ensures that the last tag (sometimes 0-length) of
17759             the document is used for the style information (Fixes part of 
17760             bug #77220)
17761         * TextControl.cs:
17762           - Created new FontDefiniton class to allow describing partial style
17763             changes
17764           - StreamLine() now takes a lines argument, to allow it to decide
17765             whether an encountered zero-length tag is the last in the document
17766             (which must be kept to not loose the font/color contained in it,
17767             for later appends)
17768           - Created Combine() and Split() methods for Marker structs, to 
17769             support marker updates due to reformatted documents (soft line
17770             wraps)
17771           - Implemented Document.CaretTag setter
17772           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
17773             of the last line (Not the cause, but also exposed by bug #77220)
17774           - Added LineTag argument to InsertString method, to allow callers
17775             to force a certain tag to be used (required to force use of the
17776             trailing zero-length tag of a document)
17777           - Now updating markers in Combine(), to avoid stale tag markers
17778           - Added some method descriptions to aid maintenance
17779           - Implemented new FormatText concept, allowing additive/subtractive
17780             formatting by only specifying the components that are to be 
17781             changed. This was needed for resolving the RTB.SelectedColor/
17782             RTB.SelectedFont fixmes
17783           - Added Break() support method to allow breaking up linetags (used
17784             for partial formatting)
17785           - Added GenerateTextFormat() method. It is used for partial 
17786             formatting and allows to generate a full font/color from given
17787             attributes and an existing tag.
17788
17789 2006-02-26  Jackson Harper  <jackson@ximian.com>
17790
17791         * XplatUIX11.cs:  Use the correct caption height.
17792         - Translate hittest coordinates to screen coords to match MS.
17793         * XplatUIWin32.cs: When we create MDI windows we need to reset
17794         some of the style flags, so we get a nice blank window, and can
17795         draw all the decorations ourselves.
17796         - Set a clipping rectangle on the non client paint event, the
17797         window manager drawing code needs one.
17798         * Form.cs: The window manager needs to know when the window state
17799         has been updated.
17800         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
17801         don't need to factor in border and title sizes in these
17802         methods. TODO: Remove the args and fix the call points.
17803         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
17804         properly.
17805         - Let the driver set the cursors.
17806         - Improve active window handling
17807         - Correct sizes for title bars and buttons.
17808         - Match MS drawing better
17809         * MdiWindowManager.cs: We don't need to handle border style
17810         updates specially anymore.
17811         - Check for scrollbars when windows are done moving
17812         - Handle Active properly.
17813         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
17814         correctly. I am spewing the exception though, so we don't hide the
17815         bugs.
17816         
17817 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
17818
17819         * DataGridViewRowPostPaintEventArgs.cs,
17820           DataGridViewCellPaintingEventArgs.cs,
17821           DataGridViewRowCollection.cs,
17822           DataGridViewRowPrePaintEventArgs.cs,
17823           DataGridViewCell.cs: Clear a few warnings and implement a few
17824           exceptions that should be thrown.
17825
17826 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
17827
17828         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
17829           'inheriting' our parent's (non-default) cursor. (Part of
17830            the fix for #77479)
17831
17832 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
17833
17834         * XplatUIX11.cs: Fixed cast to make csc happy
17835
17836 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
17837
17838         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
17839           it's for the client area (part of fix for #77479 and needed
17840           for MDI window cursor handling)
17841         * XplatUIX11.cs
17842           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
17843             the appropriate default cursors and also passing the message
17844             up the parent chain 
17845           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
17846             for non-client areas
17847
17848 2006-02-15  Jackson Harper  <jackson@ximian.com>
17849
17850         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
17851         is a real MDI window
17852
17853 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
17854
17855         * X11DesktopColors.cs: Instead of checking the desktop session
17856           string for "KDE" check if it starts with "KDE"
17857
17858 2006-02-10  Jackson Harper  <jackson@ximian.com>
17859
17860         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
17861         systems).
17862
17863 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
17864
17865         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
17866           errors
17867         * ColorDialog.cs:
17868           - Got rid of the panel. All controls are now directly added to
17869             the dialog form
17870           - Changed to mono coding style
17871
17872 2006-02-10  Jackson Harper  <jackson@ximian.com>
17873
17874         * InternalWindowManager.cs: We don't need the set visibility to
17875         false hack anymore now that peter has written beautiful shutdown
17876         code.
17877
17878 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
17879
17880         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
17881           where already explicitly destroyed
17882
17883 2006-02-10  Jackson Harper  <jackson@ximian.com>
17884
17885         * MdiClient.cs: Handle the case where windows are too high or to
17886         the left and we need scrollbars.
17887
17888 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
17889
17890         * MimeIcon.cs: Added some icons
17891         * FileDialog.cs:
17892           - Fixed bug #77477
17893           - Got rid of the panel. All controls are now directly added to
17894             the dialog form
17895           - Changed to mono coding style
17896           - On Linux "My Computer" and "My Network" will now show some
17897             more usefull information. A new class, MasterMount, gathers
17898             this information from /proc/mount. Updated MWFFileView to make
17899             use of this information
17900           - Fixed a bug that caused FileDialog to crash when
17901             ".recently_used" file had a zero size
17902           - FilterIndex does now what it should
17903           - Some Refactoring
17904         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
17905             FileDialog changes
17906
17907 2006-02-09  Jackson Harper  <jackson@ximian.com>
17908
17909         * ComboBox.cs: Don't touch if null.
17910
17911 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
17912
17913         * Cursor.cs: 64bit safeness fix
17914         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
17915
17916 2006-02-09  Jackson Harper  <jackson@ximian.com>
17917
17918         * Form.cs: If a form is made into an MDI form update the styles so
17919         all the props can get set correctly.
17920         - Kill the mdi_container when we dont need it anymore.
17921         * InternalWindowManager.cs: Add missing NOT
17922
17923 2006-02-08  Jackson Harper  <jackson@ximian.com>
17924
17925         * InternalWindowManager.cs: Respek clipping when drawing MDi
17926         decorations.
17927
17928 2006-02-08  Jackson Harper  <jackson@ximian.com>
17929
17930         * Hwnd.cs: Add bits to track non client expose events.
17931         * XplatUIX11.cs: Track non client expose events on the hwnd. This
17932         gives us a proper invalid rect and will allow for some nice
17933         optimizations with NC client drawing
17934         - MDI windows are children windows, so move their style handling
17935         into the child window block.
17936         * InternalWindowManager.cs: Remove a state reset that was
17937         getting invoked at the wrong time. Fixes managed windows getting
17938         into a 'stuck' captured state.
17939
17940 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
17941
17942         * TextControl.cs (Document.ctor): Now initializing 
17943           selection_anchor. Fixes #77493
17944
17945 2006-02-07  Jackson Harper  <jackson@ximian.com>
17946
17947         * TrackBar.cs: The increment/decrements were backwards.
17948
17949 2006-02-07  Mike Kestner  <mkestner@novell.com>
17950
17951         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
17952         to the instance itself.
17953
17954 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
17955
17956         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
17957           on ulongs and pointers, the size differs between 32bit and 64bit
17958           systems. 
17959
17960 2006-02-07  Mike Kestner  <mkestner@novell.com>
17961
17962         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
17963         for 64 bit platforms to work around a metacity bug. 
17964
17965 2006-02-07  Jackson Harper  <jackson@ximian.com>
17966
17967         * TrackBar.cs: Process the input keys we need, and hookup to
17968         KeyDown instead of using WndProc, so we get key messages.
17969
17970 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
17971
17972         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
17973           machine we're on. 
17974         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
17975           we need to translate the XdndVersion atoms array before sending it
17976
17977 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
17978
17979         * XplatUIX11.cs: 
17980           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
17981             number of bits for the property, not the number of bytes. The
17982             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
17983             but would not crash since it specified 8 bits instead of 4 bits)
17984           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
17985             defined as XID -> long in the C headers)
17986           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
17987             references since those are now IntPtr to begin with
17988           - Switched all Atom.XXX 'int' casts to IntPtr casts
17989           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
17990           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
17991           - Added XChangeActivePointerGrab DllImport (for X11DnD)
17992         * X11Structs.cs:
17993           - Changed 'int' type for Atoms in XEvent structures to IntPtr
17994           - Changed atom in HoverStruct to be IntPtr
17995         * X11DnD.cs:
17996           - Removed local DllImports, switched code to use those from XplatUIX11
17997           - Removed/fixed casts related to the switch of Atom to be a IntPtr
17998
17999 2006-02-06  Mike Kestner  <mkestner@novell.com>
18000
18001         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
18002         method signatures in the import region.  There may still be some
18003         lingering struct marshaling issues, as I didn't drill down into those.
18004         Yet.
18005
18006 2006-02-06  Jackson Harper  <jackson@ximian.com>
18007
18008         * ComboBox.cs: Dont manually set the top_item, this is computed
18009         when the scrollbar position is set.
18010
18011 2006-02-06  Mike Kestner  <mkestner@novell.com>
18012
18013         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
18014         startup crashes on amd64.  There's other fixes needed.  All pinvoke
18015         usage of Atom needs to be mapped to IntPtr for example.  And there are
18016         likely other int/long issues to be addressed.
18017
18018 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
18019
18020         * FileDialog.cs: One more...
18021
18022 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18023
18024         * FileDialog.cs: Next try
18025
18026 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18027
18028         * FileDialog.cs: First part of fix for #77464
18029
18030 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18031
18032         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
18033           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
18034           AcceptButton border drawing.
18035
18036 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
18037
18038         * Form.cs: Moved positioning of form after auto scaling is applied,
18039           otherwise it would possibly use wrong form size.
18040
18041 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
18042
18043         * Control.cs (RecreateHandle): No need to re-create any child
18044           controls, the child windows will get destroyed automatically by
18045           the windowing system or driver, and re-created when the handle
18046           is being accessed the first time. Fixes #77456
18047         * Form.cs: No longer setting the form to closing if the handle is 
18048           being recreated. This seems like the right thing to do, don't
18049           have a bug or testcase for this, though.
18050
18051 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18052
18053         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
18054           controls to avoid unwanted side effects
18055
18056 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
18057
18058         * Control.cs: 
18059           - ScaleCore needs to scale the bounds, not the ClientSize of the 
18060             control. Fixes #77416.
18061           - DefaultSize is 0,0 for control
18062         * TextBoxBase.cs: 
18063           - DefaultSize is 100, 20
18064           - SetBoundsCore: Now enforcing the height, no matter if the provided
18065             height is more or less than the preferred one, as long as AutoSize
18066             is on
18067         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
18068
18069 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18070
18071         * Control.cs:
18072           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
18073             call unless both performLayout is true *and* we have a pending
18074             layout change
18075           - ResumeLayout: MS does not completely nest Suspend and Resume,
18076             they bottom out at 0, fixed our code to match that.
18077           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
18078             SetBoundsCore, we were updating even when we shouldn't. This fixes
18079             swf-anchors mis-anchoring when resizing the app fast and lots.
18080           - UpdateDistances: Now only setting the left and top distance if 
18081             we have a parent and are not suspended, this is based on
18082             a suggestion by Don Edvaldson in bug #77355.
18083           - OnVisibleChanged: Fixed logic when to create the control. We may
18084             not create the control if we have no parent or if it's not visible;
18085             switched to using Visible property instead of is_visible field 
18086             since the property also considers parent states. This fixes a bug
18087             when starting Paint.Net
18088
18089 2006-02-02  Jackson Harper  <jackson@ximian.com>
18090
18091         * Form.cs: If the forms handle hasn't been created yet don't call
18092         into xplatui to make it top most, just set the topmost flag on the
18093         form in CreateParams
18094         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
18095
18096 2006-02-01  Jackson Harper  <jackson@ximian.com>
18097
18098         * ScrollableControl.cs: Refactored the Recalculate method a
18099         little, this wasn't handling all the variants of bottom and right
18100         bars needed to be added and added/removed based on their
18101         counterparts being added/removed (which changes the drawable
18102         size). Also we special case client widths and heights of 0 and
18103         don't add the scrollbar for those.
18104
18105 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
18106
18107         * XplatUIX11.cs: 
18108           - Added method to get AbsoluteGeometry(); currently unused, but might
18109             be used in the future, if we try again to figure out toplevel
18110             coordinates with some more crappy window managers
18111           - Added FrameExtents() method to retrieve the WM set decoration size
18112           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
18113             to deal with at least KDE, FVWM and metacity (Fixes #77092)
18114         * Hwnd.cs: 
18115           - Added whacky_wm tracking var for metacity
18116           - Added logic to have default menu height if the actual menu height
18117             has not yet been calculated (part of fix for #77426)
18118         * Form.cs: Keep track whether client size has been set and re-set 
18119           it if a menu is added/removed afterwards (Fixes #77426)
18120
18121 2006-01-31  Jackson Harper  <jackson@ximian.com>
18122
18123         * Control.cs: When a new Site is set on the component attempt to
18124         pull the AmbientProperties from it.
18125
18126 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
18127
18128         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
18129           in the background of the owning form. Fixes #77332
18130
18131 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
18132
18133         * MimeIcon.cs: Fix for #77409
18134
18135 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
18136
18137         * XplatUIX11GTK.cs: Initial import
18138
18139 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
18140
18141         * FixedSizeTextBox: fixes class signature
18142
18143 2006-01-30  Jackson Harper  <jackson@ximian.com>
18144
18145         * FixedSizeTextBox.cs: New internal class that represents a
18146         textBox that will not be scaled.
18147         * TreeView.cs:
18148         * ComboBox.cs:
18149         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
18150         standard TextBox.
18151                 
18152 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
18153
18154         * XplatUIX11.cs: Retrieve default screen number instead of
18155           assuming 0. Attempted fix for #77318
18156
18157 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
18158
18159         * XplatUIWin32.cs: 
18160           - GetWindowPos: When a window is parented by FosterParent, use 
18161             the desktop instead of FosterParent as the base to get coordinates
18162           - CreateWindow: Don't make FosterParent the parent window for Popups
18163             if we don't want a taskbar entry, Popups automatically don't get one
18164         * Hwnd.cs: Need to call remove to actually remove the key from the
18165           hash table
18166
18167 2006-01-30  Mike Kestner  <mkestner@novell.com>
18168
18169         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
18170
18171 2006-01-30  Jackson Harper  <jackson@ximian.com>
18172
18173         * TreeView.cs:
18174         * TreeNode.cs: Raise events no matter how the treenode is
18175         checked. Patch by Don Edvalson.
18176
18177 2006-01-30  Jackson Harper  <jackson@ximian.com>
18178
18179         * TreeNode.cs: Signature fix.
18180
18181 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
18182
18183         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
18184
18185 2006-01-20  Mike Kestner  <mkestner@novell.com>
18186
18187         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
18188         event forwarding when menus are active.
18189         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
18190         Most of the patch is pdb's with a little rework.
18191
18192 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18193
18194         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
18195           Removed GetMenuDC and ReleaseMenuDC methods; replaced
18196           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
18197         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
18198         * InternalWindowManager.cs: Added use of PaintEventStart/End to
18199           handling of WM_NCPAINT message, now passing the PaintEventArgs to
18200           the PaintWindowDecorations method
18201         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
18202         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
18203         * MenuAPI.cs: Made tracker window invisible
18204         * XplatUIWin32.cs:
18205           - Removed GetMenuDC and ReleaseMenuDC methods
18206           - Implemented the client=false path for PaintEventStart and
18207             PaintEventEnd
18208
18209 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18210
18211         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
18212         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
18213           styles
18214         * Form.cs: 
18215           - MaximizeBox, MinimizeBox: Recreate the handle when setting
18216             the style
18217           - CreateParams: Reworked the styles to match MS look'n'feel,
18218             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
18219             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
18220
18221 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18222
18223         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
18224           window is not mapped, since otherwise every form that's being 
18225           created is considered minimized, which is wrong.
18226         * Form.cs: Catching the exception and returning our internal value
18227           instead
18228
18229 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18230
18231         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
18232           SetWindowMinMax() to have means to tell the driver about the minimum,
18233           maximum and maximized state window sizes. (Part of the fix for #76485)
18234         * Form.cs:
18235           - Implemented tracking of minimum and maximum window size, now calling
18236             new SetWindowMinMax() driver method to tell the driver (Part of the
18237             fix for #76485)
18238           - Finished handling of WM_GETMINMAXINFO method, now setting all values
18239             (Completes fix for #76485)
18240           - Calling new SetWindowMinMax driver method when the handle for a 
18241             form is created, to make sure the driver knows about it even if
18242             the values have been set before the window was created
18243           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
18244             to avoid messing up our anchoring calculations (partial fix
18245             for #77355)
18246         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
18247         * XplatUIX11.cs:
18248           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
18249           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
18250             (and presumably other freedesktop.org compliant WMs). Left the
18251             assumption unmapped=minimized, needed for SetVisible to work.
18252           - Now setting the window state when creating windows
18253           - Fixed SetVisible to consider/set the window state when mapping
18254             a Form. We cannot set the state before it's mapped, and we cannot
18255             use Form.WindowState once it's mapped (since it would ask the
18256             driver and get 'normal'. Therefore, we grab the state before
18257             mapping, map, and then set state.
18258           - Implmemented SetWindowMinMax method; Metacity does not seem to
18259             honor the ZoomHints, though.
18260         * XplatUIWin32.cs:
18261           - Removed MINMAXINFO (moved to XplatUIStructs)
18262           - Added SetWindowMinMax stub (on Win32 the only way to set that
18263             information is in response to the WM_GETMINMAXINFO message, which
18264             is handled in Form.cs)
18265           - Added logic to SetVisible to set the proper window state when a 
18266             form is made visible (fixes #75720)
18267
18268 2006-01-26  Jackson Harper  <jackson@ximian.com>
18269
18270         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
18271         same way we handle them with Invoke.
18272
18273 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
18274
18275         * Form.cs:
18276           - Added tracking of window state so CreateParams can return
18277             the appropriate style
18278           - Moved setting of WS_CAPTION style in CreateParams to allow
18279             styles without caption
18280         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
18281           control if the TextBox property is accessed. Fixes #77345
18282         * Control.cs:
18283           - get_Created: now uses is_disposed and is_created to determine
18284             return value (suggested by Jackson)
18285           - CreateHandle: No longer exits if the handle is being recreated
18286           - RecreateHandle: If the handle is not yet created call the 
18287             appropriate method to create either control or handle. If the
18288             control is already created CreateHandle will simply exit instead
18289             of just creating the handle
18290         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
18291           now SendMessage WM_DESTROY directly to the control when DestroyWindow
18292           is called.
18293         * XplatUIX11.cs: 
18294           - When DestroyWindow is called, instead of waiting for the 
18295             DestroyNotification from X11, we directly post it to the WndProc
18296             and immediately dispose the hwnd object.
18297             Same applies to DestroyChildWindows, and this obsoletes the
18298             expose_pending tracking. Contrary to Win32 behaviour we destroy our
18299             child windows before our own, to avoid X11 errors.
18300           - Removed the direct sending of WM_PAINT on UpdateWindow
18301         * XplatUIWin32.cs:
18302           - Reworked DoEvents and GetMessage to allow access to internal queue
18303             even when trying non-blocking access to the queue.  Fixes #77335. 
18304             Based on a patch suggestion by Don Edvalson. The new private
18305             GetMessage can now also be used as a backend for a PeekMessage
18306             frontend version.
18307         * XplatUI.cs: Improved debug output for CreateWindow
18308
18309 2006-01-25  Jackson Harper  <jackson@ximian.com>
18310
18311         * Help.cs: Allow param to be null. Patch by Don Edvalson.
18312
18313 2006-01-24  Jackson Harper  <jackson@ximian.com>
18314
18315         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
18316         when we have a MaxDropItems lower then the selected index.
18317
18318 2006-01-24  Jackson Harper  <jackson@ximian.com>
18319
18320         * Control.cs: Don't allow selection of non visible controls, allow
18321         selection of controls without parents.
18322
18323 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18324
18325         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
18326         * DataGridDrawingLogic.cs: Add editing row only when is necessary
18327
18328 2006-01-23  Jackson Harper  <jackson@ximian.com>
18329
18330         * UpDownBase.cs: Make the textbox handle all the selection and
18331         tabbing. This fixes tabing to updown controls.
18332
18333 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18334
18335         * TextBoxBase.cs: fixes exception thown the object was null
18336
18337 2006-01-23  Jackson Harper  <jackson@ximian.com>
18338
18339         * ButtonBase.cs: Just use the base CreateParams. They set
18340         visibility and enabled correctly.
18341         * ComboBox.cs:
18342         * TrackBar.cs:
18343         * MonthCalendar.cs: Lets let the base set as much of the
18344         createparams as possible so we don't have duplicate code all over
18345         the place.
18346
18347 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
18348
18349         * ThemeGtk.cs: Added TrackBar and some experimental code to
18350           get double buffering back
18351
18352 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
18353
18354         * DataGrid.cs: Allows row number set internally higher than the last
18355         when creating a new row. Restores the editing functionality.
18356
18357 2006-01-20  Mike Kestner  <mkestner@novell.com>
18358
18359         * MimeIcon.cs: delay Image creation until the icons are accessed
18360         instead of creating 190 scaled images on GnomeHandler startup.
18361
18362 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
18363
18364         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
18365           first call base before processing the event. Fixes #77279
18366
18367 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
18368
18369         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
18370           that the stride for the GDI bitmap would match the stride of
18371           a DIB or a Cursor.
18372
18373 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
18374
18375         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
18376
18377 2006-01-19  Jackson Harper  <jackson@ximian.com>
18378
18379         * ComboBox.cs: Hookup the text controls keydown event so we get
18380         those when the text control has the focus.
18381
18382 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18383
18384         * Label.cs: Now using the base events instead of defining new ones;
18385           this allows us to just call the base properties without having to
18386           duplicate all base property logic 
18387
18388 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18389
18390         * Label.cs: A label by default is not a tabstop (Fixes one of our
18391           failing nunit tests)
18392
18393 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18394
18395         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
18396         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
18397
18398 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18399
18400         * Cursor.cs: Reimplemented creating cursor bitmaps without using
18401           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
18402           This fixes #77218
18403         * XplatUIWin32.cs: 
18404           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
18405             constructor creates images that can't be saved. Part of the fix
18406             for #76103
18407           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
18408           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
18409             bug fix for handling window state in forms properly)
18410
18411 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18412
18413         * ThemeGtk.cs: Simplify ScrollBar drawing
18414
18415 2006-01-18  Jackson Harper  <jackson@ximian.com>
18416
18417         * Splitter.cs: Set the default dock style for the splitter control
18418         in the constructor.
18419
18420 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18421
18422         * ThemeGtk.cs: Corrected StateType and ShadowType for
18423           gtk_paint_box
18424
18425 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18426
18427         * Control.cs: Make use of Theme.DoubleBufferingSupported
18428         * ThemeGtk.cs:
18429           - Added drawing for flat style buttons
18430           - Added ScrollBar drawing
18431
18432 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18433
18434         * ThemeClearlooks.cs: Removed some unneeded code.
18435         * ThemeGtk.cs: First part of ThemeGtk enhancements.
18436
18437 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18438
18439         * LinkLabel.cs: We need to update the hover drawing when
18440           leaving the control as well.
18441
18442 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
18443
18444         * DataGrid.cs: Clicking on non empty areas in the columns
18445            area was giving an exception
18446
18447 2006-01-17  Jackson Harper  <jackson@ximian.com>
18448
18449         * ThemeWin32Classic.cs:
18450         * ListView.cs: Do not draw/clip the headers when the header style
18451         is None.
18452
18453 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18454
18455         * DataGrid.cs: Fixes 77260
18456         
18457 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18458
18459         * DataGrid.cs: Clicking on a column on a empty grid was giving
18460           an exception
18461
18462 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18463
18464         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
18465           or any keypress will crash the grid.
18466
18467 2006-01-17  Mike Kestner  <mkestner@novell.com>
18468
18469         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
18470         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
18471         invisible/previously-visible items.
18472         [Fixes #76909]
18473
18474 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
18475
18476         * ThemeClearlooks.cs:
18477         - Added CL_Draw_Button method; now other theme controls that are 
18478           not derived from button or do not have a button can draw buttons
18479           too
18480         - Updated ComboBox drawing
18481         - Beautified RadioButton drawing
18482         - Corrected drawing of bottom and left tabs
18483         - Beautified DateTimePicker and MonthCalendar
18484         - Added CPDrawButton and CPDrawRadioButton
18485
18486 2006-01-16  Jackson Harper  <jackson@ximian.com>
18487
18488         * ComboBox.cs: Set the initial value of the scrollbar to the
18489         current index. Reduce the numbers of refreshs and IndexOfs called.
18490
18491 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
18492
18493         * FileDialog.cs: When the file listview is focused hitting the
18494           backspace key moves the fileview to the parent directory
18495
18496 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18497
18498         * Form.cs: 
18499           - Added RecreateHandle call when changing taskbar visibility to 
18500             trigger reparenting in Win32 driver (Fixes #75719)
18501           - If a window has minimize or maximize buttons, it cannot have
18502             a help button
18503         * XplatUIWin32.cs:
18504           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
18505             the toplevel form with FosterParent (A toolwindow not on the
18506             taskbar) (Fixes #75719)
18507           - Made FosterParent a toolwindow
18508
18509 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18510
18511         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
18512
18513 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18514
18515         * ToolTip.cs: If SetToolTip is called from a control and the mouse
18516           is currently over that control, make sure that tooltip_window.Text
18517           gets updated
18518
18519 2006-01-13  Mike Kestner  <mkestner@novell.com>
18520
18521         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
18522
18523 2006-01-13  Jackson Harper  <jackson@ximian.com>
18524
18525         * TreeView.cs: On MS GetNodeAt never actually factors in the X
18526         value passed.  Also redraw the selected node when we recieve
18527         focus, so tabbing between trees works correctly.
18528
18529 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18530
18531         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
18532           ~/.gconf/%gconf-tree.xml, so use
18533           .gconf/desktop/gnome/interface/%gconf.xml
18534
18535 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18536
18537         * TextControl.cs: Draw text in gray if control is disabled
18538
18539 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18540
18541         * TreeView.cs: Draw the focus rectangle outside the highlight, to
18542           make sure it's always visible. Fixes #76680.
18543
18544 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18545
18546         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
18547
18548 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
18549
18550         * PageSetupDialog.cs: Added.
18551         * PrintDialog.cs: Attributes.
18552         * PrintPreviewControl.cs: Updates.
18553         * PrintPreviewDialog.cs: Updates.
18554         
18555 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18556
18557         * Control.cs: Undid my selection check fix, since it's not needed
18558         * TextBoxBase.cs:
18559           - Now considering the presence of hscroll/vscroll when sizing
18560             vscroll/hscroll respectively. Fixed bug #77077
18561           - Added Left/Up/Down/Right to IsInputKey list to prevent
18562             ContainerControl from stealing them. This fixes what I broke
18563             with my last checkin.
18564
18565 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
18566
18567         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
18568           I finally understand how the property can be set without a setter :-)
18569
18570 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18571
18572         * Application.cs:
18573           - Switched RunLoop to use static Message.Create to create a 
18574             Message object
18575           - Added PreProcessMessage call in runloop for keyboard events; this
18576             is part of the fix for #77219, I overlooked this originally in the
18577             MSDN doc for PreProcessMessage
18578         * Control.cs:
18579           - Removed call to PreProcessMessage from handling of keyboard 
18580             messages; it's supposed to be done in the message pump
18581           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
18582             per MSDN documentation.
18583           - IsInputChar: All chars are input chars by default; removed the 
18584             parent calling chain, MS does not document that
18585           - PreProcessMessage: If IsInputChar is true, we want to return false
18586             to allow dispatching of the message
18587           - When selecting the next control, now also check that we're not
18588             selecting ourselves again and therefore return a false positive.
18589         * TextBoxBase.cs:
18590           - Tried to match return values for IsInputKey and ProcessDialogKey
18591             to what MS returns; moved processing of our special keys outside
18592             ProcessDialogKey since MS does not seem to return true on those.
18593           - Moved code that previously was in ProcessDialogKey into new private
18594             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
18595           - Reworked handling of WM_CHAR to not have to duplicate code from
18596             Control.cs anymore, instead we simply call down to base.
18597            
18598 2006-01-12  Jackson Harper  <jackson@ximian.com>
18599
18600         * ComboBox.cs: We always need to refresh the text area when
18601         EndUpdate is called. Fixes the combobox in the file dialog.
18602         * Control.cs: Don't create the creator_thread until the controls
18603         handle is created.  Also in InvokeRequired we check if the
18604         creator_thread is null. This gives the effect of InvokeRequired
18605         returning true if the controls handle is not created yet, and
18606         matches MS.
18607
18608 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18609
18610         * XplatUI.cs:
18611           - Added StartLoop() driver method. This is used to allow drivers to
18612             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
18613             loop for a particular thread
18614           - Added EndLoop() driver method. This is called once the message
18615             pump for the thread is shut down
18616           - Added SupportsTransparency method to allow the driver to indicate
18617             opacity support for windows
18618         * Form.cs:
18619           - Removed TODO attribute, completed AllowTransparency property
18620           - Added documented logic to Opacity
18621         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
18622           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
18623           versions of CompatibleTextRendering
18624         * X11Structs.cs: Added opacity atom to our atom enumeration
18625         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
18626           of a form might be set before it's reparented by the WM, and we need
18627           the opacity value without calling up to Form)
18628         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
18629           SupportsTransparency() driver methods
18630         * Application.cs: Now calling StartLoop and EndLoop driver methods
18631         * XplatUIX11.cs:
18632           - Added opacity atom registration
18633           - Added StartLoop()/EndLoop() methods. They're empty right now but
18634             will need to get implemented when we switch to a per-thread queue
18635           - Implemented SupportsTransparency() method
18636           - Implemented SetWindowTransparency() method
18637           - Added support for setting the opacity value when a window is
18638             reparented (since the opacity needs to be set on the WM frame)
18639         * XplatUIOSX.cs, XplatUIWin32.cs:
18640           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
18641
18642 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18643
18644         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
18645
18646 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18647
18648         * FileDialog.cs: Added ToolTip for MWFFileView
18649         * MimeIcon.cs: Rewrote GnomeHandler.
18650           - Get currently used gnome icon theme from
18651             ($HOME)/.gconf/%gconf-tree.xml
18652           - Make use of inherited icon themes
18653           - Support SVG icon themes like Tango via librsvg
18654
18655 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18656
18657         Revert's Jackson's revert which broke 2.0 builds.   Fix both
18658         builds. 
18659         
18660         * Application.cs: Move the use_compatible_text_rendering outside
18661         the NET_2_0 define.  If we ever need to use the
18662         use_compatible_text_rendering on the individual controls they will
18663         access the variable from the common shared code paths.
18664
18665 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18666
18667         * XplatUI.cs:
18668           - Added more granular debug options
18669           - Added method to print both window text and id
18670           - Switched debug output to use new Window() debug method
18671           - Added IsEnabled() driver method
18672           - Added EnableWindow() driver method
18673         * Form.cs:
18674           - Removed end_modal; no longer needed, new loop handles termination
18675             via 'closing' variable
18676           - If form is modal, setting DialogResult will now initiate loop
18677             termination via 'closing' variable
18678           - Added support for is_enabled/WS_DISABLED to CreateParams
18679           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
18680             does all the work
18681           - Removed code that's now in RunLoop from ShowDialog()
18682           - Added various documented sanity checks to ShowDialog()
18683           - Added handling of WM_DESTROY message; we set 'closing' on getting
18684             the message to indicate the message pump to terminate
18685           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
18686             send by the Application.ExitThread method. (We send the message
18687             to destroy the window after all other events have been
18688             processed through the queue, instead of destroying the handle 
18689             directly)
18690           - Moved code from Close() method to WM_CLOSE handler; added logic
18691             to only send close-related events if the form is not displayed
18692             modal
18693         * Splitter.cs (..ctor): Fixed typo in resource name
18694         * Control.cs:
18695           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
18696             brush now
18697           - set_Cursor: Now only setting calling into XplatUI if the handle for
18698             the control is already created; this avoids implict handle creation
18699             or crashes if it's not created
18700           - set_Enabled: Now setting the enabled state via the new driver method
18701             instead of just tracking it
18702           - CreateParams: Added logic to set WS_DISABLED based on enabled state
18703           - CreateControl: Reordered event firing and method calls to more
18704             closely fire events in the order MS does. Now setting the
18705             enabled state in the driver when creating the control.
18706           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
18707             match MS order
18708         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
18709           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
18710         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
18711         * Hwnd.cs:
18712           - Added tracking of window enabled state (get_Enabled/set_Enabled)
18713           - Added EnabledHwnd property to easily allow a driver to find the
18714             handle of the first enabled window in the parent chain (this is
18715             used by drivers to pass up input events of disabled windows)
18716         * XplatUIDriver.cs: Added IsEnabled() method
18717         * Application.cs:
18718           - Removed crude and obsolete exiting tracking variable
18719           - Removed internal ModalRun(); replaced by RunLoop()
18720           - Implemented private CloseForms() method to allow closing all 
18721             windows owned by a particular (or all) threads
18722           - Exit() now properly closes all windows without forcing the message
18723             pump to quit
18724           - Removed obsolete InternalExit() method
18725           - Changed Run() methods to use new RunLoop() message pump
18726           - Implemented new RunLoop() method for both modal and non-modal forms
18727         * CommonDialog.cs:
18728           - get_CreateParams: Added setting of WS_DISABLED
18729           - Simplified ShowDialog(); now all the work is done in RunLoop(),
18730             invoked via Form.ShowDialog()
18731         * NativeWindow.cs: We don't remove the window from the collection when
18732           the handle is destroyed; there might still be messages for it in the
18733           queue (mainly the resulting WM_DESTROY); instead it will be removed
18734           when Control calls InvalidateHandle in the WM_DESTROY handler
18735         * XplatUIX11.cs:
18736           - CreateWindow: Added logic to handle the WS_DISABLED window style
18737           - EnableWindow: Implemented based on Hwnd.Enabled
18738           - GetMessage: Reset PostQuitState so the method can be called again
18739           - Implemented support for disabled windows (passing messages to the
18740             first enabled parent) in handling all input messages
18741           - Added optimizations for handling Expose events
18742           - Implemeted new driver method IsEnabled()
18743           - Now always resetting paint pending tracking vars when we start paint
18744           - Re-implemented UpdateWindow via just sending a WM_PAINT message
18745         * XplatUIOSX.cs: Added IsEnabled method stub
18746         * XplatUIWin32.cs: Implemented new IsEnabled() method
18747
18748 2006-01-11  Jackson Harper  <jackson@ximian.com>
18749
18750         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18751         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
18752         variables a little.
18753         * ColorDialog.cs: Clear out the old form before adding the new
18754         panel.  
18755
18756 2006-01-11  Jackson Harper  <jackson@ximian.com>
18757
18758         * X11Dnd.cs: Make sure to add all the text formats when adding
18759         strings to the data object.
18760         * TreeNodeCollection.cs: When adding to a sorted tree we need to
18761         do some redrawing too.  Also change the UpdateNode to an
18762         UpdateBelow so the newly added node gets painted.
18763         
18764 2006-01-11  Miguel de Icaza  <miguel@novell.com>
18765
18766         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18767         LinkLabel.cs, PropertyGrid.cs: Implement the
18768         UseCompatibleTextRendering property for 2.x
18769
18770         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
18771
18772 2006-01-11  Jackson Harper  <jackson@ximian.com>
18773
18774         * TreeView.cs: Use the property for setting the selected node so
18775         the correct events get raised.
18776         * TreeNode.cs: Update the tree when the fore/back colours of a
18777         node are set.
18778
18779 2006-01-10  Jackson Harper  <jackson@ximian.com>
18780
18781         * TreeView.cs: Allow setting SelectedNode to null.
18782
18783 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18784
18785         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
18786
18787 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18788
18789         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
18790
18791 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18792
18793         * PrintDialog.cs: Added attributes and set default property values.
18794
18795 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18796
18797         * PrintControllerWithStatusDialog.cs: 
18798         Added PrintControllerWithStatusDialog.
18799
18800 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18801
18802         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
18803         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
18804
18805 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18806
18807         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
18808
18809 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18810
18811         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
18812         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
18813
18814 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
18815
18816         * MimeIcon.cs: Added internal class SVGUtil.
18817
18818 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
18819
18820         * FileDialog.cs: Don't crash if there are two files with the
18821           same name but different locations.
18822
18823 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
18824
18825         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
18826         dates across multiple month grids. Used to not highlight entire 
18827         month, but does now.
18828         
18829 2006-01-06  Jackson Harper  <jackson@ximian.com>
18830
18831         * MonthCalendar.cs: Removed DoEvents call to prevent a running
18832         message loop. Change timer intervals to numbers that seem more
18833         natural.
18834
18835 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
18836
18837         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
18838           object for location info since screen object is now implemented.
18839
18840 2006-01-05  Jackson Harper  <jackson@ximian.com>
18841
18842         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
18843         * AsyncMethodResult.cs: We no longer use a WeakReference for the
18844         AsyncMethodResult, this is because we ALWAYS want the
18845         ManualResetEvent to get set.
18846         * Control.cs: When disposing use an async invoke to call shutdown
18847         code, so that thigns don't block on the finalizer thread.  Also
18848         check if we even have a message loop before trying to send
18849         messages, if we don't then don't bother sending messages.
18850         - No more weak references for async methods
18851         * XplatUIDriver.cs: No more weak references for async methods.
18852
18853 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18854
18855         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
18856           returns two FontFamily with the same name
18857
18858 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
18859
18860         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
18861           drawing disabled text. Instead using the ColorGrayText color
18862
18863 2006-01-04  Jackson Harper  <jackson@ximian.com>
18864
18865         * TreeNode.cs: redraw the node when its image index is changed.
18866
18867 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
18868
18869         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
18870           time I checked there are no others like it.
18871
18872 2006-01-04  Jackson Harper  <jackson@ximian.com>
18873
18874         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
18875         this gives the behavoir I was looking for.
18876         * Control.cs: Special case Invoking EventHandlers, this matches MS
18877         and fixes part of bug #76326.
18878
18879 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18880
18881         * ThemeClearlooks.cs, FileDialog.cs:
18882           - Reflect the latest Theme class changes
18883           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
18884             with DateTime
18885             
18886 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18887
18888         * Theme.cs: Cache UI resource images and resize them if needed
18889
18890 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
18891
18892         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
18893           is called. This fixes the crash in Nexxia when setting the font
18894           attributes in the chat. [However, RTF needs a look-over to make sure
18895           that all SelectionXXX methods handle the special case that selection
18896           is empty and therefore the change must be applied to all text starting
18897           at the cursor/selection start]
18898
18899 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
18900
18901         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
18902           XplatUIOSX.cs: Added SendMessage and PostMessage methods
18903         * X11Keyboard.cs: Switched to new way of calling PostMessage
18904
18905 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
18906
18907         * Theme.cs: Added theme interface for images to allow the theme to
18908           control what images are used for things like FileDialog, MessageBox
18909           icons, etc.
18910         * MessageBox.cs: Now uses the new Theme icon/image interfaces
18911
18912 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
18913
18914         * FileDialog.cs:
18915           - Removed some dead code
18916           - Opening a recently used file does work now
18917           - Small UI enhancements
18918           - Refactoring
18919
18920 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
18921
18922         * FileDialog.cs: Forgot too add __MonoCS__
18923
18924 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
18925
18926         * FileDialog.cs: We are able to read recently used files now let's
18927           go on and write them.
18928
18929 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
18930
18931         * FileDialog.cs: Breathe some life into "last open"/"recently used"
18932           button
18933         * MimeIcon.cs: Do a check for the top level media type also
18934
18935 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
18936
18937         * ThemeClearlooks.cs:
18938           - Added CPDrawStringDisabled
18939           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
18940             some chars if the text doesn't fit into text_rect
18941           - DrawListViewItem: If View = View.LargeIcon center the image;
18942             rewrote the drawing of ListViewItem.Text if View = 
18943             View.LargeIcon
18944
18945 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
18946
18947         * MimeIcon.cs: Use default KDE icon theme if there is no
18948           "48x48" directory for the current icon theme, fixes #77114
18949         * Mime.cs: Disable not working and actually not used code. 
18950         * ThemeWin32Classic.cs:
18951           - Replace "new SolidBrush" in GetControlBackBrush and
18952             GetControlForeBrush with ResPool.GetSolidBrush
18953           - Changed DrawListViewItem from private to protected virtual
18954         * FileDialog.cs:
18955           - Added form.MaximizeBox = true
18956           - Don't throw an exception if there is a broken symbolic link
18957
18958 2005-12-23  Jackson Harper  <jackson@ximian.com>
18959
18960         * TabControl.cs: Give the panels focus, keyboard navigation is
18961         fixed so this works correctly now.
18962         - We need these key events also.
18963         * ToolBar.cs: Remove some of the poor mans double buffering.
18964         
18965 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
18966
18967         * ComboBox.cs: The internal TextBox now returns the focus.
18968
18969 2005-12-23  Jackson Harper  <jackson@ximian.com>
18970
18971         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
18972
18973 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
18974
18975         * Control.cs: Removed debug code
18976         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
18977           implicit children
18978
18979 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
18980
18981         * Control.cs: When creating the control, update the Z-order after
18982           all it's children are created, too. (Fixes nexxia not showing
18983           picturebox bug)
18984
18985 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
18986
18987         * Control.cs: Do not update the anchoring distances if layout is
18988           suspended, instead do it once layout is resumed
18989
18990 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
18991
18992         * Control.cs: 
18993           - After many hours of debugging, for both Jackson and
18994             myself, it turns out that it helps to set the parent of a control
18995             if you want to actually see it onscreen. In the spirit of that
18996             discovery, we're now setting the parent of the control and
18997             it's children when the control's handle is created. This fix
18998             will make Lutz Roeder's Reflector run happily. 
18999           - now just creating the handle instead of the whole control when
19000             getting a graphics context for the control.
19001
19002 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19003
19004         * ScrollableControl.cs: When calculating the canvas, don't consider
19005           the scrollbar widths. Instead, predict if horizontal scrollbar
19006           will affect canvas when deciding on vertical display and vice versa.
19007
19008 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19009
19010         * RichTextBox.cs: Set default RTF font for documents that don't
19011           have a font table (Fixes #77076)
19012
19013 2005-12-22  Jackson Harper  <jackson@ximian.com>
19014
19015         * TextBoxBase.cs: It's difficult to do, but you can have an empty
19016         clipboard. This prevents a NullRef in that case.
19017         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
19018         clipboard. PRIMARY is for the currently selected text only. (We
19019         should implement PRIMARY at some point.
19020
19021 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19022
19023         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
19024           a Unicode function with a structure that was defined in Ansi way.
19025           This fixes #76942.
19026
19027 2005-12-21  Jackson Harper  <jackson@ximian.com>
19028
19029         * StatusBar.cs: Statusbar handles its fore/back colours on it's
19030         on. Because thats how it rolls. (and this avoids it using ambient
19031         colours).
19032         * ThemeWin32Classic.cs: Use the proper back color for filling.
19033         * Menu.cs: Use the system menu bar color for drawing menu
19034         bars. Using the window back color will bring ambient colours into
19035         the picture.
19036
19037 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
19038
19039         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
19040           Bitmaps were created and not disposed.
19041
19042 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19043
19044         * Control.cs (CreateControl): Don't do anything if the control is
19045           already created, otherwise we'd fire the OnCreated event more than
19046           once
19047
19048 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19049
19050         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
19051           will always match. Instead return -1. Fixes #76464.
19052
19053 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19054
19055         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
19056           neither the beginning nor the end of the line (Fixes bug #76479)
19057
19058 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19059
19060         * Control.cs:
19061           - ControlNativeWindow.ControlFromHandle(): Now handling situation
19062             where handle is invalid
19063           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
19064             instead of slower linear search
19065         * NativeWindow.cs: Don't remove the window from the hashtable until
19066           after the driver has destroyed it (since the driver might use
19067           Control.FromHandle to lookup the control object
19068         * Hwnd.cs: Added DestroyPending property to track if a window is 
19069           already destroyed as far as the driver is concerned and only hasn't
19070           yet notified the control
19071         * XplatUIX11.cs:
19072           - Activate(): Check if the window is still valid before using the 
19073             handle
19074           - Implemented DestroyChildWindow() method to mark child windows as
19075             destroyed when a window is destroyed. This prevents situations 
19076             where we might call an X method based on queued events for a
19077             window that already has been destroyed but we haven't yet pulled
19078             the destroy method from the queue.
19079           - Added a call to the new DestroyChildWindow() method to the drivers
19080             DestroyWindow code. Also now marking the destroyed window itself
19081             as pending
19082
19083 2005-12-20  Jackson Harper  <jackson@ximian.com>
19084
19085         * StatusBar.cs:
19086         * StatusBarPanel.cs: Don't calculate panel sizes on draw
19087         anymore. Just do them when needed, also track the rects of panels
19088         so that we can optimize refreshing more in the future.
19089
19090 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
19091
19092         * ColorDialog.cs: Fixed focus drawing in small color controls
19093
19094 2005-12-19  Jackson Harper  <jackson@ximian.com>
19095
19096         * InternalWindowManager.cs:
19097         * MdiWindowManager.cs: Cleanup some coordinate system changes so
19098         moving windows works properly.
19099
19100 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
19101
19102         * Control.cs: 
19103           - Removed call to InitLayout() from SetBoundsCore(); doc says
19104             it's only called when a control is added to a container
19105           - Split InitLayout logic, moved to separate UpdateDistances() method
19106             since we need to perform those calculations more often than just
19107             when adding the control to a container. (Needed to fix #77022)
19108           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
19109           - Reduced the OnBindingContextChanged events count, don't send them
19110             unless the control is created, we still aren't totally matching
19111             MS, but I can't quite figure out some of their rules
19112
19113 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19114
19115         * ThemeClearlooks.cs: Corrected distance between ProgressBar
19116           stripes
19117
19118 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19119
19120         * ThemeClearlooks.cs:
19121           - Updated ProgressBar drawing
19122           - Corrected drawing of ScrollBars and scroll buttons
19123           - Some temporary fixes for minor pixel artefacts
19124
19125 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
19126
19127         * Control.cs:
19128           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
19129             cause events to be sent in the same order as MS does.
19130           - Added ChangeParent() method to trigger various OnXXXChanged events
19131             that need to be fired when a parent changes (This is a reworking
19132             of the patch from r54254, with the X11 errors fixed)
19133           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
19134             since on MS we get OnLayoutChanged events when calling Clear()
19135           - Changed Enabled property to consider parent state as well, if a
19136             parent is not enabled, the control will not be either
19137           - Changed Parent property to simply call Controls.Add() since that
19138             now does all the work required, this way we avoid code duplication
19139           - Threw in a few OnBindingsContextChanged calls to try and match
19140             when MS sends them. We seem to send a few too many, though.
19141           - Added call to CreateControl when adding the control to a parent.
19142             We were never calling CreateControl. Still needs some work, in
19143             some places we treat HandleCreated and ControlCreated as equal, 
19144             which is wrong
19145           - Removed obsolete commented out code from UpdateZOrder()
19146
19147 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19148
19149         * ThemeClearlooks.cs: Updated TrackBar drawing.
19150
19151 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
19152
19153         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
19154
19155 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
19156
19157         * FileDialog.cs: Add the Help button and the open readonly
19158           checkbox only if needed
19159
19160 2005-12-16  Jackson Harper  <jackson@ximian.com>
19161
19162         * Control.cs: Make sure we have an active menu before trying to
19163         process commands on it. Prevents menu-less forms from crashing
19164         when Alt is pressed.
19165         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
19166         Dieter Bremes.
19167         * RichTextBox.cs: Expand statement to help out gmcs and fix the
19168         2.0 build.
19169
19170 2005-12-16  Jackson Harper  <jackson@ximian.com>
19171
19172         * InternalWindowManager.cs: Don't translate tool windows screen
19173         coordinates. This fixes windows 'bouncing' around when being moved.
19174
19175 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19176
19177         * TextBoxBase.cs:
19178           - MaxLength now treats 2^31-1 equal to unlimited length (this is
19179             not quite MS compatible, MS uses that number only for single line
19180             and 2^32-1 for multi-line, but I figure it won't hurt keeping
19181             the limit at 2GB)
19182           - Now enforcing the MaxLength limit when entering characters
19183           - Added argument to internal Paste() method to track if it's called
19184             from programatically or via keyboard, since keyboard driven pastes
19185             need to enforce max-length
19186           - Added logic to Paste to only paste as many chars as MaxLength 
19187             allows
19188         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
19189         * TextControl.cs:
19190           - Added Length property to return number of characters in document
19191           - Added private CharCount property which only tracks actual chars
19192             in the document (no linefeeds) and fires event when CharCount
19193             changes
19194           - Added tracking of character count to all methods that alter it
19195           - Added LengthChanged event to allow applications to subscribe
19196             to any changes to the document
19197
19198 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19199
19200         * TextBox.cs: 
19201           - Removed local password_char field (moved to TextBoxBase)
19202           - Now setting the document's password var when password is
19203             set
19204         * TextBoxBase.cs:
19205           - Added password_char field (needed here so MultiLine can
19206             access it)
19207           - Added logic to MultiLine property setter to set the document's
19208             variable when password display is allowed
19209           - Removed debug code and made some debug code conditional
19210         * TextControl.cs:
19211           - Added RecalculatePasswordLine() method to handle special password
19212             char only lines
19213           - Added PasswordChar property, also added related tracking vars
19214           - Draw() method now uses local text var for grabbing text to draw,
19215             this var is set to line.text unless we're doing password display,
19216             then it is set to the pre-generated all-password-chars line
19217           - Added calling RecalculatePasswordLine() method for password lines
19218
19219 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19220
19221         * Hwnd.cs: 
19222           - Added Reparented property to allow tracking of Window Manager
19223             reparenting actions (which affect X/Y calculations of toplevel 
19224             windows)
19225           - Made ToString() print window handles in hex
19226         * XplatUIX11.cs:
19227           - AddConfigureNotify(): Now uses reparented state off Hwnd to
19228             determine if X/Y needs offsetting
19229           - AddConfigureNotify(): Fixed offset calculations
19230           - Now adds ReparentNotify messages into the queue
19231           - Now processes ReparentNotify messages and causes a 
19232             WM_WINDOWPOSCHANGED message to be sent upstream if a window
19233             is reparented (as most likely it's X/Y coordinates are changed
19234             due to that)
19235
19236 2005-12-14  Jackson Harper  <jackson@ximian.com>
19237
19238         * XplatUIX11.cs: Tool windows still need to respek focus.
19239
19240 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19241
19242         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
19243           have a working release
19244
19245 2005-12-13  Jackson Harper  <jackson@ximian.com>
19246
19247         * Form.cs: Update styles after setting the border style regardless
19248         of whether or not the window is using a window manager.
19249
19250 2005-12-13  Jackson Harper  <jackson@ximian.com>
19251
19252         * Form.cs: We now hook into an internal window manager instead of just an
19253         MDI subsystem, this is so we can have properly behaving tool windows.
19254         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
19255         * InternalWindowManager.cs: New internal class that acts as a
19256         window manager for tool windows and as a base for mdi windows.
19257         * MdiWindowManager.cs: New class that acts as a window manager for
19258         mdi windows.
19259
19260 2005-12-12  Jackson Harper  <jackson@ximian.com>
19261
19262         * Control.cs: Updates so we match behavoir for for implicit
19263         controls. Fixes explosions in MDI.
19264
19265 2005-12-12  Jackson Harper  <jackson@ximian.com>
19266
19267         * Control.cs: Implement Invalidate (Region).
19268
19269 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
19270
19271         * Control.cs: 
19272           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
19273             the same events as MS does. MS fires events for each property 
19274             except, for unknown reasons, Cursor, when the control is reparented. 
19275             I can't seem to totally match add/remove since MS also fires some 
19276             VisibleChanged events, which makes no sense. Consolidated the
19277             parenting code into a separate method so it can be called from
19278             both Add and Remove. set_Parent no longer needs any special logic
19279             as it calls the parent's add method which implicitly fires
19280             all events
19281           - Removed some obsolete code and debug output
19282           - Enabled state is inherited from parents, if this is enabled
19283
19284 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
19285
19286         * Form.cs: Removed commented out code
19287
19288 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
19289
19290         * Control.cs:
19291           - Added internal version of Invoke, with additional argument 
19292             indicating if we're calling it from a Dispose() handler. That
19293             way we can avoid BeginInvoke throwing an exception if we're
19294             calling for an already destroyed window.
19295           - Added a dispose argument to BeginInvokeInternal, and made the
19296             check if a valid window handle chain exists conditional on
19297             it not being a dispose call
19298           - Removed code in DestroyHandle to destroy our children. Since we
19299             now handle the WM_DESTROY message we will catch all our children
19300             being destroyed.
19301           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
19302         * Form.cs:
19303           - Added a field to track the application context of the form.
19304           - No need to set closing variable as response to WM_CLOSE, instead
19305             we destroy the window. We also call PostQuitMessage if the form
19306             has an application context (which makes it the main app form,
19307             which, when closed terminates the app)
19308         * XplatUI.cs:
19309           - Dropped Exit() method, it's naming was confusing
19310           - Added PostQuitMessage() which causes GetMessage to return false
19311             once the message queue is empty
19312         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
19313           PostQuitMessage()
19314         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
19315           no longer a valid XplatUI method, but left it in since it's used
19316           internally. Added empty PostQuitMessage() method.
19317         * MenuAPI.cs: Replaced call to Exit() with call to
19318           PostQuitMessage, even though this is probably no longer needed.
19319         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
19320         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
19321         * Application.cs:
19322           - Replaced call to XplatUI.Exit() with PostQuitMessage()
19323           - Removed old debug code that would call XplatUI for exception
19324             display, enabled standard exception handling (Still not enabled
19325             though, until NativeWindow's ExternalExceptionHandler define
19326             is removed
19327         * NativeWindow.cs:
19328           - Added internal method to allow control to update NativeWindow
19329             after a window has been destroyed
19330           - Added handling of already destroyed windows when calling i
19331             DestroyWindow
19332           - Added removal of handle from list on ReleaseHandle
19333         * XplatUIX11.cs:
19334           - Dropped GetMessageResult var and related code
19335           - Added PostQuitState to field to track if PostQuitMessage has been
19336             called
19337           - Dropped Exit() method
19338           - Added PostQuitMessage() method
19339           - GetMessage now will return false if PostQuitState is set and no
19340             more messages are in the queue.
19341           - Expose handler will no longer generate WM_PAINT messages if we are
19342             in PostQuitState since it's very likely any windows have already
19343             been destroyed, and since Hwnd won't get updated until we have
19344             processed the DestroyNotify we'd be causing X errors.
19345         
19346 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19347
19348         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
19349           Thanks to Mike for pointing out the err of my ways.
19350
19351 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19352
19353         * Control.cs(PreProcessMessage): Moved menu handling back, but
19354           after all other key handling, to match MS (who handles Menu in
19355           DefWndProc)
19356         * Menu.cs (WndProc): Removed my brainfart
19357
19358 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19359
19360         * Control.cs(PreProcessMessage): Removed special menu handling 
19361         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
19362
19363 2005-12-07  Mike Kestner  <mkestner@novell.com>
19364
19365         * Control.cs : special case SYSKEYUP so that we can adjust keynav
19366         state according in tracker.
19367         * Menu.cs : promote tracker field to base class and provide a tracker
19368         lookup capability.  Add/Remove shortcuts dynamically if the top menu
19369         has a tracker. Unparent items that are removed from the collection.
19370         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
19371         * Theme*.cs: add always_show_hotkeys field to support configurability
19372         of mnemonic display.  win32 doesn't show mnemonics until Alt is
19373         pressed.
19374
19375 2005-12-07  Jackson Harper  <jackson@ximian.com>
19376
19377         * MdiChildContext.cs: Use Control.ResetCursor.
19378         * Control.cs: ResetCursor needs to set the property so that the
19379         correct XplatUI call gets made.
19380
19381 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19382
19383         * Control.cs: More fixes to make our key events match MS. We
19384           were not setting the modifier state on KeyData, and we were
19385           not generating any events when Alt was pressed with a key
19386           since handling of WM_SYSxxx was missing for the OnKey methods.
19387
19388 2005-12-07  Jackson Harper  <jackson@ximian.com>
19389
19390         * MdiChildContext.cs: reenable the sizing code.
19391         - When the mouse leaves a window reset its cursor.
19392
19393 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19394
19395         * ThemeClearlooks.cs: Reflect latest Hwnd changes
19396
19397 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19398
19399         * Hwnd.cs: Now using the theme 3d bordersize to calculate
19400           widths of Fixed3D borders
19401
19402 2005-12-07  Jackson Harper  <jackson@ximian.com>
19403
19404         * MdiClient.cs: Fix warnings. Earn Mike's love.
19405
19406 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19407
19408         * ThemeClearlooks.cs:
19409           - Adjusted mouse over button color
19410           - Added first parts of CheckBox drawing
19411           - Added correct color for selected text background
19412           - Fixed ComboBox drawing
19413           - Added CPDrawBorder3D and CPDrawBorder
19414
19415 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19416
19417         * XplatUIX11.cs: Added call to XBell for AudibleAlert
19418
19419 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
19420
19421         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19422           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
19423           alert users via sound. We could add an enum arg with different
19424           types of alerts in the future
19425
19426 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19427
19428         * Control.cs: Fix behaviour problems pointed out by Mike
19429
19430 2005-12-05  Mike Kestner  <mkestner@novell.com>
19431
19432         * StatusBarPanel.cs: add Invalidate method and hook it into all the
19433         prop setters.  Calls parent.Refresh for now, but could be maybe be
19434         optimized with an internal method on StatusBar at some point.
19435         [Fixes #76513]
19436
19437 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
19438
19439         * RichTextBox.cs: Implemented get_SelectionColor
19440
19441 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
19442
19443         * ThemeClearlooks.cs:
19444           - Removed dead code
19445           - Draw black button border only if button is Form.AcceptButton
19446           - Draw correct button color for pressed RadioButton if the mouse 
19447             has entered the button
19448           - Updated ProgressBar drawing!
19449           - Updated CPDrawSizeGrip drawing
19450           - Updated StatusBarPanel drawing
19451
19452 2005-12-05  Mike Kestner  <mkestner@novell.com>
19453
19454         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
19455         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
19456
19457 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
19458
19459         * ThemeClearlooks.cs: Initial check-in, activate with
19460           export MONO_THEME=clearlooks
19461         * ThemeEngine.cs: Added ThemeClearlooks
19462
19463 2005-12-03  Mike Kestner  <mkestner@novell.com>
19464
19465         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
19466         [Fixes #76897]
19467
19468 2005-12-02  Jackson Harper  <jackson@ximian.com>
19469
19470         * Form.cs: If the child form has no menu the default main menu is
19471         used as the active menu.
19472
19473 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
19474
19475         * ListBox.cs: Check if any items exist before trying to resolve 
19476           coordinates into items
19477
19478 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19479
19480         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
19481           as the second color for the background hatch
19482
19483 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19484
19485         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
19486         * RichTextBox.cs: FormatText position arguments are 1-based, now making
19487           sure that what we pass to FormatText is always 1-based. Fixes #76885
19488
19489 2005-11-29  Miguel de Icaza  <miguel@novell.com>
19490
19491         * NumericUpDown.cs (EndInit): When we are done initializing,
19492         reflect any updates on the UI.
19493
19494 2005-12-02  Jackson Harper  <jackson@ximian.com>
19495
19496         * ImplicitHScrollBar.cs:
19497         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
19498         their container controls.
19499         * TreeView.cs: Use the new implicit scrollbars.
19500
19501 2005-12-02  Jackson Harper  <jackson@ximian.com>
19502
19503         * TreeView.cs: Make top_node internal so the TreeNodeCollections
19504         can play with it.
19505         * TreeNodeCollection.cs: If we remove the topnode we need to
19506         update topnode to the next node in line.
19507         - When clearing nodes go through the same process as removing
19508         them, so they get depareneted and checked if they are top node.
19509
19510 2005-12-01  Jackson Harper  <jackson@ximian.com>
19511
19512         * TreeView.cs: When imagelists are used the image area is
19513         selectable as well as the text.
19514         - If there are no selected nodes select the first one.
19515         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
19516         so don't do it more then we need to.
19517
19518 2005-12-01  Jackson Harper  <jackson@ximian.com>
19519
19520         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
19521         that arrows can be scaled.
19522
19523 2005-12-01  Jackson Harper  <jackson@ximian.com>
19524
19525         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
19526         fail. Patch by Dieter Bremes
19527
19528 2005-11-30  Jackson Harper  <jackson@ximian.com>
19529
19530         * Form.cs: Property is 2.0 only
19531         * PrintDialog.cs: Signature fix.
19532
19533 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19534
19535         * TextControl.cs: 
19536           - No longer artificially moves text 2 pixels down (now that we have
19537             borders this is no longer needed)
19538           - Added calcs for left, hanging and right indent
19539
19540 2005-11-23  Mike Kestner  <mkestner@novell.com>
19541
19542         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
19543
19544 2005-11-30  Jackson Harper  <jackson@ximian.com>
19545
19546         * MdiChildContext.cs: Set the cloned menus forms, as these don't
19547         get cloned as part of CloneMenu ().
19548         * Menu.cs: Make sure the parent of the items get set correctly
19549         when they are added.  And the owners are notified of the changes.
19550         * Form.cs: Create an ActiveMenu property, so that when MDI is used
19551         we can change the menu being displayed/handled by the form without
19552         changing the menu assosciated with the form.
19553         - Don't let Mdi children draw/handle menus.
19554         
19555 2005-11-30  Jackson Harper  <jackson@ximian.com>
19556
19557         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
19558         a MenuChanged event. Just to make the API a little more
19559         consistent.
19560         * MainMenu.cs:
19561         * MenuItem.cs: Use the new OnMenuChanged
19562         * MdiChildContext.cs: Handle menu merging.
19563         * Form.cs: Implement MergedMenu.
19564         
19565 2005-11-30  Jackson Harper  <jackson@ximian.com>
19566
19567         * Menu.cs: We were misusing Add. Add goes behind the specified
19568         index according to the docs, and does not replace the specified
19569         index. So I added an Insert method.
19570
19571 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19572
19573         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
19574           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
19575           is for Jackson
19576         * RichTextBox.cs: Added calls to base for DnD events
19577
19578 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
19579
19580         * TextControl.cs:
19581           - Fixed drag-selection related crash; style fixes
19582           - Implemented undo class
19583             o Implemented method to capture document state for specified
19584               range in document tree
19585             o Implemented method to restore captured document state
19586             o Implemented cursor tracking
19587             o Implemented basic undo stack
19588           - Added undo cursor tracking to methods altering cursor location
19589           - Added undo tracking to selection deletion (still missing
19590             other text-altering hookups)
19591         * RichTextBox.cs:
19592           - Added SelectionLength property
19593           - Implemented CanPaste()
19594           - Implemented Paste()
19595           - Added missing protected methods
19596           - Fixed RTF->Document conversion; now uses font index 0 and color 
19597             index 0 as the default font for the parsed text
19598           - Fixed RTF<->Document font size translation
19599           - Fixed RTF generation, now properly handles cross-tag boundaries
19600             for single line selection
19601           - No longer always appends blank line to generated RTF
19602           - Removed TODOs
19603           - Added missing attributes
19604           - Hooked up undo-related methods
19605         * TextBoxBase.cs:
19606           - Implemented Copy()
19607           - Implemented Paste()
19608           - Implemented Cut()
19609           - Fixed caret mis-behaviour on backspace across line-boundaries
19610
19611 2005-11-29  Jackson Harper  <jackson@ximian.com>
19612
19613         * MdiClient.cs: Add a method for activating mdi children. Very
19614         basic right now. I imagine someday it might need more girth.
19615         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
19616         children windows names are added to the menu item.
19617         * ThemeWin32Classic.cs: Draw the arrow if the item is an
19618         mdilist. This happens regardless of whether or not there are any
19619         mdi windows to see in the list, and according to my tests happens
19620         before the items are even added. Also happens if there isn't even
19621         an mdi client to get windows from.
19622
19623 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
19624
19625         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
19626         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
19627
19628 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
19629
19630         * DataGridTableStyle.cs:
19631           - Create always the styles for the missing columns even if they are
19632             provided by the user (not default table style)
19633         * DataGrid.cs:
19634           - Fixes bug 76770
19635           - Fixes SetDataBinding (always re-attach source)
19636           - Fixes SetNewDataSource (only clear styles if they are not for 
19637             this source)
19638          -  Expands OnTableStylesCollectionChanged to handle style refresh 
19639             and remove properly
19640
19641 2005-11-29  Jackson Harper  <jackson@ximian.com>
19642
19643         * FileDialog.cs: Implement missing bits, remove some dead
19644         code.
19645         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
19646         creation of the panel so that the options set on the dialog are
19647         seen when the panel is created.
19648         * TreeView.cs: raise a click when items are clicked.
19649         
19650 2005-11-29  Jackson Harper  <jackson@ximian.com>
19651
19652         * MdiClient.cs: Pass some signature methods through to base.
19653
19654 2005-11-28  Jackson Harper  <jackson@ximian.com>
19655
19656         * ListView.cs: Raise the click event when items are clicked.
19657
19658 2005-11-28  Jackson Harper  <jackson@ximian.com>
19659
19660         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
19661         a nullref.
19662
19663 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
19664
19665         * ThemeNice.cs: - Removed 1 pixel bitmaps
19666           - Use SmoothingMode.AntiAlias where it makes sense
19667             (ScrollButton arrow for example)
19668           - Enhanced Button focus drawing
19669           - Fixed ComboBox drawing (no artefacts anymore, focus
19670             rectangle is back again, reduced size of ComboButton, etc.)
19671           - Fixed RadioButton focus drawing for Appearence.Button
19672           - Slight ScrollButton redesign
19673           - Some LinearGradientBrush size fixes
19674           - GroupBoxes have now rounded edges
19675           - Fixed StatusBar drawing
19676
19677 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
19678
19679         * ThemeNice.cs: - Remove dead code
19680           - use correct background colors for menus, etc.
19681           - Fake pixel drawing with 1 pixel bitmaps
19682
19683 2005-11-24  Jackson Harper  <jackson@ximian.com>
19684
19685         * MdiClient.cs: Size the scrollbars when resizing the window.
19686         - Resize the maximized windows when the client is resized
19687         * Form.cs: Make the child context available
19688         
19689 2005-11-23  Jackson Harper  <jackson@ximian.com>
19690
19691         * MdiChildContext.cs: Don't size windows if they are maximized.
19692
19693 2005-11-23  Mike Kestner  <mkestner@novell.com>
19694
19695         * ContextMenu.cs: use MenuTracker.
19696         * Control.cs: remove menu handle usage.
19697         * Form.cs: remove menu handle usage.
19698         * Hwnd.cs: remove menu handle usage.
19699         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
19700         motion and clicks to the new Tracker handlers.
19701         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
19702         and handle usage.
19703         * MenuAPI.cs: refactored to combine popup and menubar event handling.
19704         Killed the MENU and MENUITEM data types and associated collections
19705         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
19706         MenuTracker class that exposes the leftovers from the old MenuAPI
19707         static methods. Restructured Capture handling so that only one grab is
19708         done for the entire menu hierarchy instead of handing off grabs to
19709         submenus. Tracker now has an invisible control to Capture when active.
19710         * MenuItem.cs: add sizing accessors, kill Create
19711         and handle usage.
19712         * Theme.cs: remove menu handle and MENU(ITEM) usage.
19713         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
19714         MENU(ITEM). remove menu handle usage, use Menu directly.
19715         * XplatUIDriver.cs: remove menu handle usage.
19716         * XplatUIOSX.cs: remove menu handle usage.
19717         * XplatUIWin32.cs: remove menu handle usage.
19718         * XplatUIX11.cs: remove menu handle usage.
19719
19720 2005-11-22  Jackson Harper  <jackson@ximian.com>
19721
19722         * Hwnd.cs: Don't compute the menu size for
19723         DefaultClientRectangle.
19724         - Reenable menu sizes being computed for GetClienRectangle.
19725         * Form.cs: Remove comment of trechery
19726         
19727 2005-11-22  Jackson Harper  <jackson@ximian.com>
19728
19729         * Hwnd.cs: The adjustments for the menu bar are made when it is
19730         attached to the form.
19731
19732 2005-11-19  Jackson Harper  <jackson@ximian.com>
19733
19734         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
19735         (just like on windows).
19736
19737 2005-11-19  Jackson Harper  <jackson@ximian.com>
19738
19739         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
19740         use real buttons anymore because they are in non client area. The
19741         one TODO here is that I need to somehow invalidate a section of
19742         the non client area.
19743
19744 2005-11-18  Jackson Harper  <jackson@ximian.com>
19745
19746         * Control.cs: Put the enum check back in now that MDI doesnt have
19747         to use this to set border styles.
19748         * Form.cs: Only set mdi child windows borders if the handle has
19749         been created.
19750         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
19751         this directly on to the driver.
19752         - Get the move start position before adjusting for the titlebar
19753         height, this fixes the windows "skipping" when they are first
19754         moved.
19755
19756 2005-11-18  Jackson Harper  <jackson@ximian.com>
19757
19758         * XplatUIX11.cs: Just compute the mdi borders separately as they
19759         don't totally match up with normal form borders.
19760
19761 2005-11-18  Jackson Harper  <jackson@ximian.com>
19762
19763         * Control.cs: Set WS_ styles for borders, so that the driver does
19764         not have to retrieve the control instance to figure out what kind
19765         of borders it should have.
19766         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
19767         driver can know its an mdi child easily.
19768         * XplatUIX11.cs: Get the border styles and whether the window is
19769         MDI from the Styles and ExStyles params instead of having to get a
19770         control. This prevents a chicken and egg problem.       
19771
19772 2005-11-18  Jackson Harper  <jackson@ximian.com>
19773
19774         * MdiClient.cs: Fix typo so scrollbars show up correctly.
19775
19776 2005-11-18  Jackson Harper  <jackson@ximian.com>
19777
19778         * MdiClient.cs: Calculate when to add and remove scrollbars
19779         correctly.
19780         * MdiChildContext.cs: Adjust the y position to take the titlebar
19781         into account.
19782         - No height for FormBorderStyle.None
19783
19784 2005-11-18  Jackson Harper  <jackson@ximian.com>
19785
19786         * Control.cs: Allow non enum values to be used for
19787         InternalBorderStyle.  MDI does this to set a special border style.
19788         - New utility methods for converting points to/from client coords
19789         - Add the newly created control to the Controls collection before
19790         updating its style. This way UpdateStyle can walk the control
19791         heirarchy to find the control if needed.
19792         so I don't need to create a new Point object all the time.
19793         * Form.cs: Let MDI windows handle their border styles.
19794         - Set styles on MDI windows so the correct title style is derived.
19795         * MdiChildContext.cs: Move all the painting and window handling
19796         into the non client area.
19797         - Use correct sizing and put correct buttons on frames based on
19798         the FormBorderStyle.
19799         - Notify the mdi client about scrolling
19800         - Need to handle the buttons ourselves now, because they are all
19801         in non client areas and we can't add controls there.
19802         * MdiClient.cs: Halfway to scrolling, this implementation is
19803         somewhat broken though, we need to check to make sure other
19804         windows aren't causing scrolling before removing the bars. Also
19805         the bars need to be drawn on top, maybe I can switch implicit
19806         controls to be on top.
19807         * Hwnd.cs: caption_height and tool_caption_height are now
19808         properties of an hwnd, this way they can be set by the driver
19809         based on the type of window they are.  In X11 the window manager
19810         handles the decorations so caption_height is zero unless its an
19811         MDI window.
19812         - Add 3 pixel borders for MDI windows (0xFFFF).
19813         - Get rid of some code duplication, have DefaultClientRectanle
19814         just call GetClientRectangle.
19815         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
19816         Hwnd now.
19817         - Set border styles differently for mdi windows.
19818         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
19819         Hwnd now.
19820         
19821 2005-11-15  Mike Kestner  <mkestner@novell.com>
19822
19823         * Menu.cs: when adding an item to the collection, if item is already 
19824         parented, remove it from the parent.
19825
19826 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
19827
19828         * X11DesktopColors.cs: Added KDE support
19829
19830 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
19831
19832         * XplatUIWin32.cs: 
19833           - Clipboard methods now can translate Rtf format
19834           - No longer removes clipboard contents whenever a new format is added
19835             to allow placing multiple formats on the clipboard
19836         * Clipboard.cs: Clipboard now supports getting a IDataObject and
19837           will place all formats contained in it onto the clipboard. Also
19838           now cleans the clipboard before placing a new object onto it
19839         * RichTextBox.cs:
19840           - Implemented set_Rtf
19841           - Implemented set_SelectedRtf
19842           - Created InsertRTFFromStream() method to allow single code base
19843             for all properties and methods that insert RTF into document
19844           - Removed debug output
19845         * TextControl.cs:
19846           - Fixed Delete(int) to fix up line numbers
19847           - Fixed ReplaceSelection to combine start and end line
19848           - Fixed serious DeleteChars bug that would leave the document tree
19849             broken
19850           - Improved DumpTree with several logic checks to detect broken
19851             document trees
19852           - Removed debug lines
19853           - Fixed Caret.WordForward/WordBack moving code, now always also 
19854             updates caret.tag (fixes crash when word-selecting across tag
19855             boundaries via keyboard)
19856           - Added Insert() method for inserting multiline text into documents
19857           - Fixed DeleteChars() calculation errors that would cause a broken
19858             tag chain with multiple tag lines
19859           - DeleteChars() no longer crashes on multi-tag lines if not all tags
19860           - Split() no longer moves caret if split is at caret location
19861           - ReplaceSelection() now updates the cursor and re-displays it
19862           - ReplaceSelection() now uses new Insert() method to avoid code
19863             duplication
19864           - FormatText() can now handle formatting partial lines
19865         * TextBoxBase.cs:
19866           - Append now uses new TextControl.Insert() method (this avoids 
19867             duplicate code)
19868           - Implemented Ctrl-X (Cut) (
19869           - Implemented Ctrl-C (Copy)
19870           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
19871             regeneration when pasting text; roundtripping Copy&Paste within
19872             edit control still fails due to some calculation bugs in GenerateRTF)
19873           - The Delete key will now remove the current selection if it is visible
19874         * TextBox.cs: Removed debug lines
19875         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
19876           driver to be initialized and can't therefore be done via a static ctor)
19877
19878 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
19879
19880         * TextControl.cs: Added backend code for finding char arrays and strings
19881         * TextBoxBase.cs:
19882           - Added mouse wheel scroll support
19883           - Added support for VScroll and HScroll events
19884         * RichTextBox.cs:
19885           - Implemented all seven Find() variants
19886           - Implemented GetCharFromPosition()
19887           - Implemented GetCharIndexFromPosition()
19888           - Implemented GetLineFromIndex()
19889           - Implemented GetPositionFromCharIndex();
19890           - Implemented SaveFile for PlainText and UnicodeText
19891           - Fixed set_Font, now setting a new font applies that font to
19892             the whole document
19893           - Implemented generic Document to RTF converter
19894           - Implemented SaveFile for RichText format (still missing unicode
19895             conversion for non-ansi chars)
19896           - Implemented get_Rtf
19897           - Implemented get_SelectedRtf
19898
19899 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
19900
19901         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
19902           to allow any captures to be released before triggering OnClick. This
19903           way a click handler may capture the mouse without interference.
19904         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
19905           This way we send them even though X may not allow a grab (if the window
19906           isn't visible, for example)
19907
19908 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
19909
19910         * DataGridViewRowEventArgs.cs: DataGridView implementation
19911         * DataGridViewElement.cs: DataGridView implementation
19912         * DataGridViewComboBoxCell.cs: DataGridView implementation
19913         * DataGridViewDataErrorContexts.cs: DataGridView implementation
19914         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
19915         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
19916         * ImageLayout.cs: DataGridView implementation
19917         * DataGridViewComboBoxColumn.cs: DataGridView implementation
19918         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
19919         * DataGridViewSelectionMode.cs: DataGridView implementation
19920         * IDataGridViewEditingControl.cs: DataGridView implementation
19921         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
19922         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
19923         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
19924         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
19925         * DataGridViewColumnSortMode.cs: DataGridView implementation
19926         * DataGridView.cs: DataGridView implementation
19927         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
19928         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
19929         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
19930         * Padding.cs: DataGridView implementation
19931         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
19932         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
19933         * DataGridViewRowEventHandler.cs: DataGridView implementation
19934         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
19935         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
19936         * DataGridViewButtonCell.cs: DataGridView implementation
19937         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
19938         * DataGridViewEditMode.cs: DataGridView implementation
19939         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
19940         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
19941         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
19942         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
19943         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
19944         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
19945         * DataGridViewCellEventHandler.cs: DataGridView implementation
19946         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
19947         * DataGridViewCellStyleConverter.cs: DataGridView implementation
19948         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
19949         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
19950         * DataGridViewColumnEventArgs.cs: DataGridView implementation
19951         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
19952         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
19953         * QuestionEventArgs.cs: DataGridView implementation
19954         * IDataGridViewEditingCell.cs: DataGridView implementation
19955         * DataGridViewTriState.cs: DataGridView implementation
19956         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
19957         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
19958         * DataGridViewColumnCollection.cs: DataGridView implementation
19959         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
19960         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
19961         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
19962         * DataGridViewColumn.cs: DataGridView implementation
19963         * DataGridViewCellBorderStyle.cs: DataGridView implementation
19964         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
19965         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
19966         * DataGridViewRow.cs: DataGridView implementation
19967         * DataGridViewImageCellLayout.cs: DataGridView implementation
19968         * DataGridViewImageCell.cs: DataGridView implementation
19969         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
19970         * DataGridViewCheckBoxCell.cs: DataGridView implementation
19971         * DataGridViewHeaderCell.cs: DataGridView implementation
19972         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
19973         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
19974         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
19975         * DataGridViewTextBoxColumn.cs: DataGridView implementation
19976         * QuestionEventHandler.cs: DataGridView implementation
19977         * DataGridViewCellStyleScopes.cs: DataGridView implementation
19978         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
19979         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
19980         * DataGridViewCell.cs: DataGridView implementation
19981         * DataGridViewCellEventArgs.cs: DataGridView implementation
19982         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
19983         * DataGridViewCellStyle.cs: DataGridView implementation
19984         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
19985         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
19986         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
19987         * TextFormatFlags.cs: DataGridView implementation
19988         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
19989         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
19990         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
19991         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
19992         * DataGridViewButtonColumn.cs: DataGridView implementation
19993         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
19994         * HandledMouseEventArgs.cs: DataGridView implementation
19995         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
19996         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
19997         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
19998         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
19999         * DataGridViewRowCollection.cs: DataGridView implementation
20000         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
20001         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
20002         * DataGridViewHitTestType.cs: DataGridView implementation
20003         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
20004         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
20005         * DataGridViewColumnEventHandler.cs: DataGridView implementation
20006         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
20007         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
20008         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
20009         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
20010         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
20011         * DataGridViewContentAlignment.cs: DataGridView implementation
20012         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
20013         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
20014         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
20015         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
20016         * DataGridViewPaintParts.cs: DataGridView implementation
20017         * DataGridViewCellCollection.cs: DataGridView implementation
20018         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
20019         * DataGridViewImageColumn.cs: DataGridView implementation
20020         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
20021         * DataGridViewElementStates.cs: DataGridView implementation
20022         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
20023         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
20024         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
20025         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
20026         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
20027         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
20028         * DataGridViewRowHeaderCell.cs: DataGridView implementation
20029         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
20030         * DataGridViewTextBoxCell.cs: DataGridView implementation
20031         * DataGridViewBand.cs: DataGridView implementation
20032         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
20033         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
20034         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
20035         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
20036         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
20037         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
20038         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
20039         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
20040         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
20041         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
20042         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
20043
20044 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
20045
20046         * ThemeWin32Classic.cs: 
20047           - Draw the outside focus rectangle around buttons
20048           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
20049             doesn't use end caps for every dash of a line anymore. This
20050             workaround ignores the forecolor.
20051
20052 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
20053
20054         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
20055           endian safe.
20056
20057 2005-11-07  Jackson Harper  <jackson@ximian.com>
20058
20059         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
20060
20061 2005-11-07  Jackson Harper  <jackson@ximian.com>
20062
20063         * ScrollableControl.cs: Calculate the maximum and change vars
20064         (more) correctly so that scrollbars appear as a sensible size.
20065
20066 2005-11-04  Jackson Harper  <jackson@ximian.com>
20067
20068         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
20069         collection.
20070         * TreeView.cs: When the tree is sorted null out the top_node so
20071         that it is recalculated.
20072         - Use dotted lines instead of dashed lines to match MS better.
20073
20074 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
20075
20076         * ListView.cs: 
20077           - Implements key search for items. Useful when browsing files with FileDialog
20078           - When changing view mode or when clear the items reset scrollbar positions
20079
20080 2005-11-04  Jackson Harper  <jackson@ximian.com>
20081
20082         * CurrencyManager.cs: Implement the MetaDataChanged event, the
20083         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
20084         as to what the method may do as there is no real way of creating a
20085         derived CurrencyManager and calling the method. 
20086
20087 2005-11-03  Jackson Harper  <jackson@ximian.com>
20088
20089         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
20090         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
20091         method which seems to just be used internally to refresh the tabs.
20092
20093 2005-11-03  Jackson Harper  <jackson@ximian.com>
20094
20095         * TabControl.cs: Implement the remove method. Fix some broken
20096         comments.
20097
20098 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20099
20100         * DateTimePicker.cs:
20101           - Added missing DateTimePickerAccessibleObject class
20102           - Added missing events
20103           - Added OnFontChanged method
20104         * Form.cs: Added missing attributes
20105         * TreeView.cs: Added missing attributes
20106
20107 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
20108
20109         * GridItemCollection.cs: Fix signatures
20110
20111 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20112
20113         * XplatUI.cs: Updated build rev/date
20114         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
20115           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
20116         * Application.cs: Trigger context-specific ExitThread events
20117
20118 2005-11-03  Jackson Harper  <jackson@ximian.com>
20119
20120         * Menu.cs:
20121         * MainMenu.cs:
20122         * GridTableStylesCollection.cs:
20123         * Timer.cs:
20124         * TabPage.cs:
20125         * HelpProvider.cs:
20126         * StatusBar.cs:
20127         * MonthCalendar.cs: Signature fixes
20128
20129 2005-11-03  Jackson Harper  <jackson@ximian.com>
20130
20131         * TreeNodeCollection.cs: Remove should not be virtual.
20132         * TreeView.cs: Implement the last of the missing methods.
20133
20134 2005-11-03  Jackson Harper  <jackson@ximian.com>
20135
20136         * TreeNodeConverter.cs: Implement to get off my class-status back.
20137
20138 2005-11-03  Jackson Harper  <jackson@ximian.com>
20139
20140         * TreeView.cs: Hookup the bits for drag and drop.
20141         * TreeNode.cs: Don't cache the tree_view or index anymore, now
20142         that nodes can be moved from tree to tree easily this just causes
20143         all sorts of problems.
20144         * TreeNodeCollection: Don't need to give treenodes an index and
20145         treeview anymore when they are added, these are computed on the
20146         fly. Also make sure to remove a node before its added.
20147
20148 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20149
20150         * TextControl.cs:
20151           - Added CaretSelection enum
20152           - Added comparison methods to Marker struct, makes selection code
20153             more readable
20154           - Added SelectionStart and SelectionEnd as 'moveable' location for
20155             the CaretDirection enum and handler
20156           - Added selection_prev variable to track optimized invalidation for
20157             word and line selection
20158           - Added SelectionVisible property (returns true if there is a valid 
20159             selection)
20160           - Switched CaretHasFocus to only display the caret if there is no
20161             visible selection
20162           - Avoiding StringBuilder.ToString to retrieve a single char, instead
20163             using the direct character index; should be much faster
20164           - Added various conditional debug statements
20165           - Fixed invalidation calculation for selection ranges
20166           - Added ExpandSelection() method to support word and line selection
20167           - Switched SetSelectionToCaret to use new Marker compare overloads
20168           - Added central IsWordSeparator() method to determine word 
20169             separators/whitespace and FindWordSeparator() to streamline common
20170             usage of IsWordSeparator()
20171         * TextBoxBase.cs:
20172           - Removed unneeded grabbed variable, it was just mirroring
20173             Control.Capture
20174           - No longer firing OnTextChanged event when Text setter is called,
20175             since the base will fire the event for us
20176           - Added handling of Ctrl-Up/Down selection
20177           - Added handling of Shift-Cursorkey selection
20178           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
20179             words
20180           - Added handling of Shift and Ctrl-Shift-Home/End selection
20181           - Removed some debug output
20182           - Added handling for single/double/tripple-click to place caret/
20183             select word/select line respectively (Fixes bug #76031)
20184           - Added support for drag expansion of word/line selection
20185         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
20186           current selection
20187
20188 2005-11-02  Jackson Harper  <jackson@ximian.com>
20189
20190         * X11Dnd.cs: If the drag is going to and from a MWF window just
20191         copy the data instead of sending it out through the X Selection
20192         mechanism.
20193
20194 2005-11-02  Jackson Harper  <jackson@ximian.com>
20195
20196         * X11Dnd.cs:
20197         * XplatUIX11.cs: When in a drag we don't want motion notify
20198         messages to get passed on to the other controls. This prevents
20199         mouse move messages from showing up in the drag source.
20200
20201 2005-11-02  Jackson Harper  <jackson@ximian.com>
20202
20203         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
20204         the correct button is release to end a drag.
20205         * XplatUIX11.cs: Make the button state internal so the drag system
20206         can access it.  Dragging needs to know about all button releases,
20207         not just left button.
20208
20209 2005-11-02  Miguel de Icaza  <miguel@novell.com>
20210
20211         * Form.cs (Icon): If the icon is null, reset the icon to the
20212         default value. 
20213
20214         * Cursor.cs: When writing the AND-mask bitmap do not include the
20215         number of colors, but hardcode those to two (black and white),
20216         fixes the loading of color cursors (Paint Dot Net).
20217
20218         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
20219         turn off autoscaling.
20220
20221         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
20222
20223 2005-11-02  Jackson Harper  <jackson@ximian.com>
20224
20225         * X11Dnd.cs: Make sure to send a status message if the pointer
20226         enters a control that can not accept a drop, otherwise the cursor
20227         isn't updated correctly. Also tried to compress the lines of code
20228         a bit.
20229
20230 2005-11-02  Jackson Harper  <jackson@ximian.com>
20231
20232         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
20233         set actions correctly.  This isn't perfect as XDND and win32 have
20234         some differences on how you allow actions. I'll clear this up by
20235         adding a path for drag from MWF to MWF windows.
20236         * XplatUIX11.cs: Hook into the dnd system.
20237
20238 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
20239
20240         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
20241         previously shown but they are no longer need it. Very obvious when 
20242         browsing files with FileDialog.
20243
20244 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
20245
20246         * Control.cs: We always need to call OnPaintBackground. We pretty much
20247           ignore AllPaintingInWmPaint and always do the painting there, whether 
20248           it's set or not, since we always ignore the WM_ERASEBKGND message 
20249           (which we don't generate on X11). This fixes #76616.
20250         * Panel.cs: Removed unneeded background painting. This happens properly
20251           in Control.cs already
20252
20253 2005-10-31  Mike Kestner  <mkestner@novell.com>
20254
20255         * Menu.cs: Add items to collection before setting their index.
20256         * MenuItem.cs : add range checking with ArgumentException like MS.
20257         [Fixes #76510]
20258
20259 2005-10-31  Jackson Harper  <jackson@ximian.com>
20260
20261         * ListBox.cs: Invalidate if the area is visible at all not just
20262         contained in the visible rect. Fixes unselection of semi visible
20263         items.
20264
20265 2005-10-31  Jackson Harper  <jackson@ximian.com>
20266
20267         * Control.cs: Consistently name the dnd methods. Make them
20268         internal so we can override them to match some MS behavoir
20269         internally.
20270         * Win32DnD.cs: Use the new consistent names.
20271
20272 2005-10-31  Jackson Harper  <jackson@ximian.com>
20273
20274         * TreeView.cs: Don't draw the selected node when we lose focus.
20275
20276 2005-10-31  Jackson Harper  <jackson@ximian.com>
20277
20278         * X11Dnd.cs: We still need to reset the state even though a full
20279         reset isn't being done, otherwise status's still get sent all over
20280         the place.
20281
20282 2005-10-31  Jackson Harper  <jackson@ximian.com>
20283
20284         * Control.cs: Make the dnd_aware flag internal so the dnd
20285         subsystem can check it. Catch exceptions thrown in dnd handlers to
20286         match MS behavoir.
20287         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
20288         * X11Dnd.cs: Handle null data in the converters. Set the XDND
20289         version when sending a XdndEnter. Use the control/hwnd dnd_aware
20290         flags to reduce the number of dnd enters/status's sent.
20291
20292 2005-10-31  Jackson Harper  <jackson@ximian.com>
20293
20294         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
20295
20296 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
20297
20298         * PictureBox.cs: Fixes 76512
20299
20300 2005-10-28  Jackson Harper  <jackson@ximian.com>
20301
20302         * X11Dnd.cs: Early implementation to support winforms being a drag
20303         source for data on X11. Also restructured the converters so they
20304         can go both ways now.
20305         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
20306         
20307 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
20308
20309         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
20310           clipboard requests
20311
20312 2005-10-27  Jackson Harper  <jackson@ximian.com>
20313
20314         * TreeNode.cs: Implement serialization so my DnD examples will work.
20315
20316 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
20317
20318         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
20319           TreeView.cs: Don't dispose objects that are not owned.
20320           
20321 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
20322
20323         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
20324           should retrieve the current cursor and report that, but XplatUI
20325           doesn't (yet) have an interface for that (and I'm not sure I even
20326           can, on X11)
20327         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
20328           until any message loop processing is done (and the WM_SETCURSOR
20329           replaces the cursor to the proper one)
20330         * XplatUIX11.cs: 
20331           - Fixed override behaviour, we can't set the cursor globally on X11, 
20332             just for our windows.
20333           - Invalidating the System.Drawing X11 display handle when we are
20334             shutting down
20335         * Control.cs: Fix to make csc happy
20336
20337 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
20338
20339         * TextBoxBase.cs: 
20340           - get_Text: Add last line (without trailing newline) to returned
20341             value (Fixes 76212)
20342           - get_TextLength: Count last line in returned length
20343           - ToString: Call Text property instead of duplicating code
20344
20345 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
20346
20347         * ImageList.cs: Dispose ImageAttributes objects.
20348
20349 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20350
20351         * ImageList.cs: Use attribute constructors with less arguments where
20352           possible.
20353
20354 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20355
20356         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
20357           Use typeof instead of strings when assembly is referenced. Added
20358           some more comments.
20359
20360 2005-10-21  Jackson Harper  <jackson@ximian.com>
20361
20362         * ListView.cs: Raise a double click event. Also tried to somewhat
20363         fix when the selectedindexchanged event is raised. Its still
20364         broken though.
20365
20366 2005-10-21  Jackson Harper  <jackson@ximian.com>
20367
20368         * TreeView.cs: New method to invalidate the plus minus area of a
20369         node without invalidating the whole node (maybe this can be used
20370         in some more places).
20371         * TreeNodeCollection.cs: When adding to an empty node we need to
20372         invalidate its plus minus area so the little block shows up.
20373         
20374 2005-10-21  Jackson Harper  <jackson@ximian.com>
20375
20376         * TreeView.cs: Make sure that when we invalidate a node the bounds
20377         are big enough to cover the selected box and the focus
20378         rectangle. Use a different colour for the lines connecting nodes
20379         so they show up with all themes.
20380
20381 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20382
20383         * NativeWindow.cs: Don't call anything that could call into the driver,
20384           we might be on a different thread.
20385
20386 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
20387
20388         * Control.cs(Dispose): Since Dispose might run on a different thread,
20389           make sure that we call methods that could call into the driver via
20390           invoke, to avoid thread issues
20391
20392 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20393
20394         * XplatUI.cs: Removed finalizer
20395         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
20396           not allowing to be called on the finalizer thread.
20397
20398 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
20399
20400         * ImageList.cs:
20401           - Reverted r51889 and r51891.
20402           - Added ImageListItem class that stores unmodified image items and image
20403             properties required to create list images until handle is created.
20404           - Added AddItem and moved image creation logic to AddItemInternal.
20405           - Added CreateHandle method that creates images based on unmodified items.
20406           - Added DestroyHandle that changes state to store unmodified items.
20407           - Add and AddStrip methods no more create handle.
20408           - ReduceColorDepth has no return value.
20409           - Dispose destroys handle.
20410           - Modified other methods to reflect the above changes.
20411           - Implemented key support.
20412           - Added profile 2.0 members and attributes.
20413           - Added private Reset and ShouldSerialize methods that provide the same
20414             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
20415             them as they are private.
20416           - Added some more comments about implementation details.
20417
20418 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20419
20420         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
20421
20422 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20423
20424         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
20425
20426 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20427
20428         * DataGridDrawingLogic.cs: Fixes column hit calcultation
20429         * DataGridColumnStyle.cs: Remove debug message
20430
20431 2005-10-20  Jackson Harper  <jackson@ximian.com>
20432
20433         * TreeView.cs: We can always get input keys regardless of whether
20434         or not editing is enabled. They are used for navigation.
20435
20436 2005-10-20  Jackson Harper  <jackson@ximian.com>
20437
20438         * TreeNode.cs: Use the viewport rect for determining if a node
20439         needs to be moved for visibility. Don't use Begin/End edit. This
20440         calls a full refresh when its done.
20441         * TreeView.cs: New SetBottom works correctly.  Make the viewport
20442         rect property internal so the treenodes can see it. When clicking
20443         on a node we need to ensure that its visible because it might just
20444         be partly visible when clicked.
20445
20446 2005-10-20  Jackson Harper  <jackson@ximian.com>
20447
20448         * TreeNodeCollection.cs: Remove debug code.
20449
20450 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20451
20452         * Datagrid.cs: Implements column sorting in Datagrid
20453         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
20454
20455 2005-10-20  Jackson Harper  <jackson@ximian.com>
20456
20457         * TreeNodeCollection.cs: Remove items properly. Update the correct
20458         area after removing them.
20459
20460 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20461
20462         * Datagrid.cs: Should not call base.OnPaintBackground
20463
20464 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20465
20466         * XplatUIX11.cs (GetMessage):
20467           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
20468             window instead of client window
20469           - Now properly calculates NC_xBUTTONUP message coordinates
20470           - ScreenToMenu now properly calculates it's coordinates of whole 
20471             window, since menus are in the whole window, not in the client
20472             window
20473           - Added WholeToScreen coordinate translation method
20474
20475 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
20476
20477         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
20478           want to return a message, loop back to the beginning of the function
20479           and grab the next real message to process instead.
20480
20481 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20482
20483         * Splitter.cs: Properly set limits if no filler control is used
20484
20485 2005-10-19  Jackson Harper  <jackson@ximian.com>
20486
20487         * ColorDialog.cs: Don't show the help button if it is not enabled
20488         instead of disabling it (this is what MS does). Don't create the
20489         panel until the dialog is run, otherwise the vars (such as
20490         ShowHelp) are not set yet.
20491
20492 2005-10-19  Jackson Harper  <jackson@ximian.com>
20493
20494         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
20495         are reduced when adding nodes.
20496         * TreeNode.cs:
20497         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
20498         tree.
20499         
20500 2005-10-19  Jackson Harper  <jackson@ximian.com>
20501
20502         * FolderBrowserDialog.cs: End editing our treeview so the window
20503         actually gets refreshed.
20504
20505 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20506
20507         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
20508           Obsoleted handling of WM_ERASEBKGND, now always draws our background
20509           inside of WM_PAINT
20510
20511 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20512
20513         * MenuAPI.cs: Returns after Hidding window
20514         * XplatUIX11.cs: Added TODO found while debugging menu issues
20515
20516 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20517
20518         * XplatUIX11.cs: Do not re-map the whole window when it's size
20519           becomes non-zero unless it's supposed to be actually visible
20520
20521 2005-10-18  Jackson Harper  <jackson@ximian.com>
20522
20523         * TreeView.cs: We don't need to keep a count anymore.
20524         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
20525         use the Grow method.
20526
20527 2005-10-18  Jackson Harper  <jackson@ximian.com>
20528
20529         * TreeNodeCollection.cs: Insert is not supported on arrays, so
20530         implement it manually here.
20531
20532 2005-10-18  Jackson Harper  <jackson@ximian.com>
20533
20534         * ImageList.cs: Dont kill the list when the colour depth is
20535         changed, just change the colour depth of all the images.
20536         - Same goes for setting the image size. Just resize them all
20537         instead of killing the list softly.
20538
20539 2005-10-18  Jackson Harper  <jackson@ximian.com>
20540
20541         * Control.cs: Don't invalidate empty rectangles.
20542
20543 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20544
20545         * ListViewItem.cs:
20546           - Adds checked item to the Checked/Item lists (where empty before)
20547           - Do not add items to the Selected lists if they are already present
20548         * ListView.cs:
20549           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
20550           - When deleting items make sure that we delete them for the Selected
20551           and Checked list also.
20552
20553 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20554
20555         * Label.cs: Dispose objects no longer used
20556         * ThemeWin32Classic.cs: Dispose objects no longer used
20557
20558 2005-10-18  Jackson Harper  <jackson@ximian.com>
20559
20560         * TabControl.cs: Don't refresh the whole control when the tabs are
20561         scrolled, we just need to refresh the tab area.
20562
20563 2005-10-17  Jackson Harper  <jackson@ximian.com>
20564
20565         * XplatUIX11.cs: Compress code a little bit. Only calculate the
20566         after handle when we need it.
20567
20568 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20569
20570         * Control.cs: When the parent size changes, recalculate anchor 
20571           positions. Partial fix for #76462
20572
20573 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20574
20575         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
20576           drawn. Fixes #76462
20577
20578 2005-10-17  Jackson Harper  <jackson@ximian.com>
20579
20580         * MonthCalendar.cs: Don't create the numeric up down until our
20581         handle is created. Otherwise our handle is created in the
20582         constructor and we don't know if we are a WS_CHILD or WS_POPUP
20583         yet.
20584
20585 2005-10-17  Jackson Harper  <jackson@ximian.com>
20586
20587         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
20588         correctly.
20589
20590 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
20591         * TreeNode.cs : small logical fix (was using local var instead of field)
20592         
20593 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20594
20595         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
20596
20597 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20598
20599         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
20600
20601 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
20602
20603         * Control.cs: 
20604           - Re-implemented anchoring code. My first version was really broken.
20605             This fixes bug #76033. Unlike the previous implementation we will
20606             no longer have round errors since all numbers are calculated from
20607             scratch every time. Removed various anchor-related obsolete vars.
20608           - InitLayout no longer causes layout event firing and layout to be 
20609             performed
20610
20611 2005-10-16  Jackson Harper  <jackson@ximian.com>
20612
20613         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
20614         which was broken).
20615
20616 2005-10-16  Jackson Harper  <jackson@ximian.com>
20617
20618         * TabControl.cs: Remove debug code.
20619
20620 2005-10-16  Jackson Harper  <jackson@ximian.com>
20621
20622         * XEventQueue.cs: Increase the default queue size (very simple
20623         apps needed to grow the queue).
20624         * Hwnd.cs: No finalizer so we don't need to suppress
20625         finalization. Compute the invalid area manually so a new rectangle
20626         does not newto be created.
20627         * ScrollableControl.cs: Don't set any params (otherwise visibility
20628         isn't set correctly).
20629         * MdiChildContext.cs: New constructor takes the mdi parent so it
20630         doesn't have to be computed and avoids a crash on windows. Draw
20631         the window icon properly, and allow the text to be seen.
20632         * Form.cs: Use new MdiChildContext constructor. Make sure the
20633         child context isn't null in wndproc.
20634         * TabControl.cs: Don't set focus, this is muddling keyboard
20635         behavoir. Expand the tab rows when a window size increase will
20636         allow extra tabs to be seen. Don't allow tabs smaller than the
20637         width of a window to be scrolled out of view.
20638         * TreeNode.cs:
20639         * TreeView.cs: Use measure string to calculate a nodes width, the
20640         width is cached and only updated when the text or the font is
20641         changed. Don't check for expand/collapse clicks on the first level
20642         nodes if root lines are disabled.
20643         
20644 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
20645
20646         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
20647
20648 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20649
20650         * DataGridBoolColumn.cs: fixes warning
20651
20652 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20653
20654         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
20655         to match more to match more precisely the MS Net behavior
20656
20657 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20658
20659         * Hwnd.cs: Added field to track if window is mapped
20660         * XplatUIX11.cs: 
20661           - Unmap windows if they become 0-size, re-map when 
20662             they are >0 again; fixes #76035
20663           - Re-set our error handler after initializing X11Desktop
20664             to override any error handlers Gtk or whatever was called
20665             may have set.
20666
20667 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20668
20669         * CheckedListBox.cs: Removed unused vars
20670         * ListView.cs: Fixed signatures
20671         * RichTextBox.cs: Removed unused vars
20672         * TextBoxBase.cs: Removed unused vars
20673         * XplatUIWin32.cs: Removed unused vars
20674         * XplatUIX11.cs: Removed unused vars
20675         * XplatUI.cs: Updated version and date to latest published
20676
20677 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20678
20679         * Cursor.cs: Added private .ctor to work around a bug in
20680           resourceset (Thanks to Geoff Norton for the help on this)
20681         * SplitterEventArgs.cs: Made fields accessible so we don't
20682           waste boatloads of objects and can reuse the same one
20683           in Splitter
20684         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
20685           any captions and borders when generating screen coordinates
20686         * Splitter.cs: Reimplemented control, now fully complete, uses
20687           rubberband drawing, supports and obeys all properties, has
20688           proper cursors
20689
20690 2005-10-13  Miguel de Icaza  <miguel@novell.com>
20691
20692         * Form.cs (Form): Setup default values for autoscale and
20693         autoscale_base_size;  Make these instance variables, not static
20694         variables. 
20695
20696         (OnLoad): on the first load, adjust the size of the form.
20697
20698 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20699
20700         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
20701           width argument to DrawReversibleRectangle()
20702         * XplatUIWin32.cs, XplatUIX11.cs: 
20703           - Implemented width for DrawReversibleRectangle()
20704           - Added logic to DrawReversibleRectangle that recognizes a zero
20705             width or height and only draws a line in that situation
20706         
20707 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
20708
20709         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
20710         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
20711         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
20712           method (it uses our FosterParent window to get a graphics context)
20713
20714 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
20715
20716         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
20717           and SetWindowBackground methods
20718         * Control.cs:
20719           - Setting proper ControlStyles
20720           - We no longer call XplatUI.SetWindowBackground and XplatUI.
20721             EraseWindowBackground, instead we draw the window background
20722             ourselves in PaintControlBackground. This behaviour is
20723             required to match MS, where, when OnPaintBackground is not
20724             called, the background is not drawn.
20725           - Removed unneeded Refresh() in set_Text
20726         * Hwnd.cs: Dropped the ErasePending support. No longer needed
20727         * XplatUIX11.cs:
20728           - Created DeriveStyles method to translate from CreateParams to
20729             FormBorderStyle and TitleStyle, also handles BorderStyle (which
20730             matches FormBorderStyle enum values)
20731           - Consolidated SetHwndStyles and CalculateWindowRect border/title
20732             style calculations into single DeriveStyles method
20733           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
20734             from redrawing the whole window on any resize or expose.
20735           - Fixed CreateWindow usage of SetWindowValuemask. Before not
20736             all styles were applied to our whole/client window appropriately
20737           - Removed EraseWindowBackground() and SetWindowBackground() methods
20738           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
20739             no longer clear/redraw the background through X
20740           - Removed handling of erase_pending bit, we have no use for it (or
20741             so it seems)
20742         * XplatUIOSX.cs:
20743           - Removed generation and handling of WM_ERASEBKGND message
20744           - Removed EraseWindowBackground() and SetWindowBackground() methods
20745           - Removed handling of hwnd.ErasePending flag
20746         * XplatUIWin32.cs:
20747           - Removed EraseWindowBackground() and SetWindowBackground() methods
20748           - We no longer call EraseWindowBackground on PaintEventStart, we 
20749             ignore the fErase flag, erasing is handled in Control in the
20750             background handler
20751         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
20752           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
20753           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
20754           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
20755           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
20756           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
20757           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
20758
20759 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
20760
20761         * PropertyGrids.cs: Get sub properties
20762         * PropertyGridView.cs: Fix drawing code
20763
20764 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20765
20766         * ListBox.cs: Fixes 76383
20767
20768 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20769
20770         * DataGridTextBoxColumn.cs: Sets location and size before attachment
20771         * ThemeWin32Classic.cs: Fixes border drawing and calculations
20772         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
20773
20774
20775 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20776
20777         * ComboBox.cs: Fixes border drawing
20778
20779 2005-10-10  Miguel de Icaza  <miguel@novell.com>
20780
20781         * MimeIcon.cs: Ignore errors if the file can not be read.
20782
20783 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20784
20785         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
20786          - Fixed border calculations
20787          - Fixed horizontal scrolling in single column listboxes
20788          - Fixed drawing issues
20789
20790 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
20791
20792         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
20793           FormBorderStyle enum
20794         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
20795           code to determine FormBorderStyles from CreateParams
20796         * Form.cs:
20797           - Fixed bug where we'd set the wrong window styles if we were
20798             not creating an MDI window
20799           - Added call to XplatUI.SetBorderStyle when form borders are set
20800         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
20801         * Hwnd.cs:
20802           - Removed obsolete edge style
20803           - Switched from BorderStyle to FormBorderStyle
20804         
20805 2005-10-10  Jackson Harper  <jackson@ximian.com>
20806
20807         * Form.cs: Use the property to get the window handle instead of
20808         accessing it directly. Prevents a null reference exception.
20809
20810 2005-10-10  Jackson Harper  <jackson@ximian.com>
20811
20812         * TreeView.cs: Don't adjust the rect given to DrawString now that
20813         our libgdiplus draws correctly.
20814
20815 2005-10-08  Jackson Harper  <jackson@ximian.com>
20816
20817         * TreeView.cs: Don't try to find the clicked on node if there are
20818         no nodes in the tree.
20819
20820 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
20821
20822         * RichTextBox.cs:
20823
20824           restore
20825
20826 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
20827
20828         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
20829           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
20830           ErrorProvider.cs:
20831           Use ResPool for brushes and dispose System.Drawing objects that
20832           are not used anymore.
20833
20834 2005-10-07  Jackson Harper  <jackson@ximian.com>
20835
20836         * MdiChildContext.cs: Use the new borders instead of drawing them
20837         ourselves.
20838
20839 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
20840
20841         * Calling UpdateBounds after changing the window's BorderStyle 
20842         since the style can change the ClientSize
20843
20844 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20845
20846         * Control.cs: Made PaintControlBackground virtual
20847         * Panel.cs: Overriding PaintControlBackground instead of using paint
20848           event; paint event method was interfering with 'real' users of the
20849           event.
20850
20851 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
20852
20853         * ThemeWin32Classic.cs: remove border drawing since it is handled
20854         by the base control class now and was causing double border drawing.
20855
20856 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20857
20858         * Panel.cs: Redraw our background on paint. Not a pretty solution,
20859           but it does seem to match MS behaviour. This fixes bug #75324
20860
20861 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20862
20863         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
20864           somewhat hackish looking
20865
20866 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20867
20868         * TextBoxBase.cs:
20869           - We now accept Enter even if AcceptEnter is false, if the containing
20870             form does not have an AcceptButton configured (fixes bug #76355)
20871           - Calculations are now fixed to no longer use Width/Height, but
20872             ClientSize.Width/Height, since we now support borders (this was
20873             a result of fixing borders and therefore bug #76166)
20874           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
20875             true (fixes bug #76354)
20876         
20877 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20878
20879         * Control.cs: 
20880           - Defaulting BorderStyle and setting it in XplatUI when our window 
20881             is created
20882           - Added enum check to InternalBorderStyle setter
20883         * XplatUIX11.cs: 
20884           - Added drawing of window borders
20885           - Now properly calculates WM decorations offset for toplevel 
20886             windows (fixes bug #74763)
20887         * XplatUIWin32.cs: 
20888           - Implemented BorderStyles for windows (we're letting win32 draw 
20889             the border for us)
20890           - Fixed the signature for SetWindowLong
20891         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
20892           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
20893           setting borders
20894         * UpDownBase.cs: Remove drawing of borders, this is handled by
20895           the driver, outside the client area
20896         * ListView.cs: Removed bogus border calculations. The control should
20897           be oblivious to borders, since those are not part of the client
20898           area. 
20899         * X11DesktopColors.cs: Commented out (currently) unneeded variables
20900         * ThemeWin32Classic.cs: Removed border calculations from ListView 
20901           drawing code
20902
20903 2005-10-06  Jackson Harper  <jackson@ximian.com>
20904
20905         * MdiChildContext.cs: Clear out the old virtual position remove
20906         all the unneeded calls to CreateGraphics.
20907
20908 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20909
20910         * TextControl.cs: Use proper color for highlighted text; fixes #76350
20911
20912 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20913
20914         * Form.cs: 
20915           - Added loading and setting of our new default icon
20916           - Only set icon if window is already created
20917
20918 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20919
20920         * Label.cs:
20921           - Do not explicitly set the foreground and background colors, to
20922             allow inheriting from parents (fixes #76302)
20923           - Use Control's InternalBorderStyle property to deal with borders
20924
20925 2005-10-06  Jackson Harper  <jackson@ximian.com>
20926
20927         * MdiChildContext.cs: Use the new xplatui function to draw a
20928         reversible rect.
20929
20930 2005-10-06  Jackson Harper  <jackson@ximian.com>
20931
20932         * Form.cs: Add the parent before creating the child context cause
20933         we need the parent when setting up the child.
20934
20935 2005-10-06  Jackson Harper  <jackson@ximian.com>
20936
20937         * FolderBrowserDialog.cs: redo the tree population code so a
20938         second thread isn't used. Should be a lot faster and more stable
20939         now.
20940
20941 2005-10-05  Jackson Harper  <jackson@ximian.com>
20942
20943         * TreeView.cs: There are no expand/collapse boxes if the node has
20944         no children.
20945
20946 2005-10-05  Jackson Harper  <jackson@ximian.com>
20947
20948         * X11DesktopColors.cs: Get menu colours for the gtk theme.
20949
20950 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
20951
20952         * FileDialog.cs: Fix InitialDirectory
20953
20954 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
20955
20956         * ComboBox.cs:
20957                 - Fixes changing between styles
20958                 - Fixes simple mode
20959                 - Fixes last item crashing when navigating with keyboard
20960
20961 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
20962
20963         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
20964
20965 2005-10-05  Jackson Harper  <jackson@ximian.com>
20966
20967         * TreeView.cs: If updating the root node do a full refresh.
20968         * TreeNode.cs: The root node should be expanded by default. Also
20969         added a utility prop to tell if we are the root node.
20970         * TreeNodeCollection.cs: Only refresh if the node we are being
20971         added to is expanded. Also added a comment on a potential
20972         optimization.
20973         
20974 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
20975
20976         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
20977           in dispose method. Fixes #76330
20978
20979 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
20980
20981         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
20982
20983                 - Implements vertical and horizontal scrolling using XplatUI
20984                 - Fixes keyboard navagation
20985                 - Fixes EnsureVisible
20986                 - Drawing fixes
20987                 - Handles and draws focus properly
20988
20989
20990 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
20991
20992         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
20993           Create handle. NET_2_0: Destroy handle when value is null.
20994
20995 2005-10-03  Jackson Harper  <jackson@ximian.com>
20996
20997         * ScrollBar.cs: My last scrollbar patch was broken. This is a
20998         revert and a new patch to prevent the thumb from refreshing so
20999         much.
21000
21001 2005-10-02  Jackson Harper  <jackson@ximian.com>
21002
21003         * ScrollBar.cs: Don't update position if it hasn't actually
21004         changed. This occurs when you hold down the increment/decrement
21005         buttons and the thumb gets to the max/min.
21006
21007 2005-10-01  Jackson Harper  <jackson@ximian.com>
21008
21009         * Form.cs:
21010         * MdiChildContext.cs:
21011         * MdiClient.cs: Implement ActiveMdiChild in Form.
21012
21013 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
21014
21015         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
21016
21017 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
21018
21019         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
21020           be found
21021
21022 2005-09-30  Jackson Harper  <jackson@ximian.com>
21023
21024         * ListBox.cs: Don't do a full refresh unless some data has
21025         actually changed.
21026
21027 2005-09-30  Jackson Harper  <jackson@ximian.com>
21028
21029         * TreeView.cs: Make sure that the checkboxes size is factored in
21030         even when not visible.
21031
21032 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21033
21034         * FileDialog.cs: Fix Jordi's build break
21035
21036 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21037
21038         * FileDialog.cs: 
21039                 - Use standard the Windows colours for the combobox as espected
21040                 - Dispose objects that use resouces when no longer need them
21041
21042 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21043
21044         * X11DesktopColors.cs: Initial incomplete implementation
21045         * XplatUIX11.cs: Added call to initialize X11DesktopColors
21046
21047 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
21048
21049         * Theme.cs: 
21050           - Switched Theme color names to match the names defined in 
21051             System.Drawing.KnownColors. Life's hard enough, no need to make 
21052             it harder.
21053           - Added setters to all theme color properties so themes can set
21054             their color schemes. The setters also propagate the color changes
21055             to System.Drawing.KnownColors via reflection
21056         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
21057           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
21058           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
21059           use the new, more logical theme color names
21060         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
21061           post-NT colors
21062         * ThemeWin32Classic.cs:
21063           - Removed code to set the old classic Windows colors. Instead it
21064             now relies on the colors returned by System.Drawing.KnownColors
21065             which will be either modern static colors (Unix) or colors
21066             read from the user's configuration (Win32)
21067           - Updated to use the new, more logical theme color names
21068           - Switched DataGrid drawing code to use only Theme colors instead of
21069             a mix of System.Drawing.KnownColors and Theme colors
21070           - DrawFrameControl(): Removed code that fills the button area, the
21071             fill would overwrite any previous fill done by a control. This
21072             fixes bug #75338 
21073           - Added DrawReversibleRectangle() stub
21074         * ScrollableControl.cs: Set visible state to false when scrollbars
21075           are removed (pdn fix)
21076         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
21077           DrawReversibleRectangle() method to allow drawing primitive 
21078           'rubber bands'
21079         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
21080
21081 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21082
21083         * ImageList.cs: Add(Icon): Create handle.
21084
21085 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21086
21087         * ListView.cs:
21088         * ThemeWin32Classic.cs:
21089                 - Fixes detail mode
21090                 - Sets clippings
21091                 - Issues with drawing
21092
21093 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21094
21095         * ImageList.cs: Moved RecreateHandle back to ImageList as event
21096           source has to be the ImageList.
21097
21098 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21099
21100         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
21101
21102 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21103
21104         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
21105
21106 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21107
21108         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
21109
21110 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
21111         * GridItem.cs: Fixed TODOs
21112         * GridItemCollection.cs: Added ICollection interface
21113
21114 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21115
21116         * ImageList.cs: Resize icons when needed.
21117
21118 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
21119
21120         * ListViewItem.cs
21121                 - Fixes GetBounds and returns on screen rects
21122         * ListView.cs:
21123                 - Fixes vertical and horzintal scrolling of items
21124         * ThemeWin32Classic.cs:
21125                 - Fixes drawing
21126                 
21127 2005-09-29  Raja R Harinath  <harinath@gmail.com>
21128
21129         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
21130
21131 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
21132
21133         * ImageList.cs: Added comments about handle creation. Moved Handle,
21134           HandleCreated and OnRecreateHandle implementations to ImageCollection.
21135           Handle is created in Add methods.
21136
21137 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
21138          
21139         * DataGridDrawingLogic.cs: 
21140                 - Takes rows into account on Colum calculations
21141                 - Returns the column when clickig
21142         * DataGrid.cs:
21143                 - Fixes default HitTestInfo values
21144                 - Fixes HitTestInfo.ToString
21145                 - Fixes ResetBackColor          
21146         
21147 2005-09-28  Jackson Harper  <jackson@ximian.com>
21148
21149         * MdiChildContext.cs: Obey rules for fixed sized windows (no
21150         sizing or cursor changes). Also added some temp code to draw the
21151         titlebars text (Makes dev a little easier).
21152
21153 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
21154
21155         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
21156
21157 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
21158          
21159         * ListBox.cs: Fixes bug 76253
21160
21161 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
21162
21163         * ImageList.cs: Added comments about the current implementation. Added
21164           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
21165           Format32bppArgb to preserve transparency and can use Graphics.FromImage
21166           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
21167           with Bitmap.LockBits for better performance. Revised the whole file to
21168           match MS.NET behaviour and provide better performance. Non-public
21169           interface members are calling public members even when they throw
21170           NotSupportedException for better maintainability. Moved ColorDepth,
21171           ImageSize, ImageStream and TransparentColor implementations to
21172           ImageCollection for better performance as these properties are not used
21173           by ImageList.
21174         * ImageListStreamer.cs: Added a new internal constructor that takes an
21175           ImageList.ImageCollection and serializes Images based on
21176           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
21177           match ImageList property name.
21178
21179 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
21180
21181         * ListBox.cs: Fixes IndexFromPoint for last item
21182
21183 2005-09-27  Jackson Harper  <jackson@ximian.com>
21184
21185         * Form.cs: Set the position of new mdi children correctly.
21186
21187 2005-09-27  Jackson Harper  <jackson@ximian.com>
21188
21189         * MdiClient.cs: New mdi children need to be added to the back of
21190         the controls collection so the zorder is set correctly. Also add a
21191         count of all the child windows that have been created.
21192
21193 2005-09-27  Jackson Harper  <jackson@ximian.com>
21194
21195         * Form.cs (CreateParams): Setup MDI forms correctly.
21196
21197 2005-09-27  Jackson Harper  <jackson@ximian.com>
21198
21199         * MdiChildContext.cs:
21200         * MonthCalendar.cs:
21201         * UpDownBase.cs:
21202         * ListBox.cs:
21203         * ListView.cs:
21204         * TextBoxBase.cs:
21205         * TreeView.cs:
21206         * ScrollableControl.cs:
21207         * ComboBox.cs: Add implicit controls using the new implict control
21208         functionality in ControlCollection. Also try to block multiple
21209         control add in a suspend/resume layout to save some cycles.
21210         
21211 2005-09-27  Jackson Harper  <jackson@ximian.com>
21212
21213         * Control.cs: Add functionality to the controls collection to add
21214         'implicit controls' these are controls that are created by the
21215         containing control but should not be exposed to the user. Such as
21216         scrollbars in the treeview.
21217         * Form.cs: The list var of the ControlsCollection is no longer
21218         available because of the potential of implicit controls getting
21219         ignored by someone accessing the list directly.
21220
21221 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
21222
21223         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
21224           loose it's parent. (Fixed bug introduced in r49103 when we added
21225           setting the child parent to null on Remove)
21226
21227 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
21228
21229         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
21230         * Splitter.cs: Added missing attributes for BorderStyle property.
21231         * TextBoxBase.cs: Marked Calculate* methods internal.
21232         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
21233         MS.NET.
21234
21235 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
21236          
21237         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
21238
21239 2005-09-25  Jackson Harper  <jackson@ximian.com>
21240
21241         * TreeView.cs: Update the node bounds correctly regardless of
21242         whether the node is visible.
21243
21244 2005-09-25  Jackson Harper  <jackson@ximian.com>
21245
21246         * ImageList.cs: Don't dispose the image after it is added to the
21247         image list. Only reformat images that need to be resized.
21248
21249 2005-09-25  Jackson Harper  <jackson@ximian.com>
21250
21251         * ImageList.cs: Don't set the format when changing the image.
21252
21253 2005-09-25  Jackson Harper  <jackson@ximian.com>
21254
21255         * TreeView.cs: We can't just assume the node has a font. Use the
21256         treeviews font if no node font is available.
21257
21258 2005-09-25  Jackson Harper  <jackson@ximian.com>
21259
21260         * TreeView.cs: Allow the scrollbars to be reset with negative
21261         values.
21262         - Don't add scrollbars to negative sized windows.
21263
21264 2005-09-23  Jackson Harper  <jackson@ximian.com>
21265
21266         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
21267         old Mono.Posix. Also remove some stray code that shouldn't have
21268         been committed.
21269
21270 2005-09-23  Jackson Harper  <jackson@ximian.com>
21271
21272         * TreeView.cs: Attempt at proper sizing of the horizontal
21273         scrollbar. Also don't resize the scrollbars unless they are
21274         visible.
21275
21276 2005-09-23  Jackson Harper  <jackson@ximian.com>
21277
21278         * TreeView.cs: We don't need to expand the invalid area when the
21279         selection changes, as this is all drawn in the node's bounding
21280         box. The area needs to be expanded (previous typo was contracting
21281         it) when the focus rect moves.
21282
21283 2005-09-23  Jackson Harper  <jackson@ximian.com>
21284
21285         * TreeView.cs: Display the selection box under the correct
21286         circumstances. We were rendering white text with no selection box
21287         before.
21288
21289 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
21290
21291         * TextControl.cs(Split): Now updates selection start/end if it points 
21292           into a line that's being split. Fixes a FIXME and bug #75258
21293
21294 2005-09-23  Jackson Harper  <jackson@ximian.com>
21295
21296         * Binding.cs:
21297         * ListControl.cs: Don't use the path when retrieving binding
21298         managers from the binding context. My bat sense tells me that the
21299         path is only used on insertion.
21300
21301 2005-09-22  Jackson Harper  <jackson@ximian.com>
21302
21303         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
21304
21305 2005-09-22  Jackson Harper  <jackson@ximian.com>
21306
21307         * Splitter.cs: There are special cursors used for splitting.
21308         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
21309
21310 2005-09-22  Jackson Harper  <jackson@ximian.com>
21311
21312         * Splitter.cs: Change the cursor appropriately when the splitter
21313         is moused over, so the user actually knows there is a splitter
21314         there.
21315
21316 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21317
21318        * Label.cs : Fix ToString method to give same output as MS.NET
21319
21320 2005-09-22  Jackson Harper  <jackson@ximian.com>
21321
21322         * TreeView.cs: Create the scrollbars when the handle is created
21323         and add them right away, just make them invisble. Also account for
21324         the window being shrunk vertically to the point that the vert
21325         scrollbar needs to be added.
21326         - Remove some 0.5 adjustments to get around anti aliasing issues.
21327         
21328 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
21329          
21330         * MainMenu.cs: Fixes default value
21331         * MenuItem.cs: Fixes default value
21332
21333 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
21334
21335         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
21336
21337 2005-09-21  Jackson Harper  <jackson@ximian.com>
21338
21339         * Control.cs: Don't try to set the border style on the window if
21340         it hasn't been created. When the window is created the border
21341         style will be used.
21342
21343 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21344
21345         * Control.cs (Update): Don't call XplatUI if we don't have a
21346           window handle yet
21347
21348 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21349
21350         * ContainerControl.cs: Instead of throwing an exception, print
21351           a one-time warning about Validate not being implemented
21352         * XplatUIWin32.cs: Removed debug output
21353
21354 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21355
21356         * Control.cs: Only set XplatUI background if we expect the windowing
21357           system to handle the background. This stops controls that draw their
21358           own background from flickering
21359
21360         * XplatUIX11.cs: Support custom visuals and colormaps for window 
21361           creation. This allows, amongst other things, using MWF X11 windows 
21362           with OpenGL.
21363
21364 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21365
21366         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
21367           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
21368           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
21369           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
21370           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
21371           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
21372           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
21373           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
21374           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
21375           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
21376           GridColumnStylesCollection.cs, 
21377           IDataGridColumnStyleEditingNotificationService.cs,
21378           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
21379           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
21380           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
21381           TreeNodeCollection.cs, AmbientProperties.cs, 
21382           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
21383           DataObject.cs, ErrorProvider.cs, Splitter.cs,
21384           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
21385           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
21386           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
21387           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
21388           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
21389           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
21390           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
21391           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
21392           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
21393           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
21394           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
21395           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
21396           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
21397           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
21398           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
21399           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
21400           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
21401           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
21402           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
21403           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
21404           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
21405           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
21406           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
21407           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
21408           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
21409           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
21410           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
21411           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
21412           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
21413           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
21414           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
21415           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
21416           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
21417           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
21418           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
21419
21420 2005-09-21  Jackson Harper  <jackson@ximian.com>
21421
21422         * TreeNode.cs: Call Before/After Expand not Collapse when
21423         expanding.
21424
21425 2005-09-20  Jackson Harper  <jackson@ximian.com>
21426         
21427         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
21428
21429 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21430          
21431         * ListViewItem.cs:
21432                 - Fixes bug 76120
21433                 - Fixes proper storing of subitems
21434                 - Fixes not updated items
21435
21436 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
21437
21438         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
21439           things if our window handle isn't created yet. Also disabled 
21440           debug for TextBoxBase
21441
21442 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
21443
21444         * MenuAPI.cs: Remove filtering of events to allow menu usage
21445
21446 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21447
21448         * Cursor.cs: Allow null to be passed to Cursor.Current.
21449
21450 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
21451
21452         * ThemeWin32Classic.cs:
21453           - Change some private methods/fields to protected virtual so that 
21454             they can be accessed and overriden in derived classes
21455           - First refactoring of some methods. Derived themes now don't 
21456             need to duplicate the complete code from ThemeWin32Classic
21457         * ThemeNice.cs:
21458           - Added nice StatusBar
21459           - Derive from ThemeWin32Classic and not Theme
21460           - Removed duplicate ThemeWin32Classic code
21461
21462 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21463
21464         * Control.cs (ControlCollection.Add): If the value null is passed
21465         the control is ignored. 
21466
21467         Optimize this loop.
21468
21469 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
21470
21471         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
21472           PostQuitMessage state.
21473         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
21474
21475 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
21476
21477         * Application.cs: Our constructor will never get called, move 
21478           initialization to fields; fixes bug #75933
21479
21480 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21481
21482         * FileDialog.cs :
21483                 - Allow files to be selected properly using file name
21484                 combo box.
21485                 - Add ability to change diretory (absolute / relative)
21486                 using file name combo box.
21487
21488 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21489          
21490         * ListBox.cs: 
21491                 - Fixes Multicolumn listboxes item wrong calculations
21492                 - Allows to click when only one item is in the listbox
21493                 - Fixes crash when no items using keyboard navigation
21494
21495 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
21496
21497         * ComboBox.cs: Reverted almost everything from the latest patch which
21498           broke ComboBox
21499
21500 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
21501         
21502         * ToolTip.cs:
21503                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
21504         * ComboBox.cs:
21505                 - When DropDownStyle is Simple, it does not show scrollbar 
21506                 to the last item of the list.
21507                 - When DropDownStyle is Simple, it crashed when the list was 
21508                 scrolled down with the down cursor key.
21509                 - Fixed a bug that when DropDownStyle is DropDownList, the 
21510                 selected item was not shown.
21511                 - The position of the selected item was not preserved when 
21512                 the next dropdown happened.
21513         * ThemeWin32Classic.cs:
21514                 - Items were wrapped at the right end.
21515         * CheckedListBox.cs:
21516                 - Fixed Add method
21517         * ListBox.cs:
21518                 - Items should be fully shown.
21519                 - When resizing and vertical scrollbar disappeared, the item 
21520                 of index 0 should be on the top of the list.
21521                 - GetItemRectangle should consider the size of ver. scrollbar
21522         * StatusBar.cs:
21523                 - SizingGrip area should not be allocated when it is not 
21524                 displayed.
21525                 - Now it reflects MinWidth of the containing panel and 
21526                 fixed a crash that happens when its width becomes so small.
21527
21528 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21529
21530         * CheckedListBox.cs: Fixes bug 76028
21531         * ListBox.cs: Fixes bug 76028
21532
21533 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21534
21535         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
21536         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
21537
21538 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
21539
21540         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
21541
21542 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21543
21544         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
21545
21546 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21547
21548         * IRootGridEntry.cs: Added
21549         * PropertyGridCommands.cs: Added
21550         * PropertiesTab.cs: Added missing methods and property
21551         * PropertyGridView.cs: Made class internal
21552         * PropertyGridTextBox.cs: Made class internal
21553
21554 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21555
21556         * MimeIcon.cs: Try to check some other environment variables
21557           if "DESKTOP_SESSION" returns "default"
21558
21559 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21560
21561         * ThemeNice.cs: Corrected background colors (e.g. menus)
21562         * ColorDialog.cs: Use correct background colors for controls
21563
21564 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21565
21566         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
21567
21568 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
21569
21570         * RichTextBox.cs: Added initial implementation
21571         * lang.cs: Removed. Was accidentally checked in long time ago
21572         * TODO: Removed. Contents were obsolete
21573
21574 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21575                                                                                 
21576         * PropertiesTab.cs : Added
21577
21578 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21579                                                                                 
21580         * PropertyGrid.cs : Update
21581         * PropertyGridView.cs : Update
21582         * System.Windows.Forms.resx : Added images and strings
21583
21584 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
21585
21586         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
21587  
21588 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
21589
21590         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
21591           a busy loop right after the Ungrab the X11 display is otherwise 
21592           blocked
21593
21594 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
21595
21596         * ThemeWin32Classic.cs: Optimise the use of clipping
21597
21598 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
21599
21600         * DataGrid.cs: fixes recursion bug
21601
21602 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
21603
21604         * ThemeNice.cs: 
21605           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
21606           - Cleanup
21607
21608 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
21609
21610         * ThemeNice.cs: Draw nice ProgressBars
21611
21612 2005-09-01  Miguel de Icaza  <miguel@novell.com>
21613
21614         * VScrollBar.cs: Another buglet found by Aaron's tool. 
21615
21616         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
21617         bug finder.
21618
21619 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
21620
21621         * ThemeNice.cs:
21622           - Added nicer menu drawing
21623           - Updated DrawTab
21624           - some refactoring
21625
21626 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21627
21628         * CreateParams.cs (ToString): Made output match MS
21629         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
21630             handle is already created (to avoid forcing window creation)
21631         * XplatUIX11.cs: Set window text to caption after creating window,
21632           in case Text was set before window was created
21633         * Form.cs: Use this.Text instead of a static string as caption
21634
21635 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21636
21637         * NotifyIcon.cs: Don't set the window to visible; this screws
21638           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
21639           OnPaint without a bitmap)
21640         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
21641           happen very often anyway; we could add the check to the WM_PAINT 
21642           event generation code
21643
21644 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21645
21646         * NotifyIcon.cs: Fill the icon area with a background color, to 
21647           avoid 'residue' when transparent icons are drawn
21648         * XplatUIX11.cs:
21649           - Handle whole_window == client_window when destroying windows
21650           - SystrayAdd(): Set client_window to whole_window value to
21651             get mouse and other events passed to NotifyIcon
21652
21653 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21654
21655         * Form.cs: Set proper default for Opacity property
21656         * NotifyIcon.cs:
21657           - ShowSystray(): Don't bother creating telling the OS
21658             about the systray item if no icon is provided
21659           - Now handles WM_NCPAINT message to deal with whole/client window
21660             split
21661           - Create window as visible to not get caught by Expose optimization
21662         * Hwnd.cs: Removed debug message
21663         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
21664           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
21665             PaintEventStart/End to use new client argument
21666         * TextBoxBase.cs:
21667           - Commented out debug messages
21668           - Switched PaintEventStart/End to use new client argument
21669         * XplatUI.cs: Added client window bool to PaintEventStart()/
21670           PaintEventEnd() calls, to support drawing in non-client areas
21671         * XplatUIDriver.cs: 
21672           - Added client window bool to PaintEventStart()/PaintEventEnd() 
21673             calls, to support drawing in non-client areas
21674           - Added conditional compile to allow using MWF BeginInvoke 
21675             on MS runtime
21676         * XplatUIX11.cs:
21677           - Added some conditional debug output
21678           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
21679             whole/client window split
21680           - Implemented handling of client argument to PaintEventStart()/End()
21681         * Control.cs:
21682           - Throw exception if BeginInvoke() is called and the window handle
21683             or one of the window's parent handles is not created
21684           - Added conditional compile to allow using MWF BeginInvoke on
21685             MS runtime
21686           - get_Parent(): Only sets parent if handle is created. This avoids
21687             forcing window handle creation when parent is set.
21688           - Now fires Layout and Parent changed events in proper order
21689           - Switched to use Handle instead of window.Handle for Z-Order setting,
21690             the get_Parent() patch above causes us to possibly get null for 'window'
21691           - Implemented handling of client argument to PaintEventStart()/End()
21692           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
21693             default handling)
21694           - Now sends a Refresh() to all child windows when Refresh() is called
21695
21696 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
21697
21698         * Form.cs: Added (non-functional) Opacity property
21699         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
21700
21701 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
21702         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
21703           use export MONO_THEME=nice to activate it.
21704           Currently supported controls:
21705           - Button
21706           - ComboBox
21707           - ScrollBar
21708           - TabControl (TabAlignment.Top only, other will follow)
21709         * ThemeEngine.cs: Add theme nice
21710         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
21711           if enabled
21712
21713 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
21714
21715         * Splitter.cs: Resize docked control and its neighbor.
21716
21717 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21718         -- Making Windows with Menus layout correctly --
21719         * Form.cs : The first leg of the fix
21720                 Menu setter - adjust Client Size as needed to make space for the menu
21721                 SetClientSizeCore - doesn't call base version to be able to pass the 
21722                         menu handle to XplatUI.CalculateWindowRect
21723         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
21724         * XplatUIX11.cs: The critical second leg of the fix
21725                 GetWindowPos needs to use a recalculated client_rect
21726                 so that resizing the window doesn't break layout of child controls. 
21727                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
21728                 Lots of \t\n killed
21729
21730 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
21731
21732         * Label.cs: Now properly recalculates width and height on Font and Text
21733           changes if AutoSize is set
21734
21735 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21736         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
21737
21738 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
21739
21740         * ImageList.cs: Makes ToString method compatible with MS
21741
21742 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
21743
21744         * MenuAPI.cs: fixes bug 75716
21745
21746 2005-08-11 Umadevi S <sumadevi@novell.com>
21747         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
21748
21749 2005-08-11 Umadevi S <sumadevi@novell.com>
21750         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
21751
21752 2005-08-10  Umadevi S <sumadevi@novell.com>
21753         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
21754
21755 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
21756
21757         * Menu.cs: fixes bug 75700
21758         * MenuAPI.cs: fixes navigation issues
21759
21760 2005-08-09  Umadevi S <sumadevi@novell.com>
21761         * CheckedListBox.cs - simple fix for GetItemChecked.
21762
21763 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
21764
21765         * ComboBox.cs: Serveral fixes
21766         * ListBox.cs: Serveral fixes
21767
21768 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
21769
21770         * ComboBox.cs: Fixes FindString methods and GetItemHeight
21771         * ListBox.cs: Fixes FindString methods
21772
21773 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
21774
21775         * DataGrid.cs: fixes bugs exposed by new tests
21776
21777 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
21778
21779         * Mime.cs: Compile Mono assembly references only if compiling
21780           with Mono (Allows to build with VS.Net again)
21781
21782 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
21783
21784         * Control.cs (PaintControlBackground): Draw background image
21785         corrrectly.
21786         (CheckForIllegalCrossThreadCalls): Stubbed.
21787         
21788         * Form.cs (OnCreateControl): Center when should be centered.
21789         
21790         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
21791
21792 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
21793
21794         * Binding.cs: Binding to properties should be case unsensitive
21795
21796 2005-07-18 vlindos@nucleusys.com
21797
21798         * DataGrid.cs: fixes setmember order
21799
21800 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
21801
21802         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
21803         * FileDialog.cs: FileDialog is now resizable and uses the new
21804           MimeIconEngine
21805
21806 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
21807
21808         * DataGridTextBoxColumn.cs: default value
21809         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
21810         * GridTableStylesCollection.cs: fixes checking MappingName
21811         * DataGridDrawingLogic.cs: fixes drawing logic issues
21812         * DataSourceHelper.cs: rewritten to make compatible with more data sources
21813         * DataGrid.cs: fixes    
21814
21815 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
21816
21817         * MimeGenerated.cs: Use case sensitive comparer for
21818           NameValueCollections
21819
21820 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
21821
21822         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
21823         * ThemeWin32Classic.cs: bug fixes, code refactoring
21824         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
21825         * DataGrid.cs: bug fixes, code refactoring
21826         * DataGridTextBox.cs: bug fixes, code refactoring
21827         * DataGridColumnStyle.cs:  bug fixes, code refactoring
21828         * Theme.cs:  bug fixes, code refactoring
21829
21830 2005-07-01  Peter Bartok  <pbartok@novell.com> 
21831
21832         * TextControl.cs: Quick fix for the reported crash on ColorDialog
21833           and other text box usage
21834
21835 2005-07-01  Jackson Harper  <jackson@ximian.com>
21836
21837         * TabControl.cs: Make sure the bottom of the tab covers the pages
21838         border.
21839
21840 2005-06-30  Peter Bartok  <pbartok@novell.com> 
21841
21842         * Form.cs (ShowDialog): Assign owner of the dialog
21843         * TextBoxBase.cs: Always refresh caret size when deleting, caret
21844           might have been moved to a tag with different height
21845
21846 2005-06-30  Jackson Harper  <jackson@ximian.com>
21847
21848         * Form.cs: Don't create an infinite loop when setting focus
21849         * MenuItem.cs: Don't dirty the parents if we don't have any
21850
21851 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
21852
21853         * LibSupport.cs: Rename
21854
21855 2005-06-29  Peter Bartok  <pbartok@novell.com>
21856
21857         * TextBoxBase.cs: Re-align caret after deleting a character
21858         * TextControl.cs:
21859           - DeleteChars(): Ensure that tag covers the provided position
21860           - StreamLine(): Drop reference for dropped tag
21861
21862 2005-06-29  Peter Bartok  <pbartok@novell.com> 
21863
21864         * TextControl.cs: 
21865           - Selections now work properly, anchoring at the initial location
21866             and properly extending in either direction (SetSelectionToCaret(),
21867             SetSelectionStart() and SetSelectionEnd())
21868           - No longer redraws the whole control on selection change, now
21869             calculates delta between previous and new selection and only
21870             invalidates/redraws that area
21871           - Fixed FindPos() math off-by-one errors
21872           - Changed DeleteChars() to verify the provided tag covers the
21873             provided position, selections may have a tag that doesn't cover
21874             the position if the selection is at a tag border
21875           - Fixed off-by-one errors in DeleteChars()
21876           - Added missing streamlining check in DeleteChars() to remove
21877             zero-length tags
21878           - Implemented Invalidate() method, now properly calculates exposures
21879             between two given lines/positions
21880           - Implemented SetSelection()
21881           - Obsoleted and removed FixupSelection()
21882           - Improved RecalculateDocument() logic, removing code duplication
21883
21884 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21885
21886         * LibSupport.cs: changes to match different input/output arguments.
21887
21888 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21889
21890         * LibSupport.cs: added libsupport.so init routine.
21891
21892 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
21893         
21894         * ControlBindingsCollection.cs
21895                 - Throws an exception on null datasource when adding
21896                 - Checks for duplicated bindings when adding
21897
21898 2005-06-28  Jackson Harper  <jackson@ximian.com>
21899
21900         * TreeView.cs (OnKeyDown): Support left and right properly
21901         (navigates as well as expanding and collapsing.
21902         - Add support for Multiply, this expands all the selected nodes
21903         children.
21904         - Fix some tabbing.
21905
21906 2005-06-28  Jackson Harper  <jackson@ximian.com>
21907
21908         * TreeView.cs: Implement keyboard navigation, currently supports,
21909         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
21910         support for toggling checkboxes with the space bar.
21911
21912 2005-06-28  Jackson Harper  <jackson@ximian.com>
21913
21914         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
21915         tree.
21916
21917 2005-06-28  Jackson Harper  <jackson@ximian.com>
21918
21919         * TreeView.cs: Add missing event.
21920
21921 2005-06-27  Peter Bartok  <pbartok@novell.com> 
21922
21923         * TextControl.cs:
21924           - Made line ending size configurable (now allows for counting 
21925             lineendings as \n or \r\n)
21926           - Added margin to viewport to keep caret visible on right side
21927           - Fixed translation routines for line/pos to documentpos to consider
21928             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
21929           - Fixed some line-endings to be unix style
21930           - Fixed Document.FormatText to perform it's calculations 1-based
21931           - Added descriptions for a few methods that might otherwise get 
21932             used wrong
21933           - Added NOTE section with some basic conventions to remember at 
21934             the top of the file
21935           - Major fixup for RichTextBox selection drawing:
21936             * Fixed crashes when multiple tags on a single line were selected
21937             * fixed selection box drawing not overlaying text
21938             * fixed bogus offset calculation for tags not starting at index 1
21939             * Switched behaviour from using multiple Substrings of a 
21940               StringBuilder.ToString() to using multiple 
21941               StringBuilder.ToString(start, length) statements, hoping this is
21942               faster (kept original version commented out in the code, in case
21943               original version was faster)
21944         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
21945           alignment != Left
21946         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
21947           call it as well
21948
21949 2005-06-27  Jackson Harper  <jackson@ximian.com>
21950
21951         * TabControl.cs: Move to the left and right with the arrow
21952         keys. These keys don't cycle beyond first and last like
21953         tab. Refresh all the tabs when scrolling them to the left or
21954         right.
21955
21956 2005-06-27  Jackson Harper  <jackson@ximian.com>
21957
21958         * TabControl.cs:
21959           - ToString: Added method
21960           - CreateParams: Remove TODO and comment
21961           - OnKeyDown: Cycle through bounds properly.
21962           - SelectedIndex: Scroll to the right or left if we need to
21963           display the newly selected tab.
21964
21965 2005-06-23  Jackson Harper  <jackson@ximian.com>
21966
21967         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
21968         set.
21969
21970 2005-06-23  Jackson Harper  <jackson@ximian.com>
21971
21972         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
21973         CTRL-SHIFT-TAB, and HOME, END are there any others?
21974
21975 2005-06-23  Jackson Harper  <jackson@ximian.com>
21976
21977         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
21978
21979 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
21980         
21981         * DataGridTextBoxColumn.cs: fixes and enhancements
21982         * ThemeWin32Classic.cs: fixes and enhancements
21983         * DataGridBoolColumn.cs:  fixes and enhancements
21984         * DataGridDrawingLogic.cs:  fixes and enhancements
21985         * CurrencyManager.cs: fixes and enhancements
21986         * DataGrid.cs: fixes and enhancements
21987         * DataGridColumnStyle.cs:  fixes and enhancements
21988
21989 2005-06-22  Jackson Harper  <jackson@ximian.com>
21990
21991         * TabControl.cs: Add some missing methods that just call into the
21992         base. Make the TabPageCollection's IList interface behave in the
21993         same manner as the MS implementation.
21994
21995 2005-06-22  Peter Bartok  <pbartok@novell.com> 
21996
21997         * TextControl.cs: Added sanity check
21998         * TextBoxBase.cs: 
21999           - Fixed wrapping behaviour, don't set wrap on single line controls
22000             (this fixes the breakage of colordialog introduced in an earlier
22001              checkin)
22002           - Added rudimentary support for autoscrolling right-aligned controls
22003             (still needs fixing, also, center alignment scroll is missing)
22004
22005 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22006         
22007         * ScrollBar.cs: Fixes thumbpos on Maximum values
22008
22009 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
22010         
22011         * PropertyGridView.cs: Pass context information to UITypeEditors 
22012
22013 2005-06-21  Peter Bartok  <pbartok@novell.com> 
22014
22015         * TextBoxBase.cs:
22016           - Now calling PositionCaret with absolute space coordinates
22017           - Enabled vertical scrolling
22018           - Better tracking of scrollbar changes, tied into WidthChange
22019             event
22020           - Improved cursor tracking
22021           - Removed debug output
22022         * TextControl.cs:
22023           - PositionCaret coordinates are now works in absolute space, not 
22024             the canvas
22025           - Improved tracking of document size
22026           - Added events for width and height changes
22027
22028 2005-06-21  Peter Bartok  <pbartok@novell.com>
22029
22030         * Form.cs: Set focus to active control when form is activated
22031         * TextControl.cs: 
22032           - Added word-wrap functionality to RecalculateLine() 
22033           - Added some short function descriptions for VS.Net to aid in
22034             writing dependent controls
22035           - Added Caret property, returning the current coords of the caret
22036           - Added ViewPortWidth and ViewPortHeight properties
22037           - Added Wrap property
22038           - Added CaretMoved event
22039           - Removed some old debug code
22040           - Split() can now create soft splits
22041           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
22042           - Added method to format existing text
22043           - Fixed size/alignment calculations to use viewport
22044           - RecalculateDocument now can handle changing line-numbers while
22045             calculating lines
22046
22047         * TextBox.cs:
22048           - Added some wrap logic, we don't wrap if alignment is not left
22049           - Added casts for scrollbar var, base class switched types to
22050             also support RichTextBoxA
22051           - Implemented handling of scrollbar visibility flags
22052
22053         * TextBoxBase.cs:
22054           - Switched scrollbars type to RichTextBoxScrollBars to support
22055             RichTextBox
22056           - Added tracking of canvas width/height
22057           - Switched scrollbars to be not selectable (to keep focus on text)
22058           - Added central CalculateDocument() method to handle all redraw
22059             requirements
22060           - Added ReadOnly support
22061           - Added WordWrap support
22062           - Fixed handling of Enter key (we now treat it as a DialogKey)
22063           - Fixed caret positioning when h or v scroll is not zero
22064           - Fixed placing/generation of vertical scrollbar
22065           - Added CalculateScrollBars() method to allow updating scrollbar
22066             limits and visibility
22067           - Fixed handling of horizontal scroll
22068           - Added handling of vertical scroll
22069           - Implemented auto-'jump' when caret moves to close to a left or
22070             right border and there is text to be scrolled into view (currently
22071             there's the potential for a stack overflow, until a bug in
22072             scrollbar is fixed)
22073
22074 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
22075         
22076         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
22077
22078 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
22079
22080         * Mime.cs:
22081         - added inodes.
22082         - return application/x-zerosize for files with size zero
22083           (if no extension pattern matches).
22084         - check matches collection for strings too.
22085         - return only the first mime type if the name value
22086           collection has more than one mime type.
22087
22088 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
22089         
22090         * PropertyGrid.cs: Cleaned up some TODOs
22091         * PropertyGridView.cs: Added support for UITypeEditors
22092
22093 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22094         
22095         * DataGrid.cs: clears cached value
22096
22097 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22098
22099         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
22100         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
22101         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
22102         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
22103         
22104 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
22105
22106         * ThemeWin32Classic.cs: fixes colour
22107
22108 2005-06-15  Peter Bartok  <pbartok@novell.com>
22109
22110         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
22111         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
22112         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
22113         * Control.cs: Added some MWFCategory and MWFDescription attributes
22114         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
22115
22116 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
22117
22118         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
22119         usage
22120
22121 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
22122
22123         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
22124         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
22125         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
22126         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
22127         * DataGrid.cs: default datagrid settings for Default Styles, fixes
22128         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
22129
22130 2005-06-13  Jackson Harper  <jackson@ximian.com>
22131
22132         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
22133         isn't printed when the user enables dropping. (X11 does accept
22134         drops).
22135         
22136 2005-06-13  Jackson Harper  <jackson@ximian.com>
22137
22138         * TreeView.cs: Remove some TODOS.
22139
22140 2005-06-13  Jackson Harper  <jackson@ximian.com>
22141
22142         * Form.cs: Hook into the mdi framework.
22143         * MdiClient.cs: Use the base control collections add method so
22144         parents get setup correctly. Set the default back colour and dock
22145         style.
22146         * MdiChildContext.cs: New class, this bad actor handles an
22147         instance of an MDI window. Right now there is only basic
22148         support. You can drag, close, and resize windows. Minimize and
22149         Maximize are partially implemented.
22150
22151 2005-06-13  Jackson Harper  <jackson@ximian.com>
22152
22153         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
22154         freaky when both vals are negative. NOTE: There are probably other
22155         places in XplatUIX11 that this needs to be done.
22156
22157 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
22158
22159         * DataGrid.cs: implement missing methods, move KeyboardNavigation
22160         * DataGridColumnStyle.cs: fixes signature
22161
22162 2005-06-12  Jackson Harper  <jackson@ximian.com>
22163
22164         * XplatUIX11.cs: Use sizing cursors similar to the ones on
22165         windows.
22166
22167 2005-06-11  Jackson Harper  <jackson@ximian.com>
22168
22169         * StatusBarPanel.cs: Signature cleanups. Implement
22170         BeginInit/EndInit.
22171
22172 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
22173
22174         * DataGridTextBoxColumn.cs: Honors aligment
22175         * GridColumnStylesCollection.cs: Contains is case unsensitive
22176         * GridTableStylesCollection.cs: several fixes
22177         * DataGridTableStyle.cs: default column creation
22178         * DataGridDrawingLogic.cs: fixes
22179         * CurrencyManager.cs: ListName property
22180         * DataGrid.cs: multiple styles support
22181         * DataGridColumnStyle.cs: fixes
22182         
22183
22184 2005-06-10  Peter Bartok  <pbartok@novell.com>
22185
22186         * Control.cs(Select): Moved SetFocus call to avoid potential
22187           loops if controls change the active control when getting focus
22188         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
22189           the up/down buttons
22190
22191 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
22192
22193         * ImageListConverter.cs: Implemented
22194
22195 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22196
22197         * MonthCalendar.cs: Wired in NumericUpDown control for year
22198
22199 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22200
22201         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
22202           DoubleClick events, since they are not meant to be fired.
22203
22204 2005-06-09  Peter Bartok  <pbartok@novell.com>
22205
22206         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
22207           Jonathan's standalone controls into MWF, implemented missing
22208           events, attributes and methods; added xxxAccessible classes
22209         * AccessibleObject.cs: Made fields internal so other classes
22210           can change them if needed
22211
22212 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
22213
22214         * UpDownBase.cs: Complete implementation
22215         * NumericUpDown.cs: Complete implementation
22216         * DomainUpDown.cs: Complete implementation
22217
22218 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
22219
22220         * DataGridTextBoxColumn.cs: drawing fixes
22221         * DataGridCell.cs: fixes ToString method to match MSNet
22222         * DataGridTableStyle.cs: fixes
22223         * DataGridBoolColumn.cs: fixes, drawing
22224         * DataGridDrawingLogic.cs: fixes, new methods
22225         * DataGridTextBox.cs: Keyboard and fixes
22226         * DataGrid.cs:
22227                 - Keyboard navigation
22228                 - Scrolling fixes
22229                 - Row selection (single, multiple, deletion, etc)
22230                 - Lots of fixes
22231         
22232 2005-06-07  Jackson Harper  <jackson@ximian.com>
22233
22234         * ThemeWin32Classic.cs: Clear the background area when drawing
22235         buttons.
22236
22237 2005-06-06  Peter Bartok  <pbartok@novell.com>
22238
22239         * ImageListStreamer.cs: Fixed signature for GetData
22240         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
22241         * ComboBox.cs:
22242           - Added missing ChildAccessibleObject class
22243           - Added missing OnXXXFocus overrides, switched to using those
22244             instead of the event handler
22245         * Control.cs:
22246           - Added Parent property for ControlAccessibleObject
22247           - Fixed signatures
22248           - Fixed attributes
22249           - Added ResetBindings()
22250         * ListBindingConverter.cs: Implemented some methods
22251         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
22252         * ImageList.cs: Implemented basic handle scheme, removed TODOs
22253         * ContainerControl.cs: Fixed signature, now subscribing to the
22254           ControlRemoved event instead of overriding the handler, LAMESPEC
22255         * CurrencyManager.cs: Added missing attribute
22256         * MonthCalendar.cs: Added missing properties
22257
22258 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22259
22260         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
22261         
22262 2005-06-06  Gaurav Vaish and Ankit Jain
22263
22264         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
22265         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
22266         
22267 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22268
22269         * Control.cs: fixes CreateParams Width / Height.
22270
22271 2005-06-05  Peter Bartok  <pbartok@novell.com>
22272
22273         * Win32DnD.cs: Removed compilation warnings
22274
22275 2005-06-05  Peter Bartok  <pbartok@novell.com>
22276
22277         * Control.cs (CreateParams): Since we don't know if one of the
22278           properties we use is overridden, lets make sure if we fail accessing
22279           we continue with a backup plan
22280
22281 2005-06-05  Peter Bartok  <pbartok@novell.com>
22282
22283         * Win32DnD.cs:
22284           - Removed debug output
22285           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
22286             struct
22287           - Plugged resource leak
22288         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
22289           MS size
22290
22291 2005-06-05  Peter Bartok  <pbartok@novell.com>
22292
22293         * XplatUIWin32.cs: Removed DnD code
22294         * Win32DnD.cs: Implemented drop source and drop target functionality
22295
22296 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22297
22298         * UpDownBase.cs: remove duplicate addition of event, enable some code
22299         that was commented out.
22300         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
22301         Validate input when a key is pressed. It works fine now for every
22302         combination of Hexadecimal. Only missing some drawing love when sharing
22303         space with other controls.
22304
22305 2005-06-04  Peter Bartok  <pbartok@novell.com>
22306
22307         * Control.cs:
22308           - We need to pass a window for DragDrop, so enable callback events
22309           - Added DnD callback events when being a DragSource
22310         * XplatUI.cs (StartDrag): Added window handle argument
22311         * XplatUIDriver.cs (StartDrag): Added window handle argument
22312         * QueryContinueDragEventArgs: Made fields internally accessible so
22313           drivers can set them
22314         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
22315           can set them
22316
22317 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
22318
22319         * DataGridTextBoxColumn.cs: column text editing
22320         * DataGridTableStyle.cs: Respect columns styles created by the user
22321         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
22322         * DataGridBoolColumn.cs: bool column editing
22323         * DataGrid.cs: fixes to scrolling, properties, etc
22324         * DataGridTextBox.cs: handle keyboard
22325         * DataGridColumnStyle.cs: fixes
22326
22327 2005-06-02  Jackson Harper  <jackson@ximian.com>
22328
22329         * ImageListStreamer.cs: Somewhat broken implementation of
22330         GetObjectData. The RLE needs some work to match MS properly.
22331
22332 2005-06-02  Jackson Harper  <jackson@ximian.com>
22333
22334         * X11Dnd.cs: Attempting to keep at least one file in MWF
22335         monostyled.
22336
22337 2005-06-02  Peter Bartok  <pbartok@novell.com>
22338
22339         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
22340           that way
22341
22342 2005-06-02  Peter Bartok  <pbartok@novell.com>
22343
22344         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
22345         * XplatUI.cs: Added DoDragDrop() method
22346         * XplatUIDriver.cs: Added DoDragDrop() method
22347
22348 2005-06-02  Jackson Harper  <jackson@ximian.com>
22349
22350         * Splitter.cs: Implement BorderStyle.
22351
22352 2005-06-02  Jackson Harper  <jackson@ximian.com>
22353
22354         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
22355         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
22356         X11 using XDND.
22357
22358 2005-06-02  Peter Bartok  <pbartok@novell.com>
22359
22360         * DataObject.cs:
22361           - Added Data setter
22362           - Fixed broken insertion code for SetData, now also
22363             overwrites any existing entry of the same format name
22364         * Hwnd.cs: Added list of pointers that automatically gets
22365           freed when the window is disposed
22366         * XplatUI.cs: Call driver initialization method when loading
22367           a driver
22368         * Control.cs:
22369           - OnDragLeave takes EventArgs, not DragEventArgs
22370           - Added setting of WS_EX_ACCEPTFILES style when dropping is
22371             supported
22372           - Forces style update when drop state changes
22373         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
22374           not perfect since we cannot (yet) call the IDataObject.GetData()
22375           method, we keep getting 0x80004005 error, dunno why)
22376
22377 2005-06-02  Peter Bartok  <pbartok@novell.com>
22378
22379         * DragEventArgs.cs: Make fields internal so we can cache the
22380           object and re-set the fields from XplatUI
22381
22382 2005-06-02  Jackson Harper  <jackson@ximian.com>
22383
22384         * Control.cs: Add some internal methods so the DnD subsystem can
22385         raise DnD events. Also call into the driver when AllowDrop is set.
22386         * XplatUI.cs:
22387         * XplatUIDriver.cs: New method for setting whether or not a window
22388         is allowed to accept drag and drop messages.
22389                 
22390 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
22391         
22392         * ScrollBar.cs: Make sure that values sent in Scroll events
22393         are always between Maximum and Minimum.
22394
22395 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
22396
22397         * Menu.cs: Call MenuChanged when menuitem visibility has been
22398         changed.
22399         * MenuItem.cs: Rebuild menu when item is (not) visible.
22400         * MainMenu.cs: MainMenu has special MenuChanged.
22401         * Theme.cs: Caption and FrameBorderSize are not fixed.
22402         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
22403         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
22404         * XplatUIX11.cs,
22405         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
22406         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
22407
22408 2005-05-30  Jackson Harper  <jackson@ximian.com>
22409
22410         * DataFormat.cs: We can't statically initialize this stuff because
22411         it calls into the xplatui and could create a loop. So we lazy init
22412         it.
22413
22414 2005-05-28  Jackson Harper  <jackson@ximian.com>
22415
22416         * Control.cs: Proper implementation of Product(Name/Version).
22417
22418 2005-05-27  Jackson Harper  <jackson@ximian.com>
22419
22420         * DataObject.cs: Dont crash if no data is found.
22421
22422 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
22423         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
22424                 as per status page, guessing it should be set to true
22425
22426 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
22427
22428         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
22429         * DataGridTableStyle.cs: set proper formatting text, def header text
22430         * ThemeWin32Classic.cs: new themable paramaters
22431         * DataGridBoolColumn.cs: paint check box, get data, fixes
22432         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
22433         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
22434         * DataGridColumnStyle.cs: fixes
22435         * Theme.cs: new themable paramaters
22436                 
22437 2005-05-26  Peter Bartok  <pbartok@novell.com>
22438
22439         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
22440
22441 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22442         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
22443
22444 2005-05-24  Peter Bartok  <pbartok@novell.com>
22445
22446         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
22447           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
22448           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
22449           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
22450           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
22451           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
22452           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
22453           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
22454           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
22455           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
22456           missing attributes, etc
22457         * DataGridPreferredColumnWidthTypeConverter.cs: Added
22458
22459 2005-05-24  Peter Bartok  <pbartok@novell.com>
22460
22461         * Help.cs: Added, implemented trivial functions, throws up MessageBox
22462           when user tries to get help
22463         * DataObject.cs, DataFormats.cs, LinkArea.cs,
22464           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
22465           to suppress warnings
22466         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
22467           avoid unreachable code warning
22468
22469 2005-05-20  Peter Bartok  <pbartok@novell.com>
22470
22471         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
22472
22473 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22474
22475         * DataGridTextBoxColumn.cs: Basic painting methods
22476         * DataGridTableStyle.cs: Set table style in the column
22477         * ThemeWin32Classic.cs: Use Theme for colors
22478         * DataGridDrawingLogic.cs: Implement more drawing
22479         * DataGrid.cs: drawing, theming, enhacements, fixes
22480         * DataGridColumnStyle.cs: fixes, drawing
22481         * Theme.cs: theming for Datagrid
22482
22483 2005-05-20  Peter Bartok  <pbartok@novell.com>
22484
22485         * Cursor.cs: Implemented GetObjectData() method
22486
22487 2005-05-20  Peter Bartok  <pbartok@novell.com>
22488
22489         * Cursors.cs: Added setting of cursor name
22490         * Cursor.cs:
22491           - Implemented constructors
22492           - Implemented Draw and DrawStretched
22493           - Implemented Current property
22494           - Implemented == and != operators
22495           - Implemented Dispose()
22496           - Implemented ToString
22497           - Added missing attributes
22498         * XplatUIX11.cs:
22499           - Added missing reset for OverrideCursor when DoEvents is called
22500           - Fixed creation of cursor, logic was wrong
22501         * XplatUIWin32.cs:
22502           - Added missing reset for OverrideCursor when DoEvents is called
22503           - Fixed creation of cursor, bit arrays were swapped
22504         * Clipboard.cs: Removed obsolete MonoTODO attribute
22505
22506 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22507
22508         * ComboBox.cs: fixes OnSelectedItemChanged
22509         * ControlBindingsCollection.cs: fixes item range check
22510
22511 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22512
22513         * UpDownBase.cs:
22514                 - Calc preferred height properly
22515                 - Implement missing properties
22516                 
22517         * NumericUpDown.cs: Implement missing events
22518
22519 2005-05-19  Jackson Harper  <jackson@ximian.com>
22520
22521         * TabControl.cs: New method that resizes the tab pages before
22522         redrawing them. This as needed as the control is double buffered
22523         and sizing will not be recalculated unless ResizeTabPages is
22524         called.
22525         * TabPage.cs: Set base.Text instead of Text in the constructor so
22526         that UpdateOwner does not get called. Use the new Redraw method of
22527         TabControl instead of Refresh so the sizing is recalculated.
22528         * ThemeWin32Classic.cs: Draw the text for button tabs.
22529
22530 2005-05-19  Jackson Harper  <jackson@ximian.com>
22531
22532         * Control.cs: Paint control background images. Fix typo where
22533         PaintControlBackground was not getting called correctly.
22534
22535 2005-05-19  Peter Bartok  <pbartok@novell.com>
22536
22537         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
22538           I can investigate, apparently I broke FileDialog
22539
22540 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
22541
22542         * AxHost.cs: Some simple properties.
22543         * Control.cs: window must be accessible after ctor.
22544         * Form.cs: Added TransparencyKey property.
22545         * TextBoxBase.cs: Implemented Clear. Text property can be null.
22546         * XplatUIWin32.cs: SetBorderStyle implemented.
22547
22548 2005-05-18  Peter Bartok  <pbartok@novell.com>
22549
22550         * DataObject.cs: Entries are not global but particular to the
22551           DataObject, now it behaves that way
22552         * XplatUIWin32.cs: Implemented Clipboard methods
22553         * Clipboard.cs: Implemented
22554         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
22555         * XplatUIOSX.cs: Updated to final clipboard prototypes
22556         * XplatUIX11.cs: Implemented Clipboard methods
22557         * XplatUIDriver.cs: Updated to final clipboard prototypes
22558         * XplatUIStructs.cs:
22559           - Added BITMAPINFOHEADER struct
22560           - Added ClipboardFormats enum
22561         * X11Structs.cs:
22562           - Added ClipboardStruct
22563           - Added Atom enum items for clipboard types
22564           - Fixed atom types for Selection event structures
22565         * DataFormats.cs:
22566           - Added internal properties and methods for drivers to enumerate
22567             all known formats
22568           - Switched initialization method to allow drivers to assign their
22569             own IDs even for the MS predefined clipboard IDs
22570         * XplatUI.cs: Updated to final clipboard interface
22571
22572 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22573         * PropertyGridView.cs: Fixed compiler warnings.
22574
22575 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22576         * PropertyGrid.cs: Added some event calls
22577         * PropertyGridView.cs: Change drawing code to use double buffering
22578         * PropertyGridTextBox.cs: Changed Text property name
22579         * GridItem.cs: Added Bounds property.
22580         * GridEntry.cs: Added Bounds property.
22581
22582 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
22583
22584         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
22585         since GetType() may not return the correct type if the object is
22586         a remoting proxy.
22587
22588 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
22589
22590         * TreeNodeCollection.cs: fixes get/set item ranges
22591         
22592 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22593
22594         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
22595                 
22596 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22597
22598         * ComboBox.cs: Fix item range comparation
22599         * ListView.cs: Fix item range comparation
22600
22601 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22602
22603         * FontDialog.cs:
22604           - Clear example panel when OnPaint is called
22605           - Better solution for displaying the example panel text
22606           - Select default indexes in the ListBoxes
22607
22608 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22609
22610         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
22611
22612 2005-05-11  Peter Bartok  <pbartok@novell.com>
22613
22614         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
22615         * SelectionRangeConverter.cs: Implemented
22616         * PropertyGrid.cs: Fixed attribute value
22617         * Control.cs:
22618           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
22619           - Added Sebastien Pouliot's CAS Stack Propagation fixes
22620         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
22621           that's common to all drivers. First methods to go there are
22622           Sebastien Pouliot's CAS Stack Propagation helper methods
22623         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
22624           Sebastien Pouliot for CAS Stack Propagation
22625
22626 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22627
22628         * OSXStructs.cs:
22629           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
22630
22631 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
22632
22633         * DataGridTextBoxColumn.cs: fixed some members
22634         * GridColumnStylesCollection.cs: indexed column is case insensitive
22635         * DataGridTableStyle.cs: fixes
22636         * ThemeWin32Classic.cs: add new theme parameter
22637         * Theme.cs: add new theme parameter
22638         * DataGridDrawingLogic.cs: Datagrid's drawing logic
22639         * DataGrid.cs: fixes, new internal properties, etc.
22640         * DataGridColumnStyle.cs: allows to set grid value
22641         *
22642
22643 2005-05-10  Peter Bartok  <pbartok@novell.com>
22644
22645         * AccessibleObject.cs:
22646           - Removed MonoTODO attribute on help, method is correct
22647           - Fixed Bounds property
22648         * AxHost.cs: Moved MonoTODO
22649         * ButtonBase.cs: Now setting AccessibleObject properties
22650         * RadioButton.cs: Setting proper AccessibleObject role
22651         * CheckBox.cs: Setting proper AccessibleObject role
22652         * ControlBindingsCollection.cs: Added properties, methods and attributes
22653         * DataFormats.cs: Fixed awkward internal API, and changed to enable
22654           userdefined DataFormats.Format items as well
22655         * ListControl.cs: Removed data_member from the public eye
22656         * OpenFileDialog.cs:
22657           - Made class sealed
22658           - Added missing attributes
22659         * SaveFileDialog.cs: Added missing attributes
22660         * ImageListStreamer.cs: Fixed code that caused warnings
22661         * LinkLabel.cs: Removed unreachable code
22662         * TreeView.cs: Fixed code that caused warnings
22663         * PropertyGridView.cs: Fixed code that caused warnings
22664         * GridColumnStylesCollection.cs: Added missing attributes
22665         * GridTableStylesCollection: Added missing attribute
22666         * PropertyManager: Added .ctor
22667         * SecurityIDType: Added
22668         * DataObject.cs: Implemented class
22669         * LinkArea.cs: Added missing attribute
22670
22671 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
22672
22673         * RadioButton.cs: call base method to allow to fire OnClick event
22674         * UpDownBase.cs: OnMouseUp call base method
22675         * CheckedListBox.cs: call base method before returning
22676         * TrackBar.cs: call base method before returning
22677         
22678
22679 2005-05-10  Peter Bartok  <pbartok@novell.com>
22680
22681         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
22682           for messages
22683
22684 2005-05-10  Peter Bartok  <pbartok@novell.com>
22685
22686         * DataFormats.cs: Implemented
22687         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
22688           XplatUIX11.cs: Added Clipboard APIs
22689         * XplatUIWin32.cs: Implemented Clipboard APIs
22690         * FolderBrowserDialog.cs: Added missing event, attributes
22691
22692 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
22693
22694         * CheckBox.cs: call base method to allow to fire OnClick event
22695
22696 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
22697
22698         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
22699
22700 2005-05-06  Peter Bartok  <pbartok@novell.com>
22701
22702         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
22703         * Screen.cs: Implemented
22704         * HelpNavigator.cs: Added
22705         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
22706           property
22707         * HelpProvider.cs: Implemented all we can do until we have a CHM
22708           help library (which means that "What's This" does work now)
22709
22710 2005-05-06  Jackson Harper  <jackson@ximian.com>
22711
22712         * XplatUIX11.cs: Fix waking up the main loop.
22713                 
22714 2005-05-05  Peter Bartok  <pbartok@novell.com>
22715
22716         * XplatUI.cs: Updated revision
22717         * Form.cs: Removed enless loop
22718         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
22719         * Label.cs (OnPaint): Added call to base.OnPaint()
22720         * ToolTip.cs: Made ToolTipWindow reusable for other controls
22721         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
22722         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
22723         * AxHost.cs: Added
22724         * ButtonBase.cs: Moved base.OnPaint() call to end of method
22725         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
22726           to ToolTip.ToolTipWindow for drawing and size methods; this allows
22727           reuse of ToolTipWindow by other controls
22728         * SizeGrip.cs: Moved base.OnPaint() call to end of method
22729         * XplatUIX11.cs: Now clipping drawing area (experimental)
22730         * PictureBox.cs: Moved base.OnPaint() call to end of method
22731         * Theme.cs: Fixed ToolTip abstracts to match new format
22732         * ErrorProvider.cs: Implemented
22733
22734 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
22735
22736         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
22737         * LinkLabel.cs:
22738                 - Adds cursors
22739                 - Handles focus
22740                 - Implements LinkBehavior
22741                 - Fixes many issues
22742
22743 2005-05-03  Jackson Harper  <jackson@ximian.com>
22744
22745         * ListView.cs: Calculate the scrollbar positioning on resize and
22746         paint, so they get put in the correct place.
22747
22748 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22749
22750         * ColorDialogs.cs: The small color panels are now handled by
22751           SmallColorControl. This fixes drawing of the focus rectangle
22752           and adds a 3D border.
22753
22754 2005-05-03  Peter Bartok  <pbartok@novell.com>
22755
22756         * Control.cs: Modified version of Jonathan Chamber's fix for
22757           double-buffering
22758
22759 2005-05-03  Jackson Harper  <jackson@ximian.com>
22760
22761         * ListView.cs: Remove redraw variable. Control now handles whether
22762         or not a redraw needs to be done, and will only raise the paint
22763         event if redrawing is needed.
22764
22765 2005-05-03  Jackson Harper  <jackson@ximian.com>
22766
22767         * Splitter.cs: No decorations for the splitter form. Cache the
22768         hatch brush.
22769
22770 2005-05-03  Jackson Harper  <jackson@ximian.com>
22771
22772         * TreeView.cs: Use dashed lines to connect nodes. Use the
22773         ControlPaint method for drawing the focus rect instead of doing
22774         that in treeview.
22775
22776 2005-05-02  Peter Bartok  <pbartok@novell.com>
22777
22778         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
22779
22780 2005-04-29  Jackson Harper  <jackson@ximian.com>
22781
22782         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
22783         entire image buffer. Just clear the clipping rectangle.
22784
22785 2005-04-29  Jackson Harper  <jackson@ximian.com>
22786
22787         * ThemeWin32Classic.cs: Don't draw list view items that are
22788         outside the clipping rectangle.
22789
22790 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
22791
22792         * ListBox.cs: added horizontal item scroll
22793
22794 2005-04-29  Jackson Harper  <jackson@ximian.com>
22795
22796         * ThemeWin32Classic.cs: Remove some old debug code that was
22797         causing flicker with the new double buffering code.
22798
22799 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
22800
22801         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
22802         behave like combobox and comboboxlist (still not sure if this is
22803         correct though).
22804
22805 2005-04-28  Jackson Harper  <jackson@ximian.com>
22806
22807         * ThemeWin32Classic.cs: Don't fill the middle of progress
22808         bars. This fills areas outside of the clip bounds that don't need
22809         to be filled.
22810
22811 2005-04-28  Jackson Harper  <jackson@ximian.com>
22812
22813         * Control.cs: Don't expose functionality to touch the image buffers.
22814         * ProgressBar.cs:
22815         * ListView.cs: We do not need to (and no longer can) manipulate
22816         the image buffers directly. All of this is handled by Control.
22817
22818 2005-04-28  Peter Bartok  <pbartok@novell.com>
22819
22820         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
22821           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
22822           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
22823
22824 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
22825
22826         * Combobox:
22827                 - Adjust control's height for non-simple comboboxes (bug fix)
22828                 - Remove dead code
22829         * MenuAPI.cs: remove unused var
22830         * ScrollBar.cs: remove unsed var
22831                  
22832         * ListBox.cs: unselect items when clearing
22833
22834 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
22835
22836         * ListControl.cs: honors OnPositionChanged and default Selected Item
22837         * ListBox.cs: unselect items when clearing
22838
22839 2005-04-27  Jackson Harper  <jackson@ximian.com>
22840
22841         * X11Keyboard.cs: Initialize a default keyboard and give a warning
22842         if a "correct" keyboard is not found. This will make us not crash,
22843         but might give some users bad keyboard layouts...seems to be the
22844         same thing rewind does.
22845
22846 2005-04-27  Jackson Harper  <jackson@ximian.com>
22847
22848         * BindingManagerBase.cs: Attach the current/position changed
22849         handlers to their respective events.
22850
22851 2005-04-27  Jackson Harper  <jackson@ximian.com>
22852
22853         * Control.cs: Make sure that the first WM_PAINT does a full draw,
22854         not just a blit.
22855         * ThemeWin32Classic.cs: Don't fill the background for picture
22856         boxes. This could overright user drawing.
22857         * ComboBox.cs: Just fill the clipping rect not the entire client
22858         rect when drawing the background. This prevents pieces of the
22859         image buffer from getting overwritten and is theoretically faster.
22860
22861 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
22862
22863         * ComboBox.cs: Databinding support fixes, fire missing events
22864         * ListControl.cs: implement missing methods and properties, fixes
22865         * ThemeWin32Classic.cs: Databiding support on Drawing
22866         * CheckedListBox.cs: Databinding support fixes, fire missing events
22867         * ListBox.cs: Databinding support fixes, fire missing events
22868         
22869 2005-04-25  Peter Bartok  <pbartok@novell.com>
22870
22871         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
22872
22873 2005-04-25  Jackson Harper  <jackson@ximian.com>
22874
22875         * TreeView.cs: Use the horizontal scrollbars height not width when
22876         determining how much of the client area is available.
22877
22878 2005-04-25  Jackson Harper  <jackson@ximian.com>
22879
22880         * Control.cs: Double buffering is handled differently now. As per
22881         the spec, the extra buffer is created in the WM_PAINT message and
22882         passed down to the control's drawing code.
22883         * GroupBox.cs:
22884         * Label.cs:
22885         * CheckBox.cs:
22886         * ProgressBar.cs:
22887         * RadioButton.cs:
22888         * ColorDialog.cs:
22889         * ComboBox.cs:
22890         * PropertyGridView.cs:
22891         * UpDownBase.cs:
22892         * MessageBox.cs:
22893         * MenuAPI.cs:
22894         * ListView.cs:
22895         * ButtonBase.cs:
22896         * SizeGrip.cs:
22897         * ScrollBar.cs:
22898         * ListBox.cs:
22899         * TrackBar.cs:
22900         * ToolBar.cs:
22901         * PictureBox.cs:
22902         * DateTimePicker.cs:
22903         * StatusBar.cs:
22904         * TreeView.cs: Update to new double buffering system.
22905         * MonthCalendar.cs: Uncomment block, as Capture is now
22906         working. Update to new double buffering
22907         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
22908         * PaintEventArgs.cs: New internal method allows us to set the
22909         graphics object. This is used for double buffering.
22910         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
22911         rectangle. The internal paint_area var has been removed from
22912         StatusBar. The clipping rect should be used instead.
22913         * Theme.cs: Give the PictureBox drawing method a clipping rect.
22914         * TabPage.cs: The RefreshTabs method was removed, so just call the
22915         tab controls Refresh method now.
22916         * TabControl.cs: Update to new double buffering. Make sure the
22917         handle is created before sizing the tab pages, otherwise we will
22918         get stuck in a loop.
22919
22920 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
22921
22922         * LinkLabel.cs: Fix typo, bug #74719; patch
22923           from Borja Sanchez Zamorano
22924
22925 2005-04-22  Jackson Harper  <jackson@ximian.com>
22926
22927         * TreeNode.cs: Implement Handle stuff.
22928         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
22929
22930 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
22931
22932         * DataGridTextBoxColumn.cs: call base constructors, fixes
22933         * GridColumnStylesCollection.cs: missing events, methods, and functionality
22934         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
22935         * DataGridTableStyle.cs: implements create default column styles
22936         * DataGridBoolColumn.cs: which types can handle
22937         * DataGrid.cs: missing methods, fixes, new functionality
22938         * DataGridColumnStyle.cs: fixes
22939
22940 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
22941         * FolderBrowserDialog.cs:
22942         - Use a thread to fill the TreeView
22943         - Adjusted some sizes
22944
22945 2005-04-19  Peter Bartok  <pbartok@novell.com>
22946
22947         * LinkLabel.cs: (Re-)create the pieces when setting the Text
22948           property. Fixes #74360.
22949
22950 2005-04-19  Jackson Harper  <jackson@ximian.com>
22951
22952         * XEventQueue.cs: Lock when getting the lockqueue size.
22953         * PictureBox.cs: Call base OnPaint
22954         
22955 2005-04-19  Peter Bartok  <pbartok@novell.com>
22956
22957         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
22958           messages were no longer being processed (this broke BeginInvoke)
22959
22960           
22961 2005-04-18  Jackson Harper  <jackson@ximian.com>
22962
22963         * TreeView.cs: buglet that caused node images to get drawn
22964         regardless of whether or not they were in the clipping rectangle.
22965
22966 2005-04-18  Jackson Harper  <jackson@ximian.com>
22967
22968         * CurrencyManager.cs: There are four rules for GetItemProperties:
22969         - If the type is an array use the element type of the array
22970         - If the type is a typed list, use the type
22971         - If the list contains an Item property that is not an object, use
22972         that property
22973         - use the first element of the list if there are any elements in
22974         the list.
22975         
22976 2005-04-17  Jackson Harper  <jackson@ximian.oom>
22977
22978         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
22979         click. This handles offsets for scrolling properly and reduces
22980         memory. Also fixed GetNode to not offset now that TopNode works
22981         properly.
22982         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
22983         
22984 2005-04-17  Jackson Harper  <jackson@ximian.com>
22985
22986         * CursorConverter.cs: Initial implementation.
22987
22988 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
22989
22990         * ListControl.cs: work towards complex data binding support on ListControl
22991         * CurrencyManager.cs: work towards complex data binding support on ListControl
22992         * ListBox.cs: work towards complex data binding support on ListControl
22993
22994
22995 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
22996
22997         * GridTableStylesCollection.cs: fixes name and constructor
22998         * DataGridTableStyle.cs: fixes
22999         * DataGridBoolColumn.cs: fixes names and constructors
23000         * DataGrid.cs: define methods and properties. Some init implementations
23001         * DataGridCell.cs: define methods and properties. Some init implementations
23002         * GridTablesFactory.cs: Define methods and properties
23003
23004 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
23005
23006         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
23007         graphics port changes.  We still want the coordinates in global screen
23008         coordinates.
23009
23010 2005-04-14  Jackson Harper  <jackson@ximian.com>
23011
23012         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
23013         check plus minus or checkbox clicks unless those features are enabled.
23014
23015 2005-04-14  Jackson Harper  <jackson@ximian.com>
23016
23017         * TreeView.cs: Add methods for setting the top and bottom visible
23018         nodes. TreeNode::EnsureVisible uses these methods.
23019         * TreeNode.cs: Implement EnsureVisible
23020
23021 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
23022
23023         * Form.cs: Pospone menu assignation if the window has not been created yet
23024         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
23025         size and position
23026
23027 2005-04-12  Jackson Harper  <jackson@ximian.com>
23028
23029         * TreeView.cs: Set the TopNode properly when scrolling
23030         occurs. This has the added benifit of reducing the amount of
23031         walking that needs to be done when drawing. Also removed an old
23032         misleading TODO.
23033         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
23034         
23035 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
23036
23037         * Timer.cs: fixes interval setting when the timer is already enabled
23038         
23039 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
23040
23041         * FolderBrowserDialog.cs: First approach
23042
23043 2005-04-09  Peter Bartok  <pbartok@novell.com>
23044
23045         * FolderBrowserDialog: Added
23046
23047 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
23048
23049         * LinkLabel.cs: move drawing code into the theme
23050         * ThemeWin32Classic.cs: drawing code and painting background bugfix
23051         * Theme.cs: define DrawLinkLabel method
23052
23053 2005-04-05  Jackson Harper  <jackson@ximian.com>
23054
23055         * BindingContext.cs: Use weak references so these bad actors don't
23056         stay alive longer then they need to.
23057
23058 2005-04-05  Jackson Harper  <jackson@ximian.com>
23059
23060         * ListControl.cs: Basic implementation of complex databinding.
23061         * ComboBox.cs:
23062         * ListBox.cs: Add calls to ListControl databinding methods.
23063
23064 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
23065
23066         * FileDialog.cs:
23067           - Don't change PopupButtonState to Normal when the
23068             PopupButton gets pressed several times.
23069           - Renamed ButtonPanel to PopupButtonPanel
23070
23071 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
23072
23073         * ColorDialog.cs: Use cached objects instead of creating them
23074         * LinkLabel.cs: Use cached objects instead of creating them
23075         * Splitter.cs: Use cached objects instead of creating them
23076         * FontDialog.cs: Use cached objects instead of creating them
23077         * PropertyGridView.cs: Use cached objects instead of creating them
23078         * MessageBox.cs: Use cached objects instead of creating them
23079         * FileDialog.cs: Use cached objects instead of creating them
23080         * ThemeWin32Classic.cs: Use cached objects instead of creating them
23081         * TreeView.cs: Use cached objects instead of creating them
23082         
23083 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
23084
23085         * Control.cs: use Equals to compare the font since no == op
23086         * ScrollBar.cs: use Equals to compare the font since no == op
23087
23088 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
23089
23090         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
23091
23092 2005-04-01  Jackson Harper  <jackson@ximian.com>
23093
23094         * Binding.cs: Implement IsBinding.
23095         * BindingManagerBase.cs:
23096         * PropertyManager.cs:
23097         * CurrencyManager.cs: Add IsSuspended property.
23098
23099 2005-04-01  Jackson Harper  <jackson@ximian.com>
23100
23101         * Binding.cs: Had some IsAssignableFrom calls backwards.
23102
23103 2005-04-01  Jackson Harper  <jackson@ximian.com>
23104
23105         * Binding.cs: Handle null data members when pulling data.
23106         * PropertyManager.cs: Handle the data member being a property that
23107         does not exist.
23108
23109 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
23110
23111         * DataGridTextBoxColumn.cs: fixes signature
23112         * DataGrid.cs: calls right constructor
23113
23114 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
23115
23116         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
23117         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
23118         * GridTableStylesCollection.cs: implements GridTableStylesCollection
23119         * DataGridTableStyle.cs: implements DataGridTableStyle
23120         * DataGridBoolColumn.cs: implements DataGridBoolColumn
23121         * DataGridTextBox.cs: implements DataGridTextBox
23122         * DataGridColumnStyle.cs: implements DataGridColumnStyle
23123
23124 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
23125
23126         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
23127
23128 2005-03-29  Peter Bartok  <pbartok@novell.com>
23129
23130         * Application.cs:
23131           - Properly implemented CompanyName property
23132           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
23133             returns a path that includes CompanyName, ProductName and
23134             Version (fixes bug #70330)
23135
23136 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
23137
23138         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
23139           fixes bug #72588.
23140
23141 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
23142
23143         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
23144         
23145           - Added ReadOnly CheckBox
23146           - Further refactoring: moved some code from Open-/SaveFileDialog
23147             to FileDialog
23148
23149 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
23150
23151         * OpenFileDialog.cs: Fixed CheckFileExists
23152         * FileDialog.cs:
23153           Moved FileView and DirComboBox outside FileDialog class.
23154           They can now be used outside FileDialog
23155
23156 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
23157
23158         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
23159         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
23160
23161 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
23162
23163         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23164           - Added missing CreatePrompt property in SaveDialog
23165           - Overall SaveDialog handling should be better now
23166           - Added non standard ShowHiddenFiles property
23167           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
23168           - Added InitialDirectory and RestoreDirectory support
23169
23170 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
23171
23172         * FileDialog.cs: Made dirComboBox usable
23173
23174 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
23175
23176         * FileDialog.cs: Added Filter support (case sensitiv)
23177
23178 2005-03-24  Jackson Harper  <jackson@ximian.com>
23179
23180         * TabControl.cs: Need a couple more pixels for the lines.
23181
23182 2005-03-23  Jackson Harper  <jackson@ximian.com>
23183
23184         * TabControl.cs: Give the tab page focus when it is selected.
23185
23186 2005-03-23  Jackson Harper  <jackson@ximian.com>
23187
23188         * TabControl.cs: Account for the drawing of tabs borders when
23189         invalidating. If the slider was clicked dont do click detection on
23190         the tabs.
23191
23192 2005-03-23  Jackson Harper  <jackson@ximian.com>
23193
23194         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
23195
23196 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
23197
23198         * CategoryGridEntry.cs: Added
23199         * GridItem.cs: Added helper properties
23200         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
23201         * GridEntry.cs: Updated code for collection
23202         * PropertyGrid.cs: Cleaned up some formatting
23203         * PropertyGridView.cs: Added drop down functionality for enums.
23204         * GridItemCollection.cs: Added enumerator logic
23205         * PropertyGridEntry.cs: Added
23206
23207 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23208
23209         * FileDialog.cs:
23210           - Removed unnecessary commented code
23211           - Fixed handling for entering the filename manually in the combobox
23212
23213 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23214
23215         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
23216
23217 2005-03-18  Peter Bartok  <pbartok@novell.com>
23218
23219         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
23220           them being touching the border
23221
23222 2005-03-18  Peter Bartok  <pbartok@novell.com>
23223
23224         * TextControl.cs: Quick hack to center text better
23225
23226 2005-03-18  Peter Bartok  <pbartok@novell.com>
23227
23228         * ControlPaint.cs:
23229           - Don't throw NotImplemented exceptions, just print a notice once
23230             instead (requested by Miguel). This makes running existing SWF
23231             apps a bit easier
23232         * Control.cs:
23233           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
23234           - Added context menu trigger on right click
23235         * Panel.cs: Trigger invalidate on resize
23236         * StatusBar.cs:
23237           - Removed old double-buffer drawing
23238           - Added ResizeRedraw style to force proper update of statusbar
23239         * ListView.cs:
23240           - Removed debug output
23241         * ThemeWin32Classic.cs:
23242           - Fixed drawing of status bar, now draws Text property if there
23243             are no defined panels
23244
23245 2005-03-18  Jackson Harper  <jackson@ximian.com>
23246
23247         * ImageList.cs: When the image stream is set pull all the images
23248         from it.
23249         * ImageListStreamer.cs: Implement reading image list streams.
23250
23251 2005-03-18  Peter Bartok  <pbartok@novell.com>
23252
23253         * ThemeWin32Classic.cs (DrawPictureBox):
23254           - Fixed calculations for centered drawing
23255           - Fixed drawing for normal mode, not scaling the image on normal
23256
23257 2005-03-18  Peter Bartok  <pbartok@novell.com>
23258
23259         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
23260           textbox
23261         * FileDialog.cs:
23262           - Made Open/Save button the accept button for FileDialog
23263           - Tied the cancel button to the IButtonControl cancel button
23264           - Save/Open now properly builds the pathname
23265           - Now handles user-entered text
23266           - Preventing crash on right-click if no item is selected
23267           - Fixed Text property, now uses contents of textbox
23268           - Fixed SelectedText property, now just returns the text part that
23269             is selected in the text box
23270
23271 2005-03-18  Jackson Harper  <jackson@ximian.com>
23272
23273         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
23274         rect, make sure to de-adjust the interior rect after drawing the
23275         tab text.
23276
23277 2005-03-18  Peter Bartok  <pbartok@novell.com>
23278
23279         * MenuAPI.cs: Remove menu *before* executing selected action to
23280           prevent the menu from 'hanging around'
23281           
23282 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
23283
23284         * XplatUIOSX.cs: Implemented WorkingArea property
23285
23286 2005-03-17  Peter Bartok  <pbartok@novell.com>
23287
23288         * XplatUIX11.cs: Fixed menu coord calculations
23289         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
23290           for calculating offsets
23291
23292 2005-03-17  Peter Bartok  <pbartok@novell.com>
23293
23294         * Hwnd.cs: Do not consider menu presence for default client
23295           rectangle location/size
23296         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
23297           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
23298           translation functions
23299         * FileDialog.cs: Fixed (what I presume is a) typo
23300
23301 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
23302
23303         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
23304           X access (avoids X-Async errors)
23305
23306 2005-03-16  Jackson Harper  <jackson@ximian.com>
23307
23308         * TabControl.cs: Raise the SelectedIndexChanged event.
23309
23310 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
23311
23312         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23313           - Removed vertical ToolBar and replaced it with a custom panel
23314             (desktop and home button already work)
23315           - Added Help button (some controls get resized or relocated then)
23316           - Draw correct text depending on Open or Save.
23317           - Fixed some typos...
23318
23319 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
23320
23321         * ScrollBar.cs:
23322           - Only change Maximum and Minimum when need it (bug fix)
23323
23324 2005-03-15  Peter Bartok  <pbartok@novell.com>
23325
23326         * Form.cs: Use Handle for icon, to trigger creation if
23327           the window does not yet exist
23328         * Control.cs:
23329           - CanSelect: Slight performance improvement
23330           - Focus(): Preventing possible recursion
23331           - Invalidate(): Removed ControlStyle based clear flag setting
23332           - WM_PAINT: fixed logic for calling OnPaintBackground
23333           - WM_ERASEBKGND: Fixed logic, added call to new driver method
23334             EraseWindowBackground if the control doesn't paint background
23335         * XplatUIWin32.cs:
23336           - Moved EraseWindowBackground() method to internal methods
23337           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
23338             is sent via SendMessage on BeginPaint call on Win32
23339         * XplatUIX11.cs:
23340           - Added EraseWindowBackground() method
23341           - No longer sends WM_ERASEBKGND on .Expose, but on call to
23342             PaintEventStart, which more closely matches Win32 behaviour
23343           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
23344           - Fixed SetFocus() to properly deal with client and whole windows
23345         * Hwnd.cs: Added ErasePending property
23346         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
23347         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
23348
23349 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
23350
23351         * XplatUIOSX.cs:
23352           - Fix hard loop when timers exist.
23353           - Fix bugs with middle and right click for 3 button mice.
23354
23355 2005-03-11  Peter Bartok  <pbartok@novell.com>
23356
23357         * XplatUIX11.cs:
23358           - get_WorkingArea: Need to call X directly, GetWindowPos only
23359             returns cached data now
23360           - Added sanity check to GetWindowPos hwnd usage
23361
23362 2005-03-11  Jackson Harper  <jackson@ximian.com>
23363
23364         * BindingManagerBase.cs: This method isn't used anymore as
23365         PullData now updates the data in the control.
23366
23367 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
23368
23369         * Form.cs: fixes menu drawing on X11
23370         * MenuAPI.cs:  fixes menu drawing on X11
23371
23372 2005-03-11  Peter Bartok  <pbartok@novell.com>
23373
23374         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
23375           from Jonathan Gilbert; should fix bug #73606
23376         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
23377           in Screen coordinates. Thanks, Jordi.
23378         * Form.cs: Added missing attribute
23379
23380 2005-03-11  Peter Bartok  <pbartok@novell.com>
23381
23382         * Form.cs:
23383           - Rudimentary Mdi support
23384           - Removed outdated FormParent code
23385           - Implemented lots of missing properties and methods, still missing
23386             transparency support
23387           - Added missing attributes
23388           - Implemented support for MaximumBounds
23389           - Added firing of various events
23390         * XplatUI.cs: Added SetIcon() method
23391         * XplatUIDriver.cs: Added SetIcon() abstract
23392         * XplatUIOSX.cs: Stubbed out SetIcon() method
23393         * XplatUIX11.cs:
23394           - Implemented SetIcon() support
23395           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
23396           - Switched to unix line endings
23397         * XplatUIWin32.cs:
23398           - Made POINT internal so for can access it as part of MINMAX
23399           - Implemented SetIcon() support
23400           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
23401             native Mdi support again, might have to go managed)
23402         * Control.cs: Now fires the StyleChanged event
23403         * MdiClient.cs: Added; still mostly empty
23404
23405 2005-03-10  Peter Bartok  <pbartok@novell.com>
23406
23407         * SaveFileDialog.cs: Added emtpy file
23408
23409 2005-03-08  Peter Bartok  <pbartok@novell.com>
23410
23411         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
23412           in turn triggers OnCreateContro) when creating a handle for the
23413           first time.
23414         * TextControl.cs: Fixed endless loop in certain cases when
23415           replacing the current selection
23416
23417 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
23418
23419         * ScrollBar.cs:
23420           - Honors NewValue changes in Scroll events allowing apps to change it
23421           - Adds First and Last Scroll events
23422           - Fixes Thumb events
23423
23424 2005-03-07  Peter Bartok  <pbartok@novell.com>
23425
23426         * Hwnd.cs: Added DefaultClientRectangle property
23427         * XplatUI.cs: Now using the X11 driver Where() method, which provides
23428           more detailed debug information
23429         * XplatUIX11.cs:
23430           - Fixed size-change feedback loop, where we would pull an old size
23431             off the queue and mistakenly change our window's size to an
23432             earlier value
23433           - Now compressing ConfigureNotify events, to reduce looping and
23434             redraw issues
23435         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
23436           is called
23437
23438 2005-03-07  Jackson Harper  <jackson@ximian.com>
23439
23440         * Binding.cs: Push data pushes from data -> property. Check if the
23441         property is readonly when attempting to set it.
23442
23443 2005-03-07  Jackson Harper  <jackson@ximian.com>
23444
23445         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
23446         instead of IsSubclassOf. Pulling data now sets the value on the
23447         control.
23448         * PropertyManager.cs:
23449         * CurrencyManager.cs: Just need to pull data when updating now,
23450         because PullData will set the value on the control.
23451
23452 2005-03-04  Jackson Harper  <jackson@ximian.com>
23453
23454         * Binding.cs: Implement data type parsing and converting on pulled
23455         data. TODO: Are there more ways the data can be converted?
23456
23457 2005-03-04  Jackson Harper  <jackson@ximian.com>
23458
23459         * Binding.cs: Support <Property>IsNull checks. Also bind to the
23460         controls Validating method so we can repull the data when the
23461         control loses focus.
23462
23463 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
23464
23465         * ColumnHeader.cs:
23466           - Fixes null string format
23467           
23468         * ListView.cs:
23469           - Adds enum type checks
23470           - Fixes redrawing and recalc need after changing some properties
23471           - Fixes on focus_item set after the event
23472           - Fixes adding columns after the control has been created
23473           
23474         * ThemeWin32Classic.cs:
23475           - Fixes CheckBox focus rectangle
23476           - Fixes ColumnHeader drawing
23477
23478
23479 2005-03-03  Jackson Harper  <jackson@ximian.com>
23480
23481         * Binding.cs: Bind to <Property>Changed events so we can detect
23482         when properties are changed and update the data.
23483
23484 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
23485
23486         * ImageList.cs:
23487           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
23488           - Fixes ImageList constructor with ImageList container
23489           - Fixes image scaling (wrong parameters at DrawImage)
23490
23491 2005-02-02  Jackson Harper  <jackson@ximian.com>
23492
23493         * Binding.cs: Make property searches case-insensitive. Eliminate
23494         some duplicated code.
23495
23496 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
23497
23498         * ComboBox.cs:
23499                 - Handle focus event
23500                 - Fix scrollbar events
23501                 - Discard highlighted item if remove it
23502                 - Fixes SelectedItem with strings
23503
23504 2005-03-01  Peter Bartok  <pbartok@novell.com>
23505
23506         * Control.cs:
23507           - Fixed Visible property, now follows (once again) parent chain
23508             to return false if any control in the chain is visible=false
23509           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
23510           - Fixed several places where is_visible instead of Visible was used
23511           - Implemented FIXME related to focus selection when setting focused
23512             control to be invisible
23513
23514         * XplatUIWin32.cs: Now using proper method to find out if window is
23515           visible. Thanks to Jordi for pointing it out
23516
23517 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
23518
23519         * ComboBox.cs: show/hide scrollbar instead of creating it
23520
23521 2005-02-27  Jackson Harper  <jackson@ximian.com>
23522
23523         * CurrencyManager.cs: Add PositionChanged stuff.
23524
23525 2005-02-27  Peter Bartok  <pbartok@novell.com>
23526
23527         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
23528         * XplatUIOSX.cs: Added GetMenuOrigin() stub
23529         * XplatUIWin32.cs: Implemented GetMenuOrigin()
23530         * XplatUIX11.cs:
23531           - Implemented GetMenuDC()
23532           - Implemented GetMenuOrigin()
23533           - Implemented ReleaseMenuDC()
23534           - Implemented generation of WM_NCPAINT message
23535           - Implemented generation and handling of WM_NCCALCSIZE message
23536         * Form.cs: Added debug helper message for Jordi's menu work
23537         * Hwnd.cs:
23538           - Modified ClientRect property; added setter, fixed getter to handle
23539             setting of ClientRect
23540           - Added MenuOrigin property
23541
23542 2005-02-26  Peter Bartok  <pbartok@novell.com>
23543
23544         * XplatUIX11.cs:
23545           - Destroys the caret if a window that's being destroyed contains it
23546           - Ignores expose events coming from the X11 queue for windows that
23547             already are destroyed
23548           - Now uses the proper variable for handling DestroyNotify, before we
23549             marked the wrong window as destroyed
23550           - Improved/added some debug output
23551
23552 2005-02-26  Peter Bartok  <pbartok@novell.com>
23553
23554         * X11Keyboard.cs: Fixes to work on 64bit systems
23555
23556 2005-02-26  Peter Bartok  <pbartok@novell.com>
23557
23558         * Control.cs:
23559           - Now calling OnHandleDestroyed from DestroyHandle()
23560             instead of Dispose()
23561           - Removed bogus call to controls.Remove() from DestroyHandle()
23562
23563 2005-02-26  Peter Bartok  <pbartok@novell.com>
23564
23565         * Control.cs: Properly destroy child windows when our handle is
23566           destroyed
23567
23568 2005-02-25  Peter Bartok  <pbartok@novell.com>
23569
23570         * XplatUI.cs:
23571           - Added 'DriverDebug' define to allow tracing XplatUI API calls
23572           - Alphabetized Static Methods and Subclasses
23573
23574         * XplatUIX11.cs:
23575           - Added XException class to allow custom handling of X11 exceptions
23576           - Created custom X11 error handler, tied into XException class
23577           - Added support for MONO_XEXCEPTIONS env var to allow the user
23578             to either throw an exception on X errors or continue running
23579             after displaying the error
23580           - Added handling of DestroyNotify message
23581           - Added handler for CreateNotify message (still disabled)
23582           - Improved (tried to at least) Where method to provide file and lineno
23583         * X11Structs.cs:
23584           - Added XErrorHandler delegate
23585           - Added XRequest enumeration (to suppor translation of errors)
23586
23587 2005-02-25  Jackson Harper  <jackson@ximian.com>
23588
23589         * PropertyManager.cs: Implement editing features
23590         * CurrencyManager.cs:
23591         * Binding.cs: First attempt at UpdateIsBinding
23592         * BindingManagerBase.cs: Call UpdateIsBinding before
23593         pushing/pulling data.
23594
23595 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
23596
23597         * MenuAPI.cs: Respect disabled items
23598         * ThemeWin32Classic.cs
23599                 - Caches ImageAttributes creation for DrawImageDisabled
23600                 - Fixes vertical menu line drawing
23601                 - Draws disabled arrows in disable menu items
23602
23603 2005-02-24  Peter Bartok  <pbartok@novell.com>
23604
23605         * Hwnd.cs:
23606           - Added UserData property to allow associating arbitrary objects
23607             with the handle
23608           - Fixed leak; now removing Hwnd references from static windows array
23609         * XplatUIWin32.cs:
23610           - Fixed Graphics leak in PaintEventEnd
23611           - Removed usage of HandleData, switched over to Hwnd class
23612         * HandleData.cs: Removed, obsoleted by Hwnd.cs
23613
23614 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23615
23616         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
23617         * ScrollBar.cs: Fixes bug
23618         * TrackBar.cs: removes death code, clipping, mimize refreshes,
23619          keyboard navigation enhancements
23620
23621 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23622
23623         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
23624         * GroupBox.cs: Add control styles
23625         * Label.cs: Add control styles
23626         * UpDownBase.cs: Add control styles
23627         * ListBox.cs: Add control styles
23628         * XplatUIWin32.cs: Fixes wrong parameter order
23629
23630
23631 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
23632
23633         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
23634
23635 2005-02-23  Jackson Harper  <jackson@ximian.com>
23636
23637         * PropertyManager.cs: Implement property binding. This doesn't
23638         seem to work yet though as (I think) there are some bugs in
23639         System.ComponentModel.PropertyDescriptor.
23640         * BindingContext.cs: Use new PropertyManager constructor.
23641
23642 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
23643
23644         * ProgressBar.cs: use clip region in ProgressBar
23645         * ThemeWin32Classic.cs: use clip region in ProgressBar
23646
23647 2004-02-22  Jackson Harper  <jackson@ximian.com>
23648
23649         * BindingsCollection.cs: Remove some debug code.
23650
23651 2005-02-22  Jackson Harper  <jackson@ximian.com>
23652
23653         * BindingContext.cs:
23654         * ControlBindingsCollection.cs:
23655         * CurrencyManager.cs:
23656         * Binding.cs:
23657         * BindingManagerBase.cs: Initial implementation
23658         * BindingsCollection.cs: Add an internal contains method that the
23659         BindingManagerBase uses to ensure bindings aren't added twice to
23660         the collection.
23661         * PropertyManager.cs: Stubbed out.
23662         * Control.cs:
23663         * ContainerControl.cs: Hook up databinding
23664         
23665 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
23666
23667         * XplatUIOSX.cs:
23668           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
23669           Fixed Invalidate/Update chain.
23670           Fixed tons of other minor bugs (this is almost a complete rewrite).
23671
23672 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
23673
23674         * ComboBox.cs: do subcontrol creation when the control is created
23675
23676 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23677
23678         * Label.cs: fixes image drawing (image and imagelist)
23679         * ThemeWin32Classic.cs: cache brushes
23680         
23681 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23682
23683         * Form.cs: Move menu drawing code to Theme class
23684         * ComboBox.cs: Move ComboBox drawing code to Theme class
23685         * MenuItem.cs: Move menu drawing code to Theme class
23686         * MenuAPI.cs: Move menu drawing code to Theme class
23687         * ThemeWin32Classic.cs: New methods
23688         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
23689         * ListBox.cs: Move Listbox drawing code to Theme class
23690         * Theme.cs: New methods
23691
23692 2005-02-20  Peter Bartok  <pbartok@novell.com>
23693
23694         * Control.cs:
23695           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
23696             only process mnemonics on those)
23697           - Fixed event sequence for key handling; first calling
23698             ProcessKeyEventArgs now
23699         * TextBoxBase.cs:
23700           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
23701             for processing non-character keys
23702           - Fixed WM_CHAR to generate proper event sequence before processing
23703         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
23704           generation
23705
23706 2005-02-19  Peter Bartok  <pbartok@novell.com>
23707
23708         * UserControl.cs: Added TextChanged event; added attributes
23709         * SizeGrip.cs: Implemented resizing and optional display of grip
23710         * Form.cs: Fixed attribute
23711         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
23712           Changed meaning of ScrollWindow bool argument; instead of the
23713           clear attribute (which will be true usually anyway), it gives the
23714           option of moving child controls as well.
23715         * XplatUIX11.cs:
23716           - Changed to match new ScrollWindow argument
23717           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
23718             now handles the implicit parent window a WM puts around us
23719         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
23720           to work)
23721         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
23722         * TreeView.cs: Adjusted to new ScrollWindow arguments
23723
23724 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23725
23726         * Form.cs: Menu integration with non-client area
23727         * MenuItem.cs: Menu integration with non-client area
23728         * MenuAPI.cs: Menu integration with non-client area
23729
23730 2005-02-18  Peter Bartok  <pbartok@novell.com>
23731
23732         * MethodInvoker.cs: Added
23733         * MdiLayout.cs: Added
23734         * SendKeys.cs: Started implementation
23735         * ErrorIconAlignment.cs: Added
23736
23737 2005-02-18  Peter Bartok  <pbartok@novell.com>
23738
23739         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
23740         * Form.cs: Added handling for Menu-related Non-client messages
23741
23742 2005-02-17  Peter Bartok  <pbartok@novell.com>
23743
23744         * UpDownBase.cs: Fixed typo, compilation errors
23745         * DomainUpDown.cs: Fixed attribute value
23746
23747 2005-02-16  Miguel de Icaza  <miguel@novell.com>
23748
23749         * UpDownBase.cs: Attach entry events.
23750         Propagate events.
23751         Add ForeColor property, Focused, InterceptArrowKeys (interception
23752         does not work yet).
23753
23754 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
23755
23756         * Form.cs:
23757                 - Redraw non client are on Setmenu
23758                 - Calc proper menu starting point
23759
23760 2005-02-17  Peter Bartok  <pbartok@novell.com>
23761
23762         * Application.cs: Fixed message_filter check
23763
23764 2005-02-17  Peter Bartok  <pbartok@novell.com>
23765
23766         * Application.cs: Now calls registered message filters
23767         * DockStyle.cs: Fixed attribute
23768         * Form.cs: Fixed attribute
23769         * Menu.cs: Fixed attribute
23770         * ToolTip.cs: Fixed attribute
23771         * TreeNode.cs: Added missing attributes and arranged in regions
23772         * PropertyGrid.cs: Fixed signatures
23773         * TreeNodeCollection.cs: Added attributes
23774         * Splitter.cs: Added missing attributes; arranged into regions
23775         * TabPage.cs: Added missing attributes; arranged into regions
23776         * TextBoxBase.cs: Added missing attributes
23777         * TextBox.cs: Added missing attributes
23778         * ArrangeDirection.cs: Added missing attributes
23779         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
23780         * ToolBarButton.cs: Fixed attributes
23781         * AnchorStyles.cs: Fixed attribute
23782         * TrackBar.cs: Fixed attributes
23783         * TabControl.cs: Added missing attributes and arranged into regions
23784         * ToolBar.cs: Fixed attribute
23785         * StatusBar.cs: Fixed signature, organized into regions and added
23786           attributes
23787         * StatusBarPanel.cs: Fixed attributes
23788         * ContentsResizedEventArgs.cs: Implemented
23789         * ContentsResizedEventHandler.cs: Implemented
23790         * DateBoldEventArgs.cs: Implemented
23791         * DateBoldEventHandler.cs: Implemented
23792         * UpDownEventArgs.cs: Implemented
23793         * UpDownEventHandler.cs: Implemented
23794         
23795 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
23796
23797         * Form.cs: first Menu NC refactoring
23798         * MenuAPI.cs: first Menu NC refactoring
23799         
23800 2005-02-16  Peter Bartok  <pbartok@novell.com>
23801
23802         * ImeMode.cs: Added missing attributes
23803         * Menu.cs: Fixed attribute
23804         * GroupBox.cs: Fixed attribute
23805         * Label.cs: Fixed attribute
23806         * ColorDialog.cs (RunDialog): Removed TODO attribute
23807         * ComboBox.cs: Fixed attributes
23808         * ListControl.cs: Added missing attributes
23809         * PropertyGrid.cs: Fixed attributes
23810         * Control.cs: Fixed attributes
23811         * ListViewItem.cs: Added TypeConverter attribute
23812         * NotifyIcon.cs: Fixed attributes
23813         * ListView.cs: Fixed attributes
23814         * ButtonBase.cs: Fixed attribute
23815         * ImageList.cs: Added missing attributes
23816         * ContainerControl.cs: Fixed signature
23817         * CheckedListBox.cs: Fixed attribute; added missing attributes
23818         * Panel.cs: Fixed attributes
23819         * PropertyTabChangedEventArgs.cs: Added missing attribute
23820         * PropertyValueChangedEventArgs.cs: Added missing attribute
23821         * Binding.cs: Fixed attribute
23822         * ListViewItemConverter: Implemented ListViewSubItemConverter class
23823         * ListBox.cs: Fixed attribute; added missing attributes;
23824         * ScrollableControl.cs: Added missing attributes
23825         * PictureBox.cs: Added missing attributes; implemented missing property
23826         * DateTimePicker.cs: Added missing attributes
23827         * Theme.cs (ToolWindowCaptionHeight): Fixed type
23828         * MonthCalendar.cs: Fixed attributes
23829         * StatusBarPanel.cs: Added missing attributes
23830         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
23831
23832 2005-02-16  Peter Bartok  <pbartok@novell.com>
23833
23834         * TextBoxBase.cs: The previous method to enforce height yet remember
23835           the requested high was less than ideal, this is an attempt to do
23836           it better.
23837         * Control.cs: Added comment about possible problem
23838         * Copyright: Updated format
23839         * GridItemType.cs: Fixed swapped values
23840
23841 2005-02-15  Jackson Harper  <jackson@ximian.com>
23842
23843         * BaseCollection.cs: Use property so we never access an
23844         uninitialized list. Also initialize the list in the property.
23845
23846 2005-02-15  Peter Bartok  <pbartok@novell.com>
23847
23848         * GroupBox.cs (ProcessMnemonic): Implemented
23849         * Label.cs (ProcessMnemonic): Implemented
23850         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
23851           hotkeys
23852
23853 2005-02-15  Peter Bartok  <pbartok@novell.com>
23854
23855         * RadioButton.cs (ProcessMnemonic): Implemented
23856         * CheckBox.cs (ProcessMnemonic): Implemented
23857         * Control.cs:
23858           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
23859             handling
23860           - Added internal method to allow calling ProcessMnemonic from other
23861             controls
23862         * ContainerControl.cs:
23863           - Started support for handling validation chain handling
23864           - Implemented ProcessMnemonic support
23865           - Added Select() call to Active, to make sure the active control
23866             receives focus
23867         * Form.cs: Setting toplevel flag for Forms (this was lost in the
23868           FormParent rewrite)
23869         * ThemeWin32Classic.cs:
23870           - DrawCheckBox(): Fixed stringformat to show hotkeys
23871           - DrawRadioButton(): Fixed stringformat to show hotkeys
23872         * CommonDialog.cs: Removed WndProc override, not needed
23873
23874 2005-02-14  Peter Bartok  <pbartok@novell.com>
23875
23876         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
23877           missed those in the rewrite
23878
23879 2005-02-14  Miguel de Icaza  <miguel@novell.com>
23880
23881         * NumericUpDown.cs (Increment, ToString): Add.
23882         (DecimalPlaces): implement.
23883         
23884         Add attributes.
23885         
23886         * UpDownBase.cs: Add the designer attributes.
23887
23888 2005-02-13  Peter Bartok  <pbartok@novell.com>
23889
23890         * Panel.cs: Removed border_style, now in Control
23891         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
23892           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
23893
23894 2005-02-13  Peter Bartok  <pbartok@novell.com>
23895
23896         * MouseButtons.cs: Added missing attributes
23897         * XplatUIStructs.cs: Added enumeration for title styles
23898         * LeftRightAlignment.cs: Added missing attributes
23899         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
23900           it compatible with Graphics.FromHwnd()
23901         * SelectedGridItemChangedEventArgs.cs: Fixed property type
23902         * Keys.cs: Added missing attributes
23903         * SelectionRange.cs: Added missing attributes
23904         * SelectionRangeConverter.cs: Added
23905         * XplatUI.cs:
23906           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
23907             ReleaseMenuDC methods
23908           - Renamed ReleaseWindow to UngrabWindow
23909           - Added proper startup notice to allow version identification
23910         * Form.cs:
23911           - Added missing attributes
23912           - Removed FormParent concept
23913         * Label.cs: Removed border_style field, now in Control
23914         * RadioButton.cs: Now properly selects RadioButton when focus is
23915           received
23916         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
23917         * Control.cs:
23918           - Added missing attributes
23919           - Added borderstyle handling
23920           - Removed FormParent concept support
23921           - Fixed calls to XplatUI to match changed APIs
23922           - Fixed bug that would case us to use disposed Graphics objects
23923           - Removed unneeded internal methods
23924           - PerformLayout(): Fixed to handle DockStyle.Fill properly
23925           - SelectNextControl(): Fixed to properly check common parents
23926         * TextBoxBase.cs: Removed border_style field (now in Control)
23927         * MessageBox.cs:
23928           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
23929             fixed calculations for form size
23930           - Added support for localized strings and icons
23931           - Improved form size calculations, added border
23932         * ListView.cs: Removed border_style field (now in Control)
23933         * X11Structs.cs: Moved several structs from X11 driver here
23934         * X11Keyboard.cs: Changed debug message
23935         * Application.cs: Removed FormParent concept support
23936         * CommonDialog.cs:
23937           - Resetting end_modal flag
23938           - Removed FormParent concept support
23939         * NativeWindow.cs: Removed FormParent concept support
23940         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
23941           Client area and Non-Client whole window to allow support for WM_NC
23942           messages
23943         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
23944           prevent using it until it supports Hwnd as per Geoff Norton's request
23945         * ToolBar.cs: Fixed drawing, was not doing proper drawing
23946         * PictureBox.cs: Removed border_style field, now in Control
23947         * XplatUIWin32.cs: Added new driver methods
23948
23949 2005-02-12  Peter Bartok  <pbartok@novell.com>
23950
23951         * OpacityConverter.cs: Implemented
23952         * Hwnd.cs: Internal class to support drivers that need to emulate
23953           client area/non-client area window behaviour
23954
23955 2005-02-11  Peter Bartok  <pbartok@novell.com>
23956
23957         * KeysConverter.cs: Implemented
23958
23959 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
23960
23961         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
23962         * LinkLabel: Added missing attributes
23963         * MainMenu.cs: fixes ToString
23964         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
23965         * ListBox.cs: fixes event position
23966         * TrackBar.cs: adds missing attributes and events
23967         
23968 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
23969
23970         * MenuItem.cs: Use SystemInformation and bug fixes
23971         * MenuAPI.cs: Use SystemInformation and bug fixes
23972
23973 2005-02-09  Jackson Harper  <jackson@ximian.com>
23974
23975         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
23976         their keystate otherwise things like VK_MENU get stuck "on".
23977
23978 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
23979
23980         * ListBox.cs: Fixes AddRange bug
23981         
23982 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
23983
23984         * ProgressBar.cs
23985                 - Add missing attributes
23986                 - Add missing method
23987                 
23988         * CheckedListBox.cs: Added missing attributes
23989                 - Add missing attributes
23990                 - Remove extra method
23991         
23992         * ComboBox.cs: Added missing attributes
23993         * VScrollBar.cs: Added missing attributes
23994         * ScrollBar.cs:  Added missing attributes
23995         * ListBox.cs: Fixes signature, add missing consts
23996         * LinkArea.cs:   Added missing attributes
23997         
23998
23999 2005-02-08  Peter Bartok  <pbartok@novell.com>
24000
24001         * Menu.cs: Added missing attributes
24002         * MainMenu.cs: Added missing attributes
24003         * GroupBox.cs: Added missing attributes
24004         * Label.cs: Added missing attributes
24005         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
24006         * ColorDialog.cs:
24007           - Added Instance and Options properties
24008           - Added missing attributes
24009         * Cursor.cs: Made Serializable
24010         * NotifyIcon: Added missing attributes
24011         * MenuItem.cs: Added missing attributes
24012         * TextBoxBase.cs: Implemented AppendText() and Select() methods
24013         * Panel.cs: Added Missing attributes
24014         * MonthCalendar.cs: Fixed CreateParams
24015
24016 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24017         
24018         * LinkLabel.cs:
24019                 - Fixes signature
24020                 - Fixes issues with links
24021                 - Adds the class attributes
24022
24023 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24024         
24025         * ComboBox.cs:
24026                 - Fixes button when no items available in dropdown
24027                 - Fixes repainting problems
24028                 - Adds the class attributes
24029                 
24030 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24031
24032         * XplatUIOSX.cs: Detect the menu bar and title bar height from
24033         the current theme.  Cache these on startup.
24034
24035 2005-02-07  Jackson Harper  <jackson@ximian.com>
24036
24037         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
24038         the scrollbar buttons when they are depressed.
24039
24040 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24041
24042         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
24043         Get the display size from the main displayid.  We currently dont
24044         support multiple display configurations.
24045
24046 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24047
24048         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
24049
24050 2005-02-07  Miguel de Icaza  <miguel@novell.com>
24051
24052         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
24053
24054 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
24055
24056         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
24057
24058 2005-02-04  Jackson Harper  <jackson@ximian.com>
24059
24060         * ThemeWin32Classic.cs: Respect the clipping rect when
24061         drawing. Only fill the intersection of clips and rects so there
24062         isn't a lot of large fills.
24063         * ScrollBar.cs: Pass the correct clipping rect to the theme
24064         engine. Remove some debug code.
24065
24066 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
24067         
24068         * DateTimePicker.cs:
24069                 - Fixed crash on DateTime.Parse, use Constructor instead
24070
24071 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24072         
24073         * MenuItem.cs:
24074         * MenuAPI.cs:
24075                 - Owner draw support (MeasureItem and DrawItem)
24076
24077 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24078         
24079         *  Menu.cs:
24080                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
24081                 - Fixes MenuItems.Add range
24082         * MenuItem.cs:
24083                 - MergeMenu and Clone and CloneMenu functions
24084
24085 2005-02-03  Jackson Harper  <jackson@ximian.com>
24086
24087         * ScrollBar.cs: Make abstract
24088         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
24089         is abstract.
24090
24091 2005-02-03  Jackson Harper  <jackson@ximian.com>
24092
24093         * ScrollBar.cs: First part of my scrollbar fixups. This removes
24094         all the unneeded refreshes and uses invalidates with properly
24095         computed rects.
24096
24097 2005-02-03  Peter Bartok  <pbartok@novell.com>
24098
24099         * ComponentModel.cs: Added
24100         * IDataGridEditingService.cs: Added
24101         * Timer.cs: Added missing attributes
24102         * ToolTip.cs: Added missing attributes
24103
24104 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
24105
24106         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
24107
24108 2005-02-03  Peter Bartok  <pbartok@novell.com>
24109
24110         * ListBox.cs: Added missing attributes
24111
24112 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
24113         
24114         * ListBox.cs:
24115                 - Fixes font height after font change
24116                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
24117                 
24118 2005-02-02  Peter Bartok  <pbartok@novell.com>
24119
24120         * HandleData.cs: Introduced static methods to allow class
24121           to be more self-contained and track it's own HandleData objects
24122         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
24123           HandleData to use new static methods
24124
24125 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
24126
24127         * Combobox.cs:
24128                 - Fixes default size and PreferredHeight
24129                 - Missing events
24130                 - ObjectCollection.Insert implementation
24131                 
24132         * ListControl.cs
24133                 - Fixes signature
24134         * ListBox.cs:
24135                 - Several fixes
24136                 - ObjectCollection.Insert implementation
24137                 - No selection after clean
24138                 - Small fixes
24139
24140 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24141
24142         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
24143
24144 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
24145
24146         * Combobox.cs:
24147                 - Caches ItemHeight calculation for OwnerDrawVariable
24148                 - Handles dropdown properly
24149                 - Fixes several minor bugs
24150
24151 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24152
24153         * ListBox.cs:
24154                 - Fixes 71946 and 71950
24155                 - Fixes changing Multicolumn on the fly
24156                 - Fixes keyboard navigation on Multicolumn listboxes
24157
24158 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24159         
24160         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
24161         crash reporter log.
24162
24163 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24164
24165         * XplatUIOSX.cs: Allow applications to actually exit.
24166
24167 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24168
24169         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
24170         their parent at creation time rather than lazily later.  Fixes a major
24171         regression we were experiencing.
24172
24173 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24174
24175         * ThemeWin32Classic.cs: more date time picker painting fixes
24176         * DateTimePicker.cs: more monthcalendar drop down fixes
24177         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
24178
24179 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24180
24181         * ScrollBar.cs:
24182                 - When moving the thumb going outside the control should stop the moving
24183                 - Adds the firing of missing events
24184                 - Fixes no button show if Size is not specified
24185                 - End / Home keys for keyboard navigation
24186
24187 2005-01-30  Peter Bartok  <pbartok@novell.com>
24188
24189         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
24190           sanity check to prevent theoretical loop
24191         * XplatUIWin32.cs (SetVisible): Removed debug output
24192         * XplatUIX11.cs (SystrayChange): Added sanity check
24193         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
24194         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
24195           behaviour, valid until the X11 client window rewrite is done
24196         * TextBox.cs (ctor): Setting proper default foreground and background
24197           colors
24198
24199 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
24200
24201         * Theme: Added DrawDateTimePicker to interface
24202         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
24203         * DateTimePicker.cs: Created (still needs keys and painting code)
24204         * DateTimePickerFormat.cs: added
24205         * MonthCalendar.cs: fixed CreateParams for popup window mode
24206           
24207 2005-01-29  Peter Bartok  <pbartok@novell.com>
24208
24209         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
24210           this should also the calculations for ligher/darker
24211         * Theme.cs: Fixed defaults for ScrollBar widths/heights
24212
24213 2005-01-29  Peter Bartok  <pbartok@novell.com>
24214
24215         * ArrangeDirection.cs: Added
24216         * ArrangeStartingPositon.cs: Added
24217         * SystemInformation.cs: Implemented
24218         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24219           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
24220           used by SystemInformation class
24221         * X11Strucs.cs: Added XSizeHints structure
24222         * MenuAPI.cs:
24223           - Fixed CreateParams to make sure the menu window is always visible
24224           - TrackPopupMenu: Added check to make sure we don't draw the
24225             menu offscreen
24226
24227 2005-01-29  Peter Bartok  <pbartok@novell.com>
24228
24229         * HandleData.cs: Added method for altering invalid area
24230         * TextBoxBase.cs: Implemented TextLength
24231
24232 2005-01-28  Peter Bartok  <pbartok@novell.com>
24233
24234         * XplatUIX11.cs: Improvement over last patch, not sending
24235           the WM_PAINT directly anymore, instead we scroll any pending
24236           exposed areas and let the system pick out the WM_PAINT later
24237
24238 2005-01-28  Peter Bartok  <pbartok@novell.com>
24239
24240         * SWF.csproj: Deleted, no longer used. Instead,
24241           Managed.Windows.Forms/SWF.csproj should be used
24242         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
24243           directly, to avoid a potential race condition with the next
24244           scroll
24245
24246 2005-01-28  Peter Bartok  <pbartok@novell.com>
24247
24248         * XplatUI.cs: Made class internal
24249
24250 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
24251
24252         * CheckedListBox.cs:
24253                 - Draw focus
24254                 - Fixed Drawing
24255                 - Missing methods and events
24256
24257 2005-01-27  Peter Bartok  <pbartok@novell.com>
24258
24259         * Application.cs (Run): Don't use form if we don't have one
24260
24261 2005-01-27  Peter Bartok  <pbartok@novell.com>
24262
24263         * TextBoxBase.cs (get_Lines): Fixed index off by one error
24264
24265 2005-01-27  Peter Bartok  <pbartok@novell.com>
24266
24267         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
24268         * GridItem.cs: Added; Patch by Jonathan S. Chambers
24269         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
24270         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
24271         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
24272         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
24273         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24274         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24275         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24276         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24277         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24278         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24279
24280 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24281
24282         * Combobox.cs:
24283                 - Draw focus on Simple Combobox
24284                 - Fixes drawing issues
24285                 - fixes 71834
24286
24287 2005-01-27  Peter Bartok  <pbartok@novell.com>
24288
24289         * Form.cs:
24290           - Place window in default location, instead of hardcoded 0/0
24291           - Send initial LocationChanged event
24292         * Control.cs:
24293           - UpdateBounds after creation to find out where the WM placed us
24294           - Make sure that if the ParentForm changes location the Form
24295             is notified
24296         * XplatUIX11.cs: XGetGeometry will not return the coords relative
24297             to the root, but to whatever the WM placed around us.
24298             Translate to root coordinates before returning toplevel
24299             coordinates
24300         * XplatUIWin32.cs: Removed debug output
24301         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
24302           flag to GetWindowPos, to allow translation of coordinates on X11
24303
24304 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24305
24306         * ListBox.cs: connect LostFocus Event
24307
24308 2005-01-27  Peter Bartok  <pbartok@novell.com>
24309
24310         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
24311           XplatUIX11.cs: Extended the Systray API
24312         * Form.cs: Removed debug output
24313         * Application.cs: Fixed focus assignment, always need to call
24314           XplatUI.Activate() since Form.Activate() has rules that may
24315           prevent activation
24316         * NotifyIcon.cs: Should be complete now
24317         * ToolTip.cs: Worked around possible timer bug
24318
24319 2005-01-27  Jackson Harper  <jackson@ximian.com>
24320
24321         * TabControl.cs:
24322         - Only invalidate the effected tabs when the
24323         selected index changes. This reduces drawing and gets rid of some
24324         flicker.
24325         - Only refresh if the tabs need to be shifted, otherwise only
24326         invalidate the slider button.
24327         - On windows the tabs are not filled to right if the slider is
24328         visible.
24329         
24330 2005-01-27  Jackson Harper  <jackson@ximian.com>
24331
24332         * TabControl.cs: Only refresh on mouseup if we are showing the
24333         slider. Also only invalidate the button whose state has changed.
24334
24335 2005-01-26  Peter Bartok  <pbartok@novell.com>
24336
24337         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
24338         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
24339           and SystrayRemove() methods
24340         * XplatUIOSX.cs: Stubbed Systray methods
24341         * XplatUIX11.cs:
24342           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
24343             methods
24344           - Fixed broken XChangeProperty calls (marshalling messed up things)
24345         * X11Structs.cs: Added enums and structs required for Size hinting
24346         * NotifyIcon.cs: Added & implemented
24347
24348 2005-01-26  Jackson Harper  <jackson@ximian.com>
24349
24350         * TabControl.cs: Space vertically layed out tabs properly.
24351
24352 2005-01-26  Peter Bartok  <pbartok@novell.com>
24353
24354         * Form.cs (CreateClientParams): Always set the location to 0,0
24355           since we're a child window.
24356
24357         * Control.cs (SetVisibleCore): Always explicitly setting the location
24358           of a toplevel window, apparently X11 doesn't like to move windows
24359           while they're not mapped.
24360
24361 2005-01-26  Jackson Harper  <jackson@ximian.com>
24362
24363         * TabControl.cs: Implement FillToRight size mode with vertically
24364         rendered tabs.
24365
24366 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24367
24368         * ControlPaint.cs, ThemeWin32Classic.cs
24369                 - Fixes DrawFocusRectangle
24370
24371 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24372
24373         * MenuAPI.cs:
24374                 - MenuBar tracking only starts when item is first clicked
24375                 - Fixes menu hidding for multiple subitems
24376                 - Unselect item in MenuBar when item Executed
24377                 - Fixes bug 71495
24378
24379 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
24380
24381         * ListControl.cs:
24382                 - IsInputKey for ListBox
24383         * ListBox.cs:
24384                 - Focus item
24385                 - Shift and Control item selection
24386                 - Implement SelectionMode.MultiExtended
24387                 - Fixes RightToLeft
24388         * ComboBox.cs:
24389                 - IsInputKey implemented
24390                 - Do not generate OnTextChangedEdit on internal txt changes
24391                 
24392 2005-01-23  Peter Bartok  <pbartok@novell.com>
24393
24394         * AccessibleObject.cs: Partially implemented Select()
24395         * MonthCalendar.cs: Added missing attributes and events
24396         * Form.cs: Fixed CreateParams behaviour, now controls derived from
24397           form can properly override CreateParams.
24398         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24399           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
24400           Control performs Invalidate & Update
24401         * NativeWindow (CreateHandle): Added special handling for Form
24402           and Form.FormParent classes to allow overriding of From.CreateParams
24403         * Control.cs:
24404           - ControlNativeWindow: Renamed 'control' variable to more intuitive
24405             name 'owner'
24406           - ControlNativeWindow: Added Owner property
24407           - Removed usage of Refresh() on property changes, changed into
24408             Invalidate(), we need to wait until the queue is processed for
24409             updates, direct calls might cause problems if not all vars for
24410             Paint are initialized
24411           - Added call to UpdateStyles() when creating the window, to set any
24412             styles that CreateWindow might have ignored.
24413           - Added support for Form CreateParent overrides to UpdateStyles()
24414         * MessageBox.cs: Removed no longer needed FormParent override stuff,
24415           CreateParams are now properly overridable
24416         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
24417           CreateParams are now properly overridable
24418
24419 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
24420
24421         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
24422         OnTextBoxChanged.
24423
24424         Capture LostFocus and OnTextBoxChanged.  The later introduces a
24425         recursive invocation that I have not figured out yet.
24426
24427         Reset the timer when not using (it was accumulating).
24428
24429
24430         (OnTextBoxChanged): Set UserEdit to true here to track whether the
24431         user has made changes that require validation.
24432
24433         Reset changing to avoid loops.
24434
24435 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
24436
24437         * NumericUpDown.cs: Display value at startup.
24438
24439         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
24440         ValidateEditText.
24441
24442         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
24443         filled in.  Added some basic parsing of text.
24444
24445         Still missing the OnXXX method overrides, and figuring out the
24446         events that must be emitted.
24447
24448         * UpDownBase.cs: Handle UserEdit on the Text property.
24449         
24450 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
24451
24452         * ComboBox.cs:
24453           - Fixes IntegralHeight
24454           - ToString method
24455
24456 2005-01-21  Jackson Harper  <jackson@ximian.com>
24457
24458         * TabControl.cs: Set the SelectedIndex property when SelectedTab
24459         is set so that the page visibility is updated and the tabs are
24460         sized correctly.
24461
24462 2005-01-21  Jackson Harper  <jackson@ximian.com>
24463
24464         * TabControl.cs: Use cliping rectangle for blitting. Give the
24465         theme the clipping rect so we can do clipping while
24466         drawing. Remove some debug code.
24467
24468 2005-01-21  Jackson Harper  <jackson@ximian.com>
24469
24470         * TabPage.cs: Add a new method so tab pages can force the tab
24471         control to recalculate the tab page sizes.
24472         * TabControl.cs: UpdateOwner needs to make the tab control recalc
24473         sizes.
24474
24475 2005-01-20  Jackson Harper  <jackson@ximian.com>
24476
24477         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
24478
24479 2005-01-20  Jackson Harper  <jackson@ximian.com>
24480
24481         * TreeView.cs: Set the bounds for nodes properly. They were
24482         getting screwed up when checkboxes were not enabled, but images
24483         were.
24484
24485 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
24486
24487         * ListBox.cs:
24488                 - Owner draw support
24489                 - Fixes
24490                 
24491 2005-01-20  Jackson Harper  <jackson@ximian.com>
24492
24493         * XplatUIStructs.cs: More misc keys
24494         * X11Keyboard.cs: Ignore some control keys.
24495
24496 2005-01-20  Jackson Harper  <jackson@ximian.com>
24497
24498         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
24499         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
24500
24501 2005-01-19  Peter Bartok  <pbartok@novell.com>
24502
24503         * Control.cs: Un-selecting the control when it is loosing focus
24504
24505 2005-01-19  Jackson Harper  <jackson@ximian.com>
24506
24507         * TreeView.cs: Hook up to the text controls leave event so we can
24508         end editing when the users clicks outside the text box.
24509         
24510 2005-01-19  Jackson Harper  <jackson@ximian.com>
24511
24512         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
24513         get set in the conversion array.
24514
24515 2005-01-19  Peter Bartok  <pbartok@novell.com>
24516
24517         * Application.cs (ModalRun): Added a call to CreateControl to ensure
24518           focus is properly set
24519         * Button.cs:
24520           - Added missing attributes
24521           - removed styles, those are already set in the base class
24522         * ButtonBase.cs:
24523           - Added missing attributes
24524           - Added clip window styles
24525         * CheckBox.cs: Added missing attributes
24526         * CommonDialog.cs:
24527           - FormParentWindow.CreateParams: Added required clip styles
24528         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
24529           also filters modifier keys
24530         * MessageBox.cs:
24531           - Added assignment of Accept and Cancel button to enable Enter
24532             and Esc keys in MessageBox dialogs
24533           - FormParentWindow.CreateParams: Added required clip styles
24534         * RadioButton.cs: Added missing attributes
24535         * TextControl.cs: No longer draws selection if control does not
24536           have focus
24537         * TextBoxBase.cs:
24538           - Now draws simple rectangle around test area to make it obvious
24539             there's a control. This is a hack until we properly support borders
24540           - A few simple fixes to support selections better, now erases selected
24541             text when typing, and resets selection when using movement keys
24542
24543 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24544
24545         * UpDownBase.cs: Added some new properties.
24546
24547         * DomainUpDown.cs: Implement a lot to get my test working.
24548
24549 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24550
24551         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
24552
24553 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24554
24555         * OSXStructs (WindowAttributes): Fixed csc complaints
24556
24557 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24558
24559         * XplayUIOSX.cs:
24560           OSXStructs.cs: Initial refactor to move enums and consts into
24561           OSXStructs and use them in the driver for greater readability.
24562
24563 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24564
24565         * XplatUIOSX.cs: Initial support for Standard Cursors.
24566         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
24567
24568 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
24569
24570         * ComboBox.cs: ability to change style when the ctrl is already
24571         created, missing methods and events, bug fixes, signature fixes
24572
24573 2005-01-19  Peter Bartok  <pbartok@novell.com>
24574
24575         * Cursors.cs (ctor): Added ctor to fix signature
24576
24577 2005-01-18  Peter Bartok  <pbartok@novell.com>
24578
24579         * Button.cs: Implemented DoubleClick event
24580         * ButtonBase.cs:
24581           - Fixed keyboard handling to behave like MS, where the press of
24582             Spacebar is equivalent to a mousedown, and the key release is
24583             equivalent to mouseup. Now a spacebar push will give the same
24584             visual feedback like a mouse click.
24585           - Added missing attributes
24586           - Added ImeModeChanged event
24587           - Added support for generating DoubleClick event for derived classes
24588         * CheckBox.cs:
24589           - Implemented DoubleClick event
24590           - Added missing attributes
24591         * CommonDialog.cs: Added missing attribute
24592         * ContextMenu.cs: Added missing attributes
24593         * RadioButton.cs:
24594           - AutoChecked buttons do not allow to be unselected when clicked
24595             (otherwise we might end up with no selected buttons in a group)
24596           - Added missing attributes
24597           - Implemented DoubleClickEvent
24598         * ThreadExceptionDialog.cs: Enabled TextBox code
24599
24600 2005-01-18  Peter Bartok  <pbartok@novell.com>
24601
24602         * Form.cs: Removed debug output
24603         * Button.cs: Added support for DoubleClick method
24604
24605 2005-01-18  Peter Bartok  <pbartok@novell.com>
24606
24607         * Form.cs:
24608           - Added method to parent window that allows triggering size
24609             calculations when a menu is added/removed
24610           - set_Menu: Cleaned up mess from early days of Form and Control,
24611             now properly triggers a recalc when a menu is added/removed
24612           - Added case to select form itself as focused form if no child
24613             controls exist
24614           - Added PerformLayout call when showing dialog, to ensure properly
24615             placed controls
24616         * Control.cs:
24617           - Select(): Made internal so Form can access it
24618           - Focus(): Only call Xplat layer if required (avoids loop), and sets
24619             status
24620         * Application.cs (Run): Removed hack and calls PerformLayout instead
24621           to trigger calculation when Form becomes visible
24622
24623 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
24624
24625         * ComboBox.cs: fixes for ownerdraw
24626
24627 2005-01-18  Peter Bartok  <pbartok@novell.com>
24628
24629         * TextControl.cs:
24630           - Sentinel is no longer static, each Document gets it's own, this
24631             avoids locking or alternatively overwrite problems when more
24632             than one text control is used simultaneously.
24633           - Switched to use Hilight and HilightText brushes for text selection
24634
24635         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
24636
24637 2005-01-18  Peter Bartok  <pbartok@novell.com>
24638
24639         * Control.cs:
24640           - Hooked up the following events:
24641                 o ControlAdded
24642                 o ControlRemoved
24643                 o HandleDestroyed
24644                 o ImeModeChanged
24645                 o ParentChanged
24646                 o TabStopChanged
24647                 o Invalidated
24648                 o SystemColorsChanged
24649                 o ParentFontChanged
24650                 o Move
24651           - Removed debug output
24652           - Added a call to the current theme's ResetDefaults when a color change
24653             is detected
24654         * Form.cs: Now setting the proper ImeMode
24655         * Theme.cs: Defined a method to force recreation of cached resources
24656           and rereading of system defaults (ResetDefaults())
24657         * ThemeWin32Classic.cs: Added ResetDefaults() stub
24658
24659 2005-01-17  Peter Bartok  <pbartok@novell.com>
24660
24661         * Control.cs: Added missing attributes
24662
24663 2005-01-17  Jackson Harper  <jackson@ximian.com>
24664
24665         * TreeNode.cs: Implement editing. Add missing properties selected
24666         and visible.
24667         * TreeView.cs: Implement node editing. Also some fixes to use
24668         Invalidate (invalid area) instead of Refresh when selecting.
24669
24670 2005-01-17  Peter Bartok  <pbartok@novell.com>
24671
24672         * Control.cs:
24673           - Implemented InvokeGotFocus() method
24674           - Implemented InvokeLostFocus() method
24675           - Implemented InvokePaint() method
24676           - Implemented InvokePaintBackground() method
24677           - Implemented InvokeClick() method
24678           - Implemented FindForm() method
24679           - Implemented RectangleToClient() method
24680           - Implemented ClientToRectangle() method
24681           - Implemented ResetBackColor() method
24682           - Implemented ResetCursor() method
24683           - Implemented ResetFont() method
24684           - Implemented ResteForeColor() method
24685           - Implemented ResetImeMode() method
24686           - Implemented ResetLeftToRight() method
24687           - Implemented ResetText() method
24688           - Implemented Scale() methods
24689           - Implemented ScaleCore() method
24690           - Implemented Update() method
24691           - Removed unused variables
24692           - Stubbed AccessibilityNotifyClients and
24693             ControlAccessibleObject.NotifyClients() methods (dunno what to do
24694             with those yet)
24695           - Now setting proper default for RightToLeft property
24696           - Fixed bug in SetClientSizeCore that would cause windows to get
24697             really big
24698           - Now sending Click/DoubleClick events
24699           - Now selecting controls when left mouse button is clicked on
24700             selectable control
24701         * AccessibleEvents.cs: Added
24702         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
24703         * XplatUIOSX.cs: Stubbed UpdateWindow() method
24704         * XplatUIWin32.cs: Implemented UpdateWindow() method
24705         * XplatUIX11.cs: Implemented UpdateWindow() method
24706         * Form.cs: Removed stray semicolon causing CS0162 warning
24707         * ThemeWin32Classic.cs: Fixed unused variable warnings
24708         * ScrollableControl.cs: Now calls base method for ScaleCore
24709         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
24710           style to avoid interference with internal click handler (which is
24711           different than standard Control click handling)
24712         * RadioButton.cs:
24713           - Now unchecks all sibling radio buttons when control is
24714             selected (Fixes #68756)
24715           - Removed internal tabstop variable, using the one inherited from
24716             Control
24717
24718 2005-01-17  Jackson Harper  <jackson@ximian.com>
24719
24720         * NavigateEventArgs.cs: Fix base type.
24721         * LinkLabel.cs: Sig fix
24722         
24723 2005-01-17  Jackson Harper  <jackson@ximian.com>
24724
24725         * TreeView.cs: Only invalidate the effected nodes bounds when
24726         selecting nodes.
24727
24728 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24729
24730         * XplatUIWin32.cs: fixes Win32 marshaling
24731         * XplatUIX11.cs: fixes method signature
24732
24733 2005-01-17  Peter Bartok  <pbartok@novell.com>
24734
24735         * XplatUIX11.cs: Clean up resources when we no longer need them
24736
24737 2005-01-17  Peter Bartok  <pbartok@novell.com>
24738
24739         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
24740           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
24741           and DestroyCursor() methods.
24742         * Cursor.cs: Partially implemented, now supports standard cursors;
24743           still contains some debug code
24744         * Cursors.cs: Implemented class
24745         * Control.cs:
24746           - WndProc(): Added handling of WM_SETCURSOR message, setting the
24747             appropriate cursor
24748           - Implemented Cursor property
24749           - Replaced break; with return; more straightforwar and possibly
24750             faster
24751           - Now properly setting the result for WM_HELP
24752         * X11Structs.cs: Added CursorFontShape enum
24753         * XplatUIStructs.cs:
24754           - Added StdCursor enum (to support DefineStdCursor() method)
24755           - Added HitTest enum (to support sending WM_SETCURSOR message)
24756         * XplatUIX11.cs:
24757           - Now sends the WM_SETCURSOR message
24758           - Implemented new cursor methods
24759         * XplatUIOSX.cs: Stubbed new cursor methods
24760         * XplatUIWin32.cs:
24761           - Implemented new cursor methods
24762           - Added GetSystemMetrics function and associated enumeration
24763
24764 2005-01-15  Peter Bartok  <pbartok@novell.com>
24765
24766         * Control.cs:
24767           - WndProc(): Now handles EnableNotifyMessage
24768           - SelectNextControl(): Fixed bug where if no child or sibling
24769             controls exist we looped endlessly
24770
24771 2005-01-14  Jackson Harper  <jackson@ximian.com>
24772
24773         * TreeView.cs: Recalculate the tab pages when a new one is added
24774         so that the proper bounding rects are created.
24775
24776 2005-01-14  Jackson Harper  <jackson@ximian.com>
24777
24778         * TreeView.cs: Draw a gray box instead of a grip in the lower
24779         right hand corner when there are both horizontal and vertical
24780         scroll bars.
24781
24782 2005-01-14  Jackson Harper  <jackson@ximian.com>
24783
24784         * Control.cs: When erasing backgrounds use FromHwnd instead of
24785         FromHdc when there is a NULL wparam. This occurs on the X driver.
24786         * XplatUIX11.cs: Set the wparam to NULL.
24787
24788 2005-01-13  Jackson Harper  <jackson@ximian.com>
24789
24790         * PictureBox.cs: Implement missing methods (except ToString, need
24791         to test that on windows) and events. When visibility is changed we
24792         need to redraw the image because the buffers are killed. When size
24793         is changed refresh if the sizemode needs it.
24794
24795 2005-01-13  Peter Bartok  <pbartok@novell.com>
24796
24797         * Control.cs (SelectNextControl): Was using wrong method to select
24798           a control
24799
24800 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24801
24802         * ComboBox.cs: fixes dropstyle
24803
24804 2005-01-13  Peter Bartok  <pbartok@novell.com>
24805
24806         * Form.cs:
24807           - Implemented Select() override
24808           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
24809           - Now sets keyboard focus on startup
24810         * Control.cs (SelectNextControl): Now properly handles directed=true
24811         * TextBoxBase.cs:
24812           - WndProc: Now passes tab key on to base if AcceptTabChar=false
24813           - Added (really bad) focus rectangle (mostly for testing)
24814         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
24815           to enforce redraw on focus changes
24816         * ContainerControl.cs:
24817           - Fixed detection of Shift-Tab key presses
24818           - Fixed traversal with arrow keys
24819         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
24820           gonna keep this or if it's complete yet
24821         
24822 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24823
24824         * ComboBox.cs: missing properties, fixes
24825
24826 2005-01-13  Peter Bartok  <pbartok@novell.com>
24827
24828         * Panel.cs (ctor): Setting Selectable window style to off
24829         * Splitter.cs (ctor): Setting Selectable window style to off
24830         * GroupBox.cs (ctor): Setting Selectable window style to off
24831         * Label.cs (ctor): Setting Selectable window style to off
24832
24833 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
24834
24835         * UpDownBase.cs (InitTimer): If the timer has been already
24836         created, enable it.
24837
24838         Use a TextBox instead of a Label.
24839
24840 2005-01-12  Jackson Harper  <jackson@ximian.com>
24841
24842         * TreeView.cs: Refresh the tree after sorting the nodes. Always
24843         draw the connecting node lines (when ShowLines is true).
24844         * TreeNode.cs: The nodes index can now be updated. This is used
24845         when a node collection is sorted.
24846         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
24847         insert or an existing unsorted node collection can be sorted.
24848         
24849 2005-01-12  Peter Bartok  <pbartok@novell.com>
24850
24851         * ContainerControl.cs: Implemented ProcessDialogKeys()
24852
24853 2005-01-12  Peter Bartok  <pbartok@novell.com>
24854
24855         * Control.cs:
24856           - Implemented SelectNextControl() method
24857           - Several focus related bug fixes
24858           - Fixed Docking calculations to match MS documentation and
24859             behaviour
24860
24861 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
24862
24863         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
24864         bug fixes
24865
24866 2005-01-12  Peter Bartok  <pbartok@novell.com>
24867
24868         * Control.cs:
24869           - Fixed broken Contains() method
24870           - Implemented GetNextControl() method. Finally. This is the pre-
24871             requisite for focus handling.
24872
24873 2005-01-12  Peter Bartok  <pbartok@novell.com>
24874
24875         * OSXStrucs.cs: Added
24876
24877 2005-01-12  Peter Bartok  <pbartok@novell.com>
24878
24879         * XplatUIWin32.cs:
24880           - Removed PeekMessageFlags
24881           - Implemented SetWindowStyle() method
24882         * XplatUIStructs.cs: Added PeekMessageFlags
24883         * X11Structs: Added missing border_width field to XWindowChanges struct
24884         * XplatUIX11.cs:
24885           - PeekMessage: Now throws exception if flags which are not yet
24886             supported are passed
24887           - Implemented SetWindowStyle() method
24888           - Fixed SetZOrder to handle AfterHwnd properly
24889         * XplatUI.cs: Added SetWindowStyle() method
24890         * XplatUIDriver.cs: Added SetWindowStyle() abstract
24891         * Control.cs:
24892           - Implemented UpdateStyles() method
24893           - Implemented UpdateZOrder() method
24894         * XplatUIOSX.cs: Added SetWindowStyle() stub
24895
24896 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
24897
24898         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
24899         button mouse).
24900
24901
24902 2005-01-11  Jackson Harper  <jackson@ximian.com>
24903
24904         * TreeView.cs: Still need to draw lines to siblings even if out of
24905         the current node is out of the clip.
24906
24907 2005-01-11  Jackson Harper  <jackson@ximian.com>
24908
24909         * TreeView.cs: When setting the hbar/vbar/grip position use
24910         SetBounds so that perform layout is only called once. Also suspend
24911         and resume layout so layout is only done once for all controls.
24912         - Removed some debug fluff
24913         * SizeGrip.cs: Call base implmentation in overriding methods.
24914         - When visibility is changed the drawing buffers are killed so we
24915         need to redraw.
24916
24917 2005-01-11  Jackson Harper  <jackson@ximian.com>
24918
24919         * TreeView.cs: Calculate the open node count while drawing. This
24920         saves us an entire tree traversal for every paint operation. Use
24921         a member var for the open node count so less vars are passed around.
24922
24923 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
24924
24925         * MonthCalendar.cs:
24926         - fixed selection to use mousemove, not mouse polling on timer
24927         * ThemeWin32Classic.cs
24928         - removed redundant unused variable "no_more_content"
24929         
24930 2005-01-11  Peter Bartok  <pbartok@novell.com>
24931
24932         * XplatUIX11.cs (DoEvents): Needs to return when no more events
24933           are pending, so it now calls PeekMessage instead of GetMessage;
24934           implemented a incomplete version of PeekMessage
24935         
24936 2005-01-11  Peter Bartok  <pbartok@novell.com>
24937
24938         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
24939           I18n issues
24940         * TextBoxBase.cs: Added sending of TextChanged event
24941
24942 2005-01-10  Jackson Harper  <jackson@ximian.com>
24943
24944         * TreeView.cs: Try not to draw outside the clipping rectangle on
24945         each node element.
24946
24947 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
24948
24949         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
24950
24951 2005-01-10  Jackson Harper  <jackson@ximian.com>
24952
24953         * TreeView.cs:
24954         - Implement fast scrolling. Now only the newly
24955         exposed nodes are drawn and the old image is moved using the
24956         XplatUI::ScrollWindow method.
24957         - Factor in height of nodes when calculating whether or not the
24958         node is in the clipping rect.
24959
24960 2005-01-10  Jackson Harper  <jackson@ximian.com>
24961
24962         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
24963
24964 2005-01-10  Peter Bartok  <pbartok@novell.com>
24965
24966         * Application.cs: Added temporary hack to resolve all our resize
24967           required issues on startup. This will get fixed properly at
24968           some point in the future
24969
24970 2005-01-10  Jackson Harper  <jackson@ximian.com>
24971
24972         * SizeGrip.cs: New internal class that is used as a sizing
24973         grip control...hence the name.
24974
24975 2005-01-10  Peter Bartok  <pbartok@novell.com>
24976
24977         * Control.cs: Implemented proper TabIndex handling, now assigning
24978           a tabindex when a control is added to a container
24979         * GroupBox.cs (ctor): Now sets the Container style bit, required
24980           for Control.GetNextControl()
24981
24982 2005-01-09  Jackson Harper  <jackson@ximian.com>
24983
24984         * TextBoxBase.cs: Clear window when scrolling (fixes build).
24985
24986 2005-01-09  Peter Bartok <pbartok@novell.com>
24987
24988         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
24989           XplatUIX11.cs: Added ability to control ScrollWindow expose and
24990           an overload for ScrollWindow to allow only scrolling a rectangle
24991
24992 2005-01-09  Peter Bartok <pbartok@novell.com>
24993
24994         * Form.cs:
24995           - Implemented SetDesktopBounds method
24996           - Implemented SetDesktopLocation method
24997
24998 2005-01-08  Jackson Harper  <jackson@ximian.com>
24999
25000         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
25001         the node count has changed, this removes to VScroll::Refresh calls
25002         when drawing.
25003
25004 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
25005
25006         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
25007
25008 2005-01-07  Jackson Harper  <jackson@ximian.com>
25009
25010         * TreeNode.cs: Just update the single node when it is
25011         checked. Don't refresh after toggling, the Expand/Collapse already
25012         handles this.
25013         * TreeView.cs: Respect clipping a little more when drawing. Try
25014         not to redraw things that don't need to be redrawn. Just hide the
25015         scrollbars when they are no longer needed instead of removing
25016         them, so they don't have to be created again and again.
25017         
25018 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
25019
25020         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
25021         coordinates to window space to place the caret properly, FIXED.
25022         Implement GetWindowState & SetWindowState
25023
25024 2005-01-06  Peter Bartok <pbartok@novell.com>
25025
25026         * Form.cs:
25027           - Implemented ClientSize property
25028           - Implemented DesktopBounds property
25029           - Implemented DesktopLocation property
25030           - Implemented IsRestrictedWindow property
25031           - Implemented Size property
25032           - Implemented TopLevel property
25033           - Implemented FormWindowState property
25034         * Control.cs:
25035           - Implemented GetTopLevel() method
25036           - Implemented SetTopLevel() method
25037         * X11Structs.cs (Atom):
25038           - Added AnyPropertyType definition
25039           - Added MapState definiton and updated XWindowAttribute struct
25040         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
25041         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
25042         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
25043         * XplatUIWin32.cs:
25044           - Implemented GetWindowState() and SetWindowState() methods
25045           - Fixed Win32GetWindowLong return type
25046         * XplatUIX11.cs:
25047           - Introduced central function for sending NET_WM messages
25048           - Implemented GetWindowState() and SetWindowState() methods
25049         * TextBoxBase.cs (set_Lines):
25050           - Now uses Foreground color for text added via Text property (Duh!)
25051           - Added code to remember programmatically requested size (fixes
25052             behaviour when Multiline is set after Size)
25053           - Added AutoSize logic
25054
25055 2005-01-06  Jackson Harper  <jackson@ximian.com>
25056
25057         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
25058
25059 2005-01-06  Jackson Harper  <jackson@ximian.com>
25060
25061         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
25062         set to less then 0.
25063
25064 2005-01-06  Jackson Harper  <jackson@ximian.com>
25065
25066         * ScrollableControl.cs: Lazy init the scrollbars.
25067         
25068 2005-01-06  Jackson Harper  <jackson@ximian.com>
25069
25070         * Theme.cs: Speed up getting pens and solid brushes, by using
25071         their ARGB as a hash instead of tostring and not calling Contains.
25072
25073 2005-01-06  Peter Bartok <pbartok@novell.com>
25074
25075         * Form.cs:
25076           - Implemented OnActivated and OnDeactivate event trigger
25077           - Implemented Activate() method
25078           - Fixed ShowDialog() to activate the form that was active before
25079             the dialog was shown
25080         * XplatUIX11.cs:
25081           - Added global active_window var that tracks the currently active
25082             X11 window
25083           - Now always grabs Property changes from the root window to always
25084             catch changes on the active window property
25085           - Added code to PropertyNotify handler to send Active/Inactive
25086             messages when state changes. This puts X11 and Win32 en par on
25087             WM_ACTIVATE notifications (except for double notifications when
25088             the user clicks away from our modal window to another one of our
25089             windows)
25090
25091 2005-01-05  Jackson Harper  <jackson@ximian.com>
25092
25093         * ImageList.cs: Implment ctor
25094
25095 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25096
25097         * XplatUIOSX.cs: Implement Activate/SetTopmost
25098
25099 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25100
25101         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
25102
25103 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25104
25105         * XplatUIOSX.cs: Implement GetActive/SetFocus.
25106
25107 2005-01-05  Peter Bartok <pbartok@novell.com>
25108
25109         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
25110           XplatUIOSX.cs: Added GetActive method to return the currently
25111           active window for the application (or null, if none is active)
25112         * Form.cs:
25113           - Implemented ActiveForm
25114           - Commented out owner assignment for modal dialogs (causes problems
25115             on Win32, since the owner will be disabled)
25116           - Reworked some Active/Focus handling (still incomplete)
25117         * CommonDialog.cs: Commented out owner assignment for modal dialogs
25118           (causes problems on Win32, since the owner will be disabled)
25119         * IWin32Window: Added ComVisible attribute
25120
25121 2005-01-05  Peter Bartok <pbartok@novell.com>
25122
25123         * ToolTip.cs (WndProc): Enable setting focus now that we have the
25124           required XplatUI functions.
25125
25126 2005-01-05  Peter Bartok <pbartok@novell.com>
25127
25128         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
25129           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
25130           to implement focus and activation handling; still incomplete and
25131           with debug output
25132
25133 2005-01-04  Peter Bartok <pbartok@novell.com>
25134
25135         * TextBoxBase.cs: Changed access level for Document property to
25136           match switch to internal for TextControl
25137
25138 2005-01-04  Peter Bartok <pbartok@novell.com>
25139
25140         * AccessibleObject: Added ComVisible attribute
25141
25142 2005-01-04  Jackson Harper  <jackson@ximian.com>
25143
25144         * X11Keyboard.cs: Remove unneeded var.
25145
25146 2005-01-04  Jackson Harper  <jackson@ximian.com>
25147
25148         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
25149         but PAINT.
25150         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
25151         ClientMessage. This makes apps exit cleanly (more often).
25152         
25153 2005-01-04  Jackson Harper  <jackson@ximian.com>
25154
25155         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
25156         handling focus, return correct colors and fonts,
25157         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
25158         handle selection, horizontal scrolling, and mouse interaction.
25159
25160 2005-01-04  Peter Bartok <pbartok@novell.com>
25161
25162         * ICommandExecutor.cs: Added
25163         * IDataGridColumnStyleEditingNotificationService.cs: Added
25164         * IFeatureSupport.cs: Added
25165         * IFileReaderService.cs: Added
25166         * IDataObject.cs: Added ComVisible attribute
25167         * AmbientProperties.cs: Added
25168         * BaseCollection.cs: Added missing attributes
25169         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
25170         * BaseCollection.cs: Added missing attributes
25171         * Binding.cs: Added TypeConverter attribute
25172         * BindingContext.cs: Added DefaultEvent attribute
25173         * BindingsCollection.cs: Added DefaultEvent attribute
25174         * Button.cs: Added DefaultValue attribute
25175         * DragEventArgs.cs: Added ComVisible attribute
25176         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
25177         * KeyEventArgs.cs: Added ComVisible attribute
25178         * KeyPressEventArgs.cs: Added ComVisible attribute
25179         * MouseEventArgs.cs: Added ComVisible attribute
25180         * NavigateEventArgs.cs: Added
25181         * NavigateEventHandler.cs: Added
25182         * FeatureSupport.cs: Added
25183         * OSFeature.cs: Added
25184         * Theme.cs: Added abstract Version property to support OSFeature
25185         * ThemeWin32Classic.cs: Added Version property to
25186           support OSFeature.Themes
25187         * ProgressBar.cs: Removed OnPaintBackground override, not required since
25188           the proper styles to avoid background drawing are set, also doesn't
25189           match MS signature
25190         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
25191         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
25192         * ScrollEventArgs.cs: Added ComVisible attribute
25193         * SplitterEventArgs.cs: Added ComVisible attribute
25194         * AccessibleSelection.cs: Added Flags attribute
25195         * Appearance.cs: Added ComVisible attribute
25196         * Border3DSide.cs: Added ComVisible attribute
25197         * Border3DStyle.cs: Added ComVisible attribute
25198         * BorderStyle.cs: Added ComVisible attribute
25199         * DragAction.cs: Added ComVisible attribute
25200         * ErrorBlinkStyle.cs: Added
25201         * ScrollEventType.cs: Added ComVisible attribute
25202         * AnchorStyles.cs: Added Editor attribute
25203         * DockStyle.cs: Added Editor attribute
25204         * HorizontalAlignment.cs: Added ComVisible attribute
25205         * HelpEventArgs.cs: Added ComVisible attribute
25206         * PaintEventArgs.cs: Added IDisposable
25207
25208 2005-01-04  Peter Bartok <pbartok@novell.com>
25209
25210         * TextControl.cs: Switched Line, LineTag and Document classes to
25211           internal
25212
25213 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25214
25215         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
25216         Simple mode, fixes, IntegralHeight, etc.
25217
25218 2005-01-04  Peter Bartok <pbartok@novell.com>
25219
25220         * TextBoxBase.cs: Using proper font variable now
25221
25222 2005-01-04  Peter Bartok <pbartok@novell.com>
25223
25224         * Form.cs (ShowDialog): Set parent to owner, if provided
25225         * GroupBox.cs: Removed unused vars
25226         * TextControl.cs:
25227           - Added GetHashCode() for Document and LineTag classes
25228           - Removed unused variables
25229           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
25230             to allow translation between continuous char position and line/pos
25231         * CheckBox.cs: Removed vars that are provided by base class
25232         * RadioButton.cs: Removed vars that are provided by base class, added
25233           new keyword where required
25234         * LinkLabel.cs: Added new keyword where required
25235         * Control.cs (WndProc): Removed unused variable
25236         * TextBoxBase.cs:
25237           - Finished SelectionLength property
25238           - Implemented SelectionStart property
25239           - Implemented Text property
25240           - Removed unused vars
25241         * MessageBox.cs: Added new keyword where required
25242         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
25243           WndProc signature
25244         * MenuAPI.cs: Added new keyword where required
25245         * ButtonBase.cs: Removed vars that are provided by base class, added
25246           new keyword where required
25247         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
25248           argument to double, to allow compiling with csc 2.0 (Atsushi ran
25249           into this)
25250         * Application.cs (Run): Now triggers the ThreadExit event
25251         * CommonDialog.cs: Added new keyword where required; now properly sets
25252           parent (owner) for dialog
25253         * XplatUIX11.cs: Commented out unused vars
25254         * StatusBar.cs: Fixed signature for Text property
25255         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
25256
25257 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25258
25259         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
25260         TrackBar.cs, MonthCalendar.cs: remove unused vars
25261
25262 2005-01-03  Jackson Harper  <jackson@ximian.com>
25263
25264         * ThemeWin32Classic.cs:
25265         * X11Keyboard.cs: Remove unused vars.
25266
25267 2005-01-03  Peter Bartok  <pbartok@novell.com>
25268
25269         * TextBox.cs:
25270           - set_Text: Tied into TextControl
25271           - set_TextAlignment: Tied into TextControl
25272         * TextControl.cs:
25273           - Added alignment properties and implemented alignment handling
25274             and drawing (still has a bug, not generating proper expose events)
25275           - Added new Line() constructor to allow passing the line alignment
25276           - Fixed selection setting, properly handling end<start now
25277           - Added aligment considerations to RecalculateDocument()
25278         * TextBoxBase.cs:
25279           - Now properly enforces control height for single line controls
25280           - Added support for CharacterCasing
25281           - Added IsInputKey override
25282           - Fixed Keys.Enter logic
25283           - Added SetBoundsCore override
25284           - Fixed mouse selection handling
25285
25286 2005-01-03  Jackson Harper  <jackson@ximian.com>
25287
25288         * TreeView.cs:
25289           - Collapse and uncheck all nodes when CheckBoxes is disabled.
25290           - Checkboxes are always aligned to the bottom of the node,
25291           regardless of item height.
25292           - Use the node bounds to draw the text so we can center it when
25293           the item height is greater then the font height.
25294           - Node::Bounds are only the text part of the node.
25295         * TreeNode.cs: New method to combine collapsing and unchecking all
25296           nodes recursively.
25297
25298 2005-01-02  Jackson Harper  <jackson@ximian.com>
25299
25300         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
25301         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
25302         tree when a check is changed. TODO: Only refresh the checked node.
25303
25304 2004-12-30  Jackson Harper  <jackson@ximian.com>
25305
25306         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
25307         * TreeNode.cs: When collapsing make sure to never collapse the
25308         root node.
25309
25310 2004-12-29  Jackson Harper  <jackson@ximian.com>
25311
25312         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
25313         
25314 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
25315
25316         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
25317
25318 2004-12-28  Peter Bartok  <pbartok@novell.com>
25319
25320         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
25321           not yet assigned
25322
25323 2004-12-28  Peter Bartok  <pbartok@novell.com>
25324
25325         * Control.cs (WndProc): Added WM_HELP handler, now generates
25326           HelpRequested event
25327         * Form.cs: Added HelpButton property and required support code
25328         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
25329
25330 2004-12-28  Peter Bartok  <pbartok@novell.com>
25331
25332         * CommonDialog.cs:
25333           - Made DialogForm.owner variable internal
25334           - Added check to ensure owner form is set before setting
25335             owner properties in CreateParams
25336
25337 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
25338
25339         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
25340           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
25341           GetCursorPos.  Fix major visibility issues.  Rework the windowing
25342           system to support borderless/titleless windows (implements menus).
25343           Fix GetWindowPos.  Implement initial background color support for
25344           views.
25345
25346 2004-12-28  Peter Bartok  <pbartok@novell.com>
25347
25348         * Form.cs (get_CreateParams): Make sure we have an owner before using
25349           the owner variable. Implement proper default if no owner exists
25350
25351 2004-12-28  Peter Bartok  <pbartok@novell.com>
25352
25353         * In preparation for making Managed.Windows.Forms the default build target
25354           for System.Windows.Forms, the following stubbed files were added.
25355           Dialogs are currently being implemented by contributors and are only
25356           short-term place holders.
25357         * ColorDialog.cs: Initial check-in (minmal stub)
25358         * DataGrid.cs: Initial check-in (minimal stub)
25359         * DataGridLineStyle.cs: Initial check-in (minimal stub)
25360         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
25361         * DataGridTableStyle.cs: Initial check-in (minimal stub)
25362         * FontDialog.cs: Initial check-in (minimal stub)
25363         * FileDialog.cs: Initial check-in (minimal stub)
25364         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
25365         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
25366         * OpenFileDialog: Initial check-in (minimal stub)
25367         * IComponentEditorPageSite.cs: Initial check-in
25368         * Splitter.cs: Initial check-in (for Jackson)
25369         * SplitterEventArgs.cs: Initial check-in (for Jackson)
25370         * SplitterEventHandler.cs: Initial check-in (for Jackson)
25371         * TextBox.cs: Initial check-in; still needs some wiring to
25372           TextControl backend
25373         * Form.cs: Implemented ControlBox property
25374         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
25375         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
25376         * TextControl.cs: Added selection functionality; added todo header
25377         * TextBoxBase.cs:
25378           - Implemented Lines property
25379           - Implemented TextHeight property
25380           - Implemented SelectedText property
25381           - Implemented SelectionLength property
25382           - Implemented SelectAll method
25383           - Implemented ToString method
25384           - Removed and cleaned up some debug code
25385           - Implemented (still buggy) mouse text selection
25386
25387 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
25388
25389         * ComboBox.cs: Complete DropDownList implementation, fixes.
25390
25391 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
25392
25393         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
25394         * ComboBoxStyle.cs: ComboBoxStyle enum
25395         * ComboBox.cs: Initial work on ComboBox control
25396
25397 2004-12-21  Peter Bartok  <pbartok@novell.com>
25398
25399         * Control.cs (ctor, CreateParams): Moved setting of is_visible
25400           forward so that anything that creates a window gets the default,
25401           also no longer uses Visible property in CreateParams to avoid
25402           walking up the parent chain and possibly get the wrong visible
25403           status. Fixed IsVisible to no longer walk up to the parent.
25404
25405 2004-12-21  Peter Bartok  <pbartok@novell.com>
25406
25407         * Form.cs (ShowDialog): Unset modality for the proper window
25408  
25409 2004-12-20  Peter Bartok  <pbartok@novell.com>
25410
25411         * CommonDialog.cs: Initial check-in
25412
25413 2004-12-20  Peter Bartok  <pbartok@novell.com>
25414
25415         * Control.cs (Visible): Now uses the parent window instead of the
25416           client area window for the property
25417
25418         * Form.cs
25419           - ShowDialog(): Now uses the proper window for modality
25420           - The default visibility state for the form parent is now false. This
25421             will prevent the user from seeing all the changes to the form and
25422             its controls before the application hits Application.Run()
25423           - Removed some stale commented out code
25424
25425         * NativeWindow.cs:
25426           - Added FindWindow() method to have a method to check for existence
25427             of a window handle
25428           - Added ability to override default exception handling (for example
25429             when debugging with VS.Net; to do this the ExternalExceptionHandler
25430             define must be set
25431           - Removed some useless debug output
25432
25433         * XplatUIX11.cs:
25434           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
25435             not working as expected
25436           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
25437             property to allow switching back to the modal window if focus is
25438             given to another one of our windows (Application Modal)
25439           - Now only sets override_redirect if we create a window
25440             without WS_CAPTION
25441           - Moved EventMask selection before mapping of newly created window
25442             so we can catch the map event as well
25443           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
25444           - Added various Atom related DllImports
25445           - Implemented Exit() method
25446           - .ctor() : No longer shows window if WS_VISIBLE is not defined
25447             in the CreateParams
25448
25449         * MessageBox.cs: Now properly deals with the FormParent window by
25450           providing an override the FormParent CreateParams property to
25451           set as POPUP instead of OVERLAPPED window.
25452
25453 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25454
25455         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
25456         Minor code cleanup.
25457
25458 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25459         
25460         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
25461
25462 2004-12-18  Peter Bartok  <pbartok@novell.com>
25463
25464         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
25465           implementing SetModal() method
25466
25467 2004-12-18  Peter Bartok  <pbartok@novell.com>
25468
25469         * X11Structs.cs (XGCValues): Fixed type of function element
25470         * XplatUI.cs: Added ScrollWindow() method
25471         * XplatUIDriver.cs: Added ScrollWindow() abstract
25472         * XplatUIWin32.cs: Implemented ScrollWindow() method
25473         * XplatUIX11.cs: Implemented ScrollWindow() method
25474         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
25475
25476 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25477
25478         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
25479         Some more keyboard support (INCOMPLETE)
25480
25481 2004-12-17  Peter Bartok  <pbartok@novell.com>
25482
25483         * TextControl.cs:
25484         - Added color attribute to line tags.
25485         - Added color argument to all functions dealing with tags
25486         - Added color argument support to various functions
25487         - Fixed miss-calculation of baseline/shift in certain circumstances
25488
25489         * TextBoxBase.cs: Added new color option to test code
25490
25491 2004-12-17  Jackson Harper  <jackson@ximian.com>
25492
25493         * TreeNode.cs:
25494         * MonthCalendar.cs: Signature fixes
25495
25496 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25497
25498         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
25499         keyboard event moved it.  Create a new graphics context for each paint resolves this
25500
25501 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25502
25503         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
25504         Make caret exist and go blink blink.  Initial keyboard support.
25505         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
25506         works.
25507
25508 2004-12-17  Jackson Harper  <jackson@ximian.com>
25509
25510         * XplatUIStructs.cs: Updated set of virtual keycodes.
25511         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
25512
25513 2004-12-17  Jackson Harper  <jackson@ximian.com>
25514
25515         * XplatUIX11.cs: Prune old keyboard code.
25516
25517 2004-12-17  Jackson Harper  <jackson@ximian.com>
25518
25519         * XplatUIX11.cs: When generating mouse wparams get the modifier
25520         keys from the ModifierKeys property.
25521
25522 2004-12-17  Jackson Harper  <jackson@ximian.com>
25523
25524         * X11Keyboard.cs: Send up/down input when generating
25525         messages. Remove some unused vars.
25526
25527 2004-12-17  Jackson Harper  <jackson@ximian.com>
25528
25529         * TabControl.cs:
25530         * TreeView.cs: get rid of warnings.
25531
25532 2004-12-17  Jackson Harper  <jackson@ximian.com>
25533
25534         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
25535
25536 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
25537
25538         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
25539           CheckedListBox.cs: Implementation
25540
25541 2004-12-17  Peter Bartok  <pbartok@novell.com>
25542
25543         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
25544
25545 2004-12-16  Peter Bartok  <pbartok@novell.com>
25546
25547         * TextControl.cs:
25548           - InsertCharAtCaret(): Fixed start pos fixup
25549           - CaretLine_get: No longer derives the line from the tag, the tag
25550             could be stale if lines in the document have been added or deleted
25551           - RebalanceAfterDelete(): Fixed bug in balancing code
25552           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
25553           - Line.Streamline(): Now can also elminate leading empty tags
25554           - DumpTree(): Added a few more tests and prevented exception on
25555             uninitialized data
25556           - Added Debug section for Combining lines
25557           - Delete(): Now copies all remaining properties of a line
25558           
25559         * TextBoxBase.cs:
25560           - Left mousebutton now sets the caret (and middle button still acts
25561             as formatting tester, which must go away soon)
25562           - Added Debug section for Deleting/Combining lines
25563           - Fixed calculations for UpdateView after Combining lines
25564
25565 2004-12-16  Peter Bartok  <pbartok@novell.com>
25566
25567         * TextControl.cs: Now properly aligns text on a baseline, using the
25568           new XplatUI.GetFontMetrics() method. Simplified several calculations
25569         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
25570           defined
25571
25572 2004-12-16  Peter Bartok  <pbartok@novell.com>
25573
25574         * XplatUI.cs: Added GetFontMetrics() method
25575         * XplatUIDriver.cs: Added GetFontMetrics() abstract
25576         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
25577           into libgdiplus, our private GetFontMetrics function
25578         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
25579         * XplatUIWin32.cs: Implemented GetFontMetrics() method
25580
25581 2004-12-16  Jackson Harper  <jackson@ximain.com>
25582
25583         * XplatUIStruct.cs: Add enum for dead keys
25584         * X11Keyboard.cs: Map and unmap dead keys.
25585
25586 2004-12-16  Jackson Harper  <jackson@ximian.com>
25587
25588         * X11Keyboard.cs: Detect and use the num lock mask.
25589
25590 2004-12-16  Peter Bartok  <pbartok@novell.com>
25591
25592         * Control.cs (CreateGraphics): Added check to make sure the
25593           handle of the window exists before calling Graphics.FromHwnd()
25594
25595 2004-12-16  Peter Bartok  <pbartok@novell.com>
25596
25597         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
25598           contains a lot of code that's not supposed to be there for the
25599           real thing, but required for developing/testing the textbox
25600           backend.
25601
25602 2004-12-16  Peter Bartok  <pbartok@novell.com>
25603
25604         * TextControl.cs:
25605         - Fixed Streamline method
25606         - Added FindTag method to Line
25607         - Added DumpTree method for debugging
25608         - Added DecrementLines() method for deleting lines
25609         - Fixed UpdateView to update the cursor to end-of-line on single-line
25610           updates
25611         - Added PositionCaret() method
25612         - Fixed MoveCaret(LineDown) to move into the last line, too
25613         - Added InsertChar overload
25614         - Fixed InsertChar tag offset calculations
25615         - Added DeleteChar() method
25616         - Added Combine() method for folding lines
25617         - Fixed Delete() method, no longer allocates wasted Line object and
25618           now copies all properties when swapping nodes
25619         - Delete() method now updates document line counter
25620
25621 2004-12-15  Jackson Harper  <jackson@ximian.com>
25622
25623         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
25624         * X11Keyboard.cs: Expose the currently selected modifier keys
25625         through a property.
25626
25627 2004-12-15  Peter Bartok  <pbartok@novell.com>
25628
25629         * TextControl.cs: Initial check-in. Still incomplete
25630
25631 2004-12-15  Jackson Harper  <jackson@ximian.com>
25632
25633         * TreeNode.cs:
25634         * TreeView.cs: Fix build on csc (second time today ;-))
25635
25636 2004-12-15  Jackson Harper  <jackson@ximian.com>
25637
25638         * TreeView.cs: Store the treenodes plus/minus box bounds when it
25639         is calculated and use this for click testing.
25640         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
25641
25642 2004-12-15  Jackson Harper  <jackson@ximian.com>
25643
25644         * TreeView.cs: Pass the nodes image index to the image list when
25645         drawing that image.
25646
25647 2004-12-15  Jackson Harper  <jackson@ximian.com>
25648
25649         * X11Keyboard.cs: Set messages hwnd.
25650         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
25651         post_message calls.
25652
25653 2004-12-15  Jackson Harper  <jackson@ximian.com>
25654
25655         * X11Keyboard.cs: Fix to compile with csc.
25656         
25657 2004-12-15  Jackson Harper  <jackson@ximian.com>
25658
25659         * X11Structs.cs: Add key mask values
25660         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
25661         * X11Keyboard.cs: New file - Extrapolates and interpolates key
25662         down/up foo into WM_CHAR foo
25663         * KeyboardLayouts.cs: Common keyboard layouts
25664         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
25665         post messages into the main queue.
25666
25667 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
25668
25669         * Button.cs: implement ProcessMnemonic
25670         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
25671           brushes everytime
25672         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
25673         * ButtonBase.cs: Show HotkeyPrefix (not the &)
25674
25675 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
25676         
25677         * MonthCalendar.cs: Implemented click-hold for next/previous month
25678           and date selection
25679           
25680 2004-12-11  Peter Bartok  <pbartok@novell.com>
25681
25682         * X11Structs.cs:
25683           - Added XKeyboardState (moved from XplatUIX11.cs)
25684           - Added XCreateGC related enums and structures
25685           - Added GXFunction for XSetFunction
25686
25687         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
25688
25689         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
25690           CaretVisible() calls
25691
25692         * ToolTip.cs: Added code to prevent stealing focus from app windows
25693
25694         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
25695           DestroyCaret, SetCaretPos and CaretVisible)
25696
25697         * XplatUIX11.cs:
25698           - Added implementation for caret functions
25699           - Moved hover variables into a struct, to make it a bit easier
25700             on the eyes and to debug
25701           - Removed XKeyboardState (moved to XplatUIX11.cs)
25702           - Moved Keyboard properties into the properties region
25703
25704         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
25705           call to get a graphics context for our control
25706
25707         * XplatUIOSX.cs: Added empty overrides for the new caret functions
25708
25709         * TreeView.cs: Fixed bug. No matter what color was set it would always
25710           return SystemColors.Window
25711
25712         * XplatUIWin32.cs: Implemented caret overrides
25713
25714 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
25715
25716         * ListBox.cs: fire events, implement missing methods and properties,
25717         sorting.
25718
25719 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
25720
25721         * MonthCalendar.cs: invalidation bug fixing
25722         * ThemeWin32Classic.cs: paint fixing
25723
25724 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
25725
25726         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
25727         prepare the CGContextRef there now.
25728
25729 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
25730
25731         * MonthCalendar.cs:
25732           - optimisationL only invalidate areas that have changed
25733         * ThemeWin32Classic.cs:
25734           - only paint parts that intersect with clip_area
25735
25736 2004-12-09  Peter Bartok  <pbartok@novell.com>
25737
25738         * Application.cs: Undid changes from r37004 which cause problems
25739         on X11
25740
25741 2004-12-09  Ravindra  <rkumar@novell.com>
25742
25743         * ToolBar.cs: Added support for displaying ContextMenu
25744         attached to a button on ToolBar.
25745         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
25746         property.
25747
25748 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25749
25750         * Label.cs: autosize works in text change and removes unnecessary
25751         invalidate
25752
25753 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25754
25755         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25756         remove warnings
25757
25758 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
25759
25760         * XplatUIOSX.cs: Added mouse move/click/grab support
25761         Remove some debugging WriteLines not needed anymore.
25762         Add window resizing/positioning.
25763         Fix visibility on reparenting.
25764
25765 2004-12-08  Peter Bartok  <pbartok@novell.com>
25766
25767         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
25768
25769 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
25770
25771         * XplatUIOSX.cs: Initial checkin
25772         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
25773
25774 2004-12-03  Ravindra <rkumar@novell.com>
25775
25776         * ListView.cs: Added some keybindings and fixed scrolling.
25777         ScrollBars listen to ValueChanged event instead of Scroll
25778         Event. This would let us take care of all changes being
25779         done in the scrollbars' values programmatically or manually.
25780         * ListView.cs (CanMultiselect): Added a check for shift key.
25781         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
25782         * ListViewItem.cs (Clone): Fixed. We need to make a copy
25783         of ListViewSubItemCollection as well.
25784
25785 2004-12-06  Peter Bartok <pbartok@novell.com>
25786
25787         * Control.cs (Parent): Added check and exception to prevent
25788         circular parenting
25789
25790 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
25791
25792         * ListBox.cs: implemented clipping, selection single and multiple,
25793         bug fixing
25794
25795 2004-12-03  Ravindra <rkumar@novell.com>
25796
25797         * ListView.cs (ListView_KeyDown):
25798         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
25799         when CTRL key is pressed.
25800         * ListViewItem.cs (Selected): Fixed setting the property.
25801
25802 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
25803
25804         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
25805
25806         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
25807         MinimizeBox, ShowInTaskbar, TopMost properties.
25808
25809         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
25810         will be implemented).
25811
25812 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
25813
25814         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
25815
25816         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
25817         tests.
25818         
25819         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
25820         
25821         * TreeView.cs: BackColor is Colors.Window.
25822
25823 2004-12-01  Jackson Harper  <jackson@ximian.com>
25824
25825         * TreeView.cs: When resizing the tree if the user is making it
25826         smaller we don't get expose events, so we need to handle adding
25827         the horizontal scrollbar in the size changed handler as well as
25828         the expose handler.
25829
25830 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
25831
25832         * DrawItemState.cs: fixes wrong enum values
25833
25834 2004-12-01  Jackson Harper  <jackson@ximian.com>
25835
25836         * TreeView.cs: Resize the hbar as well as the vbar on resize.
25837
25838 2004-12-01  Jackson Harper  <jackson@ximian.com>
25839
25840         * NodeLabelEditEventArgs.cs:
25841         * NodeLabelEditEventHandler.cs:
25842         * OpenTreeNodeEnumerator.cs:
25843         * TreeNode.cs:
25844         * TreeNodeCollection.cs:
25845         * TreeView.cs:
25846         * TreeViewAction.cs:
25847         * TreeViewCancelEventArgs.cs:
25848         * TreeViewCancelEventHandler.cs:
25849         * TreeViewEventArgs.cs:
25850         * TreeViewEventHandler.cs: Initial implementation.
25851
25852 2004-12-01  Ravindra <rkumar@novell.com>
25853
25854         * ListView.cs (CalculateListView): Fixed scrolling related
25855         calculations. Also, removed some debug statements from other
25856         places.
25857         * ListViewItem.cs: Changed access to 'selected' instance variable
25858         from private to internal.
25859         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
25860
25861 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
25862
25863         * ThemeWin32Classic.cs: remove cache of brush and pens for
25864         specific controls and use the global system, fixes scrollbutton
25865         bugs (for small sizes, disabled, etc)
25866         
25867         * ScrollBar.cs: does not show the thumb for very small controls
25868         (as MS) and allow smaller buttons that the regular size
25869
25870 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
25871
25872         * UpDownBase.cs: Add abstract methods for the interface.
25873         Add new virtual methods (need to be hooked up to TextEntry when it
25874         exists).
25875         Add override methods for most features.
25876         Computes the size, forces the height of the text entry.
25877
25878         * NumericUpDown.cs: Put here the current testing code.
25879
25880         * Set eol-style property on all files that do not have mixed line
25881         endings, to minimize the future problems.  There are still a few
25882         files with mixed endings, and someone should choose whether they
25883         want to move it or not.
25884
25885 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
25886
25887         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
25888         System.Colors
25889         
25890 2004-11-30  Ravindra <rkumar@novell.com>
25891
25892         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
25893         drawing and replaced use of SystemColors by theme colors.
25894         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
25895         * ListView.cs (ListViewItemCollection.Add): Throw exception when
25896         same ListViewItem is being added more than once.
25897
25898 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
25899
25900         * MonthCalendar.cs:
25901           - ControlStyles love to make the control not flicker
25902           
25903 2004-11-30  Peter Bartok  <pbartok@novell.com>
25904
25905         * CharacterCasing.cs: Added
25906
25907 2004-11-29  Peter Bartok  <pbartok@novell.com>
25908
25909         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
25910           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
25911           I am removing these files as they conflict with already completed
25912           work. While it is fantastic to get contributions to MWF, I
25913           respectfully ask that everyone please coordinate their contributions
25914           through mono-winforms-list or #mono-winforms at this time. We're
25915           explicitly avoiding stubbing and don't want controls that don't have
25916           their basic functionality implemented in svn. Please also see
25917           http://www.mono-project.com/contributing/winforms.html
25918
25919
25920 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
25921
25922         * Application.cs (ModalRun): Don't hang after exit.
25923
25924         * Theme.cs: New TreeViewDefaultSize property.
25925
25926         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
25927         with less hardcoded SystemColors constant.
25928         Implemented TreeViewDefaultSize.
25929
25930         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
25931         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
25932
25933
25934 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
25935
25936         * MonthCalendar.cs:
25937           - Fix NextMonthDate and PrevMonthDate click moving calendar
25938
25939 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
25940
25941         * MonthCalendar.cs:
25942           - Fix usage of ScrollChange Property when scrolling months
25943
25944 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
25945
25946         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
25947          - Fixes menu destroying
25948          - Support adding and removing items on already created menus
25949
25950 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
25951
25952         * MonthCalendar.cs:
25953           - Re-worked all bolded dates handling to match win32
25954         * ThemeWin32Classic.cs:
25955           - Fixed rendering with bolded dates
25956
25957 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
25958
25959         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
25960         - Horizontal scroolbar
25961         - Multicolumn
25962         - Fixes
25963
25964
25965 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
25966
25967         * MonthCalendar.cs:
25968           - Fix Usage of MaxSelectionCount from SelectionRange
25969           - Fixed Shift + Cursor Selection
25970           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
25971           - Fixed normal cursor selection to be compat with win32
25972           - Fixed Shift + Mouse Click selection
25973
25974 2004-11-24  Peter Bartok <pbartok@novell.com>
25975
25976         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
25977         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
25978         * XplatUIX11.cs:
25979           - CreatedKeyBoardMsg now updates keystate with Alt key
25980           - Added workaround for timer crash to CheckTimers, Jackson will
25981             develop a proper fix and check in later
25982           - Implemented DispatchMessage
25983           - Removed calling the native window proc from GetMessage (call
25984             now moved to DispatchMessage)
25985
25986         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
25987           the keydata (Fixes bug #69831)
25988
25989         * XplatUIWin32.cs:
25990           - (DispatchMessage): Switched to return IntPtr
25991           - Added DllImport for SetFocus
25992
25993 2004-11-24  Ravindra <rkumar@novell.com>
25994
25995         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
25996         background drawing.
25997         * ListViewItem.cs: Fixed various properties, calculations
25998         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
25999         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
26000         and some internal properties. Fixed MouseDown handler and Paint
26001         method.
26002
26003 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26004
26005         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
26006
26007 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26008
26009         * ContainerControl.cs: correct accidental check in of local changes
26010
26011 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26012
26013         * ThemeWin32Classic.cs:
26014                 - Fixed Drawing Last month in grid (sometimes not showing)
26015         * MonthCalendar.cs:
26016                 - Fixed title width calculation bug (makeing title small)
26017
26018 2004-11-23  Peter Bartok <pbartok@novell.com>
26019
26020         * XplatUIX11.cs:
26021           - Added generation of WM_MOUSEHOVER event
26022           - Added missing assignment of async_method atom
26023           - Fixed WM_ERASEBKGND; now only redraws the exposed area
26024
26025 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26026
26027         * ThemeWin32Classic.cs:
26028                 - Fixed Drawing of today circle when showtodaycircle not set
26029                 - fixed drawing of first and last month in the grid (gay dates)
26030         * MonthCalendar.cs:
26031                 - Fixed Drawing of today circle
26032                 - Fixed drawing of grady dates
26033                 - Fixed HitTest for today link when ShowToday set to false
26034                 - Fixed DefaultSize to obey ShowToday
26035
26036 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26037
26038         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
26039         * System.Windows.Forms/Theme.cs
26040         * MonthCalendar.cs: added for MonthCalendar
26041         * SelectionRange.cs: added for MonthCalendar
26042         * Day.cs: added for MonthCalendar: added for MonthCalendar
26043         * DateRangeEventArgs.cs: added for MonthCalendar
26044         * DateRangeEventHandler.cs: added for MonthCalendar
26045
26046 2004-11-22  Ravindra <rkumar@novell.com>
26047
26048         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
26049         property.
26050
26051 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
26052
26053         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
26054         event handler.
26055         
26056         * NumericUpDown.cs: Added new implementation.
26057         * UpDownBase.cs: Added new implementation.
26058
26059         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
26060         implementations.
26061         
26062         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
26063         implementations.
26064
26065         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
26066         methods.
26067
26068 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
26069
26070         * Timer.cs  (Dispose): Should call the base dispose when
26071         overriding.
26072
26073 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26074
26075         * ScrollBar.cs: updates thumb position when max, min or increment
26076         is changed
26077
26078 2004-11-21  Ravindra <rkumar@novell.com>
26079
26080         * ListView.cs: Implemented item selection, activation and
26081         column header style. Fixed properties to do a redraw, if
26082         required. Added support for MouseHover, DoubleClick, KeyDown
26083         and KeyUp event handling and some minor fixes.
26084         * ListViewItem.cs: Fixed constructor.
26085         * ThemeWin32Classic.cs: Improved drawing for ListView.
26086
26087 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26088
26089         * ThemeWin32Classic.cs: initial listbox drawing code
26090         * DrawMode.cs: new enumerator
26091         * ListControl.cs: stubbed class
26092         * ListBox.cs: initial implementation
26093         * Theme.cs: new methods definitions
26094         * SelectionMode.cs: new enumerator
26095
26096 2004-11-17  Peter Bartok  <pbartok@novell.com>
26097
26098         * XplatUIWin32.cs: Added double-click events to the class style
26099         * Control.cs (WndProc):
26100           - Added handling of click-count to MouseDown/ MouseUp events.
26101           - Added handling of middle and right mouse buttons
26102           - Removed old debug code
26103
26104 2004-11-17  Jackson Harper  <jackson@ximian.com>
26105
26106         * XplatUIX11.cs: Use the new Mono.Unix namespace.
26107
26108 2004-11-17  Ravindra <rkumar@novell.com>
26109
26110         * ListView.cs: Added event handling for MouseMove/Up/Down.
26111         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
26112         * ThemeWin32Classic.cs: We need to clear the graphics context and
26113         draw column header in a proper state.
26114
26115
26116 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
26117
26118         *  Menu.cs: fixes signature
26119
26120 2004-11-16  Peter Bartok  <pbartok@novell.com>
26121
26122         * XplatUIX11.cs (GetMessage): Implemented generation of
26123           double click mouse messages
26124
26125 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
26126
26127         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
26128         not by menu
26129
26130 2004-11-11  Peter Bartok  <pbartok@novell.com>
26131
26132         * HandleData.cs: Added Visible property
26133         * XplatUIX11.cs (IsVisible): Now uses Visible property from
26134           HandleData
26135         * XplatUIX11.cs: Removed old debug leftovers
26136         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
26137         * Control.cs (WndProc): Removed old debug leftovers,
26138           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
26139           needed WM_SIZE handling
26140
26141 2004-11-11  Jackson Harper  <jackson@ximian.com>
26142
26143         * OwnerDrawPropertyBag.cs:
26144         * TreeViewImageIndexConverter.cs: Initial implementation
26145
26146 2004-11-10  Jackson Harper  <jackson@ximian.com>
26147
26148         * ThemeWin32Classic.cs:
26149         * TabControl.cs: instead of moving tabs by the slider pos just
26150         start drawing at the tab that is offset by the slider. This way
26151         scrolling always moves by exactly one tab.
26152
26153 2004-11-10  Jackson Harper  <jackson@ximian.com>
26154
26155         * TabControl.cs: You can only scroll left when the slider has
26156         already ben moved right.
26157         
26158 2004-11-10  Jackson Harper  <jackson@ximian.com>
26159
26160         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
26161         the clip area.
26162         
26163 2004-11-10  Jackson Harper  <jackson@ximian.com>
26164
26165         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
26166         clip area.
26167         
26168 2004-11-09  Jackson Harper  <jackson@ximian.com>
26169
26170         * TabControl.cs (CalcXPos): New helper method so we can determine
26171         the proper place to start drawing vertical tabs.
26172         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
26173         
26174 2004-11-09  Jackson Harper  <jackson@ximian.com>
26175
26176         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
26177         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
26178         and Bottom, left and right are illegal values for this and
26179         multiline is enabled when the alignment is set to left or right.
26180         (DrawTab): Each alignment block should draw the text itself now
26181         because Left requires special love. Also add rendering for Left
26182         aligned tabs.
26183         
26184 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
26185
26186         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
26187         does not destroy the windows, removes debugging messages
26188
26189 2004-11-09  jba  <jba-mono@optusnet.com.au>
26190
26191         * ThemeWin32Classic.cs
26192         (DrawButtonBase): Fix verticle text rect clipping in windows
26193         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26194         rendering and incorrect text rect clipping
26195         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26196         rendering and incorrect text rect clipping
26197         
26198 2004-11-08  Jackson Harper  <jackson@ximian.com>
26199
26200         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
26201         bottom when they are bottom aligned so the bottoms of the tabs get
26202         displayed.
26203         * TabControl.cs (DropRow): Move rows up instead of down when the
26204         tab control is bottom aligned.
26205
26206 2004-11-08 13:59  pbartok
26207
26208         * XplatUIX11.cs:
26209           - Added handling for various window styles
26210           - Added handling for popup windows
26211           - Added SetTopmost handling
26212
26213 2004-11-08 13:55  pbartok
26214
26215         * XplatUIWin32.cs:
26216           - Added argument to SetTopmost method
26217           - Fixed broken ClientToScreen function
26218
26219 2004-11-08 13:53  pbartok
26220
26221         * XplatUIStructs.cs:
26222           - Added missing WS_EX styles
26223
26224 2004-11-08 13:53  pbartok
26225
26226         * XplatUI.cs, XplatUIDriver.cs:
26227           - Added argument to SetTopmost
26228
26229 2004-11-08 13:52  pbartok
26230
26231         * X11Structs.cs:
26232           - Added XSetWindowAttributes structure
26233           - Improved XWindowAttributes structure
26234           - Added SetWindowValuemask enum
26235           - Added window creation arguments enum
26236           - Added gravity enum
26237           - Added Motif hints structure
26238           - Added various Motif flags and enums
26239           - Added PropertyMode enum for property functions
26240
26241 2004-11-08 13:50  pbartok
26242
26243         * Form.cs:
26244           - Fixed arguments for updated SetTopmost method
26245
26246 2004-11-08 13:49  pbartok
26247
26248         * ToolTip.cs:
26249           - Fixed arguments for updated SetTopmost function
26250           - Fixed usage of PointToClient
26251
26252 2004-11-08 13:44  pbartok
26253
26254         * MenuAPI.cs:
26255           - Added Clipping of children and siblings
26256
26257 2004-11-08 13:41  pbartok
26258
26259         * MainMenu.cs:
26260           - Removed SetMenuBarWindow call. We do this in Form.cs
26261
26262 2004-11-08 13:40  jackson
26263
26264         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
26265           scrolling jimmi in the correct location with bottom aligned tabs
26266
26267 2004-11-08 13:36  pbartok
26268
26269         * ContainerControl.cs:
26270           - Implemented BindingContext
26271           - Implemented ParentForm
26272
26273 2004-11-08 12:46  jackson
26274
26275         * TabControl.cs: Put bottom rendered tabs in the right location
26276
26277 2004-11-08 07:15  jordi
26278
26279         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
26280           removes dead code
26281
26282 2004-11-05 17:30  jackson
26283
26284         * TabControl.cs: When selected tabs are expanded make sure they
26285           don't go beyond the edges of the tab control
26286
26287 2004-11-05 14:57  jackson
26288
26289         * TabControl.cs: Reset show_slider so if the control is resized to
26290           a size where it is no longer needed it's not displayed anymore
26291
26292 2004-11-05 13:16  jackson
26293
26294         * TabControl.cs: Make tab pages non visible when added to the
26295           control
26296
26297 2004-11-05 12:42  jackson
26298
26299         * TabControl.cs: Implement SizeMode.FillToRight
26300
26301 2004-11-05 12:16  jackson
26302
26303         * Control.cs: Do not call CreateHandle if the handle is already
26304           created
26305
26306 2004-11-05 11:46  jackson
26307
26308         * TabControl.cs: Remove superflous call to CalcTabRows
26309
26310 2004-11-05 09:07  jackson
26311
26312         * XplatUIX11.cs: Update for Mono.Posix changes
26313
26314 2004-11-05 07:00  ravindra
26315
26316         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
26317           scrolling.
26318
26319 2004-11-04 22:47  jba
26320
26321         * ThemeWin32Classic.cs:
26322           - Fix Button rendering for FlatStyle = Flat or Popup
26323           - Fix RadioButton and CheckBox rendering when Appearance = Button
26324             (normal and flatstyle).
26325           - Correct outer rectangle color when drawing focus rectangle
26326           - Adjust button bounds to be 1 px smaller when focused
26327           - Make button not draw sunken 3d border when pushed (windows compat)
26328           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
26329           - Offset the text in RadioButton and Checkbox when being rendered as
26330           a button.
26331           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
26332           radiobuttons
26333           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
26334           - Fixed disabled text rendering for normally rendered radiobuttons
26335
26336 2004-11-04 10:26  jackson
26337
26338         * TabControl.cs: Recalculate tab rows when resizing
26339
26340 2004-11-04 07:47  jordi
26341
26342         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
26343           collection completion, drawing issues, missing features
26344
26345 2004-11-04 05:03  ravindra
26346
26347         * ScrollBar.cs:
26348                 - We need to recalculate the Thumb area when
26349                 LargeChange/maximum/minimum values are changed.
26350           - We set the 'pos' in UpdatePos() method to minimum, if it's less
26351                 than minimum. This is required to handle the case if large_change is
26352                 more than max, and use LargeChange property instead of large_change
26353                 variable.
26354           - We return max+1 when large_change is more than max, like MS does.
26355
26356 2004-11-04 04:29  ravindra
26357
26358         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
26359                 - Changed default value signatures (prefixed all with ListView).
26360                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
26361                 ListView.
26362           - Fixed calculations for ListViewItem and implemented Clone()
26363           method.
26364
26365 2004-11-04 04:26  ravindra
26366
26367         * Theme.cs, ThemeWin32Classic.cs:
26368                 - Changed default ListView values signatures (prefixed all with
26369                 ListView).
26370           - Fixed default size values for VScrollBar and HScrollBar.
26371                 - Fixed DrawListViewItem method.
26372
26373 2004-11-04 04:05  ravindra
26374
26375         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
26376
26377 2004-11-04 04:04  ravindra
26378
26379         * ImageList.cs: Implemented the missing overload for Draw method.
26380
26381 2004-11-03 19:29  jackson
26382
26383         * TabControl.cs: Handle dropping rows on selection properly
26384
26385 2004-11-03 11:59  jackson
26386
26387         * TabControl.cs: remove debug code
26388
26389 2004-11-03 11:52  jackson
26390
26391         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
26392           the scrolly widgerywoo
26393
26394 2004-11-02 13:52  jackson
26395
26396         * TabControl.cs: Resize the tab pages and tabs when the tab control
26397           is resized
26398
26399 2004-11-02 13:40  jackson
26400
26401         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
26402           selected tab to the bottom
26403
26404 2004-11-02 13:39  jackson
26405
26406         * TabPage.cs: Store the tab pages row
26407
26408 2004-11-02 12:33  jordi
26409
26410         * MenuItem.cs: fixes handle creation
26411
26412 2004-11-02 11:42  jackson
26413
26414         * TabControl.cs: signature fix
26415
26416 2004-11-02 08:56  jackson
26417
26418         * TabControl.cs: Calculate whether the tab is on an edge properly.
26419           Remove top secret debugging code
26420
26421 2004-11-01 19:57  jackson
26422
26423         * TabControl.cs: Add click handling, and proper sizing
26424
26425 2004-11-01 19:47  jackson
26426
26427         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
26428           tab controls
26429
26430 2004-11-01 19:39  jackson
26431
26432         * TabPage.cs: add internal property to store the bounds of a tab
26433           page
26434
26435 2004-10-30 04:23  ravindra
26436
26437         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
26438           values.
26439
26440 2004-10-30 04:21  ravindra
26441
26442         * ListView.cs, ListViewItem.cs: Added support for scrolling and
26443           fixed calculations.
26444
26445 2004-10-30 03:06  pbartok
26446
26447         * XplatUIX11.cs:
26448           - Removed extension of DllImported libs
26449
26450 2004-10-29 09:55  jordi
26451
26452         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
26453           navigation, itemcollection completion, menu fixes
26454
26455 2004-10-27 22:58  pbartok
26456
26457         * XplatUIX11.cs:
26458           - Now throws a nice error message when no X display could be opened
26459
26460 2004-10-26 13:51  jordi
26461
26462         * ListView.cs: removes warning
26463
26464 2004-10-26 03:55  ravindra
26465
26466         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
26467           ThemeWin32Classic.cs: Some formatting for my last checkins.
26468
26469 2004-10-26 03:36  ravindra
26470
26471         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
26472           control and default values.
26473
26474 2004-10-26 03:35  ravindra
26475
26476         * Theme.cs: Added some default values for ListView control.
26477
26478 2004-10-26 03:33  ravindra
26479
26480         * ToolBar.cs: ToolBar should use the user specified button size, if
26481           there is any. Added a size_specified flag for the same.
26482
26483 2004-10-26 03:33  ravindra
26484
26485         * ColumnHeader.cs: Added some internal members and calculations for
26486           ColumnHeader.
26487
26488 2004-10-26 03:32  ravindra
26489
26490         * ListViewItem.cs: Calculations for ListViewItem.
26491
26492 2004-10-26 03:31  ravindra
26493
26494         * ListView.cs: Added some internal members and calculations for
26495           ListView.
26496
26497 2004-10-22 13:31  jordi
26498
26499         * MenuAPI.cs: speedup menus drawing
26500
26501 2004-10-22 13:16  jackson
26502
26503         * XplatUIX11.cs: Make sure to update exposed regions when adding an
26504           expose event
26505
26506 2004-10-22 11:49  jackson
26507
26508         * Control.cs: oops
26509
26510 2004-10-22 11:41  jackson
26511
26512         * Control.cs: Check to see if the window should have its background
26513           repainted by X when drawing.
26514
26515 2004-10-22 11:31  jackson
26516
26517         * XplatUIX11.cs: When invalidating areas only use XClearArea if
26518           clear is true, this way we do not get flicker from X repainting the
26519           background
26520
26521 2004-10-22 11:28  jackson
26522
26523         * XEventQueue.cs: Queue properly
26524
26525 2004-10-21 09:38  jackson
26526
26527         * XEventQueue.cs: Fix access modifier
26528
26529 2004-10-21 09:36  jackson
26530
26531         * XEventQueue.cs: Don't loose messages
26532
26533 2004-10-21 09:22  jackson
26534
26535         * XEventQueue.cs: Don't loose messages
26536
26537 2004-10-20 04:15  jordi
26538
26539         * BootMode.cs: enum need it by SystemInfo
26540
26541 2004-10-19 21:58  pbartok
26542
26543         * XplatUIWin32.cs:
26544           - Small sanity check
26545
26546 2004-10-19 21:56  pbartok
26547
26548         * Form.cs:
26549           - Added private FormParentWindow class which acts as the container
26550             for our form and as the non-client area where menus are drawn
26551           - Added/Moved required tie-ins to Jordi's menus
26552           - Fixed/Implemented the FormStartPosition functionality
26553
26554 2004-10-19 21:52  pbartok
26555
26556         * Control.cs:
26557           - Removed unneeded locals
26558           - Added code to all size and location properties to understand and
26559             deal with the parent container of Form
26560
26561 2004-10-19 21:33  pbartok
26562
26563         * Application.cs:
26564           - Fixed to deal with new Form subclasses for menus
26565
26566 2004-10-19 17:48  jackson
26567
26568         * XEventQueue.cs: commit correct version of file
26569
26570 2004-10-19 16:50  jackson
26571
26572         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
26573
26574 2004-10-19 16:15  jordi
26575
26576         * MenuAPI.cs: MenuBarCalcSize returns the height
26577
26578 2004-10-19 08:31  pbartok
26579
26580         * Control.cs:
26581           - Added missing call to PreProcessMessage before calling OnXXXKey
26582           methods
26583
26584 2004-10-19 00:04  ravindra
26585
26586         * ToolTip.cs: Fixed constructor.
26587
26588 2004-10-18 09:31  jordi
26589
26590         * MenuAPI.cs: menuitems in menubars do not have shortcuts
26591
26592 2004-10-18 09:26  jordi
26593
26594         * MenuItem.cs: fixes MenuItem class signature
26595
26596 2004-10-18 08:56  jordi
26597
26598         * MenuAPI.cs: prevents windows from showing in the taskbar
26599
26600 2004-10-18 00:28  ravindra
26601
26602         * ToolTip.cs: Suppressed a warning message.
26603
26604 2004-10-18 00:27  ravindra
26605
26606         * Control.cs: Default value of visible property must be true.
26607
26608 2004-10-17 23:19  pbartok
26609
26610         * ToolTip.cs:
26611           - Complete implementation
26612
26613 2004-10-17 23:19  pbartok
26614
26615         * XplatUIX11.cs:
26616           - Added EnableWindow method
26617           - Added SetModal stub
26618           - Added generation of WM_ACTIVATE message (still needs testing)
26619           - Added SetTopMost stub
26620           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
26621
26622 2004-10-17 23:17  pbartok
26623
26624         * XplatUIWin32.cs:
26625           - Removed VirtualKeys to XplatUIStructs
26626           - Implemented SetTopMost method
26627           - Implemented EnableWindow method
26628           - Bugfix in ScreenToClient()
26629           - Bugfixes in ClientToScreen()
26630
26631 2004-10-17 22:51  pbartok
26632
26633         * XplatUIStructs.cs:
26634           - Added WS_EX styles to WindowStyles enumeration
26635
26636 2004-10-17 22:50  pbartok
26637
26638         * XplatUI.cs, XplatUIDriver.cs:
26639           - Added method for enabling/disabling windows
26640           - Added method for setting window modality
26641           - Added method for setting topmost window
26642
26643 2004-10-17 22:49  pbartok
26644
26645         * ThemeWin32Classic.cs:
26646           - Added ToolTip drawing code
26647
26648 2004-10-17 22:49  pbartok
26649
26650         * Theme.cs:
26651           - Added ToolTip abstracts
26652
26653 2004-10-17 22:47  pbartok
26654
26655         * Form.cs:
26656           - Fixed Form.ControlCollection to handle owner relations
26657           - Added Owner/OwnedForms handling
26658           - Implemented Z-Ordering for owned forms
26659           - Removed unneeded private overload of ShowDialog
26660           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
26661             so I hope)
26662           - Fixed Close(), had wrong default
26663           - Added firing of OnLoad event
26664           - Added some commented out debug code for Ownership handling
26665
26666 2004-10-17 22:16  pbartok
26667
26668         * Control.cs:
26669           - Fixed/implemented flat list of controls
26670
26671 2004-10-17 22:14  pbartok
26672
26673         * Application.cs:
26674           - Added code to simulate modal dialogs on Win32
26675
26676 2004-10-17 16:11  jordi
26677
26678         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
26679           mouse event
26680
26681 2004-10-17 13:39  jordi
26682
26683         * MenuAPI.cs: menu drawing fixes
26684
26685 2004-10-15 09:10  ravindra
26686
26687         * StructFormat.cs: General Enum.
26688
26689 2004-10-15 09:09  ravindra
26690
26691         * SizeGripStyle.cs: Enum for Form.
26692
26693 2004-10-15 09:08  ravindra
26694
26695         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
26696           in Theme for ListView.
26697
26698 2004-10-15 09:06  ravindra
26699
26700         * ColumnHeader.cs: Flushing some formatting changes.
26701
26702 2004-10-15 09:05  ravindra
26703
26704         * ListViewItem.cs: Implemented GetBounds method and fixed coding
26705           style.
26706
26707 2004-10-15 09:03  ravindra
26708
26709         * ListView.cs: Implemented Paint method and fixed coding style.
26710
26711 2004-10-15 07:34  jordi
26712
26713         * MenuAPI.cs: fix for X11
26714
26715 2004-10-15 07:32  ravindra
26716
26717         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
26718                 - Renamed Paint() method to Draw() for clarity. Also, moved
26719                 DrawImage() to OnPaint().
26720
26721 2004-10-15 07:25  ravindra
26722
26723         * CheckBox.cs, RadioButton.cs:
26724                 - Removed Redraw (), we get it from ButtonBase.
26725                 - Implemented Paint (), to do class specific painting.
26726
26727 2004-10-15 07:16  ravindra
26728
26729         * ButtonBase.cs:
26730                 - Redraw () is not virtual now.
26731                 - Added an internal virtual method Paint (), so that
26732                 derived classes can do their painting on their own.
26733                 - Modified OnPaint () to call Paint ().
26734
26735 2004-10-15 06:43  jordi
26736
26737         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
26738           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
26739
26740 2004-10-15 00:30  ravindra
26741
26742         * MessageBox.cs:
26743                 - MessageBox on windows does not have min/max buttons.
26744                 This change in CreateParams fixes this on Windows. We
26745                 still need to implement this windowstyle behavior in
26746                 our X11 driver.
26747
26748 2004-10-14 05:14  ravindra
26749
26750         * ToolBar.cs:
26751                 - Changed Redraw () to do a Refresh () always.
26752                 - Fixed the MouseMove event handling when mouse is pressed,
26753                 ie drag event handling.
26754                 - Replaced the usage of ToolBarButton.Pressed property to
26755                 ToolBarButton.pressed internal variable.
26756
26757 2004-10-14 05:10  ravindra
26758
26759         * ToolBarButton.cs:
26760                 - Added an internal member 'inside' to handle mouse move
26761                 with mouse pressed ie mouse drag event.
26762                 - Changed 'Pressed' property to return true only when
26763                 'inside' and 'pressed' are both true.
26764                 - Some coding style love.
26765
26766 2004-10-14 00:17  ravindra
26767
26768         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
26769           public method.
26770
26771 2004-10-14 00:15  ravindra
26772
26773         * ButtonBase.cs: Redraw () related improvements.
26774
26775 2004-10-14 00:14  ravindra
26776
26777         * MessageBox.cs: Moved InitFormSize () out of Paint method and
26778           removed unnecessary calls to Button.Show () method.
26779
26780 2004-10-13 17:50  pbartok
26781
26782         * XplatUIX11.cs:
26783           - Formatting fix
26784           - Removed destroying of window until we solve the problem of X
26785             destroying the window before us on shutdown
26786
26787 2004-10-13 16:32  pbartok
26788
26789         * ButtonBase.cs:
26790           - Now Redraws on MouseUp for FlatStyle Flat and Popup
26791
26792 2004-10-13 14:18  pbartok
26793
26794         * XplatUIX11.cs:
26795           - Added code to destroy the X window
26796
26797 2004-10-13 14:18  pbartok
26798
26799         * XplatUIWin32.cs:
26800           - Added code to destroy a window
26801
26802 2004-10-13 14:12  pbartok
26803
26804         * ButtonBase.cs:
26805           - Added the Redraw on Resize that got dropped in the last rev
26806
26807 2004-10-13 09:06  pbartok
26808
26809         * ThemeWin32Classic.cs:
26810           - Path from John BouAntoun:
26811             * Fix check rendering (centre correctly for normal style, offset
26812               correctly for FlatStyle).
26813             * Fix border color usage (use backcolor) for FlatStyle.Popup
26814             * Use checkbox.Capture instead of checkbox.is_pressed when
26815               rendering flatstyle states.
26816
26817 2004-10-12 21:48  pbartok
26818
26819         * ThemeWin32Classic.cs:
26820           - Removed all occurences of SystemColors and replaced them with the
26821             matching theme color
26822
26823 2004-10-12 21:41  pbartok
26824
26825         * ThemeWin32Classic.cs:
26826           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
26827             him using the function for flatstyle drawing
26828           - Changed functions to use the new version of CPDrawBorder3D
26829
26830 2004-10-12 21:15  pbartok
26831
26832         * ControlPaint.cs:
26833           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
26834             match MS documentation. They need to return defined colors if the
26835             passed color matches the configured control color. Thanks to John
26836             BouAntoun for pointing this out.
26837
26838 2004-10-12 20:57  pbartok
26839
26840         * Control.cs:
26841           - Fix from John BouAntoun: Raise ForeColorChanged event when text
26842             color is changed
26843
26844 2004-10-12 20:46  pbartok
26845
26846         * CheckBox.cs:
26847           - Fix from John BouAntoun: Now properly sets the Appearance property
26848
26849 2004-10-12 20:45  pbartok
26850
26851         * ThemeWin32Classic.cs:
26852           - Fixes from John BouAntoun: now handles forecolors and backcolors
26853             for flatstyle rendered controls much better; It also fixes normal
26854             checkbox rendering when pushed or disabled.
26855
26856 2004-10-08 02:50  jordi
26857
26858         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
26859           work
26860
26861 2004-10-07 08:56  jordi
26862
26863         * ThemeWin32Classic.cs: Removes deletion of cached brushes
26864
26865 2004-10-06 03:59  jordi
26866
26867         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
26868           XplatUIWin32.cs: removes warnings from compilation
26869
26870 2004-10-05 12:23  jackson
26871
26872         * RadioButton.cs: Fix ctor
26873
26874 2004-10-05 11:10  pbartok
26875
26876         * MessageBox.cs:
26877           - Partial implementation by Benjamin Dasnois
26878
26879 2004-10-05 10:15  jackson
26880
26881         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
26882           by John BouAntoun
26883
26884 2004-10-05 03:07  ravindra
26885
26886         * ToolBar.cs:
26887                 - Removed a private method, Draw ().
26888                 - Fixed the ButtonDropDown event handling.
26889                 - Fixed MouseMove event handling.
26890
26891 2004-10-05 03:04  ravindra
26892
26893         * ThemeWin32Classic.cs:
26894                 - Added DrawListView method and ListViewDefaultSize property.
26895                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
26896                 - Changed DOS style CRLF to Unix format (dos2unix).
26897
26898 2004-10-05 03:03  ravindra
26899
26900         * Theme.cs:
26901                 - Added DrawListView method and ListViewDefaultSize property.
26902
26903 2004-10-05 02:42  ravindra
26904
26905         * ToolBarButton.cs: Added an internal member dd_pressed to handle
26906           clicks on DropDown arrow.
26907
26908 2004-10-04 22:56  jackson
26909
26910         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
26911           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
26912           Control handle the buffers, derived classes should not have to
26913           CreateBuffers themselves.
26914
26915 2004-10-04 21:20  jackson
26916
26917         * StatusBar.cs: The control handles resizing the buffers now.
26918
26919 2004-10-04 21:18  jackson
26920
26921         * Control.cs: When resizing the buffers should be invalidated. This
26922           should be handled in Control not in derived classes.
26923
26924 2004-10-04 14:45  jackson
26925
26926         * TabPage.cs: oops
26927
26928 2004-10-04 02:14  pbartok
26929
26930         * LeftRightAlignment.cs:
26931           - Initial check-in
26932
26933 2004-10-04 01:09  jordi
26934
26935         * ThemeWin32Classic.cs: fixes right button position causing right
26936           button not showing on horizontal scrollbars
26937
26938 2004-10-02 13:12  pbartok
26939
26940         * XplatUIX11.cs:
26941           - Simplified the Invalidate method by using an X call instead of
26942             generating the expose ourselves
26943           - Added an expose when the window background is changed
26944           - Implemented ClientToScreen method
26945
26946 2004-10-02 13:08  pbartok
26947
26948         * XplatUIWin32.cs:
26949           - Added Win32EnableWindow method (test for implementing modal
26950           dialogs)
26951           - Added ClientToScreen method and imports
26952
26953 2004-10-02 13:07  pbartok
26954
26955         * XplatUI.cs, XplatUIDriver.cs:
26956           - Added ClientToScreen coordinate translation method
26957
26958 2004-10-02 13:06  pbartok
26959
26960         * KeyPressEventArgs.cs:
26961           - Fixed access level for constructor
26962
26963 2004-10-02 13:06  pbartok
26964
26965         * NativeWindow.cs:
26966           - Changed access level for the window_collection hash table
26967
26968 2004-10-02 13:05  pbartok
26969
26970         * Form.cs:
26971           - Added KeyPreview property
26972           - Added Menu property (still incomplete, pending Jordi's menu work)
26973           - Implemented ProcessCmdKey
26974           - Implemented ProcessDialogKey
26975           - Implemented ProcessKeyPreview
26976
26977 2004-10-02 13:02  pbartok
26978
26979         * Control.cs:
26980           - Added private method to get the Control object from the window
26981           handle
26982           - Implemented ContextMenu property
26983           - Implemented PointToScreen
26984           - Implemented PreProcessMessage
26985           - Implemented IsInputChar
26986           - Implemented IsInputKey
26987           - Implemented ProcessCmdKey
26988           - Completed ProcessKeyEventArgs
26989           - Fixed message loop to call the proper chain of functions on key
26990           events
26991           - Implemented ProcessDialogChar
26992           - Implemented ProcessDialogKey
26993           - Implemented ProcessKeyMessage
26994           - Implemented ProcessKeyPreview
26995           - Added RaiseDragEvent stub (MS internal method)
26996           - Added RaiseKeyEvent stub (MS internal method)
26997           - Added RaiseMouseEvent stub (MS Internal method)
26998           - Added RaisePaintEvent stub (MS Internal method)
26999           - Added ResetMouseEventArgs stub (MS Internal method)
27000           - Implemented RtlTranslateAlignment
27001           - Implemented RtlTranslateContent
27002           - Implemented RtlTranslateHorizontal
27003           - Implemented RtlTranslateLeftRight
27004           - Added generation of KeyPress event
27005
27006 2004-10-02 05:57  ravindra
27007
27008         * ListViewItem.cs: Added attributes.
27009
27010 2004-10-02 05:32  ravindra
27011
27012         * ListView.cs: Added attributes.
27013
27014 2004-10-01 11:53  jackson
27015
27016         * Form.cs: Implement the Close method so work on MessageBox can
27017           continue.
27018
27019 2004-09-30 14:06  pbartok
27020
27021         * XplatUIX11.cs:
27022           - Bug fixes
27023
27024 2004-09-30 11:34  jackson
27025
27026         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
27027
27028 2004-09-30 07:26  ravindra
27029
27030         * ListViewItemConverter.cs: Converter for ListViewItem.
27031
27032 2004-09-30 07:26  ravindra
27033
27034         * SortOrder.cs: Enum for ListView control.
27035
27036 2004-09-30 07:25  ravindra
27037
27038         * ColumnHeader.cs: Supporting class for ListView control.
27039
27040 2004-09-30 07:24  ravindra
27041
27042         * ListView.cs, ListViewItem.cs: Initial implementation.
27043
27044 2004-09-30 07:20  ravindra
27045
27046         * ItemActivation.cs: Enum for ListView Control.
27047
27048 2004-09-29 20:29  pbartok
27049
27050         * XplatUIX11.cs:
27051           - Added lookup of pixel value for background color; tries to get a
27052             color 'close' to the requested color, it avoids having to create a
27053             colormap.  Depending on the display this could mean the used color
27054             is slightly off the desired color. Might have to change it to a more
27055             resource intensive colormap approach, but it will work as a
27056           workaround to avoid red screens.
27057
27058 2004-09-29 14:27  jackson
27059
27060         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
27061
27062 2004-09-28 12:44  pbartok
27063
27064         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
27065           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
27066           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
27067           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
27068           TrackBar.cs, VScrollBar.cs:
27069           - Streamlined Theme interfaces:
27070             * Each DrawXXX method for a control now is passed the object for
27071               the control to be drawn in order to allow accessing any state the
27072               theme might require
27073
27074             * ControlPaint methods for the theme now have a CP prefix to avoid
27075               name clashes with the Draw methods for controls
27076
27077             * Every control now retrieves it's DefaultSize from the current
27078             theme
27079
27080 2004-09-28 12:17  jackson
27081
27082         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
27083           drawing
27084
27085 2004-09-24 14:57  jackson
27086
27087         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
27088           Gives us a nice little performance boost.
27089
27090 2004-09-24 12:02  jackson
27091
27092         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
27093           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
27094           Control and supporting classes. Initial checkin
27095
27096 2004-09-23 13:08  jackson
27097
27098         * Form.cs: Temp build fixage
27099
27100 2004-09-23 01:39  ravindra
27101
27102         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
27103           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
27104           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
27105           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
27106           EventHandlers needed by ListView Control.
27107
27108 2004-09-22 14:12  pbartok
27109
27110         * ScrollableControl.cs:
27111           - Implemented DockPadding property
27112           - Implemented AutoScroll property
27113           - Implemented AutoScrollMargin property
27114           - Implemented AutoScrollMinSize property
27115           - Implemented AutoScrollPosition property
27116           - Implemented DisplayRectangle property (still incomplete)
27117           - Implemented CreateParams property
27118           - Implemented HScroll property
27119           - Implemented VScroll property
27120           - Implemented OnVisibleChanged property
27121
27122 2004-09-22 14:09  pbartok
27123
27124         * Form.cs:
27125           - Added Form.ControllCollection class
27126           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
27127             RemoveOwnedForm (still incomplete, missing on-top and common
27128             minimize/maximize behaviour)
27129           - Added StartPosition property (still incomplete, does not use when
27130             creating the form)
27131           - Added ShowDialog() methods (still incomplete, missing forcing the
27132             dialog modal)
27133
27134 2004-09-22 14:05  pbartok
27135
27136         * Application.cs:
27137           - Added message loop for modal dialogs
27138
27139 2004-09-22 14:02  pbartok
27140
27141         * GroupBox.cs:
27142           - Fixed wrong types for events
27143
27144 2004-09-22 14:00  pbartok
27145
27146         * Shortcut.cs, FormWindowState.cs:
27147           - Fixed wrong values
27148
27149 2004-09-22 12:01  jackson
27150
27151         * Control.cs: Text is never null
27152
27153 2004-09-20 22:14  pbartok
27154
27155         * XplatUIWin32.cs:
27156           - Fixed accessibility level for Idle handler
27157
27158 2004-09-20 18:54  jackson
27159
27160         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27161           XplatUIX11.cs: New message loop that uses poll so we don't get a
27162           busy loop
27163
27164 2004-09-17 10:43  pbartok
27165
27166         * ScrollBar.cs:
27167           - Fixed behaviour of arrow buttons. Now properly behaves like
27168             Buttons (and like Microsoft's scrollbar arrow buttons)
27169
27170 2004-09-17 10:14  pbartok
27171
27172         * ScrollBar.cs:
27173           - Added missing release of keyboard/mouse capture
27174
27175 2004-09-17 06:18  jordi
27176
27177         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
27178           Theme.cs: Very early menu support
27179
27180 2004-09-16 17:45  pbartok
27181
27182         * XplatUIWin32.cs:
27183           - Fixed sending a window to the front
27184           - Added overload for SetWindowPos to avoid casting
27185
27186 2004-09-16 17:44  pbartok
27187
27188         * Control.cs:
27189           - Added SendToBack and BringToFront methods
27190
27191 2004-09-16 07:00  ravindra
27192
27193         * Copyright: Added Novell URL.
27194
27195 2004-09-16 07:00  ravindra
27196
27197         * ToolBar.cs: Invalidate should be done before redrawing.
27198
27199 2004-09-15 21:19  ravindra
27200
27201         * ColumnHeaderStyle.cs: Enum for ListView Control.
27202
27203 2004-09-15 21:18  ravindra
27204
27205         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
27206           ListView Control.
27207
27208 2004-09-13 18:26  jackson
27209
27210         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
27211           properly
27212
27213 2004-09-13 18:13  jackson
27214
27215         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
27216           a second thread and post messages into the main threads message
27217           queue. This makes timing much more consistent. Both win2K and XP
27218           have a minimum timer value of 15 milliseconds, so we now do this
27219           too.
27220
27221 2004-09-13 15:18  pbartok
27222
27223         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27224           XplatUIX11.cs:
27225           - Added Z-Ordering methods
27226
27227 2004-09-13 10:56  pbartok
27228
27229         * Form.cs:
27230           - Fixed #region names
27231           - Moved properties and methods into their proper #regions
27232
27233 2004-09-13 10:51  pbartok
27234
27235         * Form.cs:
27236           - Added Accept and CancelButton properties
27237           - Added ProcessDialogKey() method
27238
27239 2004-09-13 08:18  pbartok
27240
27241         * IWindowTarget.cs:
27242           - Initial check-in
27243
27244 2004-09-10 21:50  pbartok
27245
27246         * Control.cs:
27247           - Added DoDragDrop() [incomplete]
27248           - Properly implemented 'Visible' handling
27249           - Added SetVisibleCore()
27250           - Implemented FindChildAtPoint()
27251           - Implemented GetContainerControl()
27252           - Implemented Hide()
27253
27254 2004-09-10 19:28  pbartok
27255
27256         * Control.cs:
27257           - Moved methods into their appropriate #regions
27258           - Reordered methods within regions alphabetically
27259
27260 2004-09-10 18:57  pbartok
27261
27262         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27263           - Added method to retrieve text from window
27264
27265 2004-09-10 18:56  pbartok
27266
27267         * Control.cs:
27268           - Moved some internal functions into the internal region
27269           - Implemented FontHeight
27270           - Implemented RenderRightToLeft
27271           - Implemented ResizeRedraw
27272           - Implemented ShowFocusCues
27273           - Implemented ShowKeyboardCues
27274           - Implemented FromChildHandle
27275           - Implemented FromHandle
27276           - Implemented IsMnemonic
27277           - Implemented ReflectMessage
27278           - All public and protected Static Methods are now complete
27279
27280 2004-09-10 16:54  pbartok
27281
27282         * Control.cs:
27283           - Implemented remaining missing public instance properties
27284           - Alphabetized some out of order properties
27285
27286 2004-09-10 05:51  ravindra
27287
27288         * PictureBox.cs: Added a check for null image.
27289
27290 2004-09-10 00:59  jordi
27291
27292         * GroupBox.cs: remove cvs tag
27293
27294 2004-09-09 05:25  ravindra
27295
27296         * ToolBar.cs: Make redraw accessible from ToolBarButton.
27297
27298 2004-09-09 05:23  ravindra
27299
27300         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
27301           parent redraw.
27302
27303 2004-09-09 02:28  pbartok
27304
27305         * ThemeWin32Classic.cs:
27306           - Improve disabled string look
27307
27308 2004-09-09 01:15  jordi
27309
27310         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
27311           args and handler
27312
27313 2004-09-08 23:56  ravindra
27314
27315         * ItemBoundsPortion.cs: It's enum, not a class!
27316
27317 2004-09-08 23:47  ravindra
27318
27319         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
27320           Enums for Form.
27321
27322 2004-09-08 21:13  ravindra
27323
27324         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
27325           ListView control.
27326
27327 2004-09-08 21:03  ravindra
27328
27329         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
27330           avoid crash.
27331
27332 2004-09-08 21:01  ravindra
27333
27334         * ScrollableControl.cs: Removed unreachable code.
27335
27336 2004-09-08 06:45  jordi
27337
27338         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
27339
27340 2004-09-08 01:00  jackson
27341
27342         * XplatUIX11.cs: Only run the timers when updating the message
27343           queue. This effectively gives X messages a higher priority then
27344           timer messages. Timers still need love though
27345
27346 2004-09-07 14:01  jackson
27347
27348         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
27349           this for us and the handle is no longer valid.
27350
27351 2004-09-07 13:59  jackson
27352
27353         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
27354           loop that manages to not crash. TODO: Add poll and cleanup timers
27355
27356 2004-09-07 11:12  jordi
27357
27358         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
27359
27360 2004-09-07 03:40  jordi
27361
27362         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
27363           fixes, methods, multiple links
27364
27365 2004-09-06 06:55  jordi
27366
27367         * Control.cs: Caches ClientRectangle rectangle value
27368
27369 2004-09-05 02:03  jordi
27370
27371         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
27372           certain situations
27373
27374 2004-09-04 11:10  jordi
27375
27376         * Label.cs: Refresh when font changed
27377
27378 2004-09-02 16:24  pbartok
27379
27380         * Control.cs:
27381           - Added sanity check to creation of double buffer bitmap
27382
27383 2004-09-02 16:24  pbartok
27384
27385         * ButtonBase.cs:
27386           - Fixed selection of text color
27387           - Fixed handling of resize event; now properly recreates double
27388             buffering bitmap
27389           - Added missing assignment of TextAlignment
27390           - Added proper default for TextAlignment
27391
27392 2004-09-02 14:26  pbartok
27393
27394         * RadioButton.cs:
27395           - Added missing RadioButton.RadioButtonAccessibleObject class
27396
27397 2004-09-02 14:26  pbartok
27398
27399         * Control.cs:
27400           - Added missing Control.ControlAccessibleObject class
27401           - Started to implement Select()ion mechanisms, still very incomplete
27402
27403 2004-09-02 14:25  pbartok
27404
27405         * AccessibleObject.cs:
27406           - Added missing methods
27407
27408 2004-09-02 14:23  pbartok
27409
27410         * AccessibleNavigation.cs, AccessibleSelection.cs:
27411           - Initial check-in
27412
27413 2004-09-02 10:32  jordi
27414
27415         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
27416           pool for pens, brushes, and hatchbruses
27417
27418 2004-09-01 15:30  jackson
27419
27420         * StatusBar.cs: Fix typo
27421
27422 2004-09-01 14:44  pbartok
27423
27424         * RadioButton.cs:
27425           - Fixed state
27426
27427 2004-09-01 14:39  pbartok
27428
27429         * Button.cs, RadioButton.cs:
27430           - Functional initial check-in
27431
27432 2004-09-01 14:01  pbartok
27433
27434         * CheckBox.cs:
27435           - Added missing default
27436           - Added missing region mark
27437
27438 2004-09-01 09:10  jordi
27439
27440         * Label.cs: fixes method signatures, new methods, events, fixes
27441           autosize
27442
27443 2004-09-01 07:19  jordi
27444
27445         * Control.cs: Init string variables with an empty object
27446
27447 2004-09-01 04:20  jordi
27448
27449         * Control.cs: fires OnFontChanged event
27450
27451 2004-08-31 20:07  pbartok
27452
27453         * ButtonBase.cs:
27454           - Enabled display of strings
27455
27456 2004-08-31 20:05  pbartok
27457
27458         * Form.cs:
27459           - Added (partial) implementation of DialogResult; rest needs to be
27460             implemented when the modal loop code is done
27461
27462 2004-08-31 19:55  pbartok
27463
27464         * CheckBox.cs:
27465           - Fixed to match the removal of the needs_redraw concept
27466
27467 2004-08-31 19:55  pbartok
27468
27469         * ButtonBase.cs:
27470           - Removed the rather odd split between 'needs redraw' and redrawing
27471           - Now handles the events that require regeneration (ambient
27472             properties and size)
27473
27474 2004-08-31 19:41  pbartok
27475
27476         * Control.cs:
27477           - Added firing of BackColorChanged event
27478           - Added TopLevelControl property
27479           - Fixed handling of WM_ERASEBKGRND message
27480
27481 2004-08-31 12:49  pbartok
27482
27483         * ButtonBase.cs:
27484           - Removed debug
27485           - Minor fixes
27486
27487 2004-08-31 12:48  pbartok
27488
27489         * CheckBox.cs:
27490           - Finished (famous last words)
27491
27492 2004-08-31 04:35  jordi
27493
27494         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
27495           scrolling bugs, adds new methods
27496
27497 2004-08-30 14:42  pbartok
27498
27499         * CheckBox.cs:
27500           - Implemented CheckBox drawing code
27501
27502 2004-08-30 14:42  pbartok
27503
27504         * ButtonBase.cs:
27505           - Made Redraw() and CheckRedraw() virtual
27506           - Improved mouse up/down/move logic to properly track buttons
27507
27508 2004-08-30 09:44  pbartok
27509
27510         * CheckBox.cs:
27511           - Updated to fix broken build. Not complete yet.
27512
27513 2004-08-30 09:28  pbartok
27514
27515         * CheckState.cs:
27516           - Initial checkin
27517
27518 2004-08-30 09:17  pbartok
27519
27520         * Appearance.cs:
27521           - Initial check-in
27522
27523 2004-08-27 16:12  ravindra
27524
27525         * ToolBarButton.cs: Added TypeConverter attribute.
27526
27527 2004-08-27 16:07  ravindra
27528
27529         * ImageIndexConverter.cs: Implemented.
27530
27531 2004-08-27 14:17  pbartok
27532
27533         * Control.cs:
27534           - Removed unneeded stack vars
27535           - First attempt to fix sizing issues when layout is suspended
27536
27537 2004-08-25 15:35  jordi
27538
27539         * ScrollBar.cs: more fixes to scrollbar
27540
27541 2004-08-25 14:04  ravindra
27542
27543         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
27544           Added the missing divider code and grip for ToolBar Control.
27545
27546 2004-08-25 13:20  pbartok
27547
27548         * Control.cs:
27549           - Control now properly passes the ambient background color to child
27550             controls
27551
27552 2004-08-25 13:20  jordi
27553
27554         * ScrollBar.cs: small bug fix regarding bar position
27555
27556 2004-08-25 12:33  pbartok
27557
27558         * Timer.cs:
27559           - Now only calls SetTimer or KillTimer if the enabled state has
27560           changed
27561
27562 2004-08-25 12:33  pbartok
27563
27564         * XplatUIWin32.cs:
27565           - Fixed timer handling, now seems to work
27566           - Improved error message for window creation
27567
27568 2004-08-25 12:32  pbartok
27569
27570         * Control.cs:
27571           - Fixed generation of MouseUp message
27572
27573 2004-08-25 12:29  jordi
27574
27575         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
27576           and fixes for progressbar
27577
27578 2004-08-24 18:43  ravindra
27579
27580         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
27581           in ToolBar control.
27582
27583 2004-08-24 17:15  pbartok
27584
27585         * Panel.cs:
27586           - Added #region
27587           - Added missing events
27588           - Alphabetized
27589
27590 2004-08-24 17:14  pbartok
27591
27592         * StatusBar.cs, PictureBox.cs:
27593           - Now uses Control's CreateParams
27594
27595 2004-08-24 16:36  pbartok
27596
27597         * XplatUIX11.cs:
27598           - Fixed background color handling
27599           - Fixed sending of enter/leave events on a grab
27600
27601 2004-08-24 16:35  pbartok
27602
27603         * X11Structs.cs:
27604           - Refined definitions for CrossingEvent
27605
27606 2004-08-24 12:37  jordi
27607
27608         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
27609           formmating, methods signature, and adds missing events
27610
27611 2004-08-24 12:24  jordi
27612
27613         * Control.cs: fire OnEnabledChanged event
27614
27615 2004-08-24 11:17  pbartok
27616
27617         * XplatUIWin32.cs:
27618           - Implemented SetTimer() and KillTimer()
27619
27620 2004-08-24 11:16  pbartok
27621
27622         * XplatUIX11.cs:
27623           - Now uses Remove instead of Add to kill the timer
27624
27625 2004-08-24 10:16  jackson
27626
27627         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
27628           picture boxes in the theme now. Draw picture box borders and obey
27629           sizing modes
27630
27631 2004-08-24 05:49  jackson
27632
27633         * Timer.cs: Remove top secret debugging code
27634
27635 2004-08-24 05:34  jackson
27636
27637         * PictureBox.cs: Temp hack to make picture boxes draw their full
27638           image
27639
27640 2004-08-24 05:29  jackson
27641
27642         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27643           XplatUIX11.cs: Move timers to the driver level. On X they are
27644           queued by the driver and checked on idle.
27645
27646 2004-08-24 01:07  jackson
27647
27648         * XplatUIX11.cs: Use a queue for async messages instead of passing
27649           them as ClientMessages since that was totally broken. Also simply
27650           check for events and return an idle message if none are found. This
27651           gives us an idle handler, and prevents deadlocking when no messages
27652           are in the queue.
27653
27654 2004-08-23 18:19  ravindra
27655
27656         * XplatUIWin32.cs: Removed the unwanted destructor.
27657
27658 2004-08-23 17:27  pbartok
27659
27660         * ButtonBase.cs:
27661           - Finishing touches. Works now, just needs some optimizations.
27662
27663 2004-08-23 16:53  jordi
27664
27665         * ScrollBar.cs: small fix
27666
27667 2004-08-23 16:45  pbartok
27668
27669         * Application.cs:
27670           - Removed debug output
27671           - Simplifications
27672
27673 2004-08-23 16:43  jordi
27674
27675         * ScrollBar.cs: [no log message]
27676
27677 2004-08-23 16:10  pbartok
27678
27679         * Form.cs:
27680           - Fixed handling of WM_CLOSE message
27681           - Removed debug output
27682
27683 2004-08-23 16:09  pbartok
27684
27685         * Application.cs:
27686           - Added handling of Idle event
27687           - Added handling of form closing
27688           - Fixed reporting of MessageLoop property
27689           - Removed some unneeded code, should provide a bit of a speedup
27690
27691 2004-08-23 15:22  pbartok
27692
27693         * Control.cs:
27694           - Added InitLayout() method
27695           - Added code to properly perform layout when Anchor or Dock property
27696             is changed
27697           - Changed 'interpretation' of ResumeLayout. MS seems to have a
27698             LAMESPEC, tried to do it in a way that makes sense
27699
27700 2004-08-23 14:10  jordi
27701
27702         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
27703           properties and methods
27704
27705 2004-08-23 13:55  pbartok
27706
27707         * Control.cs:
27708           - Properly fixed Jordi's last fix
27709           - Now uses Cursor's Position property instead of calling XplatUI
27710           directly
27711
27712 2004-08-23 13:44  jordi
27713
27714         * PaintEventHandler.cs: Adding missing attribute
27715
27716 2004-08-23 13:39  pbartok
27717
27718         * Cursor.cs:
27719           - Implemented Position property
27720
27721 2004-08-23 13:39  pbartok
27722
27723         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27724           - Added method to move mouse cursor
27725
27726 2004-08-23 13:39  pbartok
27727
27728         * XplatUIX11.cs:
27729           - Fixed setting of background color
27730           - Added method to move mouse cursor
27731
27732 2004-08-23 13:16  jordi
27733
27734         * Control.cs: avoids null exception
27735
27736 2004-08-22 17:46  jackson
27737
27738         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
27739           PictureBox
27740
27741 2004-08-22 17:40  jackson
27742
27743         * XplatUIX11.cs: Add some missing locks
27744
27745 2004-08-22 15:10  pbartok
27746
27747         * Control.cs, Form.cs:
27748           - Removed OverlappedWindow style from Control, instead it's default
27749             now is child
27750           - Made form windows OverlappedWindow by default
27751
27752 2004-08-22 13:34  jackson
27753
27754         * ScrollBar.cs: Update the position through the Value property so
27755           the OnValueChanged event is raised.
27756
27757 2004-08-22 12:04  pbartok
27758
27759         * SWF.csproj:
27760           - Added Cursor.cs and UserControl.cs
27761
27762 2004-08-22 12:03  pbartok
27763
27764         * Cursor.cs:
27765           - Started implementation, not usable yet
27766
27767 2004-08-22 12:00  pbartok
27768
27769         * UserControl.cs:
27770           - Implemented UserControl (complete)
27771
27772 2004-08-21 19:20  ravindra
27773
27774         * ToolBar.cs: Correcting the formatting mess of VS.NET.
27775
27776 2004-08-21 18:49  ravindra
27777
27778         * ToolBar.cs: Probably this completes the missing attributes in
27779           toolbar control.
27780
27781 2004-08-21 18:03  ravindra
27782
27783         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
27784           Fixed toolbar control signatures.
27785
27786 2004-08-21 16:32  pbartok
27787
27788         * LinkLabel.cs:
27789           - Signature Fixes
27790
27791 2004-08-21 16:30  pbartok
27792
27793         * Label.cs:
27794           - Signature fixes
27795
27796 2004-08-21 16:19  pbartok
27797
27798         * Control.cs, Label.cs:
27799           - Signature fixes
27800
27801 2004-08-21 15:57  pbartok
27802
27803         * ButtonBase.cs:
27804           - Added loads of debug output for development
27805           - Fixed typo in method name
27806
27807 2004-08-21 15:52  pbartok
27808
27809         * ToolBarButtonClickEventArgs.cs:
27810           - Added missing base class
27811
27812 2004-08-21 14:53  pbartok
27813
27814         * Control.cs:
27815           - Updated to match new GrabWindow signature
27816
27817 2004-08-21 14:51  pbartok
27818
27819         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
27820           - Added method to get default display size
27821
27822 2004-08-21 14:23  pbartok
27823
27824         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
27825           - Added method to query current grab state
27826           - Added argument to allow confining a grab to a window
27827
27828 2004-08-21 14:22  pbartok
27829
27830         * Keys.cs:
27831           - Added [Flags] attribute so that modifiers can be used in bitwise
27832           ops
27833
27834 2004-08-21 14:21  pbartok
27835
27836         * TrackBar.cs, ScrollBar.cs:
27837           - Replaced direct XplatUI calls with their Control counterpart
27838
27839 2004-08-21 13:32  pbartok
27840
27841         * Control.cs:
27842           - Implemented Created property
27843
27844 2004-08-21 13:28  pbartok
27845
27846         * Control.cs:
27847           - Implemented ContainsFocus
27848
27849 2004-08-21 13:26  pbartok
27850
27851         * Control.cs:
27852           - Implemented CausesValidation
27853
27854 2004-08-21 13:21  pbartok
27855
27856         * Control.cs:
27857           - Implemented CanFocus
27858           - Implemented CanSelect
27859           - Implemented Capture
27860
27861 2004-08-21 12:35  pbartok
27862
27863         * XplatUIWin32.cs:
27864           - Fixed bug with Async message handling
27865           - Implemented getting the ModifierKeys
27866
27867 2004-08-21 12:32  jackson
27868
27869         * AsyncMethodResult.cs: Make sure we have the mutex before we
27870           release it. Fixes BeginInvoke on windows
27871
27872 2004-08-21 11:31  pbartok
27873
27874         * XplatUIWin32.cs, XplatUIX11.cs:
27875           - Drivers now return proper mouse state
27876
27877 2004-08-21 10:54  jackson
27878
27879         * Control.cs: Implement EndInvoke
27880
27881 2004-08-21 10:48  jackson
27882
27883         * Timer.cs: Remove unneeded finalizer
27884
27885 2004-08-20 19:52  ravindra
27886
27887         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
27888           in mouse event handling in the ToolBar control.
27889
27890 2004-08-20 19:50  ravindra
27891
27892         * ImageList.cs: Changed draw method to use the arguments passed in
27893           to draw the image.
27894
27895 2004-08-20 18:58  pbartok
27896
27897         * XplatUIStructs.cs:
27898           - Added private message for async communication
27899
27900 2004-08-20 17:38  ravindra
27901
27902         * Control.cs: Made RightToLeft property virtual and removed a
27903           Console.WriteLine.
27904
27905 2004-08-20 14:39  jordi
27906
27907         * ThemeGtk.cs: use style_attach
27908
27909 2004-08-20 14:39  pbartok
27910
27911         * XplatUIWin32.cs:
27912           - Added jackson's Async code from X11 to Win32
27913
27914 2004-08-20 14:09  pbartok
27915
27916         * SWF.csproj:
27917           - Added all new files
27918
27919 2004-08-20 14:09  pbartok
27920
27921         * Control.cs:
27922           - Added call to set window background color
27923
27924 2004-08-20 14:03  pbartok
27925
27926         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
27927           - Added method for setting the window background
27928
27929 2004-08-20 14:02  pbartok
27930
27931         * XplatUIWin32.cs:
27932           - Added method for setting the background color
27933           - Added handling for erasing the window background
27934
27935 2004-08-20 13:45  jordi
27936
27937         * TrackBar.cs: fixes timer, new properties and methods
27938
27939 2004-08-20 13:34  jackson
27940
27941         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
27942           correct thread
27943
27944 2004-08-20 13:22  jackson
27945
27946         * Timer.cs: Timer Tick events are now handed through Controls Async
27947           mechanism so the callbacks are executed in the same thread as X
27948
27949 2004-08-20 13:19  jackson
27950
27951         * XplatUIDriver.cs: Expose functionality to send async messages
27952           through the driver
27953
27954 2004-08-20 13:18  jackson
27955
27956         * Control.cs: Implement Begininvoke
27957
27958 2004-08-20 13:14  jackson
27959
27960         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
27961           messages through the driver
27962
27963 2004-08-20 13:12  jackson
27964
27965         * XplatUIX11.cs: Lock before all X operations. Also added Async
27966           method functionality through XSendEvent
27967
27968 2004-08-20 13:11  jackson
27969
27970         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
27971           This will screw up on 64 bit systems)
27972
27973 2004-08-20 13:10  jackson
27974
27975         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
27976           Async messages through X/Win32
27977
27978 2004-08-19 19:39  pbartok
27979
27980         * XplatUIX11.cs:
27981           - Updated code to match new HandleData.DeviceContext type
27982
27983 2004-08-19 19:38  pbartok
27984
27985         * HandleData.cs:
27986           - Made DeviceContext a generic object to allow usage from various
27987           drivers
27988           - Added support for queueing Windows messages
27989
27990 2004-08-19 19:37  pbartok
27991
27992         * XplatUIWin32.cs:
27993           - Added generation of MouseEnter, MouseLeave and MouseHover events
27994           - Added cleanup on EndPaint
27995
27996 2004-08-19 19:17  pbartok
27997
27998         * Control.cs:
27999           - Added handling of WM_MOUSEHOVER
28000           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
28001           code
28002
28003 2004-08-19 18:55  jordi
28004
28005         * ThemeGtk.cs: fixes button order
28006
28007 2004-08-19 18:12  jordi
28008
28009         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
28010
28011 2004-08-19 17:09  pbartok
28012
28013         * Control.cs:
28014           - Added Right property
28015           - Added RightToLeft property
28016
28017 2004-08-19 16:27  jordi
28018
28019         * ThemeGtk.cs: experimental GTK theme support
28020
28021 2004-08-19 16:26  jordi
28022
28023         * ITheme.cs, Theme.cs: move themes from an interface to a class
28024
28025 2004-08-19 16:25  jordi
28026
28027         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
28028           theme enhancaments
28029
28030 2004-08-19 16:04  pbartok
28031
28032         * XplatUIX11.cs:
28033           - Added colormap basics
28034           - Added a way to re-initialize with a different display handle
28035           - Fixed setting of the window background color
28036           - Added various X11 imports related to colors and colormaps
28037
28038 2004-08-19 15:51  pbartok
28039
28040         * X11Structs.cs:
28041           - Removed packing hints (Paolo suggested this a while back)
28042           - fixed colormap type
28043           - Added default Atom types
28044           - Added Screen and color structs and enums
28045
28046 2004-08-19 15:39  pbartok
28047
28048         * ImageList.cs:
28049           - Added missing Draw() method
28050           - Added missing RecreateHandle event
28051
28052 2004-08-19 15:30  pbartok
28053
28054         * Form.cs:
28055           - Added handling of WM_CLOSE
28056
28057 2004-08-18 13:16  jordi
28058
28059         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
28060           a table
28061
28062 2004-08-18 09:56  jordi
28063
28064         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
28065
28066 2004-08-17 15:31  ravindra
28067
28068         * SWF.csproj: Updated project.
28069
28070 2004-08-17 15:25  pbartok
28071
28072         * Control.cs:
28073           - Drawing improvement; don't call UpdateBounds if we are not visible
28074             (or have been minimized)
28075
28076 2004-08-17 15:24  pbartok
28077
28078         * XplatUIWin32.cs:
28079           - Finished IsVisible
28080           - Added Win32GetWindowPlacement
28081
28082 2004-08-17 15:08  jackson
28083
28084         * Panel.cs: Initial checkin of the Panel
28085
28086 2004-08-17 14:25  pbartok
28087
28088         * Control.cs:
28089           - Fixed broken handling of default window sizes
28090
28091 2004-08-17 13:29  jackson
28092
28093         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
28094           has a large startup time.
28095
28096 2004-08-17 10:25  jackson
28097
28098         * HandleData.cs: union areas properly
28099
28100 2004-08-17 10:12  jackson
28101
28102         * HandleData.cs: union areas properly
28103
28104 2004-08-16 20:00  ravindra
28105
28106         * ToolBar.cs, ToolBarButton.cs: Added attributes.
28107
28108 2004-08-16 18:48  ravindra
28109
28110         * ToolBar.cs: Added attributes.
28111
28112 2004-08-16 17:17  ravindra
28113
28114         * SWF.csproj: Updated project.
28115
28116 2004-08-16 17:16  jackson
28117
28118         * XplatUIX11.cs: Check for more expose events before sending a
28119           WM_PAINT so they can all be grouped together. This makes dragging a
28120           window across another window redraw in a sane way.
28121
28122 2004-08-16 15:47  pbartok
28123
28124         * Control.cs:
28125           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
28126             support OnMouseEnter/Leave()
28127           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
28128             exposure handling
28129
28130 2004-08-16 15:46  pbartok
28131
28132         * XplatUIStructs.cs, XplatUIX11.cs:
28133           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
28134           OnMouseEnter/Leave()
28135
28136 2004-08-16 15:34  jackson
28137
28138         * XplatUIX11.cs: Group multiple expose events in HandleData, make
28139           sure messages get the message field set to WM_NULL if they are not
28140           handled.
28141
28142 2004-08-16 15:24  jackson
28143
28144         * HandleData.cs: HandleData is used for storing message information
28145           for window handles
28146
28147 2004-08-15 17:23  ravindra
28148
28149         * ColorDepth.cs: Added attribute.
28150
28151 2004-08-15 17:23  ravindra
28152
28153         * SWF.csproj: Updated project for ToolBar Control.
28154
28155 2004-08-15 17:20  ravindra
28156
28157         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
28158           control and also dos2unix format.
28159
28160 2004-08-15 17:13  ravindra
28161
28162         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
28163           ToolBarButtonClickEventArgs.cs,
28164           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
28165           ToolBarTextAlign.cs: First Implementation of ToolBar control.
28166
28167 2004-08-15 15:31  pbartok
28168
28169         * ButtonBase.cs:
28170           - First (mostly) working version
28171
28172 2004-08-13 16:15  pbartok
28173
28174         * Control.cs:
28175           - Fixed Anchor default
28176
28177 2004-08-13 15:43  pbartok
28178
28179         * Control.cs:
28180           - Changed GetCursorPos signature
28181
28182 2004-08-13 15:42  pbartok
28183
28184         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28185           - Changed signature for GetCursorPos
28186
28187 2004-08-13 15:25  pbartok
28188
28189         * XplatUIX11.cs:
28190           - Cleanup
28191           - Fixed resizing/exposure handling
28192
28193 2004-08-13 15:22  jordi
28194
28195         * ThemeWin32Classic.cs: removes redundant code and fixes issues
28196           with tickposition
28197
28198 2004-08-13 14:55  jordi
28199
28200         * TrackBar.cs: change from wndproc to events
28201
28202 2004-08-13 13:00  jordi
28203
28204         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28205           XplatUIX11.cs: implements PointToClient (ScreenToClient)
28206
28207 2004-08-13 12:53  pbartok
28208
28209         * XplatUIWin32.cs:
28210           - Changed GetWindowPos to also provide client area size
28211           - Fixed broken prototypes for several win32 functions
28212
28213 2004-08-13 12:53  pbartok
28214
28215         * XplatUI.cs, XplatUIDriver.cs:
28216           - Changed GetWindowPos to also provide client area size
28217
28218 2004-08-13 12:52  pbartok
28219
28220         * XplatUIX11.cs:
28221           - Added generation of WM_POSCHANGED
28222           - Changed GetWindowPos to also provide client area size
28223
28224 2004-08-13 12:52  pbartok
28225
28226         * Control.cs:
28227           - Added Dispose() and destructor
28228           - Fixed resizing and bounds calculation
28229           - Fixed Layout
28230           - Added memory savings for invisible windows
28231
28232 2004-08-13 12:46  jordi
28233
28234         * TrackBar.cs: adds timer and grap window
28235
28236 2004-08-13 10:25  jackson
28237
28238         * Timer.cs: SWF Timer
28239
28240 2004-08-12 16:59  pbartok
28241
28242         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28243           - Implemented method to get current mouse position
28244
28245 2004-08-12 14:29  jordi
28246
28247         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
28248           enhancement, fix mouse problems, highli thumb, etc
28249
28250 2004-08-12 13:31  pbartok
28251
28252         * Control.cs:
28253           - Fixed Anchoring bugs
28254
28255 2004-08-12 13:01  jackson
28256
28257         * StatusBar.cs: Don't forget things
28258
28259 2004-08-12 12:54  jackson
28260
28261         * ThemeWin32Classic.cs: Handle owner draw status bars
28262
28263 2004-08-12 12:54  jackson
28264
28265         * StatusBar.cs: Implement missing properties, events, and methods.
28266           Handle mouse clicking
28267
28268 2004-08-12 10:19  jackson
28269
28270         * StatusBarPanelClickEventArgs.cs,
28271           StatusBarPanelClickEventHandler.cs: Classes for handling status
28272           bar panel click events
28273
28274 2004-08-12 10:10  jackson
28275
28276         * Control.cs: Add missing properties
28277
28278 2004-08-12 09:46  pbartok
28279
28280         * BindingsManagerBase.cs:
28281           - Name changed to BindingManagerBase.cs
28282
28283 2004-08-12 09:25  jordi
28284
28285         * ScrollableControl.cs: calls ctrlbase instead of exeception
28286
28287 2004-08-11 16:28  pbartok
28288
28289         * InputLanguageChangingEventArgs.cs:
28290           - Never check in before compiling. Fixes the last check-in
28291
28292 2004-08-11 16:26  pbartok
28293
28294         * InputLanguageChangingEventArgs.cs:
28295           - More signature fixes
28296
28297 2004-08-11 16:20  pbartok
28298
28299         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
28300           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
28301           ImageListStreamer.cs, InputLanguage.cs,
28302           InputLanguageChangedEventArgs.cs,
28303           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
28304           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
28305           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
28306           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28307           - Signature fixes
28308
28309 2004-08-11 16:16  pbartok
28310
28311         * Application.cs:
28312           - Fixed Signature
28313           - Added .Net 1.1 method
28314
28315 2004-08-11 15:25  pbartok
28316
28317         * SWF.csproj:
28318           - Fixed BindingManagerBase.cs filename
28319
28320 2004-08-11 15:22  pbartok
28321
28322         * BindingManagerBase.cs:
28323           - Was checked in with wrong filename
28324
28325 2004-08-11 14:50  pbartok
28326
28327         * SWF.csproj:
28328           - Updated
28329
28330 2004-08-11 13:41  jordi
28331
28332         * XplatUIWin32.cs: Fixes ClientRect
28333
28334 2004-08-11 13:19  pbartok
28335
28336         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28337           XplatUIX11.cs:
28338           - We had SetWindowPos and MoveWindow to set window positions and
28339             size, removed MoveWindow. We have GetWindowPos, so it made sense to
28340             keep SetWindowPos as matching counterpart
28341           - Added some X11 sanity checking
28342
28343 2004-08-11 12:59  pbartok
28344
28345         * Control.cs:
28346           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
28347             (It seems that SetBounds is just a front for SetBoundsCore and
28348              SetBoundsCore updates the underlying window system and
28349              UpdateBounds is responsible for updating the variables associated
28350              with the Control and sending the events)
28351           - Major cleanup of Size handling; we now have two sizes, client_size
28352             and bounds. Bounds defines the window with decorations, client_size
28353             without them.
28354
28355 2004-08-11 12:55  pbartok
28356
28357         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28358           - Added method to calculate difference between decorated window and
28359             raw client area
28360
28361 2004-08-11 12:54  pbartok
28362
28363         * Label.cs:
28364           - Forcing redraw on resize
28365
28366 2004-08-11 11:43  pbartok
28367
28368         * ImageList.cs:
28369           - Removed disposing of the actual images when the list is disposed
28370
28371 2004-08-11 09:13  pbartok
28372
28373         * Control.cs:
28374           - Now properly reparents windows
28375
28376 2004-08-11 08:37  pbartok
28377
28378         * Control.cs:
28379           - Duh!
28380
28381 2004-08-11 07:47  pbartok
28382
28383         * Control.cs:
28384           - Rewrote the collection stuff. Might not be as fast now, not
28385             keeping the number of children around and accessible directly, but
28386             it's more straightforward
28387
28388 2004-08-11 07:44  pbartok
28389
28390         * AccessibleObject.cs:
28391           - Fixed to match ControlCollection rewrite
28392
28393 2004-08-11 07:43  pbartok
28394
28395         * ImageList.cs:
28396           - Added missing creation of the collection list
28397
28398 2004-08-10 20:08  jackson
28399
28400         * StatusBar.cs: Get the paint message from WndProc
28401
28402 2004-08-10 19:31  jackson
28403
28404         * ThemeWin32Classic.cs: Create Brushes as little as possible
28405
28406 2004-08-10 19:20  jackson
28407
28408         * UICues.cs: Add Flags attribute
28409
28410 2004-08-10 19:19  jackson
28411
28412         * StatusBarPanel.cs: Signature cleanup
28413
28414 2004-08-10 19:10  jackson
28415
28416         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
28417           Initial implementation of status bar item drawing
28418
28419 2004-08-10 17:27  jordi
28420
28421         * TrackBar.cs: add missing methods, properties, and restructure to
28422           hide extra ones
28423
28424 2004-08-10 16:24  jackson
28425
28426         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
28427           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
28428           attribute
28429
28430 2004-08-10 13:21  jordi
28431
28432         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
28433           enhancements and standarize on win colors defaults
28434
28435 2004-08-10 12:52  jackson
28436
28437         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
28438           ThemeWin32Classic.cs: Implement DrawItem functionality
28439
28440 2004-08-10 12:47  jordi
28441
28442         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
28443
28444 2004-08-10 12:32  jordi
28445
28446         * Control.cs: throw ontextchange event
28447
28448 2004-08-10 11:43  pbartok
28449
28450         * Control.cs:
28451           - Added more to the still unfinished Dock/Anchor layout code
28452
28453 2004-08-10 11:39  pbartok
28454
28455         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28456           - Added GetWindowPos method
28457
28458 2004-08-10 11:36  pbartok
28459
28460         * XplatUIWin32.cs:
28461           - Implemented several methods
28462
28463 2004-08-10 09:47  jackson
28464
28465         * TrackBar.cs: Allow control to handle buffering
28466
28467 2004-08-10 09:41  jackson
28468
28469         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
28470
28471 2004-08-10 09:24  jackson
28472
28473         * Label.cs, LinkLabel.cs: Let Control handle buffering.
28474
28475 2004-08-10 09:09  jackson
28476
28477         * StatusBar.cs: Let Control handle all the buffering.
28478
28479 2004-08-10 09:08  jackson
28480
28481         * Control.cs: Control will now handle the buffering code, so each
28482           control does not have to implement this.
28483
28484 2004-08-10 08:34  jackson
28485
28486         * XplatUIDriver.cs: Use default colors from the theme
28487
28488 2004-08-09 17:12  pbartok
28489
28490         * ImageList.cs:
28491           - Fixed several bugs Ravindra pointed out
28492
28493 2004-08-09 16:11  pbartok
28494
28495         * Control.cs:
28496           - Added incomplete dock layout code
28497           - Added support for mouse wheel
28498
28499 2004-08-09 16:09  pbartok
28500
28501         * XplatUIX11.cs:
28502           - Added handling for middle and right mousebutton
28503           - Added handling for mouse wheel
28504           - Added handling for key state and mouse state and position
28505           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
28506           messages
28507
28508 2004-08-09 15:40  jackson
28509
28510         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
28511           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
28512           checkin
28513
28514 2004-08-09 15:37  jackson
28515
28516         * StatusBar.cs: Initial implementation of StatusBar
28517
28518 2004-08-09 15:36  jackson
28519
28520         * ITheme.cs: Add support for drawing status bar and getting status
28521           bar item sizes
28522
28523 2004-08-09 15:35  pbartok
28524
28525         * MouseButtons.cs:
28526           - Fixed values
28527
28528 2004-08-09 15:34  jackson
28529
28530         * ThemeWin32Classic.cs: Add support for drawing status bar and get
28531           status bar item sizes
28532
28533 2004-08-09 15:21  jackson
28534
28535         * ThemeWin32Classic.cs: Use known colors for default control
28536           colours
28537
28538 2004-08-09 15:12  jackson
28539
28540         * ThemeWin32Classic.cs: Make the default font static, it is static
28541           in control so this doesn't change functionality and creating fonts
28542           is sloooooow.
28543
28544 2004-08-09 14:56  pbartok
28545
28546         * X11Structs.cs:
28547           - Added GrabMode enum
28548
28549 2004-08-09 14:55  pbartok
28550
28551         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28552           - Removed Run method, was only required for initial development
28553
28554 2004-08-09 14:51  pbartok
28555
28556         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28557           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
28558           capture
28559
28560 2004-08-09 13:48  pbartok
28561
28562         * XplatUIX11.cs:
28563           - Fixed default sizing for child windows
28564
28565 2004-08-09 12:56  pbartok
28566
28567         * XplatUIX11.cs:
28568           - Added generation of WM_DESTROY message
28569           - Added handling of window manager induced shutdown
28570
28571 2004-08-09 11:31  jackson
28572
28573         * ThemeWin32Classic.cs: New names for control properties
28574
28575 2004-08-09 11:25  jackson
28576
28577         * Control.cs: Use new color names
28578
28579 2004-08-09 11:02  jackson
28580
28581         * XplatUI.cs: Get default window properties from the theme
28582
28583 2004-08-09 11:01  jackson
28584
28585         * ITheme.cs: The theme engine now controls default window
28586           properties
28587
28588 2004-08-09 11:00  jackson
28589
28590         * ThemeWin32Classic.cs: Add default window color properties
28591
28592 2004-08-09 10:17  jackson
28593
28594         * ThemeWin32Classic.cs: Use correct default back color
28595
28596 2004-08-09 10:05  jackson
28597
28598         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
28599           the theme now.
28600
28601 2004-08-09 09:56  jackson
28602
28603         * XplatUI.cs: Remove defaults, these are handled by the theme now.
28604
28605 2004-08-09 09:54  jackson
28606
28607         * Control.cs: Get default properties from the theme.
28608
28609 2004-08-09 09:53  jackson
28610
28611         * ITheme.cs: Themes now handle default control properties
28612
28613 2004-08-09 09:53  jackson
28614
28615         * ThemeWin32Classic.cs: Themes now handle default control
28616           properties so coloring will be consistent
28617
28618 2004-08-08 16:54  jordi
28619
28620         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
28621
28622 2004-08-08 15:08  jordi
28623
28624         * XplatUIX11.cs: fixes keyboard crash
28625
28626 2004-08-08 13:47  jordi
28627
28628         * Label.cs: add cvs header info
28629
28630 2004-08-08 12:09  jackson
28631
28632         * ThemeWin32Classic.cs: Add pen_buttonface
28633
28634 2004-08-08 11:52  jordi
28635
28636         * Label.cs, LinkLabel.cs: [no log message]
28637
28638 2004-08-08 11:34  jordi
28639
28640         * ThemeWin32Classic.cs: Use Windows Standard Colours
28641
28642 2004-08-07 17:32  jordi
28643
28644         * TrackBar.cs: throw exceptions of invalid enums values
28645
28646 2004-08-07 17:31  jordi
28647
28648         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
28649           draw method name
28650
28651 2004-08-07 16:56  jackson
28652
28653         * HorizontalAlignment.cs: Initial checkin
28654
28655 2004-08-07 13:16  jordi
28656
28657         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
28658           methods
28659
28660 2004-08-07 13:05  jordi
28661
28662         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
28663           GetSysColor defines
28664
28665 2004-08-06 18:01  pbartok
28666
28667         * ThemeWin32Classic.cs:
28668           - Fixed some rounding issues with float/int
28669
28670 2004-08-06 18:00  jackson
28671
28672         * DockStyle.cs, AnchorStyles.cs:
28673
28674                   Add flags and serializable attributes.
28675
28676 2004-08-06 17:46  pbartok
28677
28678         * XplatUIX11.cs:
28679           - Implemented GetParent
28680
28681 2004-08-06 17:18  pbartok
28682
28683         * TrackBar.cs:
28684           - Fixed some rounding issues with float/int
28685
28686 2004-08-06 17:17  pbartok
28687
28688         * X11Structs.cs, XplatUIX11.cs:
28689           - Fixed Refresh and Invalidate
28690
28691 2004-08-06 15:30  pbartok
28692
28693         * Control.cs, X11Structs.cs, XplatUIX11.cs:
28694           - Fixed recursive loop when resizing
28695           - Improved/fixed redrawing on expose messages
28696
28697 2004-08-06 09:53  jordi
28698
28699         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
28700           keyboard navigation
28701
28702 2004-08-06 08:02  pbartok
28703
28704         * X11Structs.cs, XplatUIX11.cs:
28705           - Fixed reparenting
28706           - Fixed window border creation
28707
28708 2004-08-05 15:38  pbartok
28709
28710         * XplatUIX11.cs:
28711           - Attempted fix for reparenting problems
28712
28713 2004-08-04 15:14  pbartok
28714
28715         * Control.cs:
28716           - Fixed Invalidation bug (calculated wrong client area)
28717           - Added ClientSize setter
28718
28719 2004-08-04 15:13  pbartok
28720
28721         * Form.cs:
28722           - Added AutoScale properties
28723
28724 2004-08-04 15:13  pbartok
28725
28726         * SWF.csproj:
28727           - Added latest files
28728
28729 2004-08-04 14:11  pbartok
28730
28731         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28732           XplatUIX11.cs:
28733           - Added Invalidate handling
28734
28735 2004-08-03 17:09  jordi
28736
28737         * XplatUIDriver.cs: fixes spelling mistake
28738
28739 2004-07-27 09:53  jordi
28740
28741         * TrackBar.cs: fixes trackbar events, def classname, methods
28742           signature
28743
28744 2004-07-27 09:29  jordi
28745
28746         * ScrollBar.cs: fixes scrollbar events
28747
28748 2004-07-27 04:38  jordi
28749
28750         * Control.cs: changes to be able to run winforms samples
28751
28752 2004-07-26 11:42  jordi
28753
28754         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
28755           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
28756
28757 2004-07-26 05:41  jordi
28758
28759         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
28760           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
28761           implementation
28762
28763 2004-07-22 09:22  jordi
28764
28765         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
28766           check link overlapping, implement events, and fixes
28767
28768 2004-07-21 10:28  jordi
28769
28770         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
28771
28772 2004-07-21 10:19  jordi
28773
28774         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
28775           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
28776           LinkLabelLinkClickedEventArgs.cs,
28777           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
28778           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
28779           implementation
28780
28781 2004-07-19 13:09  jordi
28782
28783         * Control.cs, Label.cs: label control re-written: added missing
28784           functionlity, events, and properties
28785
28786 2004-07-19 10:49  jordi
28787
28788         * Control.cs: fixes SetBounds logic
28789
28790 2004-07-19 01:29  jordi
28791
28792         * Control.cs: Call RefreshWindow only if the window has created
28793
28794 2004-07-15 14:05  pbartok
28795
28796         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
28797           - Implemented ImageList and ImageList.ImageCollection classes
28798           - Added ColorDepth enumeration
28799           - Updated SWF VS.Net project
28800
28801 2004-07-15 11:06  jordi
28802
28803         * XplatUIStructs.cs: added MsgButons enum
28804
28805 2004-07-15 11:03  jordi
28806
28807         * Control.cs: added basic mouse handeling events
28808
28809 2004-07-15 03:38  jordi
28810
28811         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
28812           Vertical TrackBar control implementation
28813
28814 2004-07-13 09:33  jordi
28815
28816         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
28817
28818 2004-07-13 09:31  jordi
28819
28820         * Control.cs, Form.cs: commit: new properties and fixes form size
28821           problems
28822
28823 2004-07-09 14:13  miguel
28824
28825         * ProgressBar.cs: Spelling
28826
28827 2004-07-09 11:25  pbartok
28828
28829         * ProgressBar.cs:
28830           - Removed usage of Rectangle for drawing. Miguel pointed out it's
28831           faster
28832
28833 2004-07-09 11:17  miguel
28834
28835         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
28836
28837                 * ProgressBar.cs: Fixed spelling for `block'
28838
28839                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
28840                 style guidelines.
28841
28842                 Avoid using the += on rect.X, that exposed a bug in the compiler.
28843
28844 2004-07-08 23:21  pbartok
28845
28846         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
28847           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
28848           BaseCollection.cs, Binding.cs, BindingContext.cs,
28849           BindingMemberInfo.cs, BindingsCollection.cs,
28850           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
28851           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
28852           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
28853           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
28854           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
28855           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
28856           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
28857           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
28858           FrameStyle.cs, GiveFeedbackEventArgs.cs,
28859           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
28860           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
28861           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
28862           InputLanguageChangedEventArgs.cs,
28863           InputLanguageChangedEventHandler.cs,
28864           InputLanguageChangingEventArgs.cs,
28865           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
28866           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
28867           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
28868           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
28869           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
28870           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
28871           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
28872           QueryAccessibilityHelpEventArgs.cs,
28873           QueryAccessibilityHelpEventHandler.cs,
28874           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
28875           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
28876           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
28877           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
28878           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
28879           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
28880           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
28881           XplatUIX11.cs, lang.cs:
28882           - Initial check-in
28883
28884