2007-08-23 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2
3         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
4         and always return true.  [Fixes bug #81616]
5
6 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
7
8         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
9         TextBox.  [Fixes bug #82549]
10
11 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
12
13         * FileDialog.cs: When Save/Open is clicked and no filename is selected
14         or entered then do not close the dialog. Fixes bug #82539. Removed
15         CWLs.
16
17 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
18
19         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
20         code to this method. It is calling every time filter changes. This method
21         will help to fix the bug #80887.
22
23 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
24
25         * CheckBox.cs: Implement AutoSize calculation.
26
27 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
28
29         * CheckBox.cs: Use new 2.0 rendering for 2.0.
30         * Theme.cs: Method declarations for 2.0 rendering path.
31         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
32
33 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
34
35         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
36
37 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
38
39         * ListViewGroupCollection.cs: Implement AddRange the right way, to
40         only call Redraw on the parent one time.
41
42 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
43
44         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
45           GetClipboardContent.
46         * DataGridViewCell.cs: Implemented GetClipboardContent,
47           GetEditedFormattedValue, GetFormattedValue.
48         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
49
50 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
51
52         * TableLayoutStyleCollection.cs: corcompare fix.
53
54 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
55
56         * DataObject.cs: Implemented retrieval of convertible / not convertible
57           objects.
58
59 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
60
61         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
62         ourselves.  This ensures the entire old bounds are repainted, in case our new
63         size is smaller.  [Fixes bug #82518]
64
65 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
66
67         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
68         flag to make fast handle of mouse events, without this the mouse move is
69         handled in some manner, whether it is a mouse move or not. Fixes #81588.
70
71 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
72
73         * ListView.cs: When doing layout calculations don't use a ref
74         param to keep the current item; instead use its Index value (this 
75         is specially important when doing the layout with Groups
76         and Items being sparse). Also don't take into account items added to
77         the Group but not yet added to the main ListView.Items collection.
78
79 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
80
81         * ListViewGroupCollection.cs: Forgot to mimic an issue
82         in the indexer (don't assign the ListView owner for new values).
83
84 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
85
86         * ListViewGroupCollection.cs: Make the string indexer use
87         the int based indexer to re-use code, instead of duplicate the code.
88         Also Redraw as needed and take into account null values.
89
90 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
91
92         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
93         [Fixes bug #82481]
94
95 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
96
97         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
98         when other buttons are clicked or navigated to.
99
100 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
101
102         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
103           it's XplatUIX11 that attaches them.
104
105 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
106
107         * DataGridView.cs: If a column has been added, recreate the editing row.
108           Fixes #82226.
109
110 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
111
112         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
113           of the tag to draw. Makes disappearing text show up again.
114
115 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
116
117         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
118           Contents. Fixes #82487.
119
120 2007-08-19  Andreia Gaita  <avidigal@novell.com>
121
122         * Added HtmlElement.cs, HtmlElementCollection.cs, 
123           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
124           
125 2007-08-19  Andreia Gaita  <avidigal@novell.com>
126
127         * BindingSource.cs: Implement this, dispose and getenumerator.
128         * DataGridViewRowCollection.cs: Move the InvalidOperationException
129         out of AddInternal, throw it only on public Add calls. The 
130         UsingWebBrowser sample was blowing up with this when setting the
131         DataSource after adding DataBindings, so it's likely that .net
132         only throws this exception when Add is called directly. 
133         
134         * ToolStripControlHost.cs: Return the hosted control's text
135         property, and not the ToolStripItem one (it would always return
136         the initial value).
137         
138         * HtmlDocument.cs: Implement GetElementById and All
139         * WebBrowser.cs: Remove exception on set_DocumentStream.        
140
141 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
142
143         * Form.cs: Fix the max and min value for opacity (0~1).
144
145 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
146
147         [Fixes #80118]
148         * DataGridTableStyle.cs: Default header font is now null, on getter it 
149         returns datagrid font when is null. On setter permits null.
150
151         * DataGrid.cs:
152         - When ResetHeaderFont set header font to null.
153         - On EndInit set grid_style.DataGrid.
154
155 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
156
157         * TabControl.cs: Fix regression in default padding x.
158
159 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
160
161         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
162
163 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
164
165         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
166         not 2. Fixes #82229.
167
168 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
169
170         * TabControl.cs: Fix tab size when image height is less than text height.
171         Partially fixes #81837.
172
173 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
174
175         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
176         "alt + tab". It works only for Win32, for X11 theres no way to remove window
177         from taskbar and keep it on "alt_tab". Fixes #81722.
178
179 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
180
181         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
182         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
183         Fixes #80877 and #79418.
184
185 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
186
187         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
188         between position and one of the screen borders. Fixes #82349.
189
190 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
191
192         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
193         the MessageBox in the taskbar. Fixes #82457.
194
195 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
196
197         * MessageBox.cs: Fix form size when icon is set and text height is bigger
198         than icon. Fixes #82468.
199
200 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
201
202         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
203         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
204           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
205           Refactored HandleNCCalcSize somewhat to avoid code duplication.
206         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
207           FormBorderStyle to decide if we're calculating a new size from the
208           client size or not. CreateParams: Don't fake tool windows, only the X11
209           backend manages toolwindows manually.
210
211 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
212
213         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
214         ObjectDisposedException.
215
216 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
217
218         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
219         in OnLoad should not have any effect.  [Fixes bug #82470]
220
221 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
222
223         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
224         paint for controls that create their own ToolTipWindow instead of
225         going through ToolTip.
226
227 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
228
229         * ToolTip.cs: Make Hide internal instead of public to match MS API.
230
231 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
232
233         * ListViewGroupCollection.cs: Use generic List instead of an
234         ArrayList, since this collection is 2.0 only.
235
236 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
237
238         * ToolTip.cs (Hide): Made public to make the build work (should
239         this not be public?).
240
241 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
242
243         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
244         ToolTipWindow.
245         * ToolTip.cs: Add an internal Visible property to facilitate transition.
246
247 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
248
249         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
250         PopupEventHandler.cs: Make these internal for 1.1.
251         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
252         use ToolTipWindow internals.
253         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
254         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
255
256 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
257
258         * X11Dnd.cs: Add a null check.
259
260 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
261
262         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
263           nothing else succeeds. Fixes #82453.
264
265 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
266
267         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
268           rectangle if we're painting to another window than the one the paint
269           message was generated on. Simplify the code somewhat, which makes
270           PaintEventEnd also simpler.
271
272 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
273
274         * Control.cs: When changing parent of a form, let the form decide whether
275           XplatUI.SetParent should be called or not.
276         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
277           recreating the handle. If the new parent's handle isn't created, don't
278           recreate our handle, just destroy it. CreateParams: Check if the
279           parent's handle is created before fetching it.
280
281 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
282
283         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
284           Update calls to PaintEventStart/End to take a Message argument.
285         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
286           take a Message argument.
287         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
288           Message argument, and handle the case where we don't paint to the window
289           for which the paint message was generated.
290
291 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
292
293         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
294           Marshal.GetLastWin32Error. Plug nasty memory leak in
295           PaintEventStart/End, we were creating a DC we weren't releasing.
296
297 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
298
299         * ListView.cs: Add Groups support in Details view. Also have a small
300         method to do the layout of the group header. Don't use a separate
301         method to do the groups calculation in Icons view, since our methods
302         are now a little simpler.
303         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
304         `Bounds'.
305         * ThemeWin32Classic.cs: Likewise.
306
307 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
308
309         * Application.cs: Add FilterMessage method and rework our message loop
310         logic to use it.
311
312 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
313
314         * Application.cs: Add some methods and stub a few methods that are
315         pretty much never used.
316
317 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
318
319         * TreeNode.cs: Add some serialization methods.
320
321 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
322
323         * ListView.cs: In ListViewItemCollection have a 
324         'is_main_collection' field to not modify ListViewItem.ListView
325         when using it as ListViewGroup.Items (and not ListView.Items)
326         and also don't modify selection state (.Net behaviour). 
327         Instead, set group for items contained in a ListViewGroup.Items collection.
328         * ListViewItem.cs: Simplify some code in Group setter.
329         * ListViewGroup.cs: use the new .ctor to pass the current instance
330         to the ItemsCollection.
331         * ListViewGroup.cs: Set the ListView property for ListViewGroup
332         instances when adding/removing. Also make Remove use RemoveAt, which
333         should perform better.
334
335 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
336
337         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
338         that crept into the 1.1 profile.
339
340 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
341
342         * ToolBarButton.cs: Implement ImageKey.
343
344 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
345
346         * ToolBar.cs: Implement ScaleControl/ScaleCore.
347
348 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
349
350         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
351           created, it might have gotten destroyed since we last checked. Fixes
352           #82405.
353
354 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
355
356         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
357         tooltip will hide when mouse is moved off the control.
358         [Fixes bug #82407]
359
360 2007-08-11 Andreia Gaita <avidigal@novell.com>
361
362         * WebBrowserBase.cs, WebBrowser.cs: add implementation
363         using Mono.Mozilla for loading and navigating webcontrol
364         with xulrunner.
365         The initial implementation was done on 
366         /trunk/mozembed/tests/browser , and copied here.
367
368 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
369
370         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
371         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
372
373 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
374
375         * DataGridView.cs: Add support for an editing row. Fixes #82226.
376           RowTemplateFull: throw an exception if a column doesn't have a template.
377         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
378           add the row just before it.
379         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
380           selected.
381         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
382           DataGridView field to be able to reach the grid's editing row.
383
384 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
385
386         * ToolTip.cs: If the control's handle hasn't been created when it has a
387         tooltip set on it, don't check to see if we need to show the tooltip.  This
388         check was causing the control's handle to be created.
389         [Fixes bug #82399]
390
391 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
392
393         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
394                                         1.1             2.0
395         Handle Not Created      -1              0
396         Handle Created          0               0
397         [Fixes bug #82371]
398
399 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
400
401         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
402         [Fixes bug #82348]
403
404 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
405
406         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
407         * ToolTip.cs: Implement some properties and owner draw.
408
409 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
410
411         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
412           show them again, since setting visibility causes a paint, causing an
413           endless loop (instead use a temporary and set it all when it's known if
414           they should be shown or not). Fixes #79265.
415
416 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
417
418         * DataGridView.cs: Only do a full column/row selection if a header was
419           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
420           isn't pressed, deselect everything before selecting something.
421
422 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
423
424         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
425           behaviour according to bug #81075 - they are returned in the order they
426           are selected. Fix HitTest to check if the point is within any of the
427           headers. Allow for row/column selection when in ColumnHeader or
428           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
429           the row and column to call when their selected state changes, and
430           updated selected_[rows|columns] whenever SetSelected* is called.
431         * DataGridViewBand.cs: Initialize isRow correctly. Call
432           SetSelected[Row|Column]CoreInternal when the selected state changes, and
433           add a SelectedInternal to avoid StackOverflows.
434         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
435           ReadOnly no matter what.
436         * DataGridViewSelectedColumnCollection.cs,
437           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
438           the items in reverse order (just as MS does...)
439
440 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
441
442         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
443         itself, not part of a mnemonic.  [Fixes bug #82378]
444
445 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
446
447         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
448         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
449           the DGV, the column, the row, or the cell itself is readonly.
450
451 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
452
453         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
454         OSVersion.Platform.
455         * FileDialog.cs: Same.
456         * TextRendered.cs: Same.
457         * FolderBrowserDialog.cs: Same.
458         * TextBoxBase.cs: Same.
459         * Application.cs: Same.
460         * Cursors.cs: Same.
461         * ThemeClearLooks.cs: Same.
462
463 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
464
465         * XplatUI.cs: Added RunningOnUnix property to be used by controls
466         instead of duplicating these checks everywhere.
467         * FileDialog.cs: Use case-insensitive comparison for populating the
468         DirComboBox when not running on unix. Fixes bug #82385.
469         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
470         "Look in".
471
472 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
473
474         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
475           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
476           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
477           cell and column selection with ctrl and shift pressed. Call the correct
478           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
479           the corresponding virtual method (PaintBackground to paint background,
480           etc).
481         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
482           either the column, row or the cell itself is selected.
483         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
484           OnRowsAdded.
485         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
486           here. When the row is selected, don't select all cells. Each cell now
487           queries the row to see if the row is selected.
488
489 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
490
491         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
492           SelectionMode.
493
494 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
495
496         * ListView.cs: In ListViewItemsCollection check that owner is
497         not null before trying to access it (this happens quite often
498         using Groups). Also don't duplicate calls by calling CollectionChanged
499         method.
500
501 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
502
503         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
504         when we are dismissed to clear keyboard mnemonics.
505         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
506         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
507         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
508         was activated by keyboard or the OS tells us to always draw them.
509         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
510         [Fixes bugs #82376, #82377]
511
512 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
513
514         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
515         shot at having it because Alt was pressed.
516         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
517         the first real menu item.
518         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
519         a mnemonic if Text is null.
520         [Fixes bug #82374]
521
522 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
523
524         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
525         search do check whether the item is already contained in the
526         collection or not; instead check if the owner of the item is the same
527         as ours. Also, remove a redundant check in the same method. 
528
529 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
530
531         * Control.cs: Allow the clip region to be set back to null.
532         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
533         [Fixes button still showing up in bug #82370 when Show Through is turned off]
534
535 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
536
537         * GridEntry.cs: Add a null check.
538         * PropertyGrid.cs: When checking for existing grid entries, ignore category
539           entries. Fixes #82297.
540
541 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
542
543         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
544         for 2.0.
545
546 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
547
548         * ListBox.cs: Implement ScaleControl.
549
550 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
551
552         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
553           have a menu strip.
554         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
555           parent has a menu strip. Fixes #81689.
556
557 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
558
559         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
560           moments, so apply some fuzzy logic to determine if the mouse is still
561           inside a control or not. Fixes #82288 (for the third time).
562
563 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
564
565         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
566           Don't create the child if it has been disposed already (may happen if
567           the user closes the form the Load event).
568
569 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
570
571         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
572           #82288.
573
574 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
575
576         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
577           might call us after we've been destroyed, in which case our own private
578           parent field is null. Fixes #82326.
579
580 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
581
582         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
583         check for setting the dropdown's owner.
584
585 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
586
587         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
588         before removing system menu items.
589
590 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
591
592         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
593         folding.
594         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
595         folding.
596         * ToolStrip.cs: Add a null check to mnemonics.
597         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
598         no ConnectedArea.
599         [Fixes most of bug #81689]
600
601 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
602
603         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
604
605 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
606
607         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
608
609 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
610
611         * DataGridViewCell.cs: EditType: returns
612           DataGridViewTextBoxEditingControl always.
613
614 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
615
616         * TextRenderer.cs: Remove the LineLimit string format flag from the
617         DrawString fallback method so that things like buttons that aren't
618         tall enough to draw a full line will still draw part of the text.
619         [Fixes part of bug #82272]
620
621 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
622
623         * DataGridView.cs: Implemented AutoResizeColumn(s).
624         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
625           according to the Alignment.
626         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
627           Implement alignment and padding when painting.
628         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
629           exists.
630         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
631           way.
632         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
633           a column is added.
634
635 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
636
637         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
638         which is internal.
639
640 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
641
642         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
643         hide GetPreferredSize from public API.
644         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
645         * ToolStripItem.cs: Stub out drag and drop methods and events.
646         * ToolStripManager.cs: Stub out Save/LoadSettings.
647         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
648         * ToolStripPanel.cs: Fix corcompare error.
649         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
650         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
651         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
652
653 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
654
655         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
656         bounds height instead of PreferredHeight.  Puts things back the way 
657         they were for height while still fixing the width.  Fixes broken unit
658         tests.
659
660 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
661
662         * Binding.cs: Implement 2.0 constructors and add a null check.
663
664 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
665
666         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
667           and fix row index (off by one).
668
669 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
670
671         * PropertyGridView.cs: Remove debug output.
672
673 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
674
675         * Control.cs: We need to reset the is_created flags when the handle is
676           destroyed. Fixes #82187.
677         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
678           client coordinates if the window doesn't have a parent.
679           Win32GetParent returns the parent or the owner, and for top-level
680           windows with no parent (but with an owner) we were calculating the
681           location from the location of the owner.
682         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
683           form has been disposed.
684         * MdiClient.cs: Add a null-check.
685
686 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
687
688         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
689         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
690         so we can provide an implementation that returns the current width
691         and preferred height.  Allows anchor = right to work with TextBox 2.0.
692         [Fixes bug #82233]
693
694 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
695
696         * ListView.cs: Add support for navigating items in Groups mode, by
697         creating a big matrix containing all rows and cols of all groups. When
698         are in other mode than Details, pressing Up should have a similar
699         behaviour as that one of Down (moving to the next available column if
700         current one doesn't have an item in the requested row). Also, don't
701         proceed to use groups if ShowGroups is false.
702         * ListViewGroup.cs: Add an internal int field to store the starting
703         row of the group (used by the big matrix used for navigating the
704         ListView).
705         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
706         false.
707
708 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
709
710         * ToolStripDropDown.cs: When we do Show, start with the 
711         DefaultDropDownDirection, but if our popup menu is going to off-screen,
712         modify the direction to keep it on screen.  [Fixes bug #82210]
713
714 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
715
716         * FileDialog.cs: Accept any FilterIndex value, and store it
717         unmodified. When FilterIndex is less than 1, or greater than number
718         of filters, then default to first filter. Only add filter extension to
719         file if user did not specifiy an extension. When type of dialog is
720         OpenFileDialog and DefaultExt is set, then only use filter extension
721         if: CheckFileExists is true and no file wih the default extension
722         exists, or CheckFileExists is false, and user specified file does not
723         exist. When CheckFileExists is true, then add first extension of 
724         selected filter that matches existing file. Perform checks for
725         existing file, overwrite and create after extension has been added to
726         file name. When CheckFileExists is true and type is SaveFileDialog,
727         then only consider first filter extension if DefaultExt is set.
728         When CheckFileExists is true, then ignore DefaultExt if file with that
729         extension does not exist. Also perform check for existing file when
730         type is SaveFileDialog. Changed some field to constants.
731
732 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
733
734         * ListView.cs: Take into account the region used by header
735         control when doing the vertical scroll (this way we invalidate
736         the precise area, and don't get any dirty one).
737
738 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
739
740         * FileDialog.cs: Check for valid filterIndex on button open/save. 
741         Fixes #82184.
742
743 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
744
745         * ListView.cs: Update some layout calculations in details view
746         and clean the code in a pair of assignations.
747
748 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
749
750         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
751         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
752         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
753         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
754
755 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
756
757         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
758         performance of thread-safe Graphic methods.  (Thanks rolf!)
759
760 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
761
762         * ListView.cs: When doing the layout calculations, don't calculate
763         scroll bars before handle is created. This is unnecessary and also
764         calculating them before handle creation item causes a number of random
765         bugs (which begin to appear after Chris' big patch for handle creation
766         fixes). 
767
768 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
769
770         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
771         for things that don't have a Graphics object.  Currently, things just use
772         the static Hwnd.bmp_g which is not thread safe.
773
774 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
775
776         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
777           dialog. Fixes #82187.
778
779 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
780
781         * DataGridViewElement.cs: Initialize state.
782         * DataGridView.cs: Forward a few Mouse events to cells. Add
783           GetRowInternal and GetCellInternal that doesn't unshare rows.
784           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
785           don't use the index, but look it up. Add
786           DataGridViewControlCollection.RemoveInternal to remove controls
787           that Remove won't remove (scrollbars, edit control).
788         * DataGridViewColumn.cs: Initialize State correctly.
789         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
790           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
791           implementing this.
792         * DataGridViewRowCollection.cs: Implemented shared rows.
793         * DataGridViewRow.cs: Throw exceptions as MS do.
794         * DataGridViewCell.cs: A few properties are implemented by a
795           Get<Property> method, so move implementation there and remove the
796           NIEX in the method. Add a bunch of OnXInternal that DataGridView
797           calls when necessary.
798         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
799           complicates matters.
800         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
801           unshare any rows.
802
803 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
804
805         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
806         the children controls.  Instead, we will just set up the proper docking for the
807         children controls so we don't have to worry about it.  [Fixes bug #82188]
808
809 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
810
811         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
812         canceling and correct Before/AfterLabelEdit properties as layed out in bug
813         81847.  [Fixes bug #81847]
814
815 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
816
817         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
818         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
819         an explicit size based on the design-time size of the text.  Since our fonts
820         may not match this explicit size, we tend to cut off the ends of people's labels.
821
822 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
823
824         * Menu.cs: Add some missing methods to MenuItemCollection.
825
826 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
827
828         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
829         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
830         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
831         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
832         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
833         * DataGridViewElement.cs: State defaults to Visible.
834         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
835         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
836
837 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
838
839         * Control.cs: Minor 1.1 corcompare fix.
840
841 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
842
843         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
844         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
845
846 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
847
848         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
849           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
850           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
851           DataGridViewSelectedColumnCollection.cs,
852           DataGridViewSelectedRowCollection.cs: Corcompare work.
853
854 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
855
856         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
857         it is autoset by VS2005 designer and the effect is barely noticeable.
858
859 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
860
861         * TreeView.cs: Implement HitTest.
862
863 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
864
865         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
866           manually adding and removing the control from the Controls
867           collecftion.
868         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
869           EditingControlInternal property that tracks the editing control.
870           Always keeping the scrollbars in the Controls collection, as MS
871           testing confirms is the right behaviour.
872
873 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
874
875         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
876           according to MSDN and new test.
877
878 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
879
880         * TreeNode.cs: Implement ToolTipText.
881         * TreeView.cs: Implement tooltips, NodeMouse* events.
882
883 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
884
885         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
886
887 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
888
889         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
890         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
891
892 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
893
894         * Control.cs, Form.cs, ContainerControl.cs,
895         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
896         for misc properties.
897
898 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
899
900         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
901         * TreeView.cs: Implement StateImageList.
902
903 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
904
905         * Form.cs: Don't check if the current form is the active form before
906           activating it. Fixes #81904.
907
908 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
909
910         * Form.cs: Don't check if the current form is the active form before
911           activating it. Fixes #81904.
912
913 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
914
915         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
916
917 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
918
919         * Form.cs: Don't try to position the form after loading if the form was
920           disposed. Fixes #81969.
921
922 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
923
924         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
925           properties. Had to change ToolBar into ToolStrip, which required a
926           few #ifs.
927
928 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
929
930         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
931           resized, fixes part of #79829 (vertical lines in toolbar).
932           PropertyGrid: Refactored Populate* to something that's easier to
933           follow at least for me, as well as splitting it up into several new
934           methods, required to update only subitems when something has
935           changed by a popup editor or listbox. Don't use events to check
936           when any values are changed, since the events are unreliable (we're
937           changing the objects the events are registered with, and if the
938           event handling requires the objects to be immutable (objects stored
939           in hashtables for instance), the events will never be raised).
940         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
941           everytime we change a value, since events are unreliable.
942           DropDownButtonClicked: For the same reason don't compare objects to
943           check if it has changed or not, it would require all objects to
944           derive Equals. Fix dialog location on windows, MS is doing weird
945           things when creating parented forms.
946         * GridEntry.cs: Add a SelectedObject setter.
947
948 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
949
950         * TreeNode.cs: Add some corcompare attributes.
951         * TreeNodeCollection.cs: Implement 2.0 stuffs.
952         * TreeView.cs: Implement some 2.0 stuffs.
953
954 2007-07-18  Andreia Gaita  <avidigal@novell.com>
955
956         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
957         for moma.
958
959 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
960
961         * ListBox.cs: Implement custom tab offsets.
962
963 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
964
965         * ToolStripContentPanel.cs: Support System renderer.
966         * ToolStripControlHost.cs: Set RightToLeft to default to No.
967
968 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
969
970         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
971
972 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
973
974         * CheckBox.cs: Chain TextAlign to base implementation instead of
975         maintaining another one.
976
977 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
978
979         * ButtonBase.cs: Fix an incorrect string constant.
980
981 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
982
983         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
984         of creating one for measuring strings.
985
986 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
987
988         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
989         Implement MaxItemSize.
990
991 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
992
993         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
994         for DeviceContext.  Instead, use the static one available in Hwnd.
995         Informal tests show this saves about 500k on formtest.exe.
996
997 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
998
999         * ContainerControl.cs: Implement 2.0 AutoScaling.
1000
1001 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1002
1003         * ComboBox.cs: Work around bug #82120 (bug in mcs).
1004
1005 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1006
1007         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
1008         Darken the focus color.
1009
1010 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1011
1012         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
1013         for the checkbox.
1014         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
1015         X, Y instead of a rect for drawing text.
1016         - For ControlPaint.DrawCheckBox, center the check a little better when the
1017         checkbox is odd width.  When drawing a flat checkbox, use a white background
1018         when state != inactive.
1019         [Fixes bugs #82097, 82100]
1020
1021 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
1022
1023         * ListControl.cs: When changing CurrencyManager, disconnect event
1024         handlers from previous one. Fixes bug #81771. Code formatting.
1025
1026 2007-07-15  Andreia Gaita <avidigal@novell.com>
1027
1028         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
1029         full preview invalidation from layout invalidation, and only invalidate
1030         the layout when setting zoom or other properties. Invalidation should
1031         always be done even when resetting properties with the same values as
1032         what is there. Fixes #81744 and #79830.
1033
1034 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1035
1036         * ListView.cs: Implement initial support for Groups. Split some of the
1037         LayoutIcons code to render a partial list of the items (needed by
1038         items contained in ListViewGroup instances). Let the
1039         ListViewItemsCollection.ListView property be modifiable (needed when
1040         using Groups, too).
1041         * ListViewGroup.cs: Use a Bounds property rather than a Location
1042         one. Also invalidate the bounds when they get changed.
1043         * ThemeWin32Classic.cs: When drawing items, also draw the group header
1044         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
1045         method as well.
1046
1047 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1048
1049         * ListView.cs: When space gets pressed and CheckBoxes is true, 
1050         don't invoke the Begin and EndUpdate methods. We are generating 
1051         a redraw of the entire control without need to do so.
1052
1053 2007-07-13  William Holmes <billholmes54@gmail.com> 
1054
1055         * Control.cs: Changing logic in FindFlatForward and 
1056           FindFlatBackward to handle multiple Controls with 
1057           the same TabIndex.  
1058           This fixes bug 81687.
1059
1060 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
1061
1062         * OSFeature.cs: Enable IsPresent.
1063
1064 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1065
1066         * Control.cs: Don't do anything in WmShowWindow if the control has been
1067           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
1068           control is created, put on a form, the control is disposed (the
1069           form is never shown), and then we get a MapNotify, triggering a
1070           WM_SHOWWINDOW.
1071         * Form.cs: Exclude the current form when sending Deactivate to all
1072           MdiChildren.
1073         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
1074           there was a race condition because assigning the handle raises
1075           events, we can get more messages, therefore trying to assign the
1076           handle again, which would fail if any of those event handlers
1077           closed/disposed the control.
1078
1079 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1080
1081         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
1082
1083 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1084
1085         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
1086         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
1087
1088 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1089
1090         * DateTimePicker.cs: If there's no part format specifier, return an
1091           empty string.
1092
1093 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1094
1095         * FlatButtonAppearance.cs: Throw NotSupportedException for a
1096         Transparent BorderColor.
1097
1098 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1099
1100         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
1101           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
1102           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
1103           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
1104           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
1105           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
1106           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
1107           Remove warnings.
1108         * X11Structs.cs: Remove warnings, add ToString implementations.
1109
1110 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1111
1112         * XplatUIX11.cs: Translate min/max size according to the actual min/max
1113           size, and not the current size. Fixes #81798.
1114
1115 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1116
1117         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
1118           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
1119           to the control yet).
1120
1121 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1122
1123         * PropertyGridTextBox.cs: Add a method that sends any forwarded
1124           mousedowns to the contained textbox.
1125         * X11Structs.cs: More ToString implementation.
1126         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
1127           #81791.
1128
1129 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1130
1131         * PropertyGridView.cs: Add a null-check, fixes a few tests.
1132
1133 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1134
1135         * TableLayoutPanelCellPosition.cs: TypeConverter.
1136
1137 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1138
1139         [ Fixes #79761]
1140         
1141         * PropertyGridTextBox.cs: Propagate any color changes to all contained
1142           controls.
1143         * PropertyGridView.cs: A few color fixes.
1144
1145 2007-07-10  Jackson Harper  <jackson@ximian.com>
1146
1147         * TextControl.cs: Remove some old unused text formatting stuff.
1148
1149 2007-07-10  Jackson Harper  <jackson@ximian.com>
1150
1151         * TreeView.cs: Update full row select invalidation to match the
1152         newer DrawSelection... method.
1153         - Make sure to invalidate the entire width when selecting a new
1154         node, if we have full row selection enabled.
1155
1156 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1157
1158         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
1159           display of properties again.
1160
1161 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1162
1163         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
1164         to existing collections.
1165
1166 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1167
1168         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
1169         that changed between 1.1 and 2.0.
1170
1171 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1172
1173         * PowerStatus.cs: Added.  This is just a data class, it is filled
1174         in by SystemInformation.
1175
1176 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1177
1178         * Message.cs: Add op_Equality and op_Inequality.
1179
1180 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1181
1182         * MenuStrip.cs: Finish corcompare work.
1183
1184 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1185
1186         * LinkArea.cs: Add op_Equality and op_Inequality.
1187
1188 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1189
1190         * Application.cs: Add MessageLoopCallback delegate.
1191
1192 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1193
1194         * ListBox.cs: First set of 2.0 stuffs.
1195
1196 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1197
1198         * Control.cs: Make an internal Height property we can override
1199         without messing up the public API.
1200         * ListBox.cs: Override HeightInternal to always return the size
1201         the user set.  [Fixes bug #80466]
1202
1203 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
1204
1205         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
1206         paint cell borders if we haven't calculated where they go yet.
1207         [Fixes bugs #82040 and #82041]
1208
1209 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1210
1211         * ListView.cs: In Details view, set the location of item_control
1212         in the (0,0) position (and the header_control is thus on the
1213         item_control). This way the Bounds of the Items are relative to the
1214         ListView control (before this, they had a Bounds value without the
1215         header_control offset, which wasn't matching .Net). Fixes #82004.
1216
1217 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1218
1219         * ListControl.cs: When DataSource is set to null, pass an empty
1220         array of object to SetItemsCore. This is done to clean the items
1221         in the ListContol children. Fixes #81788.
1222
1223 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1224
1225         * ListControl.cs: Add 2.0 stuffs.
1226
1227 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1228
1229         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
1230         Refresh is overkill for just about every repaint request.
1231
1232 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1233
1234         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
1235         so remove my custom Get method and fix the property getter.
1236
1237 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1238
1239         * Label.cs: DefaultMargin for 2.0.
1240
1241 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1242
1243         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
1244         reported issue where other controls with mnemonics would steal strokes
1245         from a selected ComboBox.
1246
1247 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1248
1249         * ScrollOrientation.cs: Make internal for 1.1.
1250         * ScrollEventArgs.cs: Add 2.0 stuffs.
1251
1252 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
1253
1254         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
1255         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
1256         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
1257
1258 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1259
1260         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
1261
1262 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1263
1264         * ListView.cs: Implement the so-incredibly broken 2.0 
1265         VirtualItemsSelectionRangeChanged event.
1266
1267 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1268
1269         * ListView.cs: When enter is pressed and selection is non empty,
1270         an OnItemActivate event must be fired.
1271
1272 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1273
1274         * ListView.cs: Store the FocusedItem information as an
1275         int instead of a ListViewItem (needed by VirtualMode).
1276         Update the calls to SetFocusedItem to pass an index instead of
1277         an item.
1278         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
1279         the Focused state from the owner ListView. 
1280
1281 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1282
1283         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
1284         property. Also, invalidate previous focused item in the mentioned
1285         property (match .Net).
1286
1287 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1288
1289         * ListView.cs: Implement 2.0 FocusedItem property setter.
1290
1291 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1292
1293         * ListView.cs: Implement 2.0 TopItem property setter.
1294
1295 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
1296
1297         * StatusStrip.cs: The default renderer is System.
1298         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
1299         if the user specifies it.
1300         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
1301         if we are ManagerRenderMode.
1302         * ToolStripMenuItem.cs: Calculate our text color better.
1303         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
1304         from Professional to the base class based off working with the System renderer.
1305         * ToolStripSystemRenderer.cs: Added.
1306
1307 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1308
1309         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
1310
1311 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
1312
1313         * ToolTip.cs: Implement 2.0 Tag property.
1314
1315 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1316
1317         * ListView.cs: Implement 2.0 HitTest methods.
1318
1319 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1320
1321         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
1322         item is under the pointer or not (sugar). Also remove the TODO
1323         regarding to the cursor changes in OneClick activation.
1324         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
1325         the subitems use the parent's HotFont if UseItemStyleForSubItems is
1326         true; otherwise don't show the underline style.
1327
1328 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1329
1330         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
1331         the code to retrieve the item at position only one time. Also
1332         change cursor when Activation is ItemActivation.OneClick as well
1333         as invalidate the item if HotTracking is true (to show/hide the
1334         underline style). Add an internal HotItemIndex property to retrieve
1335         the current hot item's index.
1336         * ListViewItem.cs: Add an internal HotFont property to cache the
1337         font used when HotTracking is true and the pointer moves within the
1338         item's borders.
1339         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
1340         HotFont depending on the hot state of the item.
1341
1342 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1343
1344         * ListView.cs: Implement 2.0 HotTracking property.
1345
1346 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1347
1348         * ToolStripControlHost.cs: If our hosted control never got created,
1349         don't try to dispose it.  [Fixes bug #81909]
1350
1351 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1352
1353         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
1354
1355 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1356
1357         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
1358
1359 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1360
1361         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
1362         Details view.
1363         * DrawListViewColumnHeaderEventArgs.cs:
1364         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
1365         using the DrawText () methods.
1366
1367 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
1368
1369         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
1370         background which got erased in my changes yesterday.
1371
1372 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1373
1374         * ListViewItem.cs: Actually set bounds for subitems in Details view
1375         (2.0 feature).
1376         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
1377         can invoke from the owner draw routines if we need it. Also, add
1378         support for Owner draw in Details view.
1379
1380 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1381
1382         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
1383         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
1384         ShowImageMargin setting, properly align text in a ToolStripLabel
1385         hosted on a ToolStripDropDown.
1386
1387 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1388
1389         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
1390         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
1391
1392 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1393
1394         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
1395
1396 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1397
1398         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
1399         location to match ToolStripMenuItems.
1400
1401 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1402
1403         * DrawListViewColumnHeaderEventArgs.cs:
1404         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
1405         column headers in ListView. 
1406
1407 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1408
1409         * UserControl.cs: Implement AutoSize.
1410
1411 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1412
1413         * DrawListViewItemEventArgs.cs:
1414         * ListView.cs:
1415         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
1416         ListView.
1417
1418 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1419
1420         * ToolStripDropDownItemAccessibleObject.cs: Added.
1421         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
1422         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1423         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
1424         ToolStripTextBox.cs: corcompare work.
1425
1426 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1427
1428         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
1429         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
1430         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
1431                 corcompare.
1432
1433 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1434
1435         * OSFeature.cs: Add IsPresent.
1436         * PrintPreviewControl.cs: Add RightToLeft.
1437         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
1438         * SplitterPanel.cs: Add AutoSizeMode.
1439
1440 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1441
1442         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
1443         * MdiClient.cs: Add 2.0 ScaleControl.
1444         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
1445         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
1446
1447 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1448
1449         * Form.cs: Implement some scaling methods, stub some RTL methods,
1450         corcompare work.
1451
1452 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1453
1454         * Control.cs: corcompare work.
1455         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
1456
1457 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1458
1459         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
1460         ControlPaint 2.0 stuffs.
1461
1462 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1463
1464         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
1465
1466 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1467
1468         * UpDownBase.cs: Add 2.0 stuffs.
1469
1470 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1471
1472         * NumericUpDown.cs: Add 2.0 stuffs.
1473
1474 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1475
1476         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
1477
1478 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1479
1480         * ErrorProvider.cs: Implement 2.0 stuffs.
1481
1482 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1483
1484         * DomainUpDown.cs: Implement 2.0 stuffs.
1485
1486 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1487
1488         * CheckedListBox.cs: Fix RefreshItems signature.
1489
1490 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1491
1492         * PictureBox.cs: Implement 2.0 stuffs.
1493
1494 2007-06-12  Andreia Gaita  <avidigal@novell.com>
1495         
1496         * TabControl.cs: Check if there are tabpages before checking
1497         the selected index - fix #81802 (font changes raise a ResizeTabs
1498         call on controls.add, which blew up nicely with no tabpages)
1499
1500 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1501
1502         * ListView.cs:
1503         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
1504
1505 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1506
1507         * ListView.cs:
1508         * ListViewItem.cs: In VirtualMode the selection information
1509         resides in the ListView, rather than in the Items. Also, throw
1510         InvalidOperationExceptions when VirtualMode is being used and
1511         CheckedItemCollection is accessed.
1512
1513 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1514
1515         * ComboBox.cs: Add ScaleControl.
1516
1517 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1518
1519         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
1520
1521 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1522
1523         * GroupBox.cs: Add 2.0 stuffs.
1524
1525 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1526
1527         * Panel.cs: Add autosize properties/event.
1528
1529 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1530
1531         * Control.cs:
1532         - When we remove a control, remove it from the collection before performing the layout.
1533         - Setup an internal property for explicit_bounds.
1534         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
1535         - Perform a layout when we set a new AutoSizeMode.
1536
1537 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1538
1539         * ScrollableControl.cs: Add 2.0 stuffs.
1540
1541 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1542
1543         * ScrollBar.cs: Add 2.0 stuffs.
1544
1545 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1546
1547         * Splitter.cs: Add 2.0 stuffs.
1548
1549 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1550
1551         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
1552         to have BindingContext simply use base implementation.
1553
1554 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1555
1556         * ColumnHeader.cs: corcompare fix.
1557
1558 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1559
1560         * Button.cs: corcompare fixes.
1561         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
1562
1563 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1564
1565         * Button.cs: Override GetPreferredSizeCore.
1566         * ButtonBase.cs: PerformLayout after changing properties that can affect
1567         AutoSize.  Simplify some mouse/keyboard code.
1568         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
1569         * MouseEventArgs.cs: Make Location internal for 1.1.
1570         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
1571         * Theme.cs: Add CalculateButtonAutoSize.
1572         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
1573
1574 2007-06-05  Miguel de Icaza  <miguel@novell.com>
1575
1576         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
1577
1578 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1579
1580         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
1581         since we can get different item instances every time we retrieve it.
1582
1583 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1584
1585         * ListView.cs: Work around for #81602, since an unkown an pretty
1586         infrequent condition appears only in some systems (old linux boxes, it
1587         seems).
1588
1589 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1590
1591         * Button.cs: Completely reformat and a little refactor to bring
1592         this closer to Mono circa 2007.
1593
1594 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1595
1596         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
1597         to be ButtonBase.Invalidate.
1598
1599 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1600
1601         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
1602
1603 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1604
1605         * ButtonBase.cs: Completely reformat and a little refactor to bring
1606         this closer to Mono circa 2007.
1607
1608 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
1609
1610         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
1611         values for autosize. Fixes #80137.
1612
1613 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1614
1615         * Control.cs: Don't perform layout when AutoSize changes.
1616         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
1617         directly when autosizing, use SetBounds with BoundsSpecified.None.
1618         Fixes unit tests my last commit broke.
1619
1620 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1621
1622         * Control.cs: Perform layout when AutoSize changes.
1623         * Form.cs: Implement AutoSizing.
1624
1625 2007-06-01  Chris Toshok  <toshok@ximian.com>
1626
1627         * DataGrid.cs: remove the XXX'ed check at the top of
1628         ProcessGridKey.  fixes #80464.
1629
1630 2007-06-01  Chris Toshok  <toshok@ximian.com>
1631
1632         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
1633         adding idempotent (add/remove in Edit()), and also make sure we
1634         don't add it until after we set the text, so it's not tripped in
1635         Edit().  Fixes unit test regression.
1636
1637 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1638
1639         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
1640         change is user explicit, not when the layout engine moves stuff.  Fixes
1641         anchoring to bottom and right.  [Fixes bug #81790]
1642
1643 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1644
1645         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
1646
1647 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1648
1649         * ContainerControl.cs: 
1650         Fire enter event for common ancestor if it is not a ContainerControl.
1651         Send focus to the active_control and not the 'value', the active 
1652         control might have been changed in one of the events fired.     
1653         Definitely fixes #80159.
1654
1655 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1656
1657         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
1658
1659 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1660
1661         * PropertyGrid.cs: Anchor the help description to the bottom of the
1662           help panel and refactor SelectGridItem into a
1663           SelectGridItemInternal that can be set to null (and update it to
1664           clear the help texts when it is set to null). Set root item to null
1665           when there's no SelectedObject. Fixes #80438.
1666         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
1667           when we're recalculating after a resize (only).
1668
1669 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1670
1671         * ListView.cs: Implement 2.0 RedrawItems method.
1672
1673 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1674
1675         * ListControl.cs: Disconnect PositionChanged and ItemChanged
1676         handlers from previous data manager when DataSource is set to
1677         null. Fixes #81771.
1678
1679 2007-05-31  Jackson Harper  <jackson@ximian.com>
1680
1681         * TextBoxBase.cs: These seem to be the correct values.
1682
1683 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
1684
1685         * FileDialog.cs: When close dialog with ok set filterindex using combobox
1686         value. Fixes #81784.
1687
1688 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
1689
1690         * Control.cs: Implement 2.0 scaling methods.
1691
1692 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1693
1694         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
1695           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
1696           corcompare issues.
1697
1698 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1699
1700         * ProgressBar.cs: Implemented missing 2.0 members.
1701
1702 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1703
1704         * Control.cs: Corcompare issues.
1705         * MessageBox.cs: Implemented missing 2.0 functions.
1706
1707 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1708
1709         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
1710           Implemented more 2.0 members.
1711
1712 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1713
1714         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
1715           null (strange, but it seems to happen when running unit tests).
1716
1717 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1718
1719         * ContainerControl.cs: Set active_control even earlier, before 
1720         firing any events, and undo it if validation returns false.
1721
1722 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1723
1724         * ContainerControl.cs: Raise Validation and Enter/Leave events
1725         even if there is no Form and set active_control earlier, just
1726         before firing Enter events (toshok's patches). Fixes #80647.
1727
1728 2007-05-30  Jackson Harper  <jackson@ximian.com>
1729
1730         * TextControl.cs: Redid the pageup/pagedown a little to simplify
1731         things and fix bug #81311.
1732
1733 2007-05-30  Jackson Harper  <jackson@ximian.com>
1734
1735         * X11Dnd.cs: Now that we have our own event loop, we need to
1736         cancel when we get a mouseup but it won't be accepted.
1737
1738 2007-05-30  Chris Toshok  <toshok@ximian.com>
1739
1740         * DataGrid.cs (set_CurrentCell): guard against negative
1741         column/row.
1742
1743         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
1744         array index syntax instead of looping over the property names.
1745
1746         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
1747         and set IsInEditOrNavigateMode to false there.
1748
1749 2007-05-30  Jackson Harper  <jackson@ximian.com>
1750
1751         * TreeView.cs: Make sure we don't get a bad visible order when
1752         setting to the top node.  Fixes some misc crashing in
1753         ControlInspector.
1754
1755 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1756
1757         * UserControl.cs: Add 2.0 AutoSizeMode
1758
1759 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1760
1761         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
1762
1763 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1764
1765         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
1766         lines. Fixes #80285. 
1767
1768 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1769
1770         * DataGridColumnStyle.cs: Add char trimming column header text format. 
1771
1772 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1773
1774         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
1775         Fixes #80147.
1776
1777 2007-05-29  Jackson Harper  <jackson@ximian.com>
1778
1779         * TreeNode.cs: Fix off by one on calculating whether or not a node
1780         is visible.
1781
1782 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
1783
1784         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
1785         * ScrollableControl.cs: Force an UpdateDistances when we move the
1786         scrollbars.
1787         [Fixes bug #80605]
1788
1789 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1790
1791         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
1792         update the page setup screen.
1793
1794 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1795
1796         * PageSetupDialog.cs: Fix landscape mode.
1797
1798 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1799
1800         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
1801         IconSizeHorizontalSpacing.
1802
1803 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1804
1805         * ListView.cs: The declaration of prev_tooltip_item should be inside
1806         a NET_2_0 conditional (avoid a warning).
1807
1808 2007-05-28  Andreia Gaita  <avidigal@novell.com>
1809
1810         * PageSetupDialog.cs: Implement PrintPreview control to display
1811         the preview thumbnail. Change unit conversion to use 
1812         PrinterUnitConvert methods.
1813         
1814         Note: there is a huge bug in ms.net where the default margins are 
1815         interpreted as centimeters (?), when in fact they are set in inches. When 
1816         loading the page setup dialog initially (ms.net), the default margins 
1817         are set to 1 inch, and the dialog shows them with value 10, when in fact 
1818         it should be 25 (properly converted). Our dialog doesn't have this bug.
1819         
1820         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
1821         RectangleF.
1822         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
1823
1824 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1825
1826         * ListView.cs:
1827         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
1828         items.
1829
1830 2007-05-28  Andreia Gaita  <avidigal@novell.com>
1831
1832         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
1833         an IntPtr on csc (it builds fine on mcs, could it be a compiler
1834         bug?), convert the ptr to Int32 first.
1835
1836 2007-05-28  Jackson Harper  <jackson@ximian.com>
1837
1838         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
1839         recieved, we will exit the dnd tracking loop.
1840
1841 2007-05-28  Jackson Harper  <jackson@ximian.com>
1842
1843         * X11Dnd.cs: Keep tracking until the xdnd finished event is
1844         recieved. TODO: I should probably stick a timer on the dropped
1845         event, and finish the drag if the XDND Finished event never shows
1846         (because some apps don't seem to send it).
1847
1848 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
1849
1850         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
1851         #81733.
1852
1853 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1854
1855         * MonthCalendar.cs: Only mark the keypresses we actually handle as
1856           handled.
1857
1858 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1859
1860         * MonthCalendar.cs: Set the size after initializing all the relevant
1861           variables. Fixes #81742.
1862
1863 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1864
1865         * KeyEventArgs.cs: Fix typo.
1866
1867 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
1868
1869         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
1870         to match MS. Fixed MinDate to only accept value less than or equal
1871         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
1872         Removed TODO's that are now verified by unit tests.
1873
1874 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
1875
1876         * TreeNodeCollection.cs: Minor corrections to exceptions to match
1877         MS.
1878
1879 2007-05-25  Jackson Harper  <jackson@ximian.com>
1880
1881         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
1882         it's own message loop.
1883         * XplatUIX11.cs: Remove some of the dnd hooks
1884
1885 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
1886
1887         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
1888         instead of MinimizedWindowSize.
1889
1890 2007-05-25  Jackson Harper  <jackson@ximian.com>
1891
1892         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
1893
1894 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1895
1896         * KeyEventArgs.cs: Added SuppressKeyPress.
1897         * Control.cs: Added support for SuppressKeyPress.
1898
1899 2007-05-24  Andreia Gaita  <avidigal@novell.com>
1900
1901         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
1902         problems with PieChart. suppress_validation should not be a counter,
1903         if there are several BeginInit calls, the first EndInit will 
1904         activate validation. Fix exceptions thrown by set_Value.
1905         * UpDownBase.cs: ValidateText only if it's the user editing it.
1906
1907 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1908
1909         * ListControl.cs: FilterItemOnProperty should return the filtered
1910         item proeprty even if DataSource is null. The same applies for
1911         GetItemText. Fixes #80427.
1912
1913 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1914
1915         * Control.cs: If a control doesn't have a parent when it's Dock is
1916         set, but it has children, it needs to do a layout.  Fixes some nested
1917         controls issues.  [Fixes bug #81199]
1918
1919 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1920
1921         * ComboBox.cs: If there are few items in the drop down list, make it
1922           the exact size the items need, no bigger. Fixes #81612.
1923
1924 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1925
1926         * Application.cs: When we have captured the keyboard for a menu,
1927         check for mouse down events in case we need to close the menu.
1928         * Control.cs, Form.cs: Remove mouse down checks for menus.
1929
1930 2007-05-24  Jackson Harper  <jackson@ximian.com>
1931
1932         * TextControl.cs: Handle tabs in non multiline mode a little
1933         differently.
1934
1935 2007-05-24  Jackson Harper  <jackson@ximian.com>
1936
1937         * TextControl.cs: We need to manually break apart tabbed text and
1938         move the tabs, since the system.drawing tabbing mechanism relies
1939         on tab stops.
1940         * TextBoxBase.cs: Move the caret properly when the user enters a
1941         tab.
1942
1943 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1944
1945         * ContainerControl.cs: Don't check CanSelect before calling
1946         ProcessMnemonic.
1947         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
1948         release a KeyboardActive on click if it's not ours.
1949
1950 2007-05-23  Andreia Gaita  <avidigal@novell.com>
1951
1952         * ColumnHeader.cs: Add TypeConverter
1953
1954 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1955
1956         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
1957
1958 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1959
1960         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
1961
1962 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1963
1964         * LinkLabel.cs: Implement public Padding property.
1965
1966 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1967
1968         * LinkLabel.cs: Implement public FlatStyle.
1969
1970 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
1971
1972         * Control.cs: Apply patch from George to call parent.PerformLayout
1973         when Visible is changed.  [Fixes bugs #81118, 81718]
1974
1975 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1976
1977         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
1978
1979 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1980
1981         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
1982
1983 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1984
1985         * ContextMenu.cs: Implement Collapse.
1986
1987 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
1988
1989         * ToolBarButton.cs: Implement Name.
1990
1991 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
1992
1993         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
1994         use current_item, it prevents some NRE. Fixes #81675.  
1995
1996 2007-05-22  Andreia Gaita  <avidigal@novell.com>
1997
1998         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
1999         without updating the text.
2000
2001 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2002
2003         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
2004         without calling DeleteObject.  [Should fix bug #81709]
2005
2006 2007-05-22  Jackson Harper  <jackson@ximian.com>
2007
2008         * RichTextBox.cs: Set the line endings correctly, when flushing
2009         RTF text.
2010
2011 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
2012
2013         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
2014          {Width=0,Height=0}.
2015
2016 2007-05-22  Jackson Harper  <jackson@ximian.com>
2017
2018         * TreeView.cs: Setting top with a null node should set to the very
2019         top.
2020
2021 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2022
2023         * Form.cs: ShowDialog: destroy the handle when message loop is
2024           finished, matches MS behaviour. Refactor parts of WmClose into
2025           RaiseCloseEvents, that only raises events if they haven't already
2026           been raised. Fixes #81688 and #81521.
2027         * Application.cs: Don't call close on the form when exiting a modal
2028           loop, it will raise all the (Form)Closed/Closing events again if
2029           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
2030           which doesn'r raise any events it they have been raised before.
2031
2032 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2033
2034         * Control.cs: Add OnPrint.
2035         * ToolStrip.cs: Add GetChildAtPoint.
2036         * ToolStripContainer.cs: Add OnRightToLeftChanged.
2037         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
2038
2039 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2040
2041         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
2042
2043 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2044
2045         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
2046           isn't visible anymore. Fixes #81651.
2047
2048 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2049
2050         * Control.cs: WmShowWindow: Update children's z-order after setting
2051           their parent. SetParent may show the window, thereby corrupting
2052           z-order, since the window will be shown on top.
2053         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
2054           multiple (and redundant) WM_SHOWWINDOW messages.
2055         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
2056           event has already been raised.
2057         * Form.cs: Change is_changing_visible_state to a counter, since
2058           SetVisibleCore can be called recursively. CreateHandle: when
2059           creating mdi children, send (De)Activated events.
2060         * MdiClient.cs: Update use of is_changing_visible_state.
2061         * Application.cs: OnThreadException: Surround exception handling with
2062           try/finally to ensure we always reset the error-handling state
2063           before leaving.
2064
2065 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2066
2067         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
2068           (#81704).
2069
2070 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2071
2072         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
2073         SmallIcon views, now that we have a standarized horizontal spacing.
2074
2075         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
2076         4, just like the other views (Match .Net).
2077
2078 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
2079
2080         * Control.cs: Delay calculating anchor distances until we actually layout.
2081         Always query the WM for the actual size and location it put us at instead of
2082         only when we send negative values.
2083         [Fixes bugs #81694, 81695]
2084
2085 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2086
2087         * Application.cs: Avoid a possible stack overflow when trying to exit
2088           the application.
2089
2090 2007-05-19  Marek Safar  <marek.safar@gmail.com>
2091
2092         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
2093         enum value.
2094
2095 2007-05-19  Andreia Gaita  <avidigal@novell.com>
2096
2097         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
2098         * NumericUpDownAcceleration.cs, 
2099           NumericUpDownAccelerationCollection.cs: Added 2.0
2100           implementation.
2101
2102 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
2103
2104         * RichTextBox.cs: Recalculate the document after the ScrollBars
2105         property is changed. Fixes bug #81681.
2106
2107 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2108
2109         * DataObject.cs: Implement 2.0 methods.
2110
2111 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2112
2113         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
2114         in the center of the checkbox, not in the left-top corner. 
2115         Fixes #80037.
2116
2117 2007-05-18  Jackson Harper  <jackson@ximian.com>
2118
2119         * RichTextBox.cs: Recalculate the document after the scrollbars
2120         property is changed.
2121         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
2122         81486.
2123
2124 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2125
2126         * CreateParams.cs: Make HasWindowManager marginally faster.
2127         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
2128           into Hwnd so that other drivers can use it as well.
2129         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
2130           the default location from Hwnd. Fixes MDI client windows always
2131           showing up at (0,0) in Windows (Win32 won't set the default
2132           location since the window styles aren't correct).
2133
2134 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
2135
2136         * TreeView.cs: Modified DoubleBuffered to just use the base
2137         implementation.
2138
2139 2007-05-18  Jackson Harper  <jackson@ximian.com>
2140
2141         * TreeView.cs: Set the top node to the last child node when
2142         expanding all
2143         - When we get focus, if there is no selected node, use the top
2144         node.
2145
2146 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2147
2148         * KeysConverter.cs: Add CanConvertTo.
2149         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
2150         * LinkConverter.cs: Added.
2151
2152 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2153
2154         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
2155         it prevents error when file dont have write access. Fixes #81669 and #81667.  
2156
2157 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2158
2159         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
2160         button text. Fixes #79640.  
2161
2162 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2163
2164         * Control.cs: According to MSDN controls created in the designer theres 
2165         keyboard accelerators visible by default. So included check for design
2166         in ShowKeyboardCuesInternal.  
2167
2168 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2169
2170         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
2171         text. Fixes #81621.  
2172
2173 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2174
2175         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
2176         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
2177
2178 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2179
2180         * Control.cs: Finish implementation of UI State using WmChangeUIState
2181         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
2182         in some controls to check for show_keyboard_cues to draw accell keys "_".  
2183
2184 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2185
2186         * ListBox.cs: When calculating the horizontal scrollbar
2187         in single column mode, don't use values less than 0 for
2188         Maximum. Fixes #81474.
2189
2190 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2191
2192         * ListBox.cs: Throw the some missing exceptions in
2193         ListBox.ObjectCollection methods.
2194
2195 2007-05-17  Jackson Harper  <jackson@ximian.com>
2196
2197         * TextBoxBase.cs: Recalculate the document when the word wrap
2198         value has changed. This fixes 81488.
2199
2200 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2201
2202         * Clipboard.cs: Implement missing GetText overload.
2203
2204 2007-05-17  Chris Toshok  <toshok@ximian.com>
2205
2206         * Control.cs (CheckDataBindings): remove the binding_context arg
2207         to binding.Check.
2208
2209         * CurrencyManager.cs (OnItemChanged): fix this now that
2210         BindingManagerBase is fixed. also remove the comment telling where
2211         the fix should go.  We set transfering_data to true/false around
2212         the call to PushData to keep UpdateIsBinding from being called.
2213         (ListChangedHandler): remove the extra OnMetaDataChanged call for
2214         PropertyDescriptorAdded in the 1.1 case.  The extra call is
2215         actually generated by System.Data generating 2 metadata changed
2216         events of its own per column add.  The fix should go there.  Add a
2217         comment to that affect in our test's Assert.Ignore.
2218
2219         * BindingManagerBase.cs: Rework PullData and PushData slightly.
2220         we keep a boolean flag (transfering_data) that keeps us from
2221         calling UpdateIsBinding multiple times if we re-enter either of
2222         them.
2223
2224         * ControlBindingsCollection.cs (AddCore): remove the
2225         binding_context arg to binding.Check.
2226
2227         * Binding.cs (IsBinding): don't check if we're binding here, just
2228         return our cached value.  we update it in UpdateIsBinding.
2229         (Check): don't take the binding_context arg, we'll just use our
2230         control's.  Also, for some reason MS doesn't use the data member
2231         field when getting the bindingmanager for this binding.  it just
2232         uses the datasource.  Make this method callable multiple times,
2233         and only do the is_null_desc stuff if manager.Position != -1 (so
2234         we don't get an exception accessing manager.Current).
2235         (UpdateIsBinding): move the code from IsBinding here.
2236         (PositionChangedHandler): call Check here to we can initialize
2237         things that require a non- -1 position.
2238
2239 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2240
2241         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
2242         control.
2243
2244 2007-05-17  Andreia Gaita  <avidigal@novell.com>
2245
2246         * TabControl.cs: Add 2.0 methods and events, including
2247         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
2248         * TabPage.cs: Add 2.0 methods
2249
2250 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2251
2252         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
2253         keyboard_cues is properly handled by message method.  
2254
2255 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2256
2257         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
2258
2259 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2260
2261         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
2262
2263 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
2264
2265         * Control.cs: 
2266         - WmUpdateUIState added to handle state changes, it make call to
2267         OnChangeUICues event.
2268         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
2269         SystemInformation.
2270
2271 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
2272
2273         * ImageKeyConverter.cs: Added.
2274         * TreeViewImageKeyConverter.cs: Added.
2275
2276 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2277         
2278         * ToolTips.cs: Update Text if SetToolTip is called for a control
2279         already showing the tooltip, as well as restarting its timer; show
2280         tooltip if we are inside the control bounds by the time of calling
2281         SetToolTip. Inside ShowTooltip remove the check to not show the 
2282         tooltip again for the active control (it is allowed by .Net to 
2283         show the tooltip on the same control multiple times).
2284
2285 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2286
2287         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2288
2289 2007-05-16  Andreia Gaita <avidigal@novell.com> 
2290
2291         * ContainerControl.cs: only process tab key if there are no 
2292         modifier keys present, otherwise the control does the 
2293         tab processing, if it needs to. Fixes #81622
2294         * TabControl.cs: Fixes calculation for which tab to select on
2295         shift+ctrl+tab.
2296
2297 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2298
2299         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2300
2301 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
2302
2303         * Control.cs: Make IsInputCharInternal to allow controls to
2304         override it and still match MS API.
2305         * TextBoxBase.cs: Override IsInputCharInternal and always
2306         return true.
2307         [Fixes bug #81616]
2308
2309 2007-05-15  Jackson Harper  <jackson@ximian.com>
2310
2311         * TextBox.cs: Disable some of the menu options when using a
2312         readonly textbox.
2313
2314 2007-05-15  Jackson Harper  <jackson@ximian.com>
2315
2316         * TextBox.cs:
2317         * TextBoxBase.cs:
2318         * RichTextBox.cs: Some new 2.0 methods
2319
2320 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
2321
2322         * FileDialog.cs: On 1.0 profile, do not support multidotted 
2323         extensions.
2324
2325 2007-05-14  Jackson Harper  <jackson@ximian.com>
2326
2327         * TextBoxBase.cs: Implement some of the new 2.0 methods.
2328         * RichTextBox.cs: We need to override these methods on 2.0.
2329         * MaskedTextBox.cs: These are implemented now
2330         * TextControl.cs: This was off by one.
2331
2332 2007-05-14  Jackson Harper  <jackson@ximian.com>
2333
2334         * TextControl.cs: Because the line endings are including in the
2335         text, we don't need to add them in anymore.
2336
2337 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2338
2339         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
2340         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
2341
2342 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2343
2344         * ToolBar.cs: Adjust size to default size when button theres no text and
2345         image, it fixes remaining issues from #81524.
2346
2347 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2348
2349         * ToolBar.cs: 
2350         - When not flat call redraw to recalculate sizes on creare handle to match
2351         win32 behavior.
2352         - Revert 77220 because it causes some regressions in toobar
2353         button.
2354
2355 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2356
2357         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
2358           now actually enters a usable state.
2359
2360 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2361
2362         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
2363         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
2364         3 buttons.
2365
2366 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2367
2368         * ToolBar.cs: Save default_size on create handle to use later for buttons
2369         without text, needed to mimic win32 behavior.
2370
2371 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2372
2373         * ToolBar.cs: Fix button layour to best fit width or height according to
2374         vertical or not. Fixes #81524.
2375
2376 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2377
2378         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
2379         toolbar size info because different styles theres different sizes.
2380         Fixes #81522.
2381
2382 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2383
2384         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
2385         if we are using checkboxes, checked is true, and we have less
2386         than two images in StateImageList; for the 1.1 in the same scenario
2387         draw the first image if we have at least one image in StateImageList.
2388         Fixes part of #81191.
2389
2390 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2391
2392         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
2393         the owner's Items collection on merge.
2394
2395 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2396
2397         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
2398         * ToolStripItemCollection.cs: Lots of fixes to when events get called
2399         and parent/owner gets changed based on gert's unit tests.
2400
2401 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2402
2403         * MaskedTextBox.cs: Started implementing parts of it.
2404
2405 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2406
2407         * ListView.cs: When clicking the checkbox on the items
2408         take into account the double clicks even if we have only
2409         one image in StateImageList (only for 1.0/1.1). Also 
2410         generate an extra change of checked state when we receive
2411         the second click on checkbox (match .Net behaviour). 
2412         Fixes part of #81191.
2413
2414 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2415
2416         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
2417
2418 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2419
2420         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
2421         even if OnLoad is overriden and base.OnLoad is not called.
2422         [Fixes bug #81582]
2423
2424 2007-05-10  Andreia Gaita  <avidigal@novell.com>
2425
2426         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
2427         shame. (I blame my ever-persisting and annoying cold)
2428
2429 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2430
2431         * ListView.cs: Don't eat navigation keys.  Let them flow through to
2432         KeyDown/KeyPress routines.  [Fixes bug #81569]
2433
2434 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2435
2436         * ListView.cs: When handling keys for selecting the item based off
2437         keyboard input, do not consider keys pressed with Alt or Control.  Also,
2438         correctly handle keys when the Shift key is down. [Fixes bug #81578]
2439
2440 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2441
2442         * Control.cs: When using UseWaitCursor, we have to store the requested
2443         Cursor to use when UseWaitCursor is turned off.
2444
2445 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2446
2447         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
2448         to false.
2449         * Application.cs: Use PreProcessControlMessage instead of
2450         PreProcessMessage.
2451         * PreProcessControlMessage.cs: Make internal for 1.1.
2452
2453 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2454
2455         * Control.cs: Add InternalContains focus property, which hast the same
2456         functionality of ContainsFocus, but also including implicit controls.
2457         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
2458         since we need to know if the focus is contained in our implicit
2459         ItemControl when calculating Layout. Fixes part of #80888.
2460
2461 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
2462
2463         * ToolTip.cs: Remove center form string alignment as it must be align to
2464         left.
2465
2466 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
2467
2468         * ToolStripItemCollection.cs: Set the new item's parent and owner
2469         in Insert like we do in Add.  [Fixes bug #81568]
2470
2471 2007-05-08  Jackson Harper  <jackson@ximian.com>
2472
2473         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
2474         - Off by one error in SetTop
2475         - Disable DoubeBuffering
2476         
2477 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2478
2479         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
2480           control as much as necessary in order to make it entirely visible,
2481           instead of centering the control in the container (matches MS
2482           behaviour). CalculateCanvasSize: we need to take the current scroll
2483           position into account when calculating the maximum canvas,
2484           otherwise the following scenario will fail: resize so that the
2485           scrollbars appear, use the scrollbars to scroll, resize again
2486           smaller, and now the canvas size is too small. Recalculate: when
2487           showing scrollbars make sure they start off at 0, and try to scroll
2488           the active control into view. Fixes #79540. HandleScrollBar: don't
2489           scroll anywhere if the scrollbar isn't visible.
2490
2491 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2492
2493         * ListView.cs: When focus changed, call Layout/Invalidate
2494         in the focused item to update the selected state (should show
2495         entire label when ListView is focused, and a part of it if is not).
2496         * ListViewItem.cs: When doing layout for LargeIcon, take into account
2497         for displaying the entire label not only the Focused state of the
2498         item, but also the Focused state of the ListView (match .Net
2499         behaviour).
2500
2501 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2502
2503         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
2504         Implement UseWaitCursor. 
2505
2506 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2507         Applying contributed patch from Sergey Volk.
2508
2509         * Clipboard.cs: Implement SetDataObject retry logic and new overload
2510         of SetDataObject.
2511         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
2512
2513 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2514
2515         * Control.cs: Implement DrawToBitmap.
2516
2517 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2518         Applying contributed patch from Stefan Noack.
2519         
2520         * Control.cs: Add [Get|Set]AutoSizeMode.
2521
2522 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2523
2524         * MdiClient.cs: Unmerge menus when the last child is closed.
2525
2526 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2527
2528         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
2529         * ToolStripManager.cs: Call Merge on DropDowns.
2530         [Fixes bug #81477]
2531
2532 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2533
2534         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
2535           uints.
2536         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
2537           visibility. We can't create forms visible, since we have to set the
2538           owner before making the form visible (otherwise Win32 will do
2539           strange things with task bar icons). The problem is that we set the
2540           internal is_visible to true before creating the control, so
2541           is_changing_visible_state is the only way of determining if we're
2542           in the process of creating the form due to setting Visible=true -
2543           this works because SetVisibleCore explicitly makes the form
2544           visibile afterwards anyways. Fixes #80775.
2545
2546 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2547
2548         * ThemeWin32Classic.cs: When drawing ListViewItems,
2549         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
2550         or LargeIcon _and_ item is not focused (match .Net behaviour).
2551
2552 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2553
2554         * Control.cs, Form.cs: Fix some obsolete method warnings.
2555
2556 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2557
2558         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
2559         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
2560
2561 2007-05-04  Andreia Gaita  <avidigal@novell.com>
2562
2563         * ContainerControl.cs: Fix active_control attribution when going
2564         up the parent chain so that the first parent container gets the control
2565         and the rest of the parent containers get the child containers (skips
2566         non-containers). Fixes #80729
2567
2568 2007-05-04  Randolph Chung  <tausq@debian.org>
2569
2570         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
2571         [Fixes bug #81499]
2572
2573 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2574
2575         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
2576           takes a size parameter, since the CreateParam's size isn't true for
2577           minimized forms. Fixes #81518,
2578
2579 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2580
2581         * Form.cs: Add OnDeactivateInternal.
2582         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
2583
2584 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2585
2586         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
2587           accessing the parent. Fixes #81508.
2588
2589 2007-05-03  Chris Toshok  <toshok@ximian.com>
2590
2591         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
2592         2.0 block, pass listposition + 1 to ChangeRecordState when a row
2593         was added before the current listposition.  Fixes the
2594         TestInsertRowBeforeCurrent unit test.
2595
2596 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
2597
2598         * Application.cs: Add RaiseIdle.
2599         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
2600         XplatUIX11.cs: Implement RaiseIdle.
2601
2602 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
2603         corcompare work: N - Z
2604         * NotifyIcon.cs
2605         * ProgressBar.cs
2606         * RadionButton.cs
2607         * ScrollableControl.cs
2608         * SplitContainer.cs
2609         * SplitterPanel.cs
2610         * StatusBar.cs
2611         * SystemInformation.cs
2612         * TabControl.cs
2613         * TableLayoutControlCollection.cs
2614         * TableLayoutPanel.cs
2615         * TabPage.cs
2616         * ToolBar.cs
2617         * ToolBarButton.cs
2618         * ToolStrip.cs
2619         * ToolStripComboBox.cs
2620         * ToolStripContainer.cs
2621         * ToolStripContentPanel.cs
2622         * ToolStripDropDown.cs
2623         * ToolStripDropDownItem.cs
2624         * ToolStripDropDownMenu.cs
2625         * ToolStripItem.cs
2626         * ToolStripItemCollection.cs
2627         * ToolStripMenuItem.cs
2628         * ToolStripPanel.cs
2629         * ToolStripSplitButton.cs
2630         * ToolTip.cs
2631         * TreeNode.cs
2632         * TreeNodeCollection.cs
2633         * TreeNodeMouseHoverEventArgs.cs
2634         * TreeView.cs
2635
2636 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
2637
2638         * ContextMenu.cs: Add public method Show with alignment property to 2.0
2639         stuff. Thanks aatdark for the patch. 
2640
2641 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2642
2643         * GridItem.cs: Implement 2.0 Tag property.
2644
2645 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
2646
2647         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
2648         count instead of Nodes.Length.  [Fixes bug #81448]
2649
2650 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2651
2652         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
2653         [Fixes bug #81506]
2654
2655 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2656         corcompare work: A - M
2657         * BindingNavigator.cs
2658         * Button.cs
2659         * ButtonBase.cs
2660         * CheckBox.cs
2661         * Control.cs
2662         * FlowLayoutPanel.cs
2663         * Form.cs
2664         * Label.cs
2665         * LinkLabel.cs
2666         * ListView.cs
2667
2668 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2669
2670         * Application.cs: Give toolstrips a chance to process mnemonics.
2671         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
2672         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
2673         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
2674
2675 2007-05-01  Jackson Harper  <jackson@ximian.com>
2676
2677         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
2678         wider area too.
2679         - Don't set the BoundsSpecified
2680
2681 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2682
2683         * Application.cs: When using the toolstrip shortcut mechanism, allow the
2684         message to pass through to a regular control if it hosted by a toolstrip.
2685         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2686         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
2687
2688 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2689
2690         * TextRenderer.cs: Use the flags argument when using the MeasureString
2691         fallback algorithm.
2692
2693 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2694
2695         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
2696         the MDI menu item.  [Fixes bug #81483]
2697
2698 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
2699
2700         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
2701         string. When setting Name to null, use zero-length string instead.
2702
2703 2007-04-29  Andreia Gaita  <avidigal@novell.com>
2704
2705         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
2706         DeselectTab). Implement missing 2.0 TabPageCollection methods
2707         (Add, ContainsKey, RemoveByKey, IndexOfKey)
2708
2709 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
2710
2711         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
2712
2713 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
2714
2715         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
2716         Fixes bug #81479. Include details of exception when LoadFile fails.
2717
2718 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
2719
2720         * DrawListViewSubItemEventArgs.cs: Added missing setter
2721
2722 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2723
2724         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
2725         Hide methods (not complete). Implement missing 2.0 OnPopup event.
2726
2727 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2728
2729         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
2730         removed in ly last commit (it was breaking the Label edit feature).
2731
2732         * ThemeWin32Classic.cs: When drawing a ListViewItem use
2733         StringAlignment.Near for LineAlignment (match .Net).
2734
2735 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2736
2737         * TabControl.cs: Change SetTab so it adds the tabpage to the list
2738         of controls if it isn't already there - was blowing up when doing
2739         tabcontrol.TabPages[i]=new TabPage(). 
2740         SetTab now does a replace by removing the page at the index. 
2741         Add a new InsertTab method that inserts a page in a given index 
2742         instead of replacing. 
2743         Implements TabPageCollection.Insert(int, TabPage).
2744
2745 2007-04-27  Chris Toshok  <toshok@ximian.com>
2746
2747         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
2748         internal handler that can be invoked from our subclasses.)  Also,
2749         add a comment to PushData about how we need to fix it.
2750
2751         * CurrencyManager.cs: tons of changes here.  trying to get things
2752         matching the behavior of .net wrt event orders (ItemChanged,
2753         CurrentChanged, PositionChanged.)  I've implemented a private .net
2754         symbol (ChangeRecordState) that appears in stack traces because
2755         it's actually easier to do this than to effective inline all its
2756         various behaviors at every call site.
2757
2758         * RelatedPropertyManager.cs: guard against an exception here by
2759         not using parent.Current if the position is set to -1 (if the
2760         parent datasource is cleared, for instance).
2761
2762         * Binding.cs: don't parse data in PushData (this might be wrong,
2763         but it jives with MS's behavior.)  Also, don't call PushData when
2764         we get a CurrentChanged event.
2765
2766 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2767
2768         * WebBrowser.cs,
2769           WebBrowserBase.cs,
2770           WebBrowserSiteBase.cs,
2771           HtmlDocument.cs: Added stubbed out classes, no real implementations 
2772           yet.
2773
2774 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2775
2776         * MainMenu.cs: In draw method without parameters call draw method with 
2777         PaintEvent, another one (just rect) adjust rectangle and we dont need it
2778         as Rect property is already adjusted. Fixes #80694.
2779
2780 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
2781
2782         * Application.cs: Need to handle keyboard menu deselection here.
2783         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
2784         navigation, allowing keyboard to work on X11.
2785         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
2786
2787 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2788
2789         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
2790         menu bar. It fixes some drawing issues in menu bar.
2791
2792 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2793
2794         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
2795         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
2796         when <alt> key is pressed.
2797
2798 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
2799
2800         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
2801         example just set visible to false and make this prevent from other problems.
2802         In SystrayAdd always remove pending expose. Fixes #81072.
2803
2804 2007-04-26  Marek Safar  <marek.safar@gmail.com>
2805
2806         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
2807         value is set.
2808
2809 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2810
2811         * ListView.cs: Added three missing 2.0 events and corresponding
2812         EventHandlers. Added the OwnerDraw property.
2813         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
2814
2815 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2816
2817         * DrawListViewItemEventArgs.cs
2818         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
2819
2820 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2821
2822         * TextControl.cs: Fixed typo in constructor
2823
2824 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
2825
2826         * Application.cs: Create a shortcut path so that currently selected
2827         MenuStrips can intercept keyboard events without having focus.
2828         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
2829         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
2830         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
2831         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
2832         generate WM_SYSCOMMAND message in X11 for other platforms.
2833         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
2834         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
2835         * ToolStripSplitButton.cs: Add DefaultItem property.
2836         
2837 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
2838
2839         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
2840         fixes some menu draw problem on Windows with border diferent from default
2841         it also fixes #81403.
2842
2843 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2844
2845         * Form.cs: Refactor WndProc into separate methods, just like Control is
2846           doing it.
2847
2848 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2849
2850         * Control.cs: set_Text: move the call to the driver into a seperate
2851           virtual method so that Form can override it.
2852         * MaskedTextBox.cs: Corcompare fixes.
2853         * Form.cs: Override UpdateWindowText and only update the styles if the
2854           form has been shown (fixes #81405).
2855
2856 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
2857
2858         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
2859         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
2860         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
2861         the form lost focus or another control was clicked.
2862
2863 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
2864
2865         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
2866         fixed.
2867
2868 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2869
2870         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
2871           DrawListViewItemEventHandler.cs,
2872           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
2873           Added.
2874         * X11Structs.cs: More ToString implementation.
2875
2876 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
2877
2878         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
2879         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
2880
2881 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2882
2883         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
2884           handle.
2885         * FormCollection.cs: Don't add a form if it's already in the
2886           collection.
2887         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
2888           according to behaviour and MSDN. The ownerWin32 is the active
2889           window at the moment when we call ShowDialog, not the context's
2890           main form (the context's main form may open another form that opens
2891           a form with ShowDialog, the win32 owner is the second form). Add
2892           and remove forms to the Application.OpenForms in other places to
2893           better match MS behaviour. Add an IsActive property that raises
2894           On(de)Activated only if the active state has changed (we were
2895           raising OnDeactivated before OnActivated while creating forms).
2896         * Application.cs: Refactor Enabling/Disabling of windows for modal
2897           dialog loops out to separate methods, and restore the thread
2898           context when we quit the method. Fixes #81407.
2899
2900 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2901
2902         * ListView.cs: In ItemControl.HandleClicks, also fire 
2903         2.0 MouseClick or MouseDoubleClick events on the parent,
2904         not only the Click/DoubleClick events.
2905
2906 2007-04-24  Andreia Gaita  <avidigal@novell.com>
2907
2908         * TableLayoutSettings.cs: 
2909         - Added a GetControls method and a support structure to help the 
2910         TypeConverter to enumerate the controls for     serialization. 
2911         - Added a new serialization constructor. 
2912         - Added a isSerialized flag initialized to true on the 
2913         serialization constructor so that the TableLayoutPanel.LayoutSettings 
2914         setter does not throw the designed NotSupportedOperation exception
2915         when the object is built through deserialization.
2916         - Implemented GetObjectData
2917         
2918         * TableLayoutPanel.cs: Added check on LayoutSettings.
2919
2920 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2921
2922         * ListView.cs: Report Click and DoubleClick events to the parent
2923         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
2924         from breaking the click count state when using dialog forms (Control
2925         reports the clicks in a similar fashion). In the previous behaviour
2926         the last WM_LBUTTONUP message in a  double click was sent to the
2927         ListView's form, instead of the ListView, which was breaking the click
2928         count for it. Fixes #80387.
2929
2930 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
2931
2932         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
2933
2934 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
2935
2936         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
2937         us from created dropdowns for menu items that do not have subitems.
2938         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
2939         Check HasDropDownItems before calling DropDown so a dropdown will not be
2940         created if it isn't needed.
2941
2942 2007-04-24  Jackson Harper  <jackson@ximian.com>
2943
2944         * TreeView.cs: Set the first node to the selected node when we get
2945         focus if there is no selected node.
2946
2947 2007-04-24  Andreia Gaita  <avidigal@novell.com>
2948
2949         * MimeIcon.cs: remove using blocks so that image streams are
2950         not disposed of. Fixes #80151
2951
2952 2007-04-24  Jackson Harper  <jackson@ximian.com>
2953
2954         * TextBoxBase.cs: Fixup the height of textboxes when the control
2955         is created.
2956
2957 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
2958
2959         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
2960         for each ToolStripItem when the parent's RightToLeftChanged is called.
2961
2962 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2963
2964         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
2965           Fixes #80163.
2966         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
2967           property, so that the setter can be overriden too.
2968         * TextBox.cs: Change GetContextMenuInternal() to use
2969           ContextMenuInternal.
2970
2971 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2972
2973         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
2974           #81406.
2975
2976 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2977
2978         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
2979           #81406.
2980
2981 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2982
2983         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
2984           avoid duplicate work. Mostily skeleton code, it's not working at
2985           all yet.
2986
2987 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
2988
2989         * NotifyIcon.cs : stub for MouseClick event
2990         * Application.cs: stub for SetUnhandledExceptionMode
2991
2992 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
2993
2994         * BindingNavigator.cs : Initial (partial) implementation
2995
2996 2007-04-23  Jackson Harper  <jackson@ximian.com>
2997
2998         * TreeView.cs: Do not create the treeview's handle when setting
2999         the scroll position.
3000         - ExpandAll needs to compute the scrollbars so it knows which
3001         position to set the bar too.
3002         * TreeNode.cs: 
3003         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
3004
3005 2007-04-23  Jackson Harper  <jackson@ximian.com>
3006
3007         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
3008         key. Fixes #81408.
3009
3010 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
3011
3012         * ToolStripItem.cs: Make GetImageSize internal.
3013         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
3014         need to draw an item.  Fixes a reported issue where images on menus
3015         that were not 16x16 were drawing incorrectly.
3016
3017 2007-04-21  Miguel de Icaza  <miguel@novell.com>
3018
3019         * Padding.cs: Use the converter, fixes the resgen2 issue with
3020         XMLNotePad. 
3021
3022 2007-04-21  Jackson Harper  <jackson@ximian.com>
3023
3024         * TreeView.cs: Dont try to unhighlight the selected node if there
3025         isn't a selected node.
3026
3027 2007-04-21  Jackson Harper  <jackson@ximian.com>
3028
3029         * UpDownBase.cs:
3030         * TextBoxBase.cs:
3031         * ListView.cs:
3032         * ListBox.cs:
3033         * TreeView.cs: Use the InternalBorderStyle property to set the
3034         initial border style, this forces the client rectangle to be sized
3035         correctly.
3036
3037 2007-04-20  Jackson Harper  <jackson@ximian.com>
3038
3039         * TreeView.cs: Simplify scrolling to the last node after expanding
3040         all.
3041         - Fix some off by ones with setting the bottom.
3042
3043 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3044
3045         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
3046         that.  We were incorrectly doing it the other way around.  Also,
3047         update ClientSize if we change the BorderStyle before the control
3048         is created.
3049
3050 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3051
3052         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3053         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3054         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
3055         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3056         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3057         Caption to CaptionHeight.
3058         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
3059         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
3060         and FixedFrameBorderSize to return value from current XplatUI driver.
3061         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
3062         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
3063         and FixedFrameBorderSize using win32 API. Renamed Caption to
3064         CaptionHeight.
3065         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
3066         * SystemInformation.cs: Fixed typo in BorderSize.
3067
3068 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3069
3070         * XplatUI.cs: Added MenuAccessKeysUnderlined.
3071         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
3072         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
3073         returning false.
3074         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
3075         value from XplatUI driver.
3076         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
3077         SystemParametersInfo.
3078         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
3079         override.
3080         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
3081         returning false.
3082
3083 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3084
3085         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
3086
3087 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3088
3089         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
3090
3091 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3092
3093         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
3094         MenuStrips that contain ToolStripSeparators.
3095
3096 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3097
3098         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
3099           DefineStdCursorBitmap.
3100         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
3101           has been created off a standard cursor. This is used to get a
3102           bitmap of the standard cursor when Draw or DrawStretched is called
3103           in order to draw the cursor.
3104         * X11Structs.cs: Added XcursorImage and XcursorImages.
3105         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
3106           DefineStdCursorBitmap.
3107         * Cursors.cs: Update all relevant creations of Cursor to use the new
3108           internal constructor.
3109
3110 2007-04-19  Jackson Harper  <jackson@ximian.com>
3111
3112         * TextBox.cs: Move the has_been_focused into the base control, so
3113         some of the text adding methods can manipulate it (probably time
3114         for a better name for this flag too).
3115         - Call a new version of selectall that doesn't scroll
3116         * TextBoxBase.cs: When we append text, if the document is empty,
3117         don't scroll.  If the document has text already, we scroll to the
3118         end of the appended text.
3119         - When the text is changed, we reset the has_been_focused, so the
3120         next time the control gets focused, all the text is selected.
3121
3122 2007-04-19  Jackson Harper  <jackson@ximian.com>
3123
3124         * TextControl.cs: Move the margins to the document, add a method
3125         so the margin sizes can be updated.
3126         * TextBoxBase.cs: When the border style is changed, update the
3127         border sizes.
3128
3129 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
3130
3131         * Control.cs: Respect DefaultPadding.
3132         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
3133         padding into account.
3134         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
3135
3136 2007-04-19  Jackson Harper  <jackson@ximian.com>
3137
3138         * TextControl.cs: Oops, we need to use the ClientRect not the
3139         bounds here.
3140
3141 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3142
3143         * ListView.cs: In ItemControl.ItemsMouseDown, take into
3144         account the double clicks when CheckBoxes are used and
3145         the pointer is inside the checkbox. Fixes part of #81191.
3146
3147 2007-04-18  Jackson Harper  <jackson@ximian.com>
3148
3149         * TextControl.cs: Pressing the end key shouldn't move the caret
3150         past the line ending.
3151         * TextBoxBase.cs: We can still delete if we are in the line
3152         ending and the combine will just kill the existing line ending.
3153
3154 2007-04-18  Jackson Harper  <jackson@ximian.com>
3155
3156         * TextControl.cs: We can't move lines, then invalidate their
3157         bounds, we need to get the old bounds and combine that with the
3158         new bounds.
3159         * TextBoxBase.cs: Before combining two lines for a delete, we need
3160         to invalidate the area of the old line, since that will be moved
3161         in the combine operation.
3162
3163 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
3164
3165         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
3166         with transparent background. Fixes #80482.
3167
3168 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
3169
3170         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
3171         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
3172         [Fixes bug #81391]
3173
3174 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3175
3176         * CreateParams.cs: Add a couple of helper methods and do a less string
3177           concatenation in ToString.
3178         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
3179           overload that takes a Control parameter, since this method may be
3180           called before a control is assigned to the hwnd (from
3181           CreateWindow), and update CreateWindow to use the new overload. In
3182           GetMenuOrigin subtract the title bar from the y position if the
3183           form has a window manager (since we're painting it and not X).
3184         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
3185           CreateParams to calculate the origin (since border sizes may vary).
3186           In ScreenToMenu only subtract the title height if we actually have
3187           a title.
3188         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
3189           mdi children never have menus of themselves.
3190         * InternalWindowManager.cs: Implement menu handling like form does.
3191           Added GetMenuOrigin to calculate the menu origin, can't use the
3192           CreateParams from the form like normally since it's lying.
3193         * Hwnd.cs: Implement GetBorderSize better (in the sense more
3194           windows-like) and add Inflate and comparison operators to the
3195           Borders type. When calculating MenuOrigin and it's a form with a
3196           window manager, use the window manager to calculate it.
3197
3198 2007-04-17  Chris Toshok  <toshok@ximian.com>
3199
3200         * Control.cs (CreateControl): turns out in 2.0 we don't need this
3201         OnBindingContextChanged thing here.  It's only generated from
3202         ContainerControl.OnCreateControl.  Fixes a newly written unit test
3203         - BindingTest.BindingContextChangedTest4.
3204         
3205 2007-04-17  Jackson Harper  <jackson@ximian.com>
3206
3207         * ScrollBar.cs: When setting values, make sure the current
3208         position stays within the new values range.
3209
3210 2007-04-17  Chris Toshok  <toshok@ximian.com>
3211
3212         * Control.cs (CreateControl): talk about a bizarre corner case.
3213         Don't emit OnBindingContextChanged here if we're a parentless
3214         control (i.e. if we're a form.).  Fixes
3215         BindingTest.BindingContextChangedTest2.
3216
3217 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3218
3219         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
3220         from win32. Fixes #81255.
3221
3222 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3223
3224         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
3225         already present in CalculateButtonTextAndImageLayout.
3226
3227 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3228
3229         * XplatUIX11.cs: When setting min/max size for a window we need to
3230           translate the coordinates to x coordinates. Create an overload of
3231           SetWindowMinMax that takes a CreateParams handling this, and change
3232           SetWMStyles to call this function (can't use Control.FromHandle in
3233           the SetWindowMinMax to get the control/CreateParams from the handle
3234           because the handle might not have been assigned to the control
3235           yet). Fixes #81371.
3236
3237 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3238
3239         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
3240         if StateImageList is non-null and it has less than two items (match MS
3241         behaviour). Also, in HandleNavKeys handle the Space key, calling
3242         the new ToggleItemsCheckState method, which tries to change the
3243         checked state of the selected items. Fixes part of #81191.
3244
3245 2007-04-16  Jackson Harper  <jackson@ximian.com>
3246
3247         * RichTextBox.cs: namespace cleanup.
3248
3249 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3250
3251         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
3252
3253 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3254
3255         [Fixes #79447]
3256         * Control.cs: Call invalidate in set_Region.
3257
3258         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
3259         it dont works here.
3260
3261 2007-04-16  Jackson Harper  <jackson@ximian.com>
3262
3263         * TextBoxBase.cs: When enter is pressed, we need to update all
3264         lines below the current.
3265
3266 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
3267
3268         * MdiClient.cs: Implement implicit menu merging for MDI
3269         children.  When a child form is active, if it has a menustrip
3270         and the parent form has a MainMenuStrip, automatically merge
3271         the menus.
3272
3273 2007-04-15  Andreia Gaita  <avidigal@novell.com>
3274
3275         * TabControl.cs: Refactored sizing methods to not repeat
3276         code all over the place. Tab bounds are now calculated
3277         as if alignment is top and single line, and only when 
3278         setting the bounds are the positions adjusted according
3279         to alignment. Replaced hardcoded positions, spacings and
3280         paddings by getting the values the ThemeEngine. 
3281         Fixes #79619.
3282         
3283         * Theme.cs: Change TabControl properties and methods so
3284         that all start with TabControl*. Added more properties
3285         to help remove hardcoded values on tabcontrol.
3286         Add CPDrawBorder3D declaration so the Theming classes
3287         can access it.
3288         
3289         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
3290
3291         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
3292         on the Theming namespace, and call the appropriate methods here.
3293         Change CPDrawBorder3D to public.
3294
3295 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3296
3297         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
3298         the control after firing the OnMouseUp event, instead of sending
3299         the message before the mentioned event. This is so we can match the
3300         MS behaviour. Fixes part of #80385.
3301
3302 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3303
3304         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
3305         RightToLeft property.
3306
3307 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3308
3309         * ToolStrip.cs: Add properties and internal methods to support merging.
3310         * ToolStripItem.cs: Add MergeAction and MergeIndex.
3311         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
3312         not trigger reparenting or layouts.
3313         * ToolStripManager.cs: Add Merge and RevertMerge methods.
3314         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
3315         is hosting the overflow menu.
3316
3317 2007-04-13  Jackson Harper  <jackson@ximian.com>
3318
3319         * TextControl.cs: Set the line ending correctly for the first
3320         inserted line.
3321
3322 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3323
3324         * Theme.cs: Update GetMethod to get the new definition for 
3325         KnownColors.Update (and fix theme color updates).
3326
3327 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
3328
3329         * MessageBox.cs: Fix some test and button position.
3330
3331 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3332
3333         * Form.cs: Consider the implicit controls in
3334         GetRealChildAtPoint. We need it since this method
3335         is called on Form when handling the some messages in
3336         WndProc, and need to consider those implicit ones too.
3337         Fixes #80385.
3338
3339 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
3340
3341         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
3342         if there are no ShortcutKeys set.
3343         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
3344         set, use it when painting.
3345
3346 2007-04-12  Jackson Harper  <jackson@ximian.com>
3347
3348         * TextControl.cs: Fix some off-by-one issues in line duplication
3349         and insertion in the undo manager. Also, overwrite the first tag
3350         of a line on insert, if it is just a zero lengthed tag. This
3351         prevents us from getting an extra stranded tag at the beginning of
3352         the first line.
3353
3354 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
3355
3356         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
3357         to calculated proper size including when handle was not created yet.
3358
3359 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3360
3361         * MdiWindowManager.cs: When moving a form, allow the form to be moved
3362           when the mouse is outside of it's parent's client rectangle. Fixes
3363           #79982 (take 3, part 2).
3364
3365 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3366
3367         * X11Structs.cs: Add a few ToString() overrides.
3368         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
3369           the window location in a window-manager independent way. Reworked
3370           FrameExtents, it now actually works. Reworked AddConfigureNotify
3371           and ReparentNotify handling to use GetTopLevelWindowLocation
3372           instead of the earlier, more hacky solution. Reworked SetWMStyles,
3373           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
3374           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
3375           for all other windows (fixes #81281 part 1), a toolwindow is hidden
3376           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
3377           and generally refactored to do as few calculations as possible
3378           inside the lock.
3379
3380 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
3381
3382         * Theme.cs: Change "reflective-contract" between MWF and SD to 
3383         minimize # of calls, avoid Color serialization and avoid updating 
3384         every "known colors" each time a single one is updated.
3385
3386 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3387
3388         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
3389         when not readonly and the text is explicitly set. Code style updates.
3390         * DataGridTableStyle.cs: Removed extra line.
3391         * DataGrid.cs: Code style updates. Removed extra whitespace.
3392         * DataGridColumnStyle.cs: Code style updates. Removed extra 
3393         whitespace.
3394
3395 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3396
3397         * XplatUIX11.cs: Added comment that "fixes" #80021.
3398
3399 2007-04-09  Jackson Harper  <jackson@ximian.com>
3400
3401         * TextControl.cs: We don't need this -1 on the line count anymore.
3402
3403 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3404
3405         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
3406         entered value to underlying type, and convert it back to a string to
3407         apply formatting. Modified GetFormattedValue to use TypeConverter
3408         if available.
3409
3410 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
3411
3412         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
3413         Use SubItems property when we want to ensure there's at least one
3414         subitem. Modified SubItems property to ensure there's always at least
3415         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
3416         the NRE's reported by MS.
3417
3418 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
3419
3420         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
3421         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
3422         Spaces to tabs. Removed extra tabs.
3423
3424 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
3425
3426         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3427         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
3428
3429 2007-04-06  Jackson Harper  <jackson@ximian.com>
3430
3431         * TextBoxBase.cs: When a delete removes a line, recalculate all
3432         lines below that line (they need to get offsets setup correctly)
3433         and invalidate.
3434
3435 2007-04-05  Jackson Harper  <jackson@ximian.com>
3436
3437         * TextControl.cs: We need to invalidate across the width of the
3438         document when we are invalidating multiple lines.
3439         * TextBoxBase.cs: Don't delete into the line ending.
3440
3441 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3442
3443         * ListView.cs: Restore the check for the MouseHover event
3444         in ListView. It looks like the ListView fires more than one MouseHover
3445         event when HoverSelection is true  _only_ in weird-corner scenarios, but
3446         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
3447         event.
3448
3449 2007-04-05  Mike Kestner  <mkestner@novell.com>
3450
3451         * ListView.cs : raise MouseDown before updating selection.
3452         [Fixes #80373 tab 1&3]
3453
3454 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3455
3456         * ToolStripRenderer.cs: Add static method to mirror image.
3457         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
3458         and RightToLeftAutoMirrorImage.
3459         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
3460
3461 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3462
3463         * ToolStripSplitStackLayout.cs: Support Alignment property.
3464         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
3465
3466 2007-04-05  Jackson Harper  <jackson@ximian.com>
3467
3468         * TextControl.cs: Move around the line endings when crossing line
3469         boundaries.
3470         - When combining lines, strip the ending text off the first line.
3471
3472 2007-04-05  Jackson Harper  <jackson@ximian.com>
3473
3474         * TextControl.cs:
3475         * TextBoxBase.cs: Try to never move the cursor into the line
3476         ending.
3477         
3478 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3479
3480         * ToolStripItem.cs: Make sure we aren't firing mouse events when
3481         the item is disabled.  Also add a few missing methods.
3482
3483 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3484
3485         * ListView.cs: We don't need the MouseEnter/MouseLeave check
3486         to fire just one MouseHover event when HoverSelection is true, since
3487         .Net does fire more than one MouseHover event in that scenario. Also,
3488         fix the selection in HoverSelection, by invoking UpdateMultiSelect
3489         if MultiSelect is true, instead of only setting ListViewItem.Selected.
3490         Finally, we need to reset the Hover logic in MouseMove, even when we
3491         don't have a selected item.
3492
3493 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3494
3495         * ToolStrip.cs: Add several missing methods, properties, and events.
3496
3497 2007-04-04  Chris Toshok  <toshok@ximian.com>
3498
3499         * DataGridTextBoxColumn.cs: set the bounds of the text box to
3500         (0,0,0,0) in Commit, as MS does.
3501
3502         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
3503         make sure we set CurrentRow on a row header click *before* calling
3504         Select.  This moves the current cell (and the textbox) to the new
3505         row.  The call to Select then hides the textbox, giving us the
3506         correct behavior.  Fixes #80362.
3507
3508         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
3509         (ListChangedHandler): reorder the position/current changed events,
3510         and call UpdateIsBinding in the ItemAdded case.
3511
3512         * GridColumnStylesCollection.cs: add some columns events, one of
3513         which raises the CollectionChanged event.
3514
3515 2007-04-04  Jackson Harper  <jackson@ximian.com>
3516
3517         * TextControl.cs: When we delete multiple selection lines
3518         invalidate the selection area, don't need to do that for single
3519         lines because the final update view will handle it.
3520
3521 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3522
3523         * Control.cs: When we CreateControl, we need to also create all of the
3524         control's children.  The child's OnLoad must also fire before the parent's
3525         OnLoad.  Fixes the toolbox size in PDN.
3526
3527 2007-04-04  Jackson Harper  <jackson@ximian.com>
3528
3529         * TextBoxBase.cs: When the user presses enter, insert a line
3530         ending into the text. (Maybe this would be a good spot for
3531         Environment.NewLine).
3532         * TextControl.cs: Remove undo manager hack, line endings get
3533         inserted properly now.
3534         
3535 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3536
3537         * MenuAPI.cs: 
3538         - Remove unneeded parameters in UpdateCursor.
3539         - Fix UpdateCursor to check if menu is active.
3540         - Call UpdateCursor when menu deactivate my click.
3541         [Fixes remaining issues from #80410]
3542
3543 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3544
3545         * Control.cs: GetRealChildAtPoint method added, it make an
3546         recursive child control search for the point. 
3547
3548         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
3549         menu.
3550
3551         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
3552
3553 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3554
3555         * Form.cs: Fix mouse position when send back mouse event after closes
3556         menu.
3557
3558 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3559
3560         * Form.cs: Simplify the BUTTONDOWN for active tracker.
3561
3562 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3563
3564         * Control.cs: Fix an issue where if a user resized a control inside
3565         a sizing method like OnResize, we would overwrite their explicit
3566         value.  Also, only call DefaultSize once in the constructor instead
3567         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
3568         nothing actually changed.
3569
3570 2007-04-03  Jackson Harper  <jackson@ximian.com>
3571
3572         * TextControl.cs: Don't attempt to copy text for lines with no
3573         text in them (technically this shouldn't happen, but we aren't
3574         always inserting line endings when we should be).
3575
3576 2007-04-03  Jackson Harper  <jackson@ximian.com>
3577
3578         * TextBoxBase.cs: Calculate the scrollbars before calculating the
3579         document, because this sets some of the document size properties
3580         that are needed.
3581
3582 2007-04-03  Jackson Harper  <jackson@ximian.com>
3583
3584         * TextBoxBase.cs: We need to calculate maximums even if this is
3585         not a multiline control, because the maxs are used for scrolling.
3586         - Display the caret after doing a page up/down, we need to
3587         manually display it because a proper CaretMoved event isn't
3588         triggered (this is because of the way the math is done to
3589         determine how far to scroll).
3590
3591 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3592
3593         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
3594         (ToolBar was relying on SetBoundsCore to default the values sent 
3595         base off of BoundsSpecified.)
3596
3597 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3598
3599         * DateTimePicker.cs: Change Text so that when a null value or empty
3600           string is assigned to the test we always raise ValueChanged and
3601           TextChanged (earlier implementation would only raise ValueChanged
3602           if the current date value was different from DateTime.Now).
3603
3604 2007-04-03  Andreia Gaita <avidigal@novell.com> 
3605
3606         * ButtonBase: Call update after invalidation, fixes #80194
3607
3608 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3609
3610         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
3611           #79335.
3612
3613 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3614
3615         * XplatUIX11.cs: SetWMStyles: If the control is a form with
3616           FormBorderStyle = None, don't give the window any decorations.
3617           Fixes #81276.
3618
3619 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3620
3621         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3622         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
3623           to check for is a mix of several styles (such as WS_CAPTION for
3624           instance).
3625         * Control.cs: Don't paint an area bigger than the client area when
3626           painting the background colour. Add an internal GetCreateParams.
3627           Update calls to XplatUI.CalculateWindowRect due to API change.
3628         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
3629           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
3630           the size if it hasn't been handled by any windows. When creating
3631           and moving windows, X wants the location of the entire window, but
3632           the size of the client window, so add
3633           TranslateClientRectangleToXClientRectangle,
3634           TranslateWindowSizeToXWindowSIze and
3635           TranslatedXWindowSizeToWindowSize to cope with this, and call them
3636           before every window creation and move. Update CalculateWIndowRect
3637           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
3638           In AddConfigureNotify don't do anything if the hwnd is a zombie
3639           (fixes the BadWindow we were getting while running the tests),
3640           always calculate the offsets when it's a parentless window, not
3641           only when reparented, and translate the window size, since we're
3642           getting the client size of the whole window, excluding entire
3643           window.
3644         * Theme.cs: Added BorderSizableSize.
3645         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3646           anymore. Update calls to XplatUI.CalculateWindowRect due to API
3647           chang
3648         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
3649           change. Fake the window styles here instead of in XplatUIWin32 so
3650           that all back-ends get the same window styles (and it's Form that's
3651           deciding when to use wm, not the Win32 backend anyways)
3652         * Hwnd.cs: Completely reworked GetWindowRectangle and
3653           GetClientRectangle - they are now passed a CreateParams and they
3654           only use Style and ExStyle to determine the rectangles (they should
3655           now work just like Win32AdjustWindowRectEx - though quite a few
3656           special cases are probably missing). They should also be 100%
3657           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
3658           == rect), and all numbers (borders, menu sizes) are taken from the
3659           current theme. Added a GetBorders helper function that will return
3660           the borders for any given CreateParams (including captions and
3661           menus), and GetBorderSize that returns the given border size only.
3662         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
3663           Hwnd.GetClientRectangle.
3664
3665 2007-04-02  Chris Toshok  <toshok@ximian.com>
3666
3667         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
3668         logic between the values we present to the user and the values
3669         which are stored in the column's property.  Also, don't call
3670         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
3671
3672 2007-04-02  Jackson Harper  <jackson@ximian.com>
3673
3674         * TextBoxBase.cs: Scroll faster!
3675
3676 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3677
3678         * StatusStrip.cs: Layout fixes for PDN.
3679         * ToolStrip.cs: Set item's available to true, and placement to main when
3680         added.
3681         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
3682         changing in setter before doing any work, add InternalVisible.
3683         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
3684         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3685         infinite loop.
3686
3687 2007-04-02  Jackson Harper  <jackson@ximian.com>
3688
3689         * TextBox.cs: LBUTTON does not make the textbox select all of it's
3690         text on focus.
3691
3692 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3693
3694         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
3695           Makes ToolStripComboBoxes show up again.
3696
3697 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3698
3699         * ListView.cs: Add a hover_pending field in ListView
3700         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
3701         cycle (we are resetting the MouseHover logic in XplatUI
3702         to handle HoverSelection). Fixes #80429.
3703
3704 2007-04-02  Jackson Harper  <jackson@ximian.com>
3705
3706         * TextControl.cs: Make sure the attributes get set on the last
3707         tag.
3708         - Still have to do the end tag if we have stepped all the ways to
3709         the end.
3710
3711 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3712
3713         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
3714         on an internal libgdiplus call when the information is already 
3715         available via the public API.
3716
3717 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3718
3719         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
3720           control is removed from a control collecftion.
3721         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
3722           Fixes FormPropertyTest (failed on rare occasions).
3723         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
3724           of Win32SetParent (when changing from no parent to a parent it
3725           might add the new parent's location in screen coordinates to this
3726           window's location).
3727         * Form.cs: Rework ChangingParent once again, now the handle is
3728           recreated whenever a FormWindowManager is added or removed (that is
3729           whenever a normal form is parented or abandoned). Also change
3730           CreateParams so that all non-toplevel windows always get the
3731           specified sice (StartupPosition is never considered for
3732           non-TopLevel forms).
3733         * ContainerControl.cs: Add ChildControlRemoved, the container control
3734           needs to be notified when a control is removed from it's
3735           collection, in the case the removed control is the active control.
3736
3737 2007-04-02  Jackson Harper  <jackson@ximian.com>
3738
3739         * RichTextBox.cs: Use the new methods for setting the font and
3740         color, these methods set the specified attribute without
3741         overriding the other attributes.
3742
3743 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3744
3745         * ToolStripPanel.cs: Fixes for better layouts in PDN.
3746
3747 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
3748
3749         * TextBox.cs: Added internal ChangeBackColor method to special-case
3750         Color.Empty. Added check for invalid ScrollBars value.
3751         * TextBoxBase.cs: Added internal ChangeBackColor method.
3752         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
3753         internal ChangeBackColor method to special-case Color.Empty. Added
3754         check for invalid ScrollBars value.
3755
3756 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
3757
3758         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
3759
3760 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3761
3762         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
3763         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
3764         [Based on submitted patch from Olivier Duff.]
3765
3766 2007-03-30  Jackson Harper  <jackson@ximian.com>
3767
3768         * TextBox.cs: Only select all on initial focus if the user has not
3769         specified a selection area.
3770
3771 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3772
3773         * UserControl.cs: Override CreateParams.
3774
3775 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3776
3777         [ Fixes #80995 ]
3778
3779         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3780         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
3781           check for is a mix of several styles (such as WS_CAPTION for instance).
3782         * Control.cs: Don't paint an area bigger than the client area when painting
3783           the background colour. Add an internal GetCreateParams. Update calls to
3784           XplatUI.CalculateWindowRect due to API change.
3785         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
3786           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
3787           hasn't been handled by any windows. When creating and moving windows, X
3788           wants the location of the entire window, but the size of the client
3789           window, so add TranslateClientRectangleToXClientRectangle,
3790           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
3791           to cope with this, and call them before every window creation and move.
3792           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
3793           removing DeriveStyles). In AddConfigureNotify don't do anything if the
3794           hwnd is a zombie (fixes the BadWindow we were getting while running the
3795           tests), always calculate the offsets when it's a parentless window, not
3796           only when reparented, and translate the window size, since we're getting
3797           the client size of the whole window, excluding entire window.
3798         * Theme.cs: Added BorderSizableSize.
3799         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3800           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
3801         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
3802           Fake the window styles here instead of in XplatUIWin32 so that all
3803           back-ends get the same window styles (and it's Form that's deciding when
3804           to use wm, not the Win32 backend anyways)
3805         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
3806           they are now passed a CreateParams and they only use Style and ExStyle
3807           to determine the rectangles (they should now work just like
3808           Win32AdjustWindowRectEx - though quite a few special cases are probably
3809           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
3810           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
3811           sizes) are taken from the current theme. Added a GetBorders helper
3812           function that will return the borders for any given CreateParams
3813           (including captions and menus), and GetBorderSize that returns the given
3814           border size only.
3815         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
3816           Hwnd.GetClientRectangle.
3817
3818 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3819
3820         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
3821           layout of the mdi children is handled by CreateParams. Fixes
3822           #79964,
3823
3824 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3825
3826         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
3827         processed.
3828
3829         * Form.cs: When active tracker mouse down is not processed, send event 
3830         back to control inside mouse position. [Fixes #81227]
3831
3832 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
3833
3834         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
3835         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
3836         stealing focus from the active form on Windows.  (Control will be made
3837         visible in ShowWindow.)
3838
3839 2007-03-29  Mike Kestner  <mkestner@novell.com>
3840
3841         * ImageList.cs : add internal Changed event.
3842         * ListView.cs : hook up to StateImageList.Changed to perform
3843         invalidations when the the state icon list changes. [Fixes #81191]
3844
3845 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
3846
3847         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
3848         to prevent tooltips from stealing focus from the active form on Windows.
3849
3850 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3851
3852         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
3853
3854         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
3855
3856 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3857
3858         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
3859         balloons.
3860
3861 2007-03-29  Jackson Harper  <jackson@ximian.com>
3862
3863         * TextControl.cs: When deleting text from non multiline textboxes,
3864         we need to update the entire document, because line offsets will
3865         be shifting.
3866
3867 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3868
3869         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
3870         added to theme, now we can create themes that uses diferent notify engines
3871         like notification-daemon from galago project or growl for Mac OS.
3872
3873 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3874
3875         * NotifyIcon.cs: Prevent Balloon to show in task bar.
3876
3877 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3878
3879         * XplatUIX11.cs: Prevent system to open more than one balloon.
3880
3881         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
3882         some compiler warning messages.
3883
3884 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3885
3886         [Fixes #79149]
3887
3888         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
3889
3890         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
3891         implemented, this methods is used by NotifyIcon.BalloonWindow class.
3892
3893         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
3894         systems.
3895
3896 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3897
3898         * ListViewItem.cs: Forgot to make Invalidate internal.
3899
3900 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3901
3902         * ListView.cs: Add a InvalidateSelection method to
3903         invalidate methods which are currently selected, and call
3904         it when setting FullRowSelect and HideSelection, instead of
3905         calling Redraw.
3906
3907 2007-03-28  Chris Toshok  <toshok@ximian.com>
3908
3909         * XplatUIX11.cs (UnmapWindow): reindent this block.
3910
3911         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
3912         the selection_start if we're moving the selection (that is, not
3913         extending it). Fixes bug #80461.
3914
3915 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3916
3917         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
3918         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
3919         create private ControlCollection.
3920
3921 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3922
3923         * Control.cs: We need to call OnVisibleChanged for our implicit
3924         children as well as our normal children.  Fixes scrollbars in
3925         comboboxes not showing up.
3926
3927 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3928
3929         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
3930         the check for IsHandleCreated first.  The check in CreateHandle is not
3931         good enough because CreateHandle can be overriden, and the override 
3932         should not be called if the handle is already created.
3933
3934 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3935
3936         * ToolStrip.cs: Remove MonoTODO for tooltips.
3937         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
3938         * ToolStripContainer.cs: Add custom ControlCollection class.
3939         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
3940         * ToolStripDropDown.cs: Add some missing properties/methods.
3941         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
3942         * ToolStripItem.cs: Remove MonoTODO for tooltips.
3943         * ToolStripManager.cs: Add IsShortcutDefined.
3944         * ToolStripOverflow.cs: Override LayoutEngine.
3945         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
3946         * ToolStripSeparator.cs: Add ImageKey.
3947
3948 2007-03-28  Jackson Harper  <jackson@ximian.com>
3949
3950         * TextControl.cs: If a char delete removes a line ending, we need
3951         to update the ending style.
3952         - Make sure the line ending calcs get called.
3953
3954 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3955
3956         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
3957           it was making the new code not work. Fixed a typo in the new code
3958           as well. Fixes #79826.
3959
3960 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3961
3962         * XplatUIWin32.cs:
3963         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
3964         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
3965         - SystrayBalloon method implemented.
3966         [Add support for notifyicon balloon on win32, #79149]
3967
3968 2007-03-27  Mike Kestner  <mkestner@novell.com>
3969
3970         * ThemeWin32Classic.cs : update StateImageList selection to mirror
3971         the ms behavior when only one image is added to the list.
3972         [Fixes #81191]
3973
3974 2007-03-27  Jackson Harper  <jackson@ximian.com>
3975
3976         * TextControl.cs: Improvements to non multiline line ending
3977         drawing/measuing.
3978
3979 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3980
3981         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
3982
3983 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3984
3985         * NotifyIcon.cs: 
3986         - Balloon message handling added.
3987         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
3988
3989         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
3990         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
3991         to SystrayBalloon to me like other Systray method, also a
3992         handle parameter added.
3993
3994 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3995
3996         * ListView.cs: Show scrollbars even when items.Count == 0
3997         but the columns Width is bigger than the ListView.Width.
3998         Also, when columns.Count == 0 set layout_wd and layout_ht
3999         to the ClientRectangle values, so we don't show any scrollbar
4000         in that case.
4001
4002 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4003
4004         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
4005
4006 2007-03-27  Jackson Harper  <jackson@ximian.com>
4007
4008         * RichTextBox.cs: The RTF library decodes the text properly for us
4009         now.
4010
4011 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4012
4013         * ListView.cs: Display HeaderControl even when columns.Count == 0.
4014         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
4015         ListView header (HeaderControl), instead of Control.BackColor.
4016
4017 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4018
4019         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
4020         Fixes tab control issues where controls would not show up because they
4021         never received their OnVisibleChanged call.
4022
4023 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4024
4025         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
4026         BalloonTipShown).
4027
4028 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4029
4030         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
4031         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
4032         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
4033         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
4034         the handle.  Fix WindowState by using the internal variable until we are 
4035         sure that we've been shown.
4036         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
4037         max or min.
4038         [Fixes bug #81198]
4039
4040 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4041
4042         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
4043           (at least borders). Fixes #79386 on Linux (with a small difference
4044           in behaviour: when trying to resize a caption-less window metacity
4045           shows the sysmenu. Resizing is still possible though).
4046         * XplatUIWin32.cs: When setting window styles send request an extra
4047           WM_NCCALCSIZE when it's a form without title (due to no text and no
4048           caption), since Win32 seems to calculate it wrong the first time we
4049           get the message, though the second time things work as they should.
4050         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
4051           newly reparented window might show up unparented. Update
4052           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
4053           there's no title text. Fixes #79386.
4054
4055 2007-03-27  Mike Kestner  <mkestner@novell.com>
4056
4057         * ListBox.cs : don't perform invalidations if the handle hasn't been
4058         created.  [Fixes #80753]
4059
4060 2007-03-27  Mike Kestner  <mkestner@novell.com>
4061
4062         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
4063         [Fixes #80428]
4064
4065 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4066
4067         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
4068         needed to implement Balloon.
4069
4070 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4071
4072         * ListViewItem.cs: In the constructors that take
4073         an array of strings, don't use ListViewSubItemCollection.AddRange
4074         method to add items, since we need to have a different behaviour (in
4075         the constructors we add an item for each null string, opposed to
4076         the behaviour of AddRange, which adds nothing).
4077
4078 2007-03-26  Andreia Gaita  <avidigal@novell.com>
4079
4080         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
4081
4082 2007-03-26  Jackson Harper  <jackson@ximian.com>
4083
4084         * TextControl.cs: Draw and measure line endings when in non
4085         multiline mode.
4086         - When searching the text, count the end of the last line as a
4087         word boundary.
4088
4089 2007-03-26  Jackson Harper  <jackson@ximian.com>
4090
4091         * RichTextBox.cs: The selection_start and selection_end don't
4092         really track the correct tags for the selection. So we'll manually
4093         compute the correct tag here.
4094
4095 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4096
4097         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
4098           and Continuous styles. Fixes #79469.
4099
4100 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4101
4102         * ToolStrip.cs: Implement Tooltips.
4103         * ToolStripItem.cs: Create internal method for determining tooltip.
4104
4105 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4106
4107         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
4108
4109 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4110
4111         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
4112         it prevents a problem thak keeps icon visible after application 
4113         closes on win32.
4114
4115 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4116
4117         * NotifyIcon.cs: Balloon properties and methods created.
4118
4119         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4120         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
4121
4122 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
4123
4124         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
4125
4126 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4127
4128         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
4129         parameter indicates which aspects were explicit/user-set.
4130         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
4131
4132 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4133
4134         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
4135         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
4136         SmallChange, and Value (2.0).
4137         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
4138
4139 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4140
4141         * ListView.cs: Always set item_control.Width in LayoutDetails
4142         if View is Details. Setting it later in CalculateScrollBars
4143         in a not-so-corner scenario (the sum of columns width is
4144         not bigger than the ListView width when handle is created, and then
4145         that sum gets bigger by increasing the width of the columns)
4146         causes a very weird recursion path (which shouldn't be happening,
4147         since header_control sets it in CalculateScrollBars too). This bug
4148         appeared after Chris' fixes for handle created issues, so probably
4149         it's related to some handle-creation time.
4150
4151 2007-03-23  Chris Toshok  <toshok@ximian.com>
4152
4153         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
4154         case where there's an add row, just so we don't end up in a case
4155         where it's not displayed (this happens when the row is partially
4156         obscured).  Fixes bug #79574.
4157
4158 2007-03-23  Jackson Harper  <jackson@ximian.com>
4159
4160         * TextControl.cs:
4161         * TextBoxBase.cs:
4162         * RichTextBox.cs: Preserve line endings in the lines text buffer,
4163         also added an enum that represents the line ending type. 
4164
4165 2007-03-23  Andreia Gaita  <avidigal@novell.com>
4166
4167         * NumericUpDown.cs: Fix logic so Text and Value properties are not
4168         messed with in every method call, but only from DownButton, 
4169         UpButton, UpdateEditText() and ValidateText. Fixes #80346
4170
4171 2007-03-23  Chris Toshok  <toshok@ximian.com>
4172
4173         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
4174         format objects if the format spec is "".  Fixes bug #80889.
4175
4176 2007-03-22  Miguel de Icaza  <miguel@novell.com>
4177
4178         * ToolStripPanel.cs (Join): added stubs to build PDN3
4179
4180         * Control.cs (AutoScrollOffset): Add.
4181
4182         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
4183         property, its only implemented for Win32, on X11 it defaults to
4184         some hardcoded value.
4185
4186         * ToolStripItem.cs (AllowDrop): Add property
4187
4188 2007-03-22  Mike Kestner  <mkestner@novell.com>
4189
4190         * ListView.cs : in FullRowSelect Details mode, only enable box
4191         selection if the user clicks over the "item" column outside of the
4192         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
4193
4194 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4195
4196         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
4197           handle is not created yet.
4198         * Form.cs: Select: Don't call CreateHandle if the handle is already
4199           created, avoids a stack overflow on Windows when we are recreating
4200           controls.
4201         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
4202           they are made visible, and override AfterTopMostControl to keep
4203           them on top when other controls are brought to front.
4204           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
4205           or force_*scroll_visible is true (old implementation always shows
4206           scrollbars when needed, no matter what auto_scroll was set to).
4207         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
4208           IsHandleCreated check.
4209
4210 2007-03-22  Andreia Gaita  <avidigal@novell.com>
4211
4212         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
4213         row or col separator.
4214         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
4215
4216 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4217
4218         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
4219
4220 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4221
4222         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
4223         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
4224         every time. Fixes #80410.
4225
4226 2007-03-22  Chris Toshok  <toshok@ximian.com>
4227
4228         * BindingSource.cs (AddNew): partially implement.
4229
4230         remove a couple of NotImplementedException's
4231         to get bug #81148 closed.
4232
4233 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4234
4235         [Fixes #80380]
4236         
4237         * Control.cs:
4238         - UpdateCursor method added to update the screen cursor.
4239         - GetAvailableCursor method added to return cursor for enabled tree,
4240         it searches for cursor on control and it's parent's for enabled control.
4241         - Call UpdateCursor method on setter of Cursor property.
4242         - On setter of Enabled call UpdateCursor when it is false, we need to
4243         change cursor to normal (or to this parent cursor) because cursor 
4244         setting theres no effect to disabled controls.
4245         - Some minor source changes to follow the coding style guidelines.
4246
4247         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
4248         controls.
4249
4250 2007-03-22  Chris Toshok  <toshok@ximian.com>
4251
4252         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
4253         generates.
4254
4255 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4256
4257         * XplatUIX11.cs: Implement default locations for forms.
4258         * Form.cs: Completely rework startup location for forms. Fixes #79964.
4259         * Hwnd.cs: Add previous_child_startup_location (to track the current
4260           startup location for any child forms of the current form) and
4261           previous_main_startup_location (to track the startup location for
4262           the current toplevel form).
4263
4264 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4265
4266         * Control.cs: Don't trigger a layout if an implicit control is added
4267         that isn't visible.  Also, don't notify the owner when an implicit control
4268         is added.  (Owners shouldn't even know about their implicit controls.)
4269
4270 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4271
4272         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
4273         to save some re-layouts.
4274
4275 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
4276
4277         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
4278         [Fixes #81203]
4279
4280 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4281
4282         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
4283         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
4284
4285 2007-03-21  Mike Kestner  <mkestner@novell.com>
4286
4287         * ListView.cs : disable selection update for non-left button clicks
4288         with mods and over selected items.  [Fixes #80524]
4289
4290 2007-03-20  Jackson Harper  <jackson@ximian.com>
4291
4292         * TextControl.cs:
4293         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
4294         \r\r\n, \n.
4295
4296 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4297
4298         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
4299           very probably a more complicated calculation there. Update the
4300           textbox' ForeColor and BackColor when the ComboBox' colors are
4301           changed. Change the border change in LayoutComboBox to only affect
4302           the textbox, not all the calculations there. Seems to fix most of
4303           #79436.
4304
4305 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4306
4307         * ComboBox.cs: Handle Home and End keys as well as all combinations of
4308           modifiers + navigation keys as input keys, enables advanced text
4309           selection in the combobox (like Shift+Left Arrow for instance).
4310           ComboTextBox now overrides Focused and returns whatever
4311           ComboBox.Focused returns, since it really should be focused
4312           whenever the ComboBox is. Fixes #80795. Also make the border around
4313           the text box one pixel bigger, as mentioned in #79436.
4314
4315 2007-03-20  Jackson Harper  <jackson@ximian.com>
4316
4317         * TreeView.cs: Don't offset the images, this was causing some
4318         artifacts when expanding/collapsing with images that were the
4319         exact height of the treenode.
4320
4321 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4322
4323         * TrackBar.cs: Query the theme for the correct value when the mouse
4324           moves and the thumb is pressed. 
4325         * Theme.cs: Added TrackBarValueFromMousePosition
4326         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
4327           implementation was updating the trackbar value when drawing, now
4328           the drawing methods only draw. Fixes #80900. Refactored the
4329           calculations out to TrackBarValueFromMousePosition and
4330           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
4331           according to the mouse position whenever it wants to. Changed the
4332           light coloured pen when drawing the thumb from ControlLight to
4333           ControlLightLight, because the ControlLight is the same colour as
4334           the background so the 3D effect is lost. 
4335
4336 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4337
4338         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
4339         defined. Fixes #80784.
4340
4341 2007-03-20  Marek Habersack  <mhabersack@novell.com>
4342
4343         * ContextMenuStrip.cs: align with the change introduced in
4344         revision 74664.
4345
4346 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4347
4348         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
4349         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
4350         in SetTopmost.
4351
4352 2007-03-19  Chris Toshok  <toshok@ximian.com>
4353
4354         * Control.cs (WmPaint): don't make use of the Handle property
4355         after an event is emitted, as the user could have closed the
4356         form/destroyed the control.  Store the Handle in a local variable
4357         and make use of that.  Fixes bug #80768.
4358
4359 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4360
4361         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
4362         behavior in X11 environments.
4363
4364 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4365
4366         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
4367         because on setter of topmost we dont call SetTopmost when handle is not
4368         created.
4369
4370 2007-03-20  Jackson Harper  <jackson@ximian.com>
4371
4372         * TextControl.cs: Need to use SelectionLength () not
4373         selection_length, since that var is reset to -1.
4374         - Draw the caret when we don't have focus.
4375         * TextBox.cs: The selectall actually doesn't occur until the first
4376         focus.
4377         * TextBoxBase.cs: Need to update the caret position after a
4378         selectall.
4379         
4380 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4381
4382         * ListView.cs: Enable scrolling when using Tile view.
4383
4384 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4385
4386         [Fixes #80902]
4387
4388         * XplatUIDriver.cs: Abstract SetOwner method created.
4389
4390         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
4391         must be implemented and was masked as todo.
4392
4393         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
4394         GWL_HWNDPARENT.
4395
4396         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
4397         cheking for null owner to remove transient. The SetTopmost will be change
4398         on a decond step.
4399
4400         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
4401         SetTopmost. Now owned forms will work properly in win32 and X11.
4402
4403 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4404
4405         * MdiWindowManager.cs: Update function name.
4406         * Form.cs: After closing a form MdiParent is always null.
4407         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
4408           better what it should do: necessary book-keeping when the form is
4409           closed, it should not close the form itself.
4410
4411 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4412
4413         * ListViewItem.cs: Fix back and fore color. The subitems only
4414         use their own colors if they are set, otherwise use the listview's
4415         colors. Don't set default colors on constructor for subitem.
4416         Fixes #79315.
4417
4418 2007-03-19  Mike Kestner  <mkestner@novell.com>
4419
4420         * ListView.cs : make box selection for Details views with 
4421         FullRowSelect conform to MS behavior when clicking in the "item" 
4422         column and clicking outside the defined columns.
4423         [Fixes case 5-6 of #80374]
4424
4425 2007-03-19  Chris Toshok  <toshok@ximian.com>
4426
4427         * ScrollableControl.cs: create the controls from within the ctor,
4428         but don't actually add them until our handle is created.  this
4429         fixes a NRE possibility jpobst found (if you override OnLayout in
4430         a subclass, it's called before your ctor).  Also, add a
4431         IsHandleCreated guard to UpdateSizeGripVisibility as well.
4432
4433 2007-03-19  Jackson Harper  <jackson@ximian.com>
4434
4435         * TextBox.cs: Reduce the amount of invalidation we do.
4436         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
4437         some of them are true by default on MS.
4438         - Add some functions to reduce the amount of invalidates we do.
4439         * TextControl.cs: Less invalidation.
4440
4441 2007-03-19  Chris Toshok  <toshok@ximian.com>
4442
4443         [ Fixes #81773, and *seems* to fix #81553 as well ]
4444
4445         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
4446         AccumulateDestroyedHandles.  We need to do it *after* we send
4447         WM_DESTROY, as the user's code can access Control.Handle in
4448         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
4449         move the WM_DESTROY/zombie handling to before the call to
4450         XDestroyWindow.  For some reason without this ordering
4451         FormTest.RecreateHandle hangs.  This ordering is semantically
4452         equivalent, however, as XDestroyWindow is async anyway.
4453
4454 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
4455
4456         * RichTextBox.cs: Reset backcolor_set after setting default.
4457
4458 2007-03-19  Chris Toshok  <toshok@ximian.com>
4459
4460         * ScrollableControl.cs: the scroll position should not effect the
4461         canvas size.  commit patch from georgegiolfan@yahoo.com, which
4462         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
4463         
4464 2007-03-19  Chris Toshok  <toshok@ximian.com>
4465
4466         * ScrollableControl.cs: clean this up a bit.  create the
4467         scrollbars in the ctor and just show/hide them as needed.  Also,
4468         make hscroll_visible/vscroll_visible internal to Recalculate, and
4469         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
4470         everywhere else.  This seems to fix the scrollbars appearing
4471         beneath the content for me (i have *no* idea why that is,
4472         however.)
4473
4474 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4475
4476         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
4477         some redundacy for stuff in Anchor and Dock that base will take care of.
4478         [Fixes #80762]
4479
4480 2007-03-19  Mike Kestner  <mkestner@novell.com>
4481
4482         * ListView.cs : make box selection for Details views without 
4483         FullRowSelect dependent on the text bounds, not item bounds.
4484         * ListViewItem.cs : add an internal property to obtain the TextBounds
4485         in Details view.  [Fixes case 1-4 of #80374]
4486
4487 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4488
4489         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
4490         we're < 2.0. #78448 && #80316
4491
4492 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4493
4494         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
4495         have the same style available as the previously selected one.  Also,
4496         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
4497
4498 2007-03-19  Jackson Harper  <jackson@ximian.com>
4499
4500         * TextControl.cs: Add an alignment property that all new lines
4501         will be given.
4502         - Make sure to use the align shift when calculating the line's X
4503         position.
4504         * TextBox.cs: Set the alignment on the document as well as on all
4505         the document lines.
4506
4507 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4508
4509         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
4510           throw if setting the parent of an mdichild that already has an
4511           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
4512           AssemblyProductAttribute in the assembly, use the type's namespace (as
4513           MS seems to do). CreateControl: don't create the handle if the control
4514           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
4515           create handle if the control is not a form. Change FocusInternal to
4516           virtual so that it can be overriden by Form.
4517         * TextBox.cs: Update call to FocusInternal.
4518         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
4519           form is not a toplevel form when it's a mdi child, so update is_toplevel
4520           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
4521           hasn't been created. Show (IWin32Window): Don't allow this overload for
4522           toplevel windows. CenterToParent/CenterToScreen/Select: create the
4523           handle as MS does. SetVisibleCore: if called on a MdiChild and the
4524           parent isn't visible yet, save the visibility and restore it when the
4525           parent is made visible.
4526         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
4527           methods, since the visibility of the scrollbars can be changed from
4528           several places, not only from AutoScroll.
4529           [Fixes #81179]
4530
4531 2007-03-19  Jackson Harper  <jackson@ximian.com>
4532
4533         * RichTextBox.cs: Enable shortcuts by default.
4534         * TextBoxBase.cs: Add conditional shortcuts.  
4535
4536 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4537
4538         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
4539
4540 2007-03-19  Chris Toshok  <toshok@ximian.com>
4541
4542         [ Fixes bug #80604]
4543         
4544         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
4545         swallow the message we're waiting on, instead of delivering it, as
4546         this is only used for the WM_SHOWWINDOW raised from
4547         MapWindow/UnmapWindow, and the message needs to be generated
4548         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
4549         before doing the Map/Unmap.  Also make sure that the Hwnd is still
4550         alive after the message has been handled.
4551
4552         *before* the window is shown.
4553
4554         * Control.cs (CreateControl): guard a few more things inside the
4555         if (!is_created) block, as we might end up being called again -
4556         yay .net.
4557         (WmShowWindow): call CreateControl if we're showing the control.
4558
4559 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4560
4561         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
4562           controls without a handle if they have any parent with a handle. In
4563           Dispose add a check whether the handle is created or not before
4564           calling BeginInvoke, this removes the need of the extra disposing
4565           parameter (which was bogus anyway since it didn't prevent the
4566           invoke from happening, it only skipped the check for an existing
4567           handle, meaning that the invoke would call on an inexistent
4568           handle).
4569
4570 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4571
4572         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
4573         appears in taskbar.
4574
4575 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4576
4577         * MessageBox.cs:
4578         - Fixed a problem that dont show help button for messages with 3 buttons.
4579         - Refactory button size and position calculations, now dont use fixed 
4580         values, also fixed button sizes (#80043) and form's border space.
4581         - AddButton method created, now all other AddButton methods call this one.
4582         - Some other source code cosmetic changes.
4583
4584 2007-03-18  Jackson Harper  <jackson@ximian.com>
4585
4586         * RichTextBox.cs: Don't do this all fonts must match check if
4587         there is only one char selected.
4588
4589 2007-03-18  Jackson Harper  <jackson@ximian.com>
4590
4591         * TreeView.cs: ScrollWindow works properly now, so we don't need
4592         to screw around with the scroll area.  This fixes some artifacts
4593         when expanding and collapsing.
4594
4595 2007-03-18  Jackson Harper  <jackson@ximian.com>
4596
4597         * TextBoxBase.cs: Allow updating the selection position when the
4598         cursor is outside the textarea, but we have a capture.
4599         * TextControl.cs: A special case for when the cursor is outside
4600         the bounds of the TB.
4601         
4602 2007-03-18  Jackson Harper  <jackson@ximian.com>
4603
4604         * TextBoxBase.cs: Remove image pasting code for now.  There is no
4605         way to get an image on the clipboard right now anyways.
4606         * TextControl.cs:
4607         * RichTextBox.cs: Use the new RTF Picture class for pictures.
4608
4609 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4610
4611         * MessageBox.cs:
4612         - Set window properties in constructor intead of on CreateParams.
4613         - Remove topmost from Window ExStyle.
4614         - Set ShowInTaskbar to false.
4615         - Set form border to FixedDialog.
4616         - Some cosmetic changes and remove unneeded comments.
4617         - It fixes itens 2,3 and 4 of bug #80043.
4618
4619 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
4620
4621         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
4622         none was explicitly set. Fixes part of bug #79949.
4623
4624 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4625
4626         * ToolStripComboBox.cs: Add AutoComplete*.
4627
4628 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4629
4630         * ToolStripComboBox.cs: Add FlatStyle.
4631
4632 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
4633
4634         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
4635         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
4636
4637 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4638
4639         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
4640           CheckBox.cs, RadioButton.cs, BindingSource.cs,
4641           DataGridColumnStyle.cs: Remove warnings.
4642
4643 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4644
4645         * Menu.cs: MergeMenu: Check menu argument for null before looping over
4646           it.
4647         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
4648           visibility of mdi child forms. FormSizeChangedHandler: update the
4649           maximized size if size has changed while maximized.
4650         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
4651           creating the handle.
4652         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
4653           avoid creating the handle if not created.
4654         * XplatUI.cs: Update debug output.
4655         * XplatUIStructs.cs: Added ToString's for a couple of structs.
4656
4657 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
4658
4659         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
4660         ProcessCmdKey().
4661         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
4662         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
4663         Implement keyboard shortcuts.
4664
4665 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4666
4667         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
4668         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
4669         ColorDialog and all derived classes.
4670
4671 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4672
4673         [ Fixes bug #79828 ]
4674
4675         * ToolBar.cs:
4676         - Rename ToolBarButtonInfor to ToolBarItem.
4677         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
4678         - Maintain an array of ToolBarItem, used instead of ToolBarButton
4679         collection to be able add same button more than one time on a toolbar.
4680         - Refactory all properties and methods to use ToolBarItem. 
4681
4682         * ToolBarButton.cs: 
4683         - Remove all propeties and methods that is now in ToolBarItem.
4684         - Rectangle propery now gets the rectangle from first ToolBarItem to
4685         mimic win32 behavior.
4686         - Size calculation and layout methods also removed.
4687
4688         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
4689         ToolBarItem instead of ToolBarButton to right drawing buttons when
4690         same button/separator was added more than one time to ToolBar.
4691
4692         * ThemeNice.cs: Same as above. 
4693
4694 2007-03-15  Andreia Gaita  <avidigal@novell.com>
4695
4696         * XplatUIX11.cs: Fire extra MouseMove events right after
4697         MouseDown and MouseUp, emulating win32's <censored> behaviour
4698         for apps that rely on it.
4699
4700 2007-03-15  Jackson Harper  <jackson@ximian.com>
4701
4702         * TextControl.cs:
4703         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
4704         it is drawn on the controls client window and there is no NC
4705         area.
4706         - Set the background color to gray on 2.0 when we are readonly.
4707
4708 2007-03-15  Chris Toshok  <toshok@ximian.com>
4709
4710         [ Fixes bug #81144 ]
4711         
4712         * XplatUIX11.cs: implement VirtualScreen independently of
4713         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
4714         property.
4715
4716 2007-03-15  Chris Toshok  <toshok@ximian.com>
4717
4718         * Hwnd.cs: add an internal field for the cached_window_state.
4719
4720         * XplatUIX11.cs: cache the window state, invalidating the cache
4721         (and thus re-querying the X server) only when we see an update to
4722         the _NET_WM_STATE property.
4723
4724 2007-03-15  Chris Toshok  <toshok@ximian.com>
4725
4726         * BindingSource.cs: get a lot of the unit tests working.
4727
4728 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4729
4730         * Control.cs: Modify UpdateStyles to store distances when bounds >=
4731         0 instead of just bounds > 0.  [Fixes bug #80912]
4732
4733 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4734
4735         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
4736         and methods.
4737
4738 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
4739         
4740         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
4741         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
4742         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
4743         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
4744
4745 2007-03-15  Chris Toshok  <toshok@ximian.com>
4746
4747         [ Fixes #81101 ]
4748         
4749         * Control.cs: add Ivan's fix for 81101, with a slight modification
4750         - you can set control.Target to null.
4751
4752 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
4753
4754         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
4755         HideDropDown, use Hide instead to prevent an NRE.
4756         [Fixes bug #81147]
4757
4758 2007-03-14  Jackson Harper  <jackson@ximian.com>
4759
4760         * TextBoxBase.cs: Mess with the creation stuff a little. We need
4761         to calculate the document before the handle is created, in some
4762         cases. (Actually just one case).
4763
4764 2007-03-14  Jackson Harper  <jackson@ximian.com>
4765
4766         * TextBoxBase.cs: Need to display the caret after letting the base
4767         wndproc handle the focus methods, because the caret display
4768         methods check the focus state.
4769         - Try to display the caret after updating it's position with SelectWord.
4770         - Don't need to do an immediate update on this recalc, since there
4771         will be an invalidate anyways.
4772
4773 2007-03-14  Jackson Harper  <jackson@ximian.com>
4774
4775         * TreeView.cs: Some workarounds so that we can match event order a
4776         little better.
4777
4778 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
4779
4780         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
4781         #80803. Avoid NullReferenceException when Control does not have
4782         parent. Fixed different blinkstyle issues. Only subscribe to Tick
4783         event a single time. Only draw error icon when control is created and
4784         visible. Fixes failing unit tests.
4785
4786 2007-03-14  Andreia Gaita  <avidigal@novell.com>
4787
4788         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
4789         Selecting events. Fire Leave and Enter events when changing tabs.
4790
4791 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
4792
4793         * TreeView.cs: Add TreeViewNodeSorter.
4794         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
4795
4796 2007-03-14  Chris Toshok  <toshok@ximian.com>
4797
4798         * Form.cs: go ahead and remove the RecreateHandles that jpobst
4799         removed earlier and I had him add back it.  It turns out metacity
4800         *does* in fact handle the MOTIF_WM_HINTS property changing, it
4801         just doesn't redraw the window titlebar until you resize the
4802         window.  This also means we aren't recreating the entire window
4803         hierarchy on X when you change this property.  And it looks better
4804         on windows, too.
4805
4806 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4807
4808         * ListViewItem.cs:
4809         * ListView.cs: Collecting selection information
4810         is now done in SelectedIndexCollection rather than in
4811         SelectedListViewItemCollection. This is done so we can
4812         have the selection information code in one single place
4813         (virtual mode selection information entirely depends on
4814         SelectedIndexCollection).
4815
4816 2007-03-13  Miguel de Icaza  <miguel@novell.com>
4817
4818         * ErrorProvider.cs: Add stubs for ISupportInitialize
4819
4820 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4821
4822         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
4823         in the right order with the right values, from the Checked property, 
4824         just as MS does (instead of triggering them from ListView).
4825
4826         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
4827
4828 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4829
4830         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
4831         the correct handler in OnItemCheck method (ItemCheckEventHandler 
4832         instead of EventHandler). This used to throw an InvalidCastException.
4833
4834 2007-03-13  Jackson Harper  <jackson@ximian.com>
4835
4836         * TextBoxBase.cs: Calculate the document before the handle is
4837         created, so there isn't an extra invalidate called.
4838
4839 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
4840
4841         * Form.cs: Don't set owner in ShowDialog until we are sure
4842         that we aren't going to throw an exception.  [Fixes bug #80773]
4843
4844 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
4845
4846         * TreeView.cs: Make it compile.
4847
4848 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4849
4850         * Control.cs: Another place we don't call SizeFromClientSize.
4851         * Form.cs: Another place we don't call SizeFromClientSize.
4852         [Fixes bug #81125]
4853
4854 2007-03-12  Jackson Harper  <jackson@ximian.com>
4855
4856         * TreeView.cs: Basically emulating some strangness here with
4857         exanding nodes and setting node positions when windows aren't
4858         created.
4859         - Also attempting to walk the node tree less than previously, and
4860         just use visible order calculations for determining offsets.
4861         - oops made scrolling backwards.
4862         * TreeNode.cs: We need to start nodes with a zero visible order,
4863         because the order calcs are based on the first nodes order.
4864
4865 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4866
4867         * Form.cs: Don't exit the program if RecreateHandle is called on
4868         the main form.
4869
4870 2007-03-12  Chris Toshok  <toshok@ximian.com>
4871
4872         * XEventQueue.cs: remove the use of PostQuitState.
4873
4874         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
4875         WM_QUIT message in GetMessage, return false (and if we're in the
4876         nested WaitForHwndMessage, repost the WM_QUIT message).
4877
4878 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4879
4880         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
4881         or the MaximizeBox properties.  [Part of bug #80640]
4882
4883 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
4884
4885         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
4886         no links.
4887
4888 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4889
4890         * ToolStripItem.cs: Fix some tests I broke by checking Visible
4891         instead of visible.
4892
4893 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
4894
4895         * FileDialog.cs: Use text of File name combobox to determine what
4896         files the user selected. Added tokenizer to parse the file names.
4897         Fixes bug #81123.
4898
4899 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4900
4901         * Control.cs: We can't call SizeFromClientSize in the constructor,
4902         but we still need to do the same work, so make an internal version.
4903         [Fixes bug #80621]
4904
4905 2007-03-12  Jackson Harper  <jackson@ximian.com>
4906
4907         * TreeView.cs:
4908         * TreeNode.cs:
4909         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
4910         IsExpanded.
4911
4912 2007-03-12  Jackson Harper  <jackson@ximian.com>
4913
4914         * TextBoxBase.cs: Now that the handles are being created a little
4915         later, we need to make sure that the document is recalculated when
4916         the handle is created.
4917
4918 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
4919
4920         * Theme.cs: GetLinkFont abstract method added.
4921         
4922         * LinkLabel.cs: 
4923         - Remove CalcTrimRectangle, no longer needed.
4924         - Factor also remove, position issues must be fixed in libgdiplus.
4925         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
4926         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
4927         care about font used to draw links.
4928         - Set TabStop to true when control is "Selectable", control is selectable
4929         when have one or more links. Fixes #80501 (test case is also added).
4930         - Set the LinkArea values after links change, LinkArea values must be
4931         based in first link position and size, a test case was created.
4932         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
4933         the attribute must be true LinkArea.Length > 0. The same was applied to
4934         TabStop.
4935         
4936         * ThemeWin32Classic.cs: 
4937         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
4938         in draw method.
4939         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
4940         color change.
4941         - Draw focus rectangle for every parts focused, including parts that 
4942         is on another line, its because regions returns various rectangles
4943         and not only one. Needed to mimic W32 look.
4944         - Uses Graphics.Clip to delimite region painted, it mean that now 
4945         complete text is passed to DrawString, with this we solve layout
4946         issues without create another text renderer.
4947         - Uses Region.Intersect to fix some flickers problems, now only needed
4948         parts will redrawed.
4949         - This changes fixes #79614 and some other unreported issues, on Linux 
4950         some layout problems still remain, the problem is under 
4951         MeasureCharacterRanges but it is an libgdiplus bug.
4952
4953 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
4954
4955         * TextBox.cs: Set for foreground color.
4956         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
4957         this is already done in Control.
4958
4959 2007-03-10  Jackson Harper  <jackson@ximian.com>
4960
4961         * TextBox.cs: Set the background color, but reset the
4962         backcolor_set flag which is just for the user setting the
4963         background color.
4964
4965 2007-03-09  Chris Toshok  <toshok@ximian.com>
4966
4967         * Control.cs: really remove the call to XplatUI.SetVisible from
4968         CreateHandle(), like I said I did when I merged the branch.
4969
4970         * BindingSource.cs: implement some more of this stuff.
4971
4972 2007-03-09  Jackson Harper  <jackson@ximian.com>
4973
4974         * TextBox.cs: Don't explicitly set our background colors.
4975         * TextControl.cs:
4976         * TextBoxBase.cs: Draw readonly text.
4977         - Need to invalidate when backcolor or readonly are changed.
4978         
4979 2007-03-09  Jackson Harper  <jackson@ximian.com>
4980
4981         * TextBoxBase.cs: Don't set the forecolor until the handle is
4982         created.
4983         - Do not raise OnPaint, and removed some old debug code.
4984
4985 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
4986
4987         * ScrollableControl.cs: Fix mouse wheel scrolling.
4988
4989 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
4990
4991         * Control.cs: Wire up MouseDoubleClick event.
4992
4993 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
4994
4995         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
4996         top or bottom.
4997         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
4998         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
4999         item is added.  This logic was moved to ToolStrip.OnItemAdded.
5000         [Fixes bug #81090]
5001
5002 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5003
5004         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
5005
5006 2007-03-08  Jackson Harper  <jackson@ximian.com>
5007
5008         * TreeView.cs: Show the correct image for selected node (this used
5009         to work, not sure how the code got deleted). Also implemented 2.0 feature
5010         SelectedImageKey.
5011
5012 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5013
5014         * ListView.cs:
5015         * ListViewItem.cs: Cache index in items when retrieving them
5016         in VirtualMode.
5017
5018 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5019
5020         * ToolStripItem.cs: Don't return the explicit_size if we are using 
5021         AutoSize.  Fixes invalidation issue when user has explicitly set a
5022         size and has AutoSize = true.
5023
5024 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5025
5026         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
5027
5028 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5029
5030         * DataGridView.cs: Remove event handler from DataView when a
5031         DataTable is used as DataSource.
5032
5033 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5034
5035         * Control.cs: Create internal setter for client_size to allow it to be
5036         set without triggering resizing code.
5037         * Form.cs: Calculate client_size in constructor, only change client_size
5038         in FormBorderStyle property if Handle has been created.
5039         [Fixes #80574, #80791]
5040
5041 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
5042
5043         * SystemInformation.cs: Add TerminalServerSession.
5044
5045 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5046
5047         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
5048         TreeView code.
5049
5050 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5051
5052         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
5053         Handle before we were supposed to.  Now checks ActivateOnShow property
5054         in Control.
5055         * Control.cs: Add internal ActivateOnShow property.
5056         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
5057         for ActivateOnShow.
5058         * Hwnd.cs Remove no longer needed no_activate field.
5059
5060 2007-03-07  Jackson Harper  <jackson@ximian.com>
5061
5062         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
5063         2.0 properties
5064         * DrawTreeNodeEventHandler.cs: Add
5065         * DrawTreeNodeEventArgs.cs: Correct default value.
5066         
5067 2007-03-07  Chris Toshok  <toshok@ximian.com>
5068
5069         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
5070         to be called before NativeWindow.WndProc.  Put the HwndCreating
5071         magic there to hook up our Hwnd's to handles.
5072
5073 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
5074
5075         * DataGridView.cs: Comment out debug code.
5076
5077 2007-03-07  Chris Toshok  <toshok@ximian.com>
5078
5079         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
5080         to make the rest of the world happy]
5081
5082         * Control.cs (CreateHandle): there's no need to call
5083         XplatUI.SetVisible here, it's effectively done by
5084         XplatUI.CreateWindow on X now, and always was on windows.
5085
5086         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
5087         shortcircuit out of the loop if we have a message loop running on
5088         this thread.
5089
5090         [Changelog from merge]
5091
5092         2007-03-05  Chris Toshok  <toshok@ximian.com>
5093
5094                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
5095                 causes handle creation.
5096
5097         2007-02-28  Chris Toshok  <toshok@ximian.com>
5098
5099                 * ApplicationContext.cs: Add a flag to make sure we only raise the
5100                 ThreadExit event once (ExitThreadCore can be indirectly called
5101                 from a few places.)  I don't like the additional flag, but it
5102                 makes the event ordering/count correct.
5103
5104                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
5105                 without locking the collection.  An enumerator doesn't give us any
5106                 protection from modification anyway.  Lock the thread hash and
5107                 replace the complicated enumerator loop with a foreach.
5108                 (Application.CloseForms): make internal so it can be called from
5109                 ApplicationContext.  This should probably be moved to MWFThread.
5110                 (Application.ExitThread): don't call MWFThread.Current.Exit()
5111                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
5112                 when the runloop exits (in response to WM_QUIT.)
5113                 (Application.RunLoop): add a comment (and check) for
5114                 context.MainForm being null after setting context.MainForm.Visible
5115                 = true.  This is because you're perfectly free to dispose of a
5116                 form in VisibilityChanged.  Chalk this up to another case where we
5117                 need to synchronously generate WM_ACTIVATE from Control.Show.
5118                 Also, add handling for WM_QUIT here so we'll exit the loop.
5119                 
5120                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
5121                 fact that we don't wait if we're only unmapping the whole_window
5122                 makes me a bit nervous, but it doesn't seem to cause any problems
5123                 yet.
5124
5125                 also, add a comment about the stupid, broken and wrong resetting
5126                 of PostQuitState to false in GetMessage().
5127
5128                 In PostQuitMessage, we need to add a WM_QUIT message to the
5129                 thread's queue.  We use the FosterParent to get the right
5130                 handle/hwnd/queue.
5131
5132                 Lastly, in SetVisible, we need to unmap both windows, since the
5133                 waiting only happens when we're unmapping the client window.  So
5134                 now, the *only* time we unmap just the whole_window is in the hack
5135                 for resizing a control to 0,0.
5136                 
5137         2007-02-21  Chris Toshok  <toshok@ximian.com>
5138
5139                 * Application.cs (CloseForms): rewrite this so that we don't
5140                 modify the list while we're traversing it.
5141
5142         2007-02-20  Chris Toshok  <toshok@ximian.com>
5143
5144                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
5145                 of OnHandleCreated.
5146                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
5147                 handle is created.  otherwise we'll create it here.
5148                 (VerticalScrollEvent): same here.
5149
5150                 * Application.cs (CloseForms): call Form.Dispose, don't post
5151                 WM_CLOSE_INTERNAL.
5152
5153                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
5154                 here. Application should Dispose() of the Form's.
5155
5156                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
5157                 WM_DESTROY as well.
5158                 (MapWindow,UnmapWindow): only actually do the waiting for
5159                 SHOWWINDOW if the control we're dealing with is a Form.
5160                 (CreateWindow): if the control isn't a form, SendMessage
5161                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
5162
5163                 * Control.cs (SetVisibleCore): always use is_visible here, not
5164                 value.  If we use value, we can end up re-setting something
5165                 visible if, for instance, you do Control.Hide() in a delegate
5166                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
5167
5168         2007-02-20  Chris Toshok  <toshok@ximian.com>
5169
5170                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
5171                 the message we need.  PeekMessage returning false should not be a
5172                 condition under which we exit the loop.
5173
5174         2007-02-15  Chris Toshok  <toshok@ximian.com>
5175
5176                 * Control.cs (Refresh): only refresh if we've got a handle and are
5177                 visible.
5178                 (CreateAccessibilityInstance): CreateControl() here.
5179                 (UpdateChildrenZOrder): complicate the code loop even more by
5180                 taking into account controls that haven't had their handle
5181                 created, and those that aren't visible.  But on the flip side,
5182                 simplify the code by splitting it into two loops.  one which
5183                 builds up the list of child controls we're interested in, and the
5184                 other that sets the z order of those children.
5185
5186         2007-02-14  Chris Toshok  <toshok@ximian.com>
5187
5188                 * Control.cs: Control.AccessibilityObject causes the control to be
5189                 created, not just the handle.
5190
5191         2007-02-14  Chris Toshok  <toshok@ximian.com>
5192
5193                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
5194                 problem on X where a window might have its handle created (and be
5195                 visible) while the window is unmapped.  calling XConfigureWindow
5196                 on an unmapped window is bad, and generates X errors.
5197
5198         2007-02-13  Chris Toshok  <toshok@ximian.com>
5199
5200                 * Control.cs (CreateHandle): don't loop over our children setting
5201                 their parent here.  do it when in WndProc when we're shown.
5202                 (UpdateChildrenZOrder): make this internal so we can call it from
5203                 ScrollableControl.
5204                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
5205                 creating its handle.  Also, remove the calls to PerformLayout from
5206                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
5207                 OnVisibleChanged only seems to be called directly here for the
5208                 toplevel control.  It's propagated down the window hierarchy by
5209                 calls to child.OnParentVisibleChanged.
5210                 (OnVisibleChanged): don't do layout here - it's done (oddly
5211                 enough, according to a glance at stack traces on ms.net..) in
5212                 ScrollableControl.
5213                 
5214                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
5215                 z order of our children before calling PerformLayout.
5216
5217         2007-02-12  Chris Toshok  <toshok@ximian.com>
5218
5219                 [big change, fixes #80020]
5220                 
5221                 * AccessibleObject.cs: we need to make owner internal again to fix
5222                 some of ControlAccessibleObject.
5223
5224                 * Control.cs: lots of changes here.  add support for WM_CREATE,
5225                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
5226                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
5227                 we create child controls.  leave the MonoTODO's for the
5228                 accessibility calls, but fix the exceptions so the tests pass.
5229
5230                 Add the InvalidOperationExceptions to Invoke methods, and remove a
5231                 couple of InvokeInternal methods we aren't using.
5232                 
5233                 Also, add a couple of CreateHandle calls in places where we know
5234                 the handles are being created but our code doesn't reference
5235                 .Handle.
5236
5237                 Make SetVisibleCore call OnVisibleChange if the handle isn't
5238                 created.  If the handle is created, we rely on XplatUI.SetVisible
5239                 generating the event synchronously.
5240                 
5241                 Lastly, make sure we don't use this.Handle inside CreateHandle,
5242                 because we can call back into client (and that code can dispose of
5243                 the control).
5244
5245                 * XplatUIStructs.cs: misc/cleanup.
5246
5247                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
5248                 although we don't populate the wParam properly.
5249                 (CreateWindow): generate WM_CREATE.
5250                 (MapWindow,UnmapWindow): make these calls synchronous, at great
5251                 performance expense (particularly in the unmap case), to match
5252                 win32 behavior.
5253
5254                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
5255                 to call it.
5256                 (set_MdiParent): don't recreate the handle unless it's been
5257                 created already.
5258                 
5259                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
5260                 it's created.
5261
5262                 * NativeWindow.cs: this is probably the weirdest part of the
5263                 patch.  We need a way to link up the window being created to the
5264                 WM_CREATE message.  Since we can only be creating one window at a
5265                 time on a given thread, we keep track of a per-thread reference so
5266                 we can dispatch it properly.  We also need to keep track of the
5267                 Hwnd currently being created so that the win32 backend doesn't
5268                 have problems.
5269                 
5270                 * XplatUIWin32.cs: a similar change to the one we made in
5271                 NativeWindow.cs.
5272
5273 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5274
5275         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
5276         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
5277         to draw the menu shortcut string.
5278
5279 2007-03-07  Jackson Harper  <jackson@ximian.com>
5280
5281         * TreeNode.cs: Add the 2.0 collapse method.
5282
5283 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5284
5285         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
5286
5287 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5288
5289         * DataGridView.cs: Change DataSource will clear column and row
5290         lists. Call Invalidate() to reflect DataSource change.
5291
5292 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5293
5294         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
5295         and a new row is added to it.
5296
5297 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5298
5299         * DataGridView.cs: Add columns when DataSource is en empty list but
5300         is a System.Data.DataView (from a System.Data.DataTable).
5301
5302 2007-03-06  Andreia Gaita  <avidigal@novell.com>
5303
5304         * Label.cs: Implement AutoEllipsis (2.0)
5305
5306 2007-03-06  Jackson Harper  <jackson@ximian.com>
5307
5308         * TreeView.cs: Implement 2.0 TopNode setter property.
5309         - Use a local var instead of the skipped_nodes field for computing
5310         how many nodes to skip.  Otherwise we won't scroll because the
5311         valuechanged handler checks if skipped_nodes is equal to the new
5312         value.
5313         - Implement 2.0 Sort method.
5314         - Add useless 2.0 DoubleBuffer property
5315         - Implement 2.0 LineColors property.  Lets you change the color of
5316         the lines in the tree. Terribly useful for creating non cohesive
5317         desktops.
5318         - Implement 2.0 image key feature.
5319
5320 2007-03-06  Jackson Harper  <jackson@ximian.com>
5321
5322         * TreeView.cs: We can't get the bounds of the nodes before raising
5323         the AfterSelect event, because that event could change the node's
5324         bounds (scrolling, font change, etc).
5325
5326 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5327
5328         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
5329         * Form.cs: Don't recreate handle when creating FormWindowManager, just
5330           update window styles. In CreateParams us VisibleInternal instead of
5331           VIsible to get the actual visible flag set for this form.
5332         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
5333           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
5334           handle the case when the form is already maximized, in which case
5335           it should be restored. Fixes #81043.
5336
5337 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5338
5339         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
5340
5341 2007-03-05  Jackson Harper  <jackson@ximian.com>
5342
5343         * TreeViewHitTestInfo.cs: implement.
5344
5345 2007-03-05  Jackson Harper  <jackson@ximian.com>
5346
5347         * InternalWindowManager.cs: class status fix.
5348
5349 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5350
5351         * InternalWindowManager.cs: All windows that have a parent
5352         are confined to their parent when they're being moved.
5353         Fixes #80822.
5354
5355 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
5356
5357         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
5358         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
5359
5360 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5361
5362         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
5363           buttons invisible before deciding which ones should be visible
5364           (fixes minimize/maximize buttons showing up in toolwindows). Remove
5365           an unused variable.
5366         * InternalWindowManager.cs: Remove warning.
5367
5368 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5369
5370         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
5371         to throw an InvalidOperationException is virtual mode is being used.
5372
5373 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5374
5375         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
5376         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
5377         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
5378         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
5379         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
5380         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
5381
5382 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5383
5384         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
5385           driver.KeyboardDelay from XplatUI.KeyboardDelay 
5386         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
5387           (patch by Sergey Volk)
5388
5389 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5390
5391         * ToolWindowManager.cs: Added, contains logic for
5392           tool windows.
5393         * CreateParams.cs: Add a few helper methods and an
5394           internal variable to know which control the CreateParams belongs
5395           to.
5396         * Control.cs: Call Form.ChangingParent when the
5397           parent is about to be changed.
5398         * XplatUIX11.cs: DeriveStyles (): Set
5399           caption_height for all windows that have captions and are children.
5400           Update to use ToolWindowManager instead of InternalWindowManager
5401           for ToolWindows.
5402         * XplatUIWin32.cs: Set fake window styles for all
5403           windows that have window managers.
5404         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
5405           now duplicated for mdi windows when they are
5406           maximized, first for the buttons the window itself has, then for
5407           the buttons that appear in the menu bar. Makes things a little
5408           easier). Updated UpdateWindowDecorations, SetWindowState and the
5409           mouse eventhandlers accordingly.
5410         * Form.cs: Add ChangingParent (), contains the
5411           logic of what should happen when the parent changes. In MdiParent
5412           don't set things that ChangingParent () is doing. When handling
5413           WM_CLOSE, we can close the form if there are any other modal forms
5414           and the current form is a descendent of the modal form.
5415         * InternalWindowManager.cs: A lot of refactoring,
5416           the title buttons are now extracted to a separate container class
5417           that takes care of all button code (clicks, tooltips, etc). Moved
5418           Iconic|Maximized|Normal Bounds properties to this class from
5419           MdiWindowManager, so that the window state logic can succeed for
5420           other than mdi wm's. Implemented general window state change logic.
5421           Moved CreateButtons to ThemeWin32Classic, since the theme might
5422           override which buttons are available when as well as the exact
5423           location.
5424         * FormWindowManager.cs: Added, contains logic for
5425           normal forms.
5426         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
5427           which buttons go where (and if they are at all visible). 
5428           Removed special handling of maximized windows, since they aren't special. 
5429           In DrawManagedWindowDecorations don't try to draw the text if it is
5430           empty.
5431         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
5432           use whatever the wm gives us.
5433
5434 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5435
5436         * ButtonBase.cs: Add 2.0 properties.
5437         * Button.cs: Override Draw for 2.0.
5438         * Control.cs: Add Entered and Selected properties.
5439         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
5440         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
5441         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
5442         buttons.
5443         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
5444
5445 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5446
5447         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
5448
5449 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5450
5451         * XplatUIWin32.cs: Register a new class with Windows each time we get
5452         a new ClassStyle.  [Fixes bugs #79432, #80817]
5453         * Controls.cs: Set the correct ClassStyle in CreateParams.
5454         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
5455
5456 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
5457
5458         * ListView.cs: Add fireEvent argument to ReorderColumn since the
5459         ColumnReordered event must not be signaled when modifying DisplayIndex
5460         of a ColumnHeader. Added internal ReorderColumns method which takes
5461         care of drawing, and updating the internal DisplayIndex of the
5462         ColumnHeader. Added AddColumn method which is invoked from
5463         ColumnHeaderCollection when adding or inserting columns, and which
5464         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
5465         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
5466         Recalculated dispay indices after removing a ColumnHeader.
5467         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
5468         match MS. Allows last display index to be returned after ListView
5469         is disposed. Update actual location of ColumnHeader when DisplayIndex
5470         is modified.
5471
5472 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
5473
5474         * LinkLabel.cs: Improve CalcTrimRectangle.
5475         
5476         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
5477
5478 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5479
5480         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
5481         get rectangle as a result value.
5482
5483 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5484
5485         * LinkLabel.cs: Theres some diferences between rectangle return from 
5486         MeasureCharacterRanges and the area used for DrawString to fix this 
5487         CalcMeasurementFactor method was created, it calcules the diferences
5488         to be use later to adjust rectangle in draw operations. Fixes #80473.
5489         
5490         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
5491         to adjust draw rectangle.
5492
5493 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5494
5495         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
5496         text and some other changes to reduce and optimize source code.
5497
5498 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5499
5500         * RadioButton.cs: Implement 2.0 event.
5501         * RelatedImageListAttribute.cs: Implement new class.
5502
5503 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5504
5505         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
5506
5507 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5508
5509         * CheckBox.cs: Implement 2.0 functionality.
5510
5511 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5512
5513         * ListView.cs: Refactor Add and AddRange methods of
5514         ListViewItemCollection, to not update the ListView
5515         everytime an item is added in AddRange. Also move the update
5516         code to a new CollectionChanged method, and call it
5517         from other methods that need it as well (this should also fix some
5518         bugs when Sorting is used).
5519
5520 2007-02-27  Jackson Harper  <jackson@ximian.com>
5521
5522         * TextControl.cs: Try to never let the caret stay in a non-text
5523         tag.
5524         * TextBoxBase.cs: Update the caret.
5525
5526 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
5527
5528         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
5529         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
5530         delete POINT structure, duplicate of one in XplatUIStructs.
5531         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
5532
5533 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
5534
5535         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
5536         edit box since otherwise the Label would immediately be set (even if
5537         the user did not modify the label). In OnKeyDown set Handled to true
5538         if Return or Escape was pressed. In ColumnHeaderCollection unlink
5539         columns that are to be removed. In ListViewItemCollection unlink items
5540         that are to be removed.
5541
5542 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
5543
5544         * TextRenderer.cs: If we set a GDI clip region, we need to clear
5545         it when we are done.  [Fixes bug #80949]
5546
5547 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5548
5549         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
5550
5551 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5552
5553         * ListView.cs: I forgot to commit the changes for ListView 
5554         in my previous patch.
5555
5556 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5557
5558         * Clipboard.cs: Partially implement an overload of SetDataObject.
5559         * Form.cs: Implement ShowWithoutActivation.
5560         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
5561
5562 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5563
5564         This is a first set of changes to make the Virtual mode works,
5565         by avoiding the retrieval of ListViewItem instances until
5566         draw time.
5567
5568         * ListView.cs: Store item position in the ListView instead of the
5569         ListViewItem, this way we don't request the Bounds property of
5570         ListViewItem inside the ListView calculations, as well as cache the item
5571         size in item_size field. Store indexes instead of ListViewItem
5572         instances in the matrix used by icon view. Add a ItemMatrixLocation
5573         struct to hold the row and col info of the matrix info.
5574
5575         * ListViewItem.cs: Don't store the location anymore, and only cache
5576         the rectangles for GetBounds. Use the ListView.GetItemLocation
5577         method to retrieve the actual location.
5578
5579 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5580
5581         * TextRenderer.cs: Add clipping support, thanks to George.
5582         [Fixes bug #80949]
5583
5584 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5585
5586         * ListViewItem.cs: Cancel label edit when item is removed from 
5587         ListView.
5588         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
5589         event before the edit textbox is displayed.  Added CancelEdit method
5590         which is used end to editing while ignoring the value set by the
5591         user. In EndEdit, set focus to ListView to avoid losing focus to
5592         other controls. In ListViewItemCollection.Clear, cancel editing of
5593         any of the items.  In Remove, cancel editing of item being removed.
5594         Avoid udplicate code by modifing RemoveAt to invoke Remove.
5595
5596 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5597
5598         * FileDialog.cs: Update FSEntry when move is successful. Fixes
5599         bug #80948.  
5600
5601 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5602
5603         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
5604         compatible with non X11 systems. Fixes #80901.
5605
5606 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5607
5608         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
5609         whether the item should be unselected and reselect. We do no want this
5610         when we're starting to edit the label. Do not fire the 
5611         SelectedIndexChanged event from ListView when its already been fired
5612         by modifying ListViewItem.Selected. Fixes bug #80943.
5613
5614 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5615
5616         * TextRenderer.cs: Previos commit logic was backwards.
5617
5618 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5619
5620         * TextRenderer.cs: Don't add padding on MeasureText if we were
5621         sent the NoPadding flag.
5622
5623 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5624
5625         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
5626         after DrawButton. To prevent image overlaps button borders SetClip and 
5627         ResetClip added before and after draw image. Fixes #79129.
5628
5629 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5630
5631         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
5632         window size, it fix problem when you run under win32 that theres
5633         Size diferent than ClientSize. Also fix controls size and positions
5634         to mimic Win32. Fixes #80837.
5635
5636 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
5637
5638         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
5639         menu area to fix some problems for non X11 systems. Fixes #80613.
5640
5641 2007-02-22  Jackson Harper  <jackson@ximian.com>
5642
5643         * TreeNode.cs: When a node is expanded, set its is_expanded flag
5644         even if it doesn't have any children.
5645
5646 2007-02-22  Jackson Harper  <jackson@ximian.com>
5647
5648         * TreeView.cs: Calculate the top node 'on the fly', this
5649         eliminates issues where you need to click on the tree before
5650         scrolling it to get the top node computed correctly.
5651         * TreeNodeCollection.cs: We don't need to mess with the top node
5652         anymore.
5653
5654 2007-02-22  Jackson Harper  <jackson@ximian.com>
5655
5656         * DataGridViewRow.cs: Fix typo so height can actually be set.
5657         Patch by Peter Grimm.
5658
5659 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5660
5661         * FileDialog.cs: Fixed support for renaming files and directories.
5662         * ListView.cs: Do not lose focus when edit is canceled. Process
5663         Escape as regular key (to prevent closing of dialogs).
5664
5665 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5666
5667         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
5668         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
5669
5670 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5671
5672         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
5673         did not modify label.
5674         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
5675         modified the text. Reset Label when user presses Escape in edit mode.
5676         Move focus to ListView after having cancelled or finished editing the
5677         label.
5678
5679 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
5680
5681         * ComboBox.cs: Removed unnecessary initializations. Marked items field
5682         private. Clear textbox when Text is set to null and SelectedIndex is
5683         already -1.
5684         * FileDialog.cs: Removed unnecessary initializations. Removed 
5685         workarounds for ComboBox bugs that are now fixed. Modified
5686         DefaultExt, InitialDirectory and Title property to change null to
5687         zero-length string in getters. Avoid directly accessing fields.
5688
5689 2007-02-20  Jackson Harper  <jackson@ximian.com>
5690
5691         * TextControl.cs: Remove RecalAlignments call, that was some
5692         debugging leftovers.
5693         - Don't use the line indent when we shouldn't.
5694         * RichTextBox.cs: Add support for paragraph left indents.
5695
5696 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5697
5698         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
5699         Seems like the class status pages doesn't catch params differences.
5700
5701 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5702
5703         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
5704
5705 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5706
5707         * ComboBox.cs: Setting Text should have no effect if item text of
5708         selected item exactly matches value. First lookup text using
5709         case-sensitive comparison, and fallback to case-insensitive comparison.
5710         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
5711         allow startIndex to be last index. Changed ArgumentOutOfRangeException
5712         paramname to match MS. Restart from first item if string is not found
5713         after startIndex. Fixed paramname of ArgumentNullException that is
5714         thrown for null value in ObjectCollection.Contains.
5715
5716 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5717
5718         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
5719
5720 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5721
5722         * ListControl.cs: In SelectedValue use value.Equals to compare for
5723         equality instead of ==, otherwise it will fail for strings.
5724         Fixes #80794.
5725
5726 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5727         
5728         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
5729         since the caret won't show up unless ShowSelection is true. 
5730         Fixes #80795.
5731
5732 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5733
5734         * Application.cs: When disabling all forms but the main form, do not
5735           disable any descendants of the main form (such as mdi children or
5736           other parented forms). Fixes #80822 on Windows.
5737         * Form.cs: If we have a parent, set the WS_CHILD style.
5738         * Control.cs: Update the window styles if the control whose parent has
5739           changed is a form (the WS_CHILD style has to be switched).
5740
5741 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5742
5743         * XplatUIStructs.cs: MsgUIState structure added.
5744
5745 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5746
5747         * FileDialog.cs: Removed need for separate fileName field. On 2.0
5748         profile, do not check filename(s) for illegal character if filename(s)
5749         were set non-interactively but always check on 1.0 profile. Fixed NRE
5750          in DefaultExt and only strip off first leading dot. Improve exception
5751         message when invalid Filter is set. Do not ignore InitialDirectory if
5752         it does no exist. Store specified Title, and if empty use default
5753         title (depending on type of dialog). Added an internal DialogTitle 
5754         property for retrieving dialog title. Fixed logic of displayed dir to
5755         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
5756         string as its buggy.
5757         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
5758         FileName is a zero-length string (it can never be null). Override 
5759         DialogTitle property to set default title of dialog box.
5760         * SaveFileDialog.cs: Override DialogTitle property to set default
5761         title of dialog box.
5762
5763 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5764
5765         * FileDialog.cs: Modify default text of filename and filetype labels
5766         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
5767         after we've updated the SelectedIndex. Fixes part of bug #80887.
5768         * SaveFileDialog.cs: Set text of filetype label.
5769
5770 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5771
5772         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
5773         label field. Needed by latest Jackson's fixes for ListView.
5774
5775 2007-02-16  Andreia Gaita  <avidigal@novell.com>
5776
5777         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
5778         print preview images.
5779
5780 2007-02-16  Jackson Harper  <jackson@ximian.com>
5781
5782         * ListView.cs: Make AfterLabelEdit work correctly.
5783         * FileDialog.cs: After changing the name of the folder, we have to
5784         make sure that it is created, or that we pop up an error because
5785         it already exists.
5786
5787 2007-02-16  Jackson Harper  <jackson@ximian.com>
5788
5789         * X11Dnd.cs: Implement aliases on mime handlers, so things like
5790         System.String are mapped to text.
5791         - Handle dataobjects, getting all the possible formats out of them
5792         - We dont need the drag event args before we give feedback. This
5793         allows feedback cursors to be immediate before selections have
5794         been converted.
5795
5796 2007-02-16  Jackson Harper  <jackson@ximian.com>
5797
5798         * TextBoxBase.cs: Modified the method for inserting images to
5799         taking a line and position instead of tag and position.
5800         * RichTextBox.cs: Handle PngBlip data by inserting the png image
5801         into the RTF file.
5802         * TextControl.cs: Allow images to be inserted as the first tag of
5803         a line.
5804         - Fix some off by one issues when we assume the first tag is a
5805         text tag, not an image tag.
5806
5807 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5808
5809         * ListView.cs: Set focus to ListView when ItemControl gets a
5810         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
5811         Fixes part of #80467.
5812
5813 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5814
5815         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
5816           validate Text input (if null or empty string reset Value to default
5817           value). Fixes #80830.
5818
5819 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5820
5821         * ListView.cs: Set owner as null for columns and items when
5822         Dispose is invoked. Fixes #80607.
5823
5824 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
5825
5826         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
5827         showing DropDowns, don't show a Grip when doing Flow layout.
5828         [This fixes the toolbox in PDN 2.72.]
5829         * ToolStripItem.cs: Add Anchor property and some internal properties to
5830         reduces needed changes to FlowLayout.
5831         * ToolStripOverflow.cs: Remove unused variable.
5832         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
5833         use it in the layout calculations.
5834
5835 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5836
5837         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
5838         reported in #79640.
5839         
5840         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
5841         size calculation.
5842
5843 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5844
5845         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
5846         MeasureString format, it can make button very large in some cases, it is
5847         strange but is what win32 do.
5848
5849 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5850
5851         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
5852         size calculation.
5853
5854         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
5855         rendering, the value is based on MenuAccessKeysUnderlined.
5856
5857 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5858
5859         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
5860         for most themes.
5861         
5862         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
5863         
5864         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
5865         and use MenuAccessKeysUnderlined instead.
5866
5867 2007-02-13  Andreia Gaita  <avidigal@novell.com>
5868
5869         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
5870         A selected control would not get a Focus call if:
5871                 - the default active control of the container is the same as
5872                   the one that was selected
5873                 - we are switching from one container to another
5874         Under these conditions, the container being selected already has
5875         an active_control, which is the same as the one being activated, 
5876         so set_ActiveControl would always return and not send the Focus
5877         call. Fix to check if the currently active control of the container
5878         is actually focused.
5879
5880 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
5881
5882         * StatusStrip.cs: Implement the spring layout.
5883         * ToolStripControlHost.cs: Make sure the hosted control's visibility
5884         always matches the host.
5885         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
5886         and TextAfterImage.
5887
5888 2007-02-13  Andreia Gaita  <avidigal@novell.com>
5889
5890         * Control.cs: Code reorganization only.
5891           - Reorganize the WndProc cases so that each case has it's own handling method, 
5892           to help with the no-line-numbering stack traces.
5893           - Formatting changes (it's vstudio's fault, really :p)
5894
5895 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5896
5897         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
5898           Thread.CurrentUICulture to match DateTimePicker's (and MS)
5899           behaviour.
5900
5901 2007-02-12  Jackson Harper  <jackson@ximian.com>
5902
5903         * RichTextBox.cs:
5904         * TextBox.cs: By default we have a non multiline document
5905         - use the multiline property instead of the internal variable
5906         * TextBoxBase.cs: Treat multiline and non multiline the same in
5907         most places.
5908         - Use the documents multiline flag instead of tracking it ourself
5909         * TextControl.cs: Attempt at getting multiline to match MS
5910         behavior.  Lines now track an offset, which is either their X or Y
5911         offset depending on whether or not we are in multiline mode.
5912         - Update all the methods to understand that lines have an X value.
5913         - Fix crash in Undo::Duplicate when empty lines are deleted.
5914
5915 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
5916
5917         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
5918         code moved to properties PreferredHeight and PreferredWidth. It solve the
5919         all problems when preferred sizes must be recalculated. Fixes #80801.
5920
5921 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
5922
5923         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
5924         font height when compatible_text_rendering is false. Partially fix #80801.
5925
5926 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5927
5928         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
5929
5930 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5931
5932         * Form.cs: Improved exception messages in ShowDialog.
5933
5934 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5935
5936         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
5937         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
5938         if not set. Fixes bug #80764. Avoid accessing current_settings field
5939         directly.
5940
5941 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
5942
5943         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
5944         false.
5945
5946         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
5947         public in 2.0 and for easy maintenance and dont break compatibility it is 
5948         internal in 1.1.
5949         
5950 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5951
5952         * ToolStripItem.cs: Implement using images from ImageList.
5953
5954 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5955
5956         * DateTimePicker.cs: Change default date-formatting culture from
5957           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
5958           seems to be the way MS does it.
5959
5960 2007-02-08  Andreia Gaita  <avidigal@novell.com>
5961
5962         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
5963         (the 6 was cut off on the right side)
5964
5965 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5966
5967         * Form.cs: Tell MenuStrips to close when the form is clicked.
5968         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
5969         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
5970         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
5971         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
5972         support for Overflow, where items that do not fit are automatically
5973         reparented to a drop down menu.
5974         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
5975         Also: fixes bug #80747.
5976
5977 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5978
5979         * ComboBox.cs: Remove warning (unused code).
5980         * ScrollableControl.cs: Remove warning for 1.1 profile.
5981
5982 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5983
5984         * Form.cs: Remove a warning.
5985
5986 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5987
5988         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
5989           'g' specifier, not documented anywhere, but seems to always show up
5990           as a single space (might have something to do with the DateTime 'g'
5991           specifier, which is the era format, but since DateTimePicker can't
5992           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
5993           won't crash if the format has an unmatched quote. Now shows
5994           single-character formats correctly. Fixes #80744.
5995
5996 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5997
5998         * StatusStrip.cs: Stretch property needs to call base.Stretch,
5999         not this.Stretch to fix stack overflow. [Fixes bug #80760]
6000
6001 2007-02-07  Chris Toshok  <toshok@ximian.com>
6002
6003         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
6004         background color.  it overwrites the background image we've
6005         already painted.  Fixes #80599.
6006
6007 2007-02-07  Chris Toshok  <toshok@ximian.com>
6008
6009         * DataGrid.cs: return immediately from Edit() when there are no
6010         columns.  Fixes #80662.
6011
6012 2007-02-07  Chris Toshok  <toshok@ximian.com>
6013
6014         * MessageBox.cs: fix #80625.  don't always show the Help button in
6015         2.0.  use the displayHelpButton parameter to determine if we
6016         should show it. Also, make the internal show_help field private.
6017
6018 2007-02-07  Chris Toshok  <toshok@ximian.com>
6019
6020         * Control.cs (SetVisibleCore): check in the proposed patch for
6021         80604, and set is_visible before calling CreateControl.
6022
6023 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
6024
6025         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
6026         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
6027         on it.
6028
6029 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
6030
6031         * MenuAPI.cs: hotkey_active internal field added, it is required because
6032         we need to know when hotkeys must be draw, before this change a keystate
6033         Navigating was used but we can have menu in navigating state without
6034         hotkeys. Fixes #80694.
6035         
6036         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
6037
6038 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6039
6040         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
6041           corresponding events and methods to be internal for 1.1 profile and
6042           public for 2.0 profile (required by SizeGrip).
6043         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
6044           implicit control list). Don't set the size nor the location of the
6045           SizeGrip anymore as it's not needed.
6046         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
6047           draw directly on the captured control (fixes #80656). Removed
6048           ShowGrip (it wasn't used anywhere), redraw (always true), added
6049           GetDefaultSize and GetDefaultRectangle to calculate defaults.
6050         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
6051           be called from SizeGrip.
6052
6053 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6054
6055         * Timer.cs: Throw ArgumentException if Interval <= 0.
6056
6057 2007-02-05  Jackson Harper  <jackson@ximian.com>
6058
6059         * TreeView.cs: We need to check scrollbar visibility when window
6060         visibility is updated, because non visible trees don't ever add
6061         scrollbars.
6062         * Cursor.cs: We want the override cursor to be reset to NULL when
6063         we set current cursor to the default cursor.
6064
6065 2007-02-05  Jackson Harper  <jackson@ximian.com>
6066
6067         * TextControl.cs: Don't have crlfs when we are non multiline.
6068         - Consolidate the line position.
6069
6070 2007-02-05  Jackson Harper  <jackson@ximian.com>
6071
6072         * X11Keyboard.cs: BACK+CTRL gets a special char code.
6073
6074 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6075
6076         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
6077           handling LeaveNotify->NotifyUngrab in order to send
6078           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
6079           after calling XUngrabPointer, so we call WindowUngrabbed directly
6080           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
6081         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
6082           MouseCaptureChanged correctly. Also create handles if changing
6083           Capture (matches MS behaviour).
6084
6085 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6086
6087         * SizeGrip.cs: Make the last change 2.0 only.
6088
6089 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6090
6091         * SizeGrip.cs: If resizing and the capture is lost, revert any size
6092           changes to initial size (fixes #80597).
6093
6094 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6095
6096         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
6097
6098 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6099
6100         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
6101           background) and only allow dragging if enabled. This way the
6102           sizegrip can be used to fill the open square that otherwise would
6103           have been shown in the bottom right corner of ScrollableControl
6104           when ScrollableControl is not suppose to support sizing.
6105         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
6106           sizegrip is shown and enabled, and hook up with necessary events.
6107
6108 2007-02-01  Chris Toshok  <toshok@ximian.com>
6109
6110         * DataGridTextBoxColumn.cs: clean up the
6111         GetFormattedString/GetColumnValueAtRow combination of functions.
6112         Also fix UpdateUI, and the initial state of
6113         IsInEditOrNavigateMode.
6114
6115         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
6116         aren't supposed to scroll the textbox here, we're supposed to
6117         scroll the datagrid.
6118
6119 2007-02-01  Chris Toshok  <toshok@ximian.com>
6120
6121         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
6122         setting the position.
6123
6124 2007-02-01  Chris Toshok  <toshok@ximian.com>
6125
6126         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
6127         here, since the most recent focus fixes keep us from generating
6128         the Leave event when our textbox gets focus.
6129         (Edit): we should be passing null for the column style's
6130         instantText parameter.
6131         
6132 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
6133
6134         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
6135         raised.  Fixes menu text/icons not showing up in PDN.
6136
6137 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6138
6139         * Control.cs: Remove code in constructor that makes every
6140         control with WS_CHILD set have initial location -1, -1.
6141
6142 2007-01-31  Jackson Harper  <jackson@ximian.com>
6143
6144         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
6145         XplatUIX11.
6146         * XplatUIX11.cs: Give teh keyboard to teh dnd.
6147
6148 2007-01-31  Jackson Harper  <jackson@ximian.com>
6149
6150         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
6151         - Remove some debug code.
6152
6153 2007-01-31  Jackson Harper  <jackson@ximian.com>
6154
6155         * XplatUIX11.cs: If you set the override cursor during a grab, it
6156         should actually override the grab cursor.  This comes into play
6157         when you are setting custom cursors in a DND feedback method.
6158
6159 2007-01-31  Jackson Harper  <jackson@ximian.com>
6160
6161         * X11Dnd.cs: Add support for handling the QueryContinue and
6162         GiveFeedback events.
6163         - Cancel drag and drop actions when the escape key is clicked.
6164         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
6165         can handle the ESCAPE key.
6166         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
6167         done when dnd events are continued after the button is released.
6168         - Add a new helper method so that dnd can translate key events.
6169
6170 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
6171
6172         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
6173         make it more obvious what is happening.
6174
6175 2007-01-30  Jackson Harper  <jackson@ximian.com>
6176
6177         * XplatUIX11.cs: Don't break when handling button release in drag
6178         and drop operations. We need that BUTTONUP message to get through
6179         so capture is released.
6180         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
6181         this is handled automatically when the mouse is down.
6182
6183 2007-01-30  Jackson Harper  <jackson@ximian.com>
6184
6185         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
6186         is closed, so we need to make sure that we aren't changing the
6187         dialog result when the OK (Open or Save) button has been clicked
6188         and we are closing the window ourselves.  Note we don't need to
6189         worry about the cache being written in this case, because it was
6190         already done in the previous FilOk call.
6191
6192 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6193         
6194         * DateTimePicker.cs: Remove a warning.
6195         * ComboBox.cs: Remove a couple of warnings.
6196
6197 2007-01-29  Chris Toshok  <toshok@ximian.com>
6198
6199         * XplatUIX11.cs: don't crash, and remove the icon if the user has
6200         set one, if SetIcon is passed a null icon.
6201
6202 2007-01-29  Andreia Gaita  <avidigal@novell.com>
6203
6204         * TextBox.cs: Redraw when the password characters changes
6205         * TextControl.cs: Check if textbox has a password char and draw 
6206         a line of password chars instead of the text in the line. LineTag gets 
6207         an extra Draw() method which allows document.Draw to override the text 
6208         that will be drawn. Removes 1024 char limitation on length of passworded 
6209         lines.
6210
6211 2007-01-29  Jackson Harper  <jackson@ximian.com>
6212
6213         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
6214         single chars is not.
6215
6216 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
6217
6218         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
6219         one pixel.  Fix a StackOverflowException caused by an overload wrongly
6220         calling itself.
6221
6222 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
6223
6224         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
6225         also remove ProcessArrowKey and put the code inside ProcessKeys.
6226
6227 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
6228
6229         * PaddingConverter.cs: Added.
6230
6231 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6232         
6233         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
6234         ShowPanels is false (fixes #80600). Only draw up to 127 characters
6235         of text (fixes #80601). For panels clip the text to draw to the
6236         panel (fixes #80603).
6237
6238 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6239
6240         * ComboBox.cs: Fixed implementation of ResetText.
6241
6242 2007-01-25  Jackson Harper  <jackson@ximian.com>
6243
6244         * TextControl.cs: For the last char of a line we need to use the
6245         line size, not that chars width, since it won't actually be
6246         computed since the right side of a char is based on the start of
6247         the left side of the next char, and the next char does not exist.
6248
6249 2007-01-25  Chris Toshok  <toshok@ximian.com>
6250
6251         * Splitter.cs: fix the new unit tests, and reindent some switch
6252         statements.
6253
6254 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6255
6256         * ComboBox.cs: Implemented 2.0 methods and events.
6257         * TextBoxBase.cs: Added OnTextUpdate, so that
6258         ComboBox.ComboTextBox can inform ComboBox of it.
6259
6260 2007-01-25  Jackson Harper  <jackson@ximian.com>
6261
6262         * TextControl.cs: Respect ShowSelection when deciding whether or
6263         not to display the caret, this allows comboboxes to have carets
6264         when the combotextbox does not have focus.
6265
6266 2007-01-25  Jackson Harper  <jackson@ximian.com>
6267
6268         * TextControl.cs: Add a Suspend/Resume for updating, basically the
6269         same as the Suspend/Resume for recalc, except this will do actual
6270         Invalidates.
6271         - New Undo manager, works much like the MS version.
6272         - Implemented Redo
6273         * TextBoxBase.cs: The Cut operation is undoable.
6274
6275 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6276         
6277         * TextBoxBase.cs: Don't antialias text. Makes it look way better
6278         on Windows (no difference on Linux).    
6279
6280 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6281
6282         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
6283         we don't want to activate any windows. Fixes #79433.
6284
6285 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
6286
6287         - ButtonBase.cs: Fix capitalization of parameter: disposing.
6288         [Fixes bug #80609]
6289
6290 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
6291
6292         * FileDialog.cs:
6293         - Move to using System.ComponentModel.EventHandlerList
6294         - Replace Refresh with Invalidate
6295         - Clear the mime filecache on closing
6296         - Some other memory reducing work. After beeing closed FD now uses
6297           only about 300 KB for the fdo mime stuff plus the memory of the
6298           cached icons.
6299         * Mime.cs: Changed coding style and removed unnecessary commented
6300         code. Some more memory memory reducing work.
6301
6302 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6303
6304         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
6305         a few other missing 2.0 properties.
6306         * Theme.cs: Added DrawFlatStyleComboBox.
6307         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
6308
6309 2007-01-24  Chris Toshok  <toshok@ximian.com>
6310
6311         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
6312         wake_waiting flag, not just when there's data to be read.  if we
6313         don't, then future wakeup's won't reach us and we'll be doomed to
6314         wait for the entire 1 second timeout forever (unless there are X
6315         events to be had).
6316
6317 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6318
6319         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
6320         until you pass Items.Count, not Items.Count - 1 like 1.1.
6321
6322 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
6323
6324         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
6325
6326 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6327
6328         * ToolStripContainer.cs: The recent Dock fix exposed that I was
6329         adding the panels in the wrong order.
6330
6331 2007-01-24  Jackson Harper  <jackson@ximian.com>
6332
6333         * TextBoxBase.cs: When we move the caret we also need to move the
6334         selection, this fixes some random crashing after doing select
6335         text, unselect, delete a char, paste.
6336
6337 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6338
6339         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
6340
6341 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6342
6343         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
6344         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
6345         * ToolBar.cs: Force redraw in BackgroundImageChanged.
6346
6347 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6348
6349         * ToolBar.cs:
6350         - Implement support for vertical toolbars. Fixes #80539;
6351         - Call LayoutToolBar when resize, it fix some other problems in layout.
6352         - Rename requested_height to requested_size, as we can have width on it
6353         when toolbar is vertical.
6354         - Create a private property "Vertical" that uses Dock to verify when 
6355         toolbar is vertical or not.
6356         - Set ControlStyles when change Dock property.
6357         - Refactory in LayoutToolBar to have better variables names and to support
6358         vertical toolbars.
6359         - Fixes default value for ButtonSize when button count is equal zero, size
6360         must be (39, 36) test case writed.
6361
6362 2007-01-23  Chris Toshok  <toshok@ximian.com>
6363
6364         * Control.cs: fix the checks so that they work correctly for mdi
6365         parents/children.
6366
6367 2007-01-23  Chris Toshok  <toshok@ximian.com>
6368
6369         * Control.cs: ControlCollection seems to have super-secret
6370         abstraction breaking knowledge of Mdi containers.  allow MdiClient
6371         to add toplevel controls.
6372
6373 2007-01-23  Chris Toshok  <toshok@ximian.com>
6374
6375         * Control.cs: throw an ArgumentException if a toplevel control is
6376         added to our control collection from ControlCollection.Add, as
6377         well as from ControlCollection.IList.Add.  This fixes the
6378         ControlSetTopLevelTest.TestTopLevelAdd unit test.
6379
6380         Also, in ControlCollection.IList.Add, don't through an
6381         ArgumentNullException, throw an ArgumentException, when value ==
6382         null.  This matches MS.
6383
6384 2007-01-23  Chris Toshok  <toshok@ximian.com>
6385
6386         * BindingSource.cs: initial, incomplete, implementation of
6387         BindingSource.
6388
6389 2007-01-23  Jackson Harper  <jackson@ximian.com>
6390
6391         * TextControl.cs:
6392         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
6393         that I can fix a broken unit test (TextBoxTest::ClearUndo)
6394         
6395 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6396
6397         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
6398
6399 2007-01-23  Andreia Gaita  <avidigal@novell.com>
6400
6401         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
6402         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
6403         IndexOfKey() for 2.0
6404
6405 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6406
6407         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
6408         to prevent it from changing z-order.
6409         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
6410         leave UI updates in MdiWindowManager.
6411         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
6412         1 sized (NC handling goes weird on Linux otherwise).
6413         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
6414         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
6415         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
6416         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
6417         and SetWindowState(s) to allow for changing the size of an activated child
6418         before activating it (reduces a lot of flicker).
6419
6420 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6421
6422         * Form.cs: Changing FormBorderStyle has different semantics based
6423         on whether the Form is visible or not.  If not visible, don't change
6424         the Size.  But InvalidateNC needs to be called to force the window
6425         to pick up the changes and redraw itself.  [Fixes bug #80574]
6426
6427 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6428
6429         [Moma work]
6430         * ContainerControl.cs: ProcessCmdKey.
6431         * ErrorProvider.cs: new constructor.
6432         * Form.cs: fix AutoValidateEvent compiler warning.
6433         * Label.cs: fix OnAutoSizeChanged compiler warning.
6434         * MenuStrip.cs: fix CanOverflow compiler warning.
6435         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
6436         * TextBox.cs: Dispose.
6437         * ToolStrip.cs: CanOverflow, re-enable double buffering.
6438         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
6439         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
6440         * ToolStripItem.cs: Overflow, RightToLeft properties.
6441
6442 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6443
6444         * Form.cs: Move the layout of the main form to MdiWindowManager.
6445         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
6446         do a layout of the main window to update MdiClient's client area to
6447         the right area. Fixes #80533. Remove the calculation of nc size, 
6448         it was just wrong and the correct one is the same as for 
6449         InternalWindowManager. 
6450
6451 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
6452
6453         * Control.cs: Setting Anchor or Dock needs to reset the other
6454         to its default.  [Fixes bug #80556]
6455
6456 2007-01-20  Chris Toshok  <toshok@ximian.com>
6457
6458         * CheckedListBox.cs: class status changes.
6459
6460         * ScrollableControl.cs: same.
6461
6462         * RichTextBox.cs: same.
6463
6464         * ContainerControl.cs: same.
6465
6466         * ListView.cs: same.
6467
6468         * NotifyIcon.cs: same.
6469
6470         * MenuStrip.cs: same.
6471
6472         * RadioButton.cs: same.
6473
6474         * CheckBox.cs: same.
6475
6476         * PrintPreviewDialog.cs: same.
6477
6478         * Form.cs: same.
6479
6480 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
6481
6482         * TreeNode.cs: Apply Alan's patch for Name property.
6483
6484 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6485         
6486         * Form.cs: Implemented SizeGripStyle.
6487         * SizeGrip.cs: Check for minimum and maximum size for the
6488         control being resized and only resize if size has actually
6489         changed.
6490
6491 2007-01-19  Chris Toshok  <toshok@ximian.com>
6492
6493         * DataGridColumnStyle.cs: stop setting _readonly in the
6494         PropertyDescriptor setter.  fixes a unit test failure.
6495
6496         also, rename ParentReadOnly to TableStyleReadOnly, and have it
6497         just consult our table style (if we have one).  We don't need to
6498         consult the datagrid readonly attribute because that's passed in
6499         as the _ro arg to Edit.  this simplifies things a little.
6500         
6501         * DataGrid.cs: use CurrentColumn instead of
6502         current_cell.ColumnNumber just to simplify some of the code.
6503
6504         switch the order of some things in the CurrentCell setter to keep
6505         the previous cell from getting a textbox again -
6506         EnsureCellVisibility causes scrolling to happen, which calls Edit.
6507         So we need to set the new cell before calling it.
6508         
6509         call Edit in OnEnter, as does Microsoft.
6510         
6511         also, make sure the current table style isn't the one we create
6512         initially when checking to see if it's different than the one
6513         we're setting it to in BindColumns (this fixes #80421).
6514
6515         * GridTableStylesCollection.cs: table styles can have "" for a
6516         mapping name.  part of the fix for #80421.
6517
6518         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
6519         Edit significantly.
6520
6521 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6522
6523         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
6524         and less GDI object leaky-er.
6525
6526 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6527
6528         * LinkLabel.cs: Add opaque control style
6529
6530 2007-01-18  Jackson Harper  <jackson@ximian.com>
6531
6532         * TextControl.cs: Calculate width properly.
6533         - Don't store the tag's X offset, this can be figured out very
6534         easily.
6535         - When getting the caret tag make sure to get the last empty tag.
6536
6537 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6538
6539         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
6540         [Fixes bug #79959]
6541
6542         * Control.cs: Color.Empty shouldn't count for previous transparent
6543         redraw changes.
6544
6545 2007-01-18  Jackson Harper  <jackson@ximian.com>
6546
6547         * TextBox.cs:
6548         * RichTextBox.cs:
6549         * TextControl.cs: Starting to merge in some pieces of my older
6550         undo work.  Basically just some slight cleanup of the undo API.
6551
6552 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6553
6554         * TrackBar.cs: Fix signature of RightToLeftLayout.
6555         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
6556         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
6557         * Application.cs: Implemented UseWaitCursor.
6558
6559 2007-01-18  Jackson Harper  <jackson@ximian.com>
6560
6561         * TextControl.cs: We can't skip tags if any part of the tag is
6562         visible.
6563
6564 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6565
6566         * ContainerControl.cs: Override OnLayout.
6567
6568 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6569
6570         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
6571
6572         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
6573         everything else.
6574
6575 2007-01-18  Chris Toshok  <toshok@ximian.com>
6576
6577         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
6578         (leftover from the container_selected days, I'd wager).  fixes bug
6579         #80546.
6580
6581 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6582
6583         * Control.cs: Apply patch from George to fix the new testcase on
6584         bug #80451.  We can't just check for Color.Transparent, we need 
6585         to check if the back color's alpha channel is < 255.
6586
6587 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6588
6589         * Form.cs: Move setting show_icon = true to before the constructor
6590         so that the base constructor has that information when it calculates
6591         the form's size.  Was causing forms to be (6, 6) bigger than they
6592         were supposed to be.  Thanks for catching this Rolf!
6593
6594 2007-01-18  Jackson Harper  <jackson@ximian.com>
6595
6596         * TextControl.cs: When replacing a selection we need to invalidate
6597         from the initial selection start, because selection start is moved
6598         to the end of the replacement.
6599
6600 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6601
6602         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
6603
6604 2007-01-18  Chris Toshok  <toshok@ximian.com>
6605
6606         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
6607         I just added.
6608
6609 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
6610
6611         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
6612         layout methods and properties from ToolBarButton must be available
6613         into ToolBarButtonInfo.
6614
6615 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6616
6617         * Control.cs: If the control has a transparent background, we
6618         need to refresh it when it moves and when it's parent's background
6619         image changes.  [Fixes bug #80451]
6620
6621 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6622
6623         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
6624
6625 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6626
6627         * XplatUIWin32.cs: Implement proper double buffering for Windows.
6628         [Fixes bug #80447, and probably speeds up things as well]
6629
6630 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6631
6632         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
6633         * XplatUIWin32.cs: We need to recalculate NC size after changing 
6634         window style to toolwindow (otherwise the client rectangle will be
6635         3 pixels to small for some reason).
6636         * MdiWindowManager.cs: Revert NC size calculations to match how
6637         they are calculated only based on window styles (to match
6638         Win32AdjustWindowRectEx, since otherwise when setting size or 
6639         location, Control will call Win32AdjustWindowRectEx to update client 
6640         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
6641         calculate a different value of client size causing another paint 
6642         (and flickering))
6643         * InternalWindowManager.cs: When moving or resizing a window only
6644         update size or location if they actually changed.
6645         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
6646         (seems to match Windows behaviour better). Cleaned up 
6647         ManagedWindowDecorations to draw what's needed and nothing else
6648         (was drawing borders and lines where they shouldn't be)
6649         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
6650         (style = 0xFFFF) and takes into account caption height when 
6651         calculating window rectangle.   
6652
6653 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6654
6655         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
6656         can be added to toolbar multiple times, we need to maintain a list of 
6657         button information for each positions.
6658
6659 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6660
6661         * ToolBar.cs: Some small stetic changes.
6662
6663 2007-01-16  Jackson Harper  <jackson@ximian.com>
6664
6665         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
6666         that allow us to have nested recalc = false blocks.
6667         - Add paste support for images in the RichTextBox
6668         * RichTextBox.cs: flush the text after the color is changed, so
6669         the change takes effect.
6670         - Use SuspendRecalc
6671         - Some extra debugging info
6672         * TextControl.cs: Tags no longer track their length, it is just
6673         computed from the next tags length, this makes things a little
6674         simpler and reduces places that we have to track length changes.
6675         - Refactored the linetag class a little so we could make it
6676         a base class for different kinds of tags
6677         - Created a image tag, a tag that can have a single image inserted
6678         into it
6679         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
6680         that we can call suspend multiple times.
6681         - Add some debugging methods
6682
6683 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6684
6685         * MdiClient.cs: Add ActivatePreviousChild for 
6686         mdi child window navigation.
6687         * Form.cs: Use MdiClient.ActivateNextChild/
6688         ActivatePreviousChild instead of Form.SelectNextControl
6689         to select the next/previous child since 
6690         SelectNextControl doesn't do it in the same order
6691         as mdi children should do it.
6692
6693 2007-01-16  Chris Toshok  <toshok@ximian.com>
6694
6695         * Control.cs: remove container_selected field.
6696
6697 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6698
6699         * MdiClient.cs: Update main form's ActiveChild when
6700         updating keyboard focus for the mdi child.
6701
6702 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
6703
6704         * Control.cs: PreferredSize fix.
6705
6706         * Form.cs: Add several 2.0 events, properties, and methods.
6707
6708 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
6709
6710         * Form.cs: Provide meaningful message when MdiParent is assigned a
6711         Form that is not an MdiContainer.
6712
6713 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6714
6715         * MdiClient.cs: Update main form's ActiveChild when
6716         activating a mdi child.
6717
6718 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6719
6720         * MdiWindowManager.cs: Fix NRE when merging menus and main form
6721         doesn't have a menu.
6722
6723         * Form.cs: Request NCRecalc after creating a mdi child window.
6724         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
6725         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
6726         
6727         * MdiClient.cs: Add new method SendFocusToActiveChild that either
6728         sends keyboard focus to the active child, or to the MdiClient
6729         if there are no child forms.
6730         
6731 2007-01-15  Chris Toshok  <toshok@ximian.com>
6732
6733         * ListView.cs: drop the *Internal overrides, just do our work in
6734         ItemControl's WndProc instead.
6735
6736         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
6737         of the various controls, and forward the events properly (in the
6738         same manner as MS) from the textbox to the UpDown.  Also the
6739         ActiveControl of the UpDownBase gets set properly now.  Finally,
6740         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
6741
6742         * NumericUpDown.cs: set Text in the ctor.
6743
6744         * DomainUpDown.cs: call UpdateEditText in the ctor.
6745         
6746         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
6747         so even a Selectable = false textbox can be focused if you click
6748         in it.  Go figure.
6749
6750         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
6751         just add their handling in their respective WndProc's.  Also add
6752         an explicit FocusInternal method that doesn't consult CanFocus
6753         before calling Select(this).
6754
6755         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
6756         do our work in WndProc instead.
6757
6758         * TabControl.cs: same.
6759
6760         * ComboBox.cs: same.
6761
6762 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6763
6764         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
6765         Fixes #80006.
6766
6767 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
6768
6769         * ListViewItem.cs:
6770         * ThemeWin32Classic.cs: Don't draw the item text outside
6771         item bounds in Details view, as well as use trimming.
6772         Fixes bug #80376.
6773
6774 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6775
6776         * Form.cs: Implement Form.ShowIcon.
6777         
6778         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
6779         null, which when combined with the DlgModalFrame window style removes
6780         the icon from the title bar.
6781
6782 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6783
6784         * Control.cs: Call OnMouseClick after OnClick. (2.0)
6785
6786 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6787
6788         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
6789         menu when mdi child windows theres a menu, uses insert to get icon
6790         at first position. Partially fix #80006.
6791
6792 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6793
6794         * Clipboard.cs: Implement 2.0 methods.
6795
6796 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6797
6798         * Menu.cs: Implement Insert method of MenuItemCollection class
6799         to fix MenuMerge.
6800
6801 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6802
6803         * ListView.cs: Implement 2.0 FindItemWithText method.
6804
6805 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
6806
6807         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
6808         to calculate menu bar size. Fixes #80290.
6809
6810 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
6811
6812         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
6813
6814 2007-01-11  Chris Toshok  <toshok@ximian.com>
6815
6816         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
6817         initial form.
6818
6819 2007-01-11  Chris Toshok  <toshok@ximian.com>
6820
6821         * LinkLabel.cs: make sure to call base.Select in our Select method
6822         if it turns out we're going to be selected (i.e. if we have a link
6823         that is going to receive focus).  That way our container's
6824         ActiveControl is updated properly.
6825
6826 2007-01-11  Chris Toshok  <toshok@ximian.com>
6827
6828         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
6829         they have 1 or more links.  this fixes the crash gert reported.
6830
6831 2007-01-11  Andreia Gaita  <avidigal@novell.com>
6832
6833         * ContainerControl.cs: Remove ContainerSelected flag, not needed
6834         anymore.
6835
6836         * Control.cs (Controls.Add): Check if control to be added to the collection
6837         is a top level control, and throw an ArgumentException if it is.
6838         Remove ContainerSelectedFlag, not needed anymore.
6839
6840         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
6841         top most control doesn't activate the form. This fixes a problem in the
6842         MessageBox, where the default button wouldn't get focus because the form
6843         was activated before being Loaded - when the Owner is set, SetTopMost is
6844         called, and it would activate it.
6845
6846 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
6847
6848         * Button.cs: When clicked and setting the parent form's DialogResult,
6849         use FindForm instead of Parent, since parent could be a container
6850         control and not the Form.  Fixes bug #80495.
6851
6852 2007-01-10  Chris Toshok  <toshok@ximian.com>
6853
6854         * Form.cs: move the call to SendControlFocus into the same
6855         is_loaded check.
6856
6857 2007-01-10  Chris Toshok  <toshok@ximian.com>
6858
6859         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
6860         It breaks in the face of the new ActiveControl stuff, and should
6861         be unnecessary.
6862
6863         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
6864         activecontrol's focus if it's not already set, after we set
6865         ActiveControl, but before we call OnActivated.  Re-fixes #79667
6866         after the previous focus/active control fixes regressed it.
6867
6868         * Control.cs: reindent some code.
6869         
6870 2007-01-10  Chris Toshok  <toshok@ximian.com>
6871
6872         * Splitter.cs: clearing some outstanding changes from my tree.
6873         Replace all accesses (not writes) to the internal dock_style field
6874         with the Dock property.
6875
6876 2007-01-10  Chris Toshok  <toshok@ximian.com>
6877
6878         * Control.cs: make FireEnter, FireLeave, FireValidating, and
6879         FireValidated virtual.
6880
6881         * Form.cs: override and don't chain up calls to FireEnter and
6882         FireLeave.
6883
6884 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6885
6886         * ListView.cs: Add more text padding space when using
6887         auto resize for columns (the previous value didn't work fine).
6888
6889         * ThemeWin32Classic.cs: Update text position inside columns,
6890         to match the appeareance of .Net.
6891
6892         * ColumnHeader.cs: When using auto resize, only the Width should
6893         depend on the sub items, not the Height. Also, set width after
6894         auto resizing (the value of Width should never remain as -1 or -2).
6895
6896 2007-01-10  Chris Toshok  <toshok@ximian.com>
6897
6898         * Application.cs: fix compilation errors when debug is enabled.
6899
6900 2007-01-10  Chris Toshok  <toshok@ximian.com>
6901
6902         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
6903         add some nice ascii art pictures and explanation of the process).
6904         (GetMostDeeplyNestedActiveControl): new utility function we need
6905         because our ActiveControl can refer to a child container with its
6906         own ActiveControl.
6907
6908         * Form.cs (OnActivated): remove the call to SelectActiveControl
6909         from here, since you can override this method and not chain up,
6910         and winforms still sets the active control.
6911         (OnCreateControl): also remove the unnecessary SelectActiveControl
6912         call from here.
6913         (WndProc): it's actually called from the WM_ACTIVATE block, just
6914         before calling OnActivated.
6915
6916         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
6917         inside the else.  the ActiveControl setter will end up setting
6918         focus on @control.  This keeps us from setting it again (and
6919         generating an extra LostFocus/GotFocus pair).
6920         (Select (bool, bool)): reindent.
6921
6922 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
6923
6924         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
6925         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
6926         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
6927         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
6928         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
6929         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
6930         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
6931         ToolStripTextBox.cs: Another wave of corcompare work.
6932
6933 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6934
6935         * ColumnHeader.cs: Implement 2.0 AutoResize method using
6936         the Width property.
6937
6938         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
6939         methods by callling Column.AutoResize method on columns.
6940
6941 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
6942
6943         * Control.cs: Provide proper implementations of PreferredSize
6944         and GetPreferredSize (2.0).
6945
6946 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
6947
6948         * Form.cs: Remove one character (!) to make my previous OnClosing
6949         stuff work for modal windows like MessageBox.
6950
6951 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6952
6953         * ListView.cs:
6954         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
6955         ListView.Columns to get the last displayed column. Fixes #80452.
6956
6957 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
6958
6959         * Label.cs, LinkLabel.cs: Source code identation fixes.
6960
6961 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
6962
6963         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
6964         we dont need to invalidate only borders because when we invalidate four
6965         border lines the invalidate's generates a complete redraw of button, 
6966         because it now invalidate a complete rect some other redraws operations
6967         are fixed. Fixes #80196.
6968         
6969         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
6970         Remove ToolBarInvalidateEntireButton as it is not used.
6971
6972 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
6973         
6974         * Form.cs: Make sure that both OnClosing and OnFormClosing are
6975         called for 2.0 profile.
6976         * CloseReason.cs: Make class internal for 1.1.
6977
6978 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
6979
6980         * ToolStripManager.cs: Implement FindToolStrip functionality.
6981         * ToolStrip.cs: Register and unregister with ToolStripManager.
6982
6983 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
6984
6985         * Control.cs: This was messy.  2.0 moves much of ControlCollection
6986         to ArrangedElementCollection.  Implemented this with as few #if's as 
6987         possible (which is still too many).
6988
6989 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
6990
6991         * Control.cs: Implement SizeFromClientSize() [2.0].
6992
6993 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
6994
6995         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
6996         use Theme.BorderSize to calculate area instead of static value 1, 
6997         by the way use new BorderStaticSize instead     Border3DSize when 
6998         border_static is true. Fixes #79537.
6999         
7000         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
7001         
7002         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
7003         it is not needed.
7004
7005 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7006
7007         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
7008
7009 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7010
7011         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
7012         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
7013         
7014         * Hwnd.cs: 
7015         - border_static field added, it will used to define when a control 
7016         theres 3D border but it must be static (thin).
7017         - In GetWindowRectangle use Theme.BorderSize to calculate area 
7018         instead of static value 1, by the way use new BorderStaticSize instead
7019         Border3DSize when border_static is true.
7020
7021         * XplatUIX11.cs, XplatUIOSX.cs: 
7022         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
7023         
7024         * Theme.cs: BorderStaticSize field added.
7025
7026 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7027
7028         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
7029
7030 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7031
7032         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
7033         mimic same behavior than win32 that set border only in CreateParams,
7034         it fix problems under CreateParams overrides. Fix #79442 and partial
7035         fix #79537.
7036         
7037         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
7038         of thi control you must call recreate handle. 
7039         
7040         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
7041         need to do anything as RecreateHangle will take care about borders.
7042
7043 2007-01-05  Mike Kestner  <mkestner@novell.com>
7044
7045         * ListView.cs: hack to eliminate Lost/Got focus notifications on
7046         cycles between the ItemControl and parent.  Fixes #80388.
7047
7048 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7049
7050         * Control.cs: Lazy init layout engine. Do not directly use 
7051         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
7052
7053 2007-01-05  Chris Toshok  <toshok@ximian.com>
7054
7055         * DataGrid.cs: don't forceably rebind columns in SetDataSource
7056         unless our list manager has changed (i.e. unless we have reason to
7057         believe our columns have changed).  Fixes #80422.
7058         
7059         also, disable the call do BindColumns in
7060         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
7061         1.1 the event isn't raised in response to a column addition on a
7062         table.)
7063
7064 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7065
7066         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
7067         that inheritors can not call it if they choose.  Fixes bug #80456.
7068
7069 2007-01-05  Andreia Gaita  <avidigal@novell.com>
7070
7071         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
7072         doesn't blow up with a null exception on marshalling.
7073         
7074 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7075
7076         * Control.cs: Implement several 2.0 protected properties and methods.
7077         Ensure that all necessary events are being called when properties
7078         are set.
7079
7080 2007-01-05  Mike Kestner  <mkestner@novell.com>
7081
7082         * ListView.cs: implement PgUp/PgDn for Details view.  Also
7083         fixes First/LastVisibleIndex to use the item_control.ClientRect 
7084         instead of the parent control.  Fixes #80378.
7085
7086 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
7087
7088         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
7089           determine whether to use yard-pound or not (bug #78399).
7090
7091 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
7092
7093         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
7094         problems. So it is time to bring back the old popupbutton colors.
7095
7096 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7097
7098         * ColumnHeader.cs:
7099         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
7100         property by using the internal information of the
7101         columns order in ListView.
7102
7103 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
7104
7105         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
7106         Add 2.0 Tag properties.
7107
7108         * LinkArea.cs: Add 2.0 ToString method.
7109
7110 2007-01-03  Chris Toshok  <toshok@ximian.com>
7111
7112         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
7113         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
7114         when we're editing, which fixes #80047.
7115
7116 2007-01-03  Chris Toshok  <toshok@ximian.com>
7117
7118         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
7119         #80404.
7120
7121 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
7122
7123         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
7124         property and implementation.
7125
7126         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
7127         for MdiWindowListItem property.
7128
7129         * ToolStripDropDown.cs: Don't consider hidden menu items while
7130         laying out the menu.
7131
7132 2007-01-03  Andreia Gaita  <avidigal@novell.com>
7133
7134         * SendKeys.cs: window handle is not needed in win32, so just
7135         get the active window for X after parsing keys and don't use
7136         it when building the message; it is passed by parameter to the 
7137         Xplat method and used there to build the message instead. Also,
7138         wait for events to be processed on SendWait, as opposed to Send,
7139         which doesn't wait :) Playing with threads and Send() completely 
7140         hangs on ms.net, only SendWait() works.
7141         
7142         XplatUIX11.cs
7143         X11Display.cs: Check for valid window handle.
7144
7145 2007-01-03  Jackson Harper  <jackson@ximian.com>
7146
7147         * TextControl.cs: Need to prevent wrap calculations when replacing
7148         text (this was there before i removed it accidently).
7149         - Don't update the cursor during the positioning, just set it to
7150         selection_start at the end of the operaion.
7151
7152 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7153
7154         * Control.cs:
7155         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
7156         
7157 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7158
7159         * MonthCalendar.cs: Added Click and DoubleClick events again,
7160         but this time they only hide Control's Click and DoubleClick.
7161         
7162 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
7163
7164         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
7165         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
7166
7167 2007-01-02  Jackson Harper  <jackson@ximian.com>
7168
7169         * TextBoxBase.cs: We move the caret with the split now, so we
7170         don't need to explicitly move the caret after splitting.  This
7171         fixes the caret bumping down an extra line on Enter.
7172
7173 2007-01-02  Miguel de Icaza  <miguel@novell.com>
7174
7175         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
7176         2.72). 
7177
7178         * ScrollableControl.cs: Add Scroll event.
7179
7180 2007-01-02  Mike Kestner  <mkestner@novell.com>
7181
7182         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
7183         to fix all hdr height padding codepaths.  Fixes #80207.
7184
7185 2007-01-02  Chris Toshok  <toshok@ximian.com>
7186
7187         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
7188         setting it to the Control defaults anyway, and it being after the
7189         Dock set was screwing up layout.
7190         (set_Dock): don't short circuit out of setting base.Dock.  Also,
7191         no need to call UpdateStatusBar here, as it'll be re-layed out if
7192         it needs to be.
7193
7194 2007-01-02  Mike Kestner  <mkestner@novell.com>
7195
7196         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
7197         to header height for width == -1. Fixes the rest of #80207.
7198
7199 2007-01-02  Mike Kestner  <mkestner@novell.com>
7200
7201         * ListView.cs: rework the mouse event forwarding everaldo added
7202         to translate the coordinates to the parent control not
7203         raise the parent events until after we've done our work. Hover
7204         needs more work, in the case where HoverSelection is on, because
7205         the item control receives more than one MouseHover per Enter
7206         event, so we need to ensure only the "first" hover gets forwarded.
7207         Opening a minor bug for that.
7208
7209 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
7210
7211         * CheckedListBox.cs: Fixed SelectionMode to match MS.
7212         * ListControl.cs: Implemented AllowSelection property. Removed extra
7213         tabs.
7214         * ListBox.cs: Implemented AllowSelection property.
7215
7216 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7217
7218         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
7219         SelectedItem, it prevent for errors when you must disable item
7220         before perform click. Fixes #80409.
7221
7222 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7223
7224         * MenuAPI.cs: Prevent second level and beyond submenus to close
7225         until first level when move out side of popup.
7226         
7227 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7228
7229         * MenuAPI.cs:
7230         - Down submenu positin in three pixels.
7231         - Closes sub menu when mouse leaves from menu. Fixes #80402.
7232
7233 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7234
7235         * ThemeWin32Classic.cs:
7236         - Fix popup menu size adding one pixel on the top.
7237         - Down menu item border from two to one to mimic Win32.
7238         - Some source identation fixes. 
7239
7240 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7241
7242         * ThemeWin32Classic.cs: Use float numbers to calculate size and
7243         position of menu arrows, it fix wrong arrow size.
7244
7245 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7246
7247         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
7248         instead of line, it simplify draw operation and fix it using 3D
7249         borders to mimic Win32.
7250
7251 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
7252
7253         * StatusStrip.cs: Add implementation of the sizing grip.
7254
7255         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
7256         StatusStrip rendering.
7257
7258 2006-12-31  Chris Toshok  <toshok@ximian.com>
7259
7260         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
7261         override the layout style (anchor/dock) of the control.  assign to
7262         Dock instead.  Fixes bug #80416.
7263
7264         * ToolStrip.cs: same.
7265
7266 2006-12-31  Andreia Gaita  <avidigal@novell.com>
7267
7268         * ContainerControl.cs: Use ContainerSelected flag to check if 
7269         a Container is directly selected, or if Select is called on a 
7270         non-container. If a container is directly selected, focus events 
7271         should not be raised.
7272         Apply #80411 patch to throw exception on set_ActiveControl if 
7273         control is the same as the current one.
7274         
7275         * Control.cs: Use ContainerSelected flag (see above).
7276         Add invalidation check to raise event but not invalidate if 
7277         dimensions are 0.       
7278         Apply #80411 patch.
7279         
7280
7281 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
7282
7283         * MenuAPI.cs: After click, dont close popup menu when menu is
7284         ContextMenu. Fixes #80399.
7285
7286 2006-12-30  Chris Toshok  <toshok@ximian.com>
7287
7288         * ContainerControl.cs: make sure we throw the exception if the
7289         container control doesn't contain the control we're setting
7290         ActiveControl to.
7291
7292 2006-12-30  Chris Toshok  <toshok@ximian.com>
7293
7294         * Control.cs (SetTopLevel): fix the exception raised by
7295         SetTopLevel for child controls.
7296         (set_Anchor): call UpdateDistances when setting the anchor type.
7297         This fixes bug #80336.
7298
7299 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7300
7301         * Theme.cs: For now, revert back to 8pt font.
7302
7303 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
7304
7305         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
7306         Fixes #80395.
7307
7308 2006-12-29  Chris Toshok  <toshok@ximian.com>
7309
7310         * Control.cs: reorder the code in OnResize to give the same event
7311         ordering as MS.
7312
7313 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7314
7315         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
7316         TileHorizontally and TileVertically.
7317         
7318 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
7319
7320         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
7321         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
7322         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
7323         Corrected copyright and email adress.
7324
7325 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7326
7327         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
7328         of Exception in FullPath property if no TreeView is associated with
7329         the TreeNode.
7330
7331 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7332
7333         * Theme.cs: Marked default_font as private, and initialize it in ctor
7334         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
7335         on 2.0 profile.
7336         * ThemeGtk.cs: Removed default_font intialization.
7337         * ThemeWin32Classic.cs: Removed default_font initialization.
7338
7339 2006-12-28  Chris Toshok  <toshok@ximian.com>
7340
7341         * Control.cs: fix a couple of place where we were creating handles
7342         more aggressively than we should be.  Fixes ControlRefresh unit
7343         tests.
7344
7345 2006-12-28  Chris Toshok  <toshok@ximian.com>
7346
7347         * Control.cs: contrary to what the comment said, Control.Dock does
7348         not supercede Control.Anchor - the last one you assign to decides
7349         the layout behavior.  so we need to keep track of which was the
7350         last set.  Also, fix some of the affected property arguments in
7351         PerformLayout calls, and remove an redundant parent.PerformLayout
7352         call in OnResized.
7353
7354         Add a VisibleInternal property, which returns is_visible.  We
7355         can/should get rid of all the usage of this field elsewhere.
7356
7357 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7358         
7359         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
7360         control style, not DoubleBuffer. Added UseDoubleBuffering property
7361         that indicates whether doublebuffering is enabled and supported.
7362         (comment from and code based on Gert Driesen's patch in #80324).
7363         Fixes #80324.
7364
7365 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7366         
7367         * Control.cs: Fixed a NRE.
7368
7369 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7370
7371         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
7372         for 2.0.
7373
7374 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7375
7376         * Control.cs: Rewrote double buffering, now a seperate
7377         class handles all the buffering, no Graphics is disposed of
7378         until the painting is finished (earlier implementation 
7379         would crash if the control was resized in the OnPaint, 
7380         since it would cause the double buffer to be recreated
7381         and the old one disposed), a separate Graphics is 
7382         created for every paint (MS behaviour and anyways the state
7383         of the Graphics would have to be saved and restored otherwise)
7384         
7385         * XplatUIDriver.cs: 
7386         * XplatUIX11.cs:
7387         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
7388         so that we can get the graphics for the back buffer without
7389         having to create a new one and remove the offscreen_dc parameter
7390         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
7391         
7392 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7393
7394         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
7395         Also make virtual all the key-related methods.
7396
7397         * ListViewItem.cs: Make virtual the key related methods for
7398         ListViewSubItemCollection.
7399
7400 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7401
7402         * ListView.cs:
7403         * ListViewItem.cs:
7404         * ThemeWin32Classic.cs:
7405         * Theme.cs: Initial support for Tile view in ListView,
7406         as well as the implementation of the required bits for it (Item
7407         and Subitem).
7408
7409 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7410
7411         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
7412         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
7413         Provide useful exception messages.
7414
7415 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7416
7417         * TrackBar.cs: Remove a warning.
7418         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
7419         when used by DateTimePicker, fixes #80287. This also requires that 
7420         MonthCalendar implements it's own drawing for the yearly updown control,
7421         otherwise the Capture tracking would be too complicated. Removed the Click 
7422         and DoubleClick events (according to comments they were hiding the base class
7423         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
7424         raise these events, not that they cannot be raised. It is possible to raise 
7425         them by calling OnClick and OnDoubleClick). Added two internal fields in 
7426         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
7427         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
7428         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
7429         event, no longer needed.
7430         
7431 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7432
7433         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
7434         true if new value differs from current value.
7435
7436 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7437
7438         * Control.cs: ControlCollection.Count must be public. Fixed build of
7439         unit tests.
7440
7441 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7442
7443         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
7444
7445 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7446
7447         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
7448
7449 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7450
7451         * Control.cs: Invalidates control including when Width and Height is 
7452         equal zero or is not visible, only Paint event must be care about 
7453         this. Fixes #79913.
7454
7455 2006-12-26  Chris Toshok  <toshok@ximian.com>
7456
7457         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
7458         more corcompare work.
7459
7460         * DataGridView.cs: fix compiler warning.
7461
7462         * ColumnHeader.cs: some corcompare work, and also take the
7463         opportunity to make the internal fields private.
7464
7465         * ListView.cs: fix the fallout from the above field change.
7466
7467 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7468
7469         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
7470         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
7471         ToolStripTextBox.cs: Fixes to events and corcompare.
7472
7473 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7474
7475         * ListView.cs: Call owner.OnMousexx event to propagate events from
7476         item to ListView. Fixes #80367.
7477
7478 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7479
7480         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
7481         if value is less than one. ItemHeight should not be set to a value
7482         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
7483         Removed extra tabs.
7484
7485 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7486
7487         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
7488         * ToolStripStatusLabel.cs: Add Spring for Moma.
7489
7490 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7491
7492         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
7493         Fixed code formatting. Removed debug code.
7494         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
7495
7496 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7497
7498         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
7499         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
7500         ArgumentOutOfRangeException if ColumnCount is negative. In 
7501         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
7502         less than 4 or higher than 32768.
7503         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
7504         Fixed FormatProvider to return CurrentCulture unless explicitly set.
7505         Fixed IsFormatProviderDefault to return true if FormatProvider has
7506         not been explicitly set.
7507
7508 2006-12-25  Chris Toshok  <toshok@ximian.com>
7509
7510         * Application.cs: add a couple of 2.0 events.
7511
7512 2006-12-25  Chris Toshok  <toshok@ximian.com>
7513
7514         * Control.cs: fix compiler warning.
7515
7516         * AxHost.cs: corcompare fixes.
7517
7518         * ApplicationContext.cs: corcompare fixes.
7519
7520 2006-12-25  Chris Toshok  <toshok@ximian.com>
7521
7522         * Control.cs: only update dist_right/dist_bottom if the
7523         width/height is > 0.  this fixes anchored controls being resized
7524         smaller until they disappear and then resized larger again.
7525
7526 2006-12-25  Chris Toshok  <toshok@ximian.com>
7527
7528         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
7529         since they're nothing more than X/Left and Y/Top, respectively.
7530
7531         Also, move back to a per-control Bitmap/Graphics for
7532         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
7533         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
7534         Height.
7535
7536 2006-12-25  Miguel de Icaza  <miguel@novell.com>
7537
7538         * MessageBox.cs: Implemented overload that takes a new "bool
7539         displayHelpButton" by adding a new internal field "show_help".
7540         When clicked this will raise the HelpRequested on the owner or the
7541         main form. 
7542
7543         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
7544         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
7545
7546         * ListView.cs: Add support ColumnWidthChanged and
7547         ColumnWidthChanging. 
7548
7549         Add support for ColumnReordered event.
7550         (ReorderColumn): Add NET_2_0 specific support for cancelling the
7551         reorder.
7552
7553         Very nice codebase!
7554
7555         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
7556
7557         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
7558
7559 2006-12-24  Chris Toshok  <toshok@ximian.com>
7560
7561         * GridTablesFactory.cs: 2.0 corcompare work.
7562
7563         * ToolStripContainer.cs: add "override" to
7564         ContextMenuStripChanged, and remove the local event object.
7565
7566         * ToolStripDropDown.cs: same with a couple properties.
7567
7568         * ToolStripPanel.cs: same with AutoSizeChanged event.
7569
7570         * TextBoxBase.cs: add "override" to AutoSizeChanged.
7571
7572         * Form.cs: add the remaining 2.0 events, and do some corcompare
7573         attribute work.
7574
7575         * DateTimePicker.cs: add "new" to padding.
7576
7577         * ButtonBase.cs: use Control's use_compatible_text_rendering.
7578
7579         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
7580
7581         * DataGridView.cs: PaddingChanged is overridden.
7582
7583 2006-12-24  Chris Toshok  <toshok@ximian.com>
7584
7585         * Control.cs: corecompare work here too.
7586
7587         * DataGridViewElement.cs, DataGridView.cs,
7588         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
7589         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
7590         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
7591         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
7592         work.
7593
7594 2006-12-24  Miguel de Icaza  <miguel@novell.com>
7595
7596         * Control.cs: Switched the error message on the console for a
7597         todo.  A review of the code will have to cope with this anyways
7598         (since its a large feature, it is in our radar) and it was
7599         producing too much output when running PDN.
7600
7601         * ToolStripComboBox.cs: Set the text when the SelectedIndex
7602         changes.  Applications depend on this (PDN 2.72)
7603
7604 2006-12-23  Chris Toshok  <toshok@ximian.com>
7605
7606         * TableLayoutSettings.cs: finish up the corcompare work for this
7607         class.
7608
7609 2006-12-23  Chris Toshok  <toshok@ximian.com>
7610
7611         * Control.cs: make SetImplicitBounds internal, do some futzing
7612         with LayoutEngine so that it's available in 1.1, and remove the
7613         entire duplicated code mess from PerformLayout.  Use
7614         System.Windows.Forms.Layout.DefaultLayout instead.
7615
7616         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
7617
7618 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7619
7620         * Form.cs: Add MainMenuStrip property.
7621
7622 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7623
7624         * Control.cs: Add ContextMenuStrip property and implementation.
7625         Fix ContextMenu implementation to show menu centered on control when
7626         activated using the keyboard instead of showing at screen (0,0).
7627
7628         * ToolStripDropDown.cs: Fix needed overload of Show ().
7629
7630 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7631
7632         * Menu.cs: Name property added for 2.0 profile.
7633         
7634 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7635
7636         * Menu.cs: Update information about FindMenuItem, method to be
7637         implemented soon.
7638
7639 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7640
7641         * MenuAPI.cs: When deselect items deselect also selected subitems.
7642         
7643 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7644
7645         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
7646         FindSubItemByCoord to found itens that is not active, also an
7647         cheking added to FindSubItemByCoord to search for items only 
7648         in visible popup windows. Fixes #80274.
7649
7650 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
7651
7652         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
7653         internal property, it be care about change ExStyle. 
7654
7655 2006-12-22  Andreia Gaita  <avidigal@novell.com>
7656
7657         * ContainerControl.cs: set activeControl for parent forms up the 
7658         tree when the new activecontrol is a container.
7659         When validating the active control, if it is a container, also
7660         raise up the validation for it's active control. Fixes #80280
7661         
7662         * Control.cs: Add internal property flag and check to prevent
7663         Focus events from getting raised when Select() is called for
7664         a ContainerControl. There are still too many focus events being
7665         raised at the moment though.
7666         Cleaned up the code a bit.
7667
7668 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7669
7670         * Control.cs: Added all missing 2.0 events.and
7671         fixed a couple of corcompare issues.
7672         * TrackBar.cs: Implemented missing 2.0 bits.
7673         * MonthCalendar.cs, 
7674         * DateTimePicker.cs, 
7675         * MdiClient.cs: Fixed some corcompare issues.
7676
7677 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7678
7679         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
7680         SplitterPanel.cs: corecompare work.
7681
7682 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7683
7684         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
7685         Clean up warnings for BackgroundImageChanged and PaddingChanged
7686         events now that they are implemented in Control.cs.
7687
7688 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7689
7690         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
7691         
7692         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
7693         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
7694         of TableLayoutPanel and supporting cast.
7695
7696 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7697
7698         * XplatUIWin32.cs: 
7699         - GrabWindow now confines the mouse pointer to the confine window.
7700         - Added Win32ClipCursor and Win32GetClipCursor.
7701
7702         * Control.cs: 
7703         - Added CaptureWithConfine to be able to capture and confine 
7704         mouse pointer.
7705         
7706         * InternalWindowManager.cs: 
7707         - Call CaptureWithConfine instead of Capture if we're an
7708         MdiChild (fixes #79982).
7709
7710 2006-12-21  Chris Toshok  <toshok@ximian.com>
7711
7712         * DataGrid.cs: guard against the initial state of selection, where
7713         selection_start == -1.  make sure we only select from index >= 0.
7714         Fixes bug #80291.
7715
7716 2006-12-21  Chris Toshok  <toshok@ximian.com>
7717
7718         * Control.cs: we don't need to be so draconian with
7719         UpdateDistances, and we thusly don't need to call it before
7720         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
7721
7722 2006-12-21  Daniel Nauck  <dna@mono-project.de>
7723
7724         * ComboBox.cs,
7725         TextBox.cs: Implemented AutoComplete properties.
7726
7727 2006-12-20  Chris Toshok  <toshok@ximian.com>
7728
7729         * DataGridView*.cs: some corecompare work.
7730
7731 2006-12-20  Jackson Harper  <jackson@ximian.com>
7732
7733         * XplatUIX11.cs: We need to hide the caret when deleting it,
7734         otherwise you get carets left lying around everywhere.
7735         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
7736         prevents getting some weird half drawn caret tracers when
7737         scrolling.
7738         * TextControl.cs: Attempt to reduce the number of times we need to
7739         recreate the caret.
7740
7741 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
7742
7743         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
7744
7745 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7746
7747         * DateTimePicker.cs:
7748         - Implemented missing 2.0 bits.
7749         - Changed some default values to match MS.
7750         
7751 2006-12-20  Jackson Harper  <jackson@ximian.com>
7752
7753         * TextBoxBase.cs: When changing the font across the document we
7754         can't recalculate after changing each line, since that will cahnge
7755         the line count.
7756         - PreferredHeight is a little different than i thought.
7757         - When backspacing, move the caret before we do the actual char
7758         delete, because when that delete crosses a wrap boundary the
7759         positional information will change.
7760
7761 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7762
7763         * Control.cs: Added some missing 2.0 bits: 
7764         BackgroundImageLayout, BackgroundImageLayoutChanged, 
7765         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
7766         add IBindableComponent and IDropTarget implementation.
7767         
7768         * MonthCalendar.cs: 
7769         - Added all missing 2.0 features:
7770         BackgroundImageLayout, RightToLeftLayout, 
7771         OnHandleDestroyed, RightToLeftLayoutChanged, 
7772         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
7773         PaddingChanged.
7774         - Rewrote all the BoldDate code, it was completely broken.
7775         - Fixed all the tests (the tests can now be re-enabled, the
7776         problems were not with the tests, but with the control, it was
7777         mostly broken).
7778         
7779         * DateTimePicker.cs: Changed the location where the 
7780         MonthCalendar is shown.
7781         
7782 2006-12-19  Chris Toshok  <toshok@ximian.com>
7783
7784         * DataGridView.cs: add IDropTarget implementation.
7785
7786         * ToolStripPanel.cs: add IDropTarget implementation.
7787
7788 2006-12-19  Jackson Harper  <jackson@ximian.com>
7789
7790         * TextControl.cs: soft now means something different than what it
7791         used to mean, we want to move the caret regardless of whether or
7792         not this break was soft (would we really have wanted the caret
7793         to not move with the break in the old context?)
7794         * TreeView.cs: Make sure we factor in the vert scrollbar when
7795         calculating the horizontal scrollbar's maximum.
7796
7797 2006-12-19  Andreia Gaita  <avidigal@novell.org>
7798
7799         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
7800         check for keywords in alternate casing, close bug #80049.
7801
7802 2006-12-19  Chris Toshok  <toshok@ximian.com>
7803
7804         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
7805         methods (which all do nothing).
7806
7807         * IDropTarget.cs: add the 4 missing methods.
7808
7809 2006-12-19  Chris Toshok  <toshok@ximian.com>
7810
7811         * TableLayoutRowStyleCollection.cs: corcompare work.
7812         
7813         * TableLayoutSettings.cs: same.
7814
7815         * TableLayoutStyle.cs: same.
7816
7817         * TableLayoutColumnStyleCollection.cs: same.
7818
7819 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
7820
7821         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
7822         TableLayoutPanel I've had in my local tree for way too long.
7823
7824 2006-12-19  Miguel de Icaza  <miguel@novell.com>
7825
7826         * TableLayoutSettings.cs: Finish the public API (still needs all
7827         the logic to update on changes). 
7828
7829         * TableLayoutPanelCellPosition.cs: new file.
7830         
7831         * TableLayoutRowStyleCollection.cs,
7832         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
7833         TableLayoutSettings.cs: Track the final 2.0 table api.
7834
7835 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7836
7837         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
7838         and Image List 2.0 members for ColummnHeader.
7839         * ListView.cs: Add key-related 2.0 methods for
7840         ColumnHeaderCollection.
7841
7842 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
7843
7844         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
7845         ArgumentNullException if items argument is null. Ignore null item in
7846         arrays. Removed extra tabs.
7847
7848 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
7849
7850         * MonthCalendar.cs: Fixed InvalidCastException.
7851
7852 2006-12-19  Jackson Harper  <jackson@ximian.com>
7853
7854         * TextControl.cs: Don't increment the position here.
7855         - When calculating char positions only add in the line break size
7856         for hard line breaks.
7857
7858 2006-12-19  Andreia Gaita  <avidigal@novell.org>
7859
7860         * SendKeys.cs: Changed some things to match ms.net behaviour
7861         when parsing shifted capital letters.
7862         
7863         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
7864         Add window handle as parameter to SendInput. X11 needs the 
7865         window handle, and the handle being passed      to it in the keys 
7866         queue is the active control handle (which windows needs), not 
7867         the window handle.
7868         
7869         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
7870         to support SendKeys on X.       
7871         
7872         * X11Keyboard: Implement helper method to lookup a linux keycode
7873         given the virtual keycode. Added table of keycode-2-virtualkey
7874         values to support this.
7875
7876 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7877
7878         * ListView.cs: Add support for SelectedIndexCollection
7879         and SelectedItemCollection 2.0 methods. Implement support
7880         for ImageKey too.
7881         * ListViewItem.cs: Add support for ListViewSubItemCollection
7882         2.0 methods. Also, fix an incorrect behavior of AddRange method
7883         (it shouldn't call Clear).
7884         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
7885
7886 2006-12-19  Jackson Harper  <jackson@ximian.com>
7887
7888         * RichTextBox.cs: 
7889         * TextBoxBase.cs: New args for FormatText
7890         * TextControl.cs: Rewrote the main drawing method, this version
7891         feels a little easier to understand and debug to me.  Hopefully it
7892         does to others also
7893         - Fix FormatText to OR in the new formating values.  Added
7894         FormatSpecified param, basically this works in the same way as
7895         BoundsSpecified in Control.
7896         - Set the caret properties when the caret is positioned.
7897         - When wrapping text make sure that we calculate the width of the
7898         last character
7899         - when calculating alignments we might have wrapped down to the
7900         next line, so don't search for an individual tag, search for the
7901         end of the line
7902         - We need to invalidate the selection area when we replace the
7903         selection.
7904         
7905 2006-12-19  Daniel Nauck  <dna@mono-project.de>
7906
7907         * Application.cs: add Restart () 2.0 support
7908
7909 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7910
7911         * MenuItem.cs: Invalidate menu item rectangle after change Enable
7912         property. Fixes #80268.
7913         
7914 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7915
7916         * MenuAPI.cs: Dont trigger select event when closes top menu
7917         item. Fixes #80270.
7918
7919 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7920
7921         * MenuAPI.cs: When you click on menuitem only trigger onselect
7922         event for top menu itens. Fixes #80271.
7923         
7924 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7925
7926         * MdiWindowManager.cs: Make IconicBounds depend on
7927         the bottom of MdiClient, not the top (fixes #80267)
7928         
7929 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7930
7931         * MdiClient.cs: Added missing 2.0 attribute
7932
7933 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7934
7935         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
7936         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
7937
7938 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7939
7940         * MenuAPI.cs: Fix click when menuitem is not popup,
7941         this regression was caused by last commit (#80272).
7942
7943 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
7944
7945         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
7946         fire click event or close menu. Fixes #80272.
7947
7948 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7949
7950         * ListViewHitTestInfo.cs: add
7951
7952 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7953
7954         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
7955         * FlatButtonAppearance.cs: add
7956         * DockingAttribute.cs: add
7957
7958 2006-12-17  Chris Toshok  <toshok@ximian.com>
7959
7960         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
7961         and rebind our columns when it does - this way, if you make
7962         changes to the DataTable (or set the Table attribute on a DataView
7963         after setting it as the DataGrid's DataSource, the changes are
7964         made visible.)  Fixes bug #80107.
7965
7966 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7967
7968         * ListViewGroup.cs: add internal Location property for layouting.
7969         * Theme.cs: add abstract ListViewGroupHeight function.
7970         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
7971
7972 2006-12-16  Andreia Gaita  <avidigal@novell.com>
7973
7974         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
7975         Added reset of selected index to 0 when adding first tab page.
7976         Fixes #80264
7977         
7978         * NumericUpDown.cs: Fix NET_2_0 check
7979
7980 2006-12-16  Daniel Nauck  <dna@mono-project.de>
7981
7982         * ListViewGroup.cs: fixed DefaultValueAttribute value
7983
7984 2006-12-16  Daniel Nauck  <dna@mono-project.de>
7985
7986         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
7987
7988 2006-12-15  Miguel de Icaza  <miguel@novell.com>
7989
7990         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
7991         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
7992         ScrollableControl.cs: Add a handful of methods that are
7993         overwritten in 2.0 
7994
7995 2006-12-15  Chris Toshok  <toshok@ximian.com>
7996
7997         * XplatUIWin32.cs: initial implementation of the Reversible
7998         drawing functions.  there are some problems.  DrawReversibleFrame
7999         doesn't seem to work at all for Dashed FrameStyle, and in the
8000         Thick case there are drawing errors at the corners (we probably
8001         need to bind Rectangle instead of doing moveto/lineto's.)
8002
8003 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8004         
8005         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
8006         to send blocks of key messages. Send accumulates keys to send with Flush, 
8007         while SendWait sends all keys immediately.
8008                 
8009         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
8010         XplatUIX11.cs,  XplatUIX11-new.cs:
8011         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
8012         to Win32 SendInput.
8013         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
8014         
8015         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
8016         testing for ms.net on this class is very tricky, as the tests run too fast 
8017         to allow the hook to release, essentially freezing the keyboard and the 
8018         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
8019         category :p
8020
8021 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8022
8023         * Padding.cs: fixed serialization compability to MS ("_var" field names),
8024                         added missing attributes.
8025  
8026 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8027
8028         * ListViewGroup.cs: Added missing attributes.
8029         * ListViewGroupCollection.cs: Added missing attributes.
8030
8031 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8032
8033         * ListViewItem.cs: fixed ListViewSubItem text property.
8034
8035 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8036         
8037         * Control.cs: Added missing 2.0 attributes
8038         
8039 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8040         
8041         * MdiClient.cs: Added missing 2.0 attribute.
8042         * MonthCalendar.cs: Added some missing 2.0 attributes 
8043         and properties.
8044         
8045 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8046
8047         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
8048
8049 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
8050
8051         * MainMenu.cs: Add the new 2.0 constructor to help out people
8052         using the MainMenu in VS2005.
8053
8054 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8055         
8056         * MdiChildContext.cs: Removed it, no longer used.
8057         * MdiClient.cs: Added missing 2.0 attributes.
8058         
8059 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8060         
8061         * InternalWindowManager.cs: Fix a NullRef with previous 
8062         changes for toolwindows.
8063         
8064 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8065
8066         * Control.cs: 
8067         - Added AfterTopMostControl to allow for certain controls 
8068         to always stay on top when normal controls are brought to 
8069         front.
8070         
8071         * XplatUIWin32.cs: 
8072         - (DrawInversibleRectangle): Get window rectangle from Win32 
8073         in stead of from control, since Win32 doesn't calculate
8074         screen coords correctly from control's Location if it 
8075         have docked siblings.
8076         
8077         * MdiWindowManager.cs:
8078         - Correct the control menu popup location when clicked on
8079         the maximized form icon. (fixes #80223.1)
8080         - Don't show moving rectangle if mouse hasn't moved from
8081         the original clicked point.
8082         - Removed FormGotFocus handler (not used).
8083         - Calculate the control buttons location from the main
8084         window's size and not client size (fixes #79770).
8085         - Form is now closed when the form icon is double-clicked
8086         (fixes #79775). 
8087         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
8088         
8089         * InternalWindowManager.cs:
8090         - Moved some MDI-only methods to MdiWindowManager.
8091         - Removed unused properties and methods.
8092         - Unified method naming for methods handling wm messages.
8093         - Moved all message handling to seperate methods for
8094         each message.
8095         
8096         * ThemeWin32Classic.cs:
8097         - DrawManagedWindowDecorations now draws the title bar 
8098         with a gradient brush.
8099         - Add a CPDrawButtonInternal that allows us to specify
8100         light, normal and dark colors for the buttons (control 
8101         buttons for MDI children were drawn with the same light
8102         color as the background, therefore loosing the 3D effect).
8103         
8104         * SizeGrip.cs:
8105         - Add a CapturedControl property that is used to 
8106         determine the control to resize (defaults to parent). 
8107         Needed for MdiClient, since its SizeGrip's parent is
8108         MdiClient, but the control to resize is the main form.
8109         
8110         * MdiClient.cs:
8111         - Set SizeGrip's CapturedControl to the main form in order
8112         to resize the main form and not the MdiClient.
8113         - Override AfterTopMostControl to leave the scrollbars 
8114         always on top.
8115
8116 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8117
8118         * ListView.cs: fixed ListViewItemCollection AddRange and
8119                         implemented ListViewItemCollection AddRange 2.0 support.
8120
8121 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8122
8123         * ListViewGroup.cs: Add.
8124         * ListViewGroupCollection.cs: Add
8125         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
8126         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
8127                                 stub for ImageKey 2.0 support.
8128
8129 2006-12-14  Mike Kestner  <mkestner@novell.com>
8130
8131         * ListView.cs: add text padding to the autocalculation for columns
8132         of width -2.  Fixes #80207.
8133  
8134 2006-12-14  Mike Kestner  <mkestner@novell.com>
8135
8136         * ListView.cs: add some index guarding for partial row navigation 
8137         logic.  Fixes #80250.
8138
8139 2006-12-14  Mike Kestner  <mkestner@novell.com>
8140
8141         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
8142         are added or inserted to the collection.  Fixes #81099.
8143
8144 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
8145
8146         * MenuAPI.cs: Closes menu when right click out side of popup
8147         it fix problem in ContextMenu and MainMenu. Fixes #80252.
8148
8149 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8150
8151         * ListViewItem.cs: Fix dumb error.
8152
8153         * ListView.cs: Add Find and ContainsKey methods in 
8154         ListViewItemCollection, and also return true for IsReadOnly
8155         and IsFixedSize (changes for 2.0). 
8156
8157 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
8158
8159         * Control.cs: Allow Region to be set to null.
8160
8161 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8162
8163         * MdiWindowManager.cs: Remove unused (commented out) code.
8164         * Form.cs: When the MdiChild is maximized, the form needs 
8165         WM_NCMOUSELEAVE, so request it.
8166         * InternalWindowManager.cs: 
8167         - Added tooltips to control buttons.
8168         - Removed duplicated control button handling code.
8169         - Removed unused (commented out) code.
8170         
8171 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
8172
8173         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
8174         was used because we must set cursor without trigger ChangeCursor event
8175         and without change Cursor control property. Fixes #79963.
8176
8177 2006-12-12  Andreia Gaita  <avidigal@novell.com>
8178         
8179         * Control.cs: Check if Region setter value is null, and ignore
8180
8181 2006-12-12  Jackson Harper  <jackson@ximian.com>
8182
8183         * TextControl.cs: We were almost always drawing one more line then
8184         needed, since the GetLineByPixel will return the last line found
8185         at that pixel. In most cases though, we were invalidating up to
8186         the junction between two lines.
8187         - Improve debug code.
8188
8189 2006-12-12  Chris Toshok  <toshok@ximian.com>
8190
8191         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
8192         and FillReversibleRectangle.
8193
8194         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
8195         and FillReversibleRectangle.
8196
8197         * XplatUIWin32.cs: add stubs which do nothing for
8198         DrawReversibleFrame, DrawReversibleLine, and
8199         FillReversibleRectangle.
8200
8201         * XplatUIOSX.cs: add stubs which raise NIE for
8202         DrawReversibleFrame, DrawReversibleLine, and
8203         FillReversibleRectangle.
8204
8205         * XplatUIX11.cs: add working implementation for
8206         DrawReversibleFrame, DrawReversibleLine, and
8207         FillReversibleRectangle.
8208         
8209         * ControlPaint.cs: implement DrawReversibleFrame,
8210         DrawReversibleLine, and FillReversibleRectangle, by calling into
8211         the appropriate XplatUI method.
8212
8213 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8214
8215         * Form.cs: Make MdiClient have the focus even if it's
8216         not selectable, since it should receive WM_KEY* and WM_MOUSE 
8217         messages. Fixes #79907.
8218         
8219 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8220
8221         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
8222         queried after the window is created.
8223         
8224         * XplatUIX11.cs: Added SendParentNotify to implement 
8225         WM_PARENTNOTIFY logic. Fixes #79965.
8226         
8227         * Control.cs: Added MakeParam.
8228         
8229 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8230
8231         * MdiClient.cs: Resume Layout before setting window
8232         states (fixes #80201).
8233
8234 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8235
8236         * MenuAPI.cs: Deselect a menu item after performing
8237         the click (fixes #80197).
8238
8239 2006-12-11  Jackson Harper  <jackson@ximian.com>
8240
8241         * TextBoxBase.cs: We need to cap this value, since Maximum -
8242         ViewPortHeight can be less than zero.
8243         - Only do selection with the left mouse button.
8244         * TextBox.cs: Don't tell the world that we have a context menu.
8245         * Control.cs: New method so that we can control whether or not the
8246         context menu is visible outside MWF.
8247
8248 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8249
8250         * ToolBarButton.cs: Fix text positon. 
8251
8252 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8253
8254         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
8255
8256         * Control.cs (DoubleBuffered): Add implementation.
8257
8258         * Application.cs (OpenForms): Add.
8259
8260 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8261
8262         * Form.cs: Use opacity instead of Opactiy to determine if we need
8263         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
8264
8265 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8266
8267         * Control.cs: Fix NRE if Control.Site was set to null.
8268
8269 2006-12-11  Chris Toshok  <toshok@ximian.com>
8270
8271         * Control.cs: ControlCollection.Remove should return if the arg is
8272         null, and ControlCollection.SetChildIndex should raise a ANE.
8273
8274 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
8275
8276         * Control.cs: Verify value set for Dock property. Code formatting
8277         updates.
8278
8279 2006-12-11  Jackson Harper  <jackson@ximian.com>
8280
8281         * TextControl.cs: Draw the caret and the selection when a flag is
8282         set on the owner.
8283         * TextBoxBase.cs: We want to draw the caret and the selection for
8284         TextBox but not for TextBoxBase.
8285         - If the window is resized and scrolling is no longer needed (the
8286         whole doc is visible) set the scroll position to zero.
8287         - The default SelectWord (the one TextBox uses) should move the
8288         caret to the end of the word.
8289         - SelectAll moves the caret to the end of the selection.
8290         * TextBox.cs: We don't selectall on focus, we just do it when the
8291         control is created.
8292         
8293 2006-12-11  Mike Kestner  <mkestner@novell.com>
8294
8295         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
8296
8297 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8298
8299         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
8300         2.0 support.
8301         * ListViewItem.cs: Add Name 2.0 property.
8302
8303 2006-12-11  Andreia Gaita  <avidigal@novell.com>
8304
8305         * TabControl.cs: Set visibility on selected or default tab 
8306         when tabcontrol handle is created, so that it's contents
8307         actually show up (duh). Fixes #80193
8308         Don't redraw the control if there is no handle created, as
8309         the selected index might be completely invalid. Added some tests
8310         to check for this.
8311
8312 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8313
8314         * ToolBar.cs: Uses maximun width and height of all buttons as 
8315         button rectangle when ButtonSize specified, it looks strange but
8316         is what happens in Win32. Fixes #80189.
8317
8318 2006-12-11  Jackson Harper  <jackson@ximian.com>
8319
8320         * TextControl.cs: Need to track undo levels ourself, since
8321         compound actions will mess them up.
8322
8323 2006-12-10  Andreia Gaita  <avidigal@novell.com>
8324
8325         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
8326         SelectedIndex value is changed (even if it's not valid).
8327         Reset SelectedIndex to 0 when the handle is created and if
8328         the current index is invalid.
8329         Fixes SelectdeIndex unit tests and #80128
8330
8331 2006-12-08  Chris Toshok  <toshok@ximian.com>
8332
8333         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
8334         calls EndEdit, it needs to be called before we set current_cell to
8335         its new value.  Otherwise, we end up committing the value in the
8336         textbox to the new cell as well.  Fixes bug #80160.
8337
8338 2006-12-08  Chris Toshok  <toshok@ximian.com>
8339
8340         * Form.cs (set_CancelButton): if the button's DialogResult is
8341         None, set it to Cancel.  Fixes bug 80180.
8342
8343 2006-12-08  Jackson Harper  <jackson@ximian.com>
8344
8345         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
8346         to watch ourselves when setting the canvas size and setting the
8347         scrollbar values.
8348
8349 2006-12-08  Chris Toshok  <toshok@ximian.com>
8350
8351         * DataGrid.cs: comment out the two MakeTransparent calls for the
8352         time being so people using trunk (and not 1.2.2) on windows can
8353         actually use the datagrid.  This deals with bug #80151.
8354
8355 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8356
8357         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
8358         Graphics.DrawImage (image, int, int, int, int) overload instead
8359         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
8360         the dpi difference and was blurring images it drew.
8361         [Fixes bug #79960]
8362
8363 2006-12-08  Chris Toshok  <toshok@ximian.com>
8364
8365         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
8366         rowcnt is 0 (such as with an empty datasource), and make sure we
8367         initialize not_usedarea.Y to cells.Y, so we don't draw over the
8368         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
8369
8370 2006-12-08  Chris Toshok  <toshok@ximian.com>
8371
8372         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
8373         grid.
8374
8375 2006-12-08  Chris Toshok  <toshok@ximian.com>
8376
8377         [ Fixes bug #80167 ]
8378         
8379         * ThemeWin32Classic.cs: don't draw the image if the button's flat
8380         style is FlatStyle.System.
8381
8382         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
8383         ButtonBase.flat_style private, and switch uses of it to the public
8384         property.
8385         
8386 2006-12-08  Chris Toshok  <toshok@ximian.com>
8387
8388         [ Fixes bug #80121 ]
8389         
8390         * ThemeWin32Classic.cs: center the caption text in the datagrid
8391         when we draw it.
8392
8393         * DataGrid.cs: lessen the amount we add to the caption height from
8394         6 to 2.  6 was making it huge.
8395
8396 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8397
8398         * UpDownBase: Handle MouseWheel call directly instead of capturing
8399         the inner textbox's OnMouseWheel. Fixes #80166
8400
8401 2006-12-08  Jackson Harper  <jackson@ximian.com>
8402
8403         * TextControl.cs: We need to invalidate the textbox when we empty
8404         it (how had this not been discovered before?)
8405
8406 2006-12-08  Jackson Harper  <jackson@ximian.com>
8407
8408         * TextBoxBase.cs: Reworked the mouse down code so I could get it
8409         to behave like MS, we now ignore the eventargs.Click and just
8410         track state ourself, which we were already doing anyways.
8411         - Constrain the double click handler to the double click size.
8412         
8413 2006-12-08  Chris Toshok  <toshok@ximian.com>
8414
8415         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
8416         direction if that scrollbar isn't shown.  fixes bug #80158.
8417
8418 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8419
8420         * NumericUpDown.cs: Update value on getter. Fixes #79950
8421
8422 2006-12-08  Chris Toshok  <toshok@ximian.com>
8423
8424         * MenuItem.cs: add back in the event cloning code.  I didn't know
8425         how to do it in the face of the EventHandlerList work i'd done
8426         last week.  Fixes bug #80183.
8427
8428 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8429
8430         * Control.cs: Add an invalidate to the BackgroundImage setter.
8431         [Fixes 80184]
8432
8433 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8434
8435         * ToolStrip*: Add some small properties reported by MoMA, fix event
8436         firing and default properties based off of unit tests, and add some
8437         attributes based off of the class status page.
8438
8439 2006-12-07  Jackson Harper  <jackson@ximian.com>
8440
8441         * TextBoxBase.cs: Take HideSelection into account when determining
8442         whether or not to show the selection.
8443         * RichTextBox.cs: After inserting the RTF into the document move
8444         the cursor to the beginning of the document.
8445
8446 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8447
8448         * Control.cs: Remove static ArrayList "controls" which maintained
8449         a reference to every control created.
8450         * Application.cs: Create a static FormCollection to maintain a reference
8451         to every form created.  Use it in places that formerly enumerated through
8452         the controls one looking for forms.
8453         * Form.cs: Add and remove self from above FormCollection.
8454
8455 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
8456
8457         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
8458           not libgdk (though it makes me wonder why I didn't have any
8459           problems)
8460
8461 2006-12-07  Chris Toshok  <toshok@ximian.com>
8462
8463         [ you had to know this was coming after that last commit...]
8464         
8465         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
8466         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
8467         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
8468         XCopyArea).
8469
8470 2006-12-07  Chris Toshok  <toshok@ximian.com>
8471
8472         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
8473         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
8474         all the behavior we need for double buffering.
8475
8476         * XplatUIDriver.cs: implement the 3 double buffer methods using a
8477         client side Bitmap, just like the old Control-based double buffer
8478         code did.  The methods are virtual, so each XplatUI driver
8479         subclass can replace the implementation to use a faster, platform
8480         specific approach.
8481
8482         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
8483         double buffer code, and clean things up a bit in the process.
8484
8485 2006-12-06  Chris Toshok  <toshok@ximian.com>
8486
8487         * Control.cs: reindent WndProc.
8488
8489 2006-12-06  Chris Toshok  <toshok@ximian.com>
8490
8491         [ I wanna be like BenM when I grow up ]
8492         
8493         * Hwnd.cs: create a single static Graphics object on the static
8494         Bitmap we create.  use this for our text measurements.
8495
8496         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
8497         This was causing us to allocate a backbuffer for every control,
8498         even when it wasn't flagged as double buffered.  Instead use the
8499         single graphics instance.  This might have implications for
8500         multithreaded applications.  If we run into problems we can switch
8501         to creating 1 Graphics per control, on the static Hwnd bitmap.
8502
8503         this change nets us a 7M savings in private dirty mappings when
8504         running FormsTest.exe.
8505
8506 2006-12-06  Chris Toshok  <toshok@ximian.com>
8507
8508         * ListView.cs: the BackgroundImage override is just to set
8509         attributes.  chain up to base.BackgroundImage.
8510
8511         * RichTextBox.cs: same.
8512
8513         * ToolBar.cs: same, but we need to also redraw the toolbar when it
8514         changes, so instead a handler for BackgroundImageChanged.
8515         
8516         * Control.cs: make background_image private.
8517
8518 2006-12-06  Chris Toshok  <toshok@ximian.com>
8519
8520         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
8521         sure we even need this assignment, but roll with it for now.
8522
8523         * Control.cs: make the cursor field private.
8524
8525 2006-12-06  Chris Toshok  <toshok@ximian.com>
8526
8527         * Form.cs: we don't need to explicitly set ImeMode to
8528         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
8529         behavior in the face of ImeMode.Inherit.
8530
8531         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
8532         change the ctor's assignment to use ImeMode instead of ime_mode.
8533
8534         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
8535         ImeModeInherit.  Only check for the parent's imemode (and return
8536         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
8537         This fixes the button unit test, which sets both ImeMode and
8538         DefaultImeMode to ImeMode.Disable.
8539
8540         also make the ime_mode field private.
8541
8542 2006-12-06  Chris Toshok  <toshok@ximian.com>
8543
8544         * Control.cs: make control_style private.
8545
8546         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
8547         setting the styles to true, then setting them to false instead of
8548         reverting to their previous values.
8549
8550         also, call SetStyle on the scrollbars instead of using
8551         control_style directly.
8552
8553 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
8554
8555         * FormCollection.cs: Implement. [2.0]
8556
8557 2006-12-06  Chris Toshok  <toshok@ximian.com>
8558
8559         * Control.cs: make tab_stop private.
8560
8561         * Label.cs: set TabStop, not tab_stop.  reformat some event
8562         add/remove methods to make them more compact.
8563
8564 2006-12-06  Chris Toshok  <toshok@ximian.com>
8565
8566         * RadioButton.cs: fix TabStop handling.
8567
8568 2006-12-06  Chris Toshok  <toshok@ximian.com>
8569
8570         * TextBox.cs: remove the explicit assignments to has_focus.
8571         Control does that.
8572
8573         * ButtonBase.cs: remove the assignment to has_focus.  Control will
8574         manage that.
8575         
8576 2006-12-06  Chris Toshok  <toshok@ximian.com>
8577
8578         * ButtonBase.cs: remove all uses of is_enabled from this code.
8579         it's always true when any of the code containing the checks is
8580         executed.
8581
8582 2006-12-06  Chris Toshok  <toshok@ximian.com>
8583
8584         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
8585         with different semantics (some are present in both 1.1 and 2.0
8586         profiles) so that we match MS's behavior in our unit tests.
8587
8588 2006-12-06  Jackson Harper  <jackson@ximian.com>
8589
8590         * TextControl.cs: Make this operation undoable.
8591         * TextBoxBase.cs: Factor the border width into the preferred
8592         height.
8593         - implement Modified as per the spec.
8594
8595 2006-12-06  Chris Toshok  <toshok@ximian.com>
8596
8597         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
8598
8599 2006-12-06  Chris Toshok  <toshok@ximian.com>
8600
8601         * Control.cs: make right_to_left and context_menu fields private.
8602
8603 2006-12-06  Chris Toshok  <toshok@ximian.com>
8604
8605         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
8606         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
8607         Control.child_controls private.  switch all uses over to
8608         Control.Controls.
8609
8610 2006-12-06  Chris Toshok  <toshok@ximian.com>
8611
8612         * System.Windows.Forms/GroupBox.cs,
8613         System.Windows.Forms/AccessibleObject.cs,
8614         System.Windows.Forms/ErrorProvider.cs,
8615         System.Windows.Forms/Control.cs,
8616         System.Windows.Forms/UpDownBase.cs,
8617         System.Windows.Forms/ScrollBar.cs,
8618         System.Windows.Forms/DateTimePicker.cs,
8619         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
8620         System.Windows.Forms/ToolTip.cs,
8621         System.Windows.Forms/RadioButton.cs,
8622         System.Windows.Forms/LinkLabel.cs,
8623         System.Windows.Forms/Splitter.cs,
8624         System.Windows.Forms/TextBoxBase.cs,
8625         System.Windows.Forms/ToolStripTextBox.cs,
8626         System.Windows.Forms/ContainerControl.cs,
8627         System.Windows.Forms/ThemeWin32Classic.cs,
8628         System.Windows.Forms/SizeGrip.cs,
8629         System.Windows.Forms/ToolStripDropDown.cs,
8630         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
8631         private.  switch all uses over to Control.Parent.
8632
8633 2006-12-06  Chris Toshok  <toshok@ximian.com>
8634
8635         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
8636         Control does this before calling emitting these events.
8637
8638         * TabControl.cs: same.
8639
8640         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
8641         Control.client_rect.
8642
8643         * ButtonBase.cs: use the ClientSize property instead of the
8644         client_size field.
8645
8646         * ScrollableControl.cs: same.
8647
8648         * Control.cs: another pass at making properties private.  also,
8649         move the initialization of tab_stop to the ctor.
8650
8651 2006-12-05  Andreia Gaita <avidigal@novell.com>
8652
8653         * TabControl.cs: Let the selected index be set freely if the 
8654         control handle is not yet created.
8655
8656 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8657
8658         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
8659         internal until I can rewrite DefaultLayout.
8660         * ToolStrip.cs: Fix build error and some general cleaning.
8661         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
8662         Fix build errors caused by making some of Control's fields private.
8663
8664 2006-12-05  Jackson Harper  <jackson@ximian.com>
8665
8666         * TextControl.cs: Redo Insert a little so that it use IndexOf
8667         instead of Split, this prevents it from messing up on things like
8668         \n\n\n. Also more effecient since the split array doesn't need to
8669         be created.
8670         * TextBoxBase.cs: AppendText doesnt handle multiline and non
8671         multiline text differently, this is the first of many fixes that
8672         will make multiline/non-multiline the same thing as far as the
8673         TextBoxBase is concerned.
8674         - Don't split the text and insert lines, this can lose some line
8675         endings (like is the last line a soft or hard break). Instead use
8676         the new Insert.
8677         - Fix an off by one when combining all the lines in the Text
8678         getter.
8679         - Remove separate multiline handling from the Text getter/setter.
8680
8681 2006-12-05  Chris Toshok  <toshok@ximian.com>
8682
8683         * ButtonBase.cs: a few changes:
8684
8685         - don't reinitialize internal Control fields in the ctor when they
8686         have the same values as Control sets them.
8687
8688         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
8689         this before calling those methods.
8690
8691         - we don't need to call Refresh for anything.  use Invalidate
8692         instead.
8693
8694         - OnEnabledChanged doesn't need to redraw at all - Control.cs
8695         calls Refresh in its OnEnabledChanged.
8696         
8697         - several of the events we were registered for in the ctor to
8698         redraw ourselves already include calls to Invalidate in the
8699         property setters that raise the events.  remove the extra
8700         invalidation.
8701
8702         - reformat a switch statement that was 83274658 columns wide.
8703         
8704 2006-12-05  Mike Kestner  <mkestner@novell.com>
8705
8706         * ComboBox.cs: fix a unit test regression from a TextBox
8707         SelectionLength return of -1 when there's no selection.  
8708
8709 2006-12-05  Chris Toshok  <toshok@ximian.com>
8710
8711         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
8712         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
8713         cleaning up some of the internal Control fields being used by
8714         subclasses.
8715
8716 2006-12-05  Mike Kestner  <mkestner@novell.com>
8717
8718         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
8719         listbox after AddImplicit calls since it defaults to hidden. Add a 
8720         hack to preserve requested heights across DropDownStyle changes.
8721
8722 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8723
8724         * PropertyGrid.cs: Hide FindFirstItem method from public API.
8725
8726 2006-12-05  Chris Toshok  <toshok@ximian.com>
8727
8728         * DataGridView.cs: fix compiler warnings.
8729
8730         * PrintControllerWithStatusDialog.cs: same.
8731
8732         * ToolBar.cs: same.
8733
8734         * FolderBrowserDialog.cs: same.
8735
8736         * Splitter.cs: same.
8737
8738         * DataGridViewComboBoxCell.cs: same.
8739
8740         * XplatUIWin32.cs: same.
8741
8742         * PictureBox.cs: same.
8743
8744         * Win32DnD.cs: same.
8745
8746         * PageSetupDialog.cs: same.
8747
8748         * FileDialog.cs: same.
8749
8750         * PrintDialog.cs: same.
8751
8752         * DataGridTextBoxColumn.cs: same.
8753
8754         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
8755
8756 2006-12-05  Chris Toshok  <toshok@ximian.com>
8757
8758         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
8759         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
8760         System.ComponentModel.EventHandlerList work.
8761
8762 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
8763
8764         * DrawTreeNodeEventArgs.cs: Added.
8765
8766 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8767         
8768         * InternalWindowManager.cs: Remove an unused field.
8769         
8770 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8771
8772         * InternalWindowManager.cs:
8773         - Save the point where the title bar is clicked.
8774         
8775         * MdiWindowManager.cs:
8776         - Only allow moving of the window as long as the 
8777         clicked point on the title bar does not get out of
8778         MdiClient's rectangle. Fixes #79982.
8779         
8780         * MdiClient.cs:
8781         - Added Horizontal/VerticalScrollbarVisible.
8782         - Simplified the scrollbar sizing algorithm.
8783         - Cache the difference in scrolled value in
8784         H/VBarValueChanged and move the calculation out
8785         of the for loop.
8786
8787 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8788
8789         * Control.cs: Make the Console.WriteLine in WndProc 
8790         write more info.
8791
8792 2006-12-05  Chris Toshok  <toshok@ximian.com>
8793
8794         * ToolStripManager.cs, ToolStripButton.cs,
8795         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
8796         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
8797         ToolStripSplitButton.cs, ToolStripSeparator.cs,
8798         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
8799         ToolStripProgressBar.cs, ToolStripContainer.cs,
8800         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
8801         to using System.ComponentModel.EventHandlerList.
8802
8803 2006-12-04  Chris Toshok  <toshok@ximian.com>
8804
8805         * LinkLabel.cs: fix up compiler warnings.
8806
8807         * TableLayoutSettings.cs: same.
8808
8809         * TreeView.cs: same.
8810
8811         * ToolBar.cs: same.
8812
8813         * TabControl.cs: same.
8814
8815         * RichTextBox.cs: same.
8816
8817         * ListViewItem.cs: same.
8818
8819         * PropertyGrid.cs: same.
8820
8821         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
8822
8823         * ToolTip.cs same.
8824
8825         * TextRenderer.cs: fix up compiler warnings.
8826
8827         * Label.cs: same.
8828
8829         * Form.cs: corcompare fixes.
8830
8831         * PictureBox.cs: fix up compiler warnings.
8832
8833         * ImageListStreamer.cs: same.
8834
8835         * TrackBar.cs: corcompare fix.
8836
8837         * Control.cs: fix up compiler warnings.
8838
8839         * SplitterPanel.cs: same.
8840
8841         * NumericTextBox.cs: same.
8842
8843         * ImageList.cs: same.
8844
8845         * StatusStrip.cs: same.
8846
8847         * ProgressBar.cs: corcompare fix.
8848
8849         * ToolStripButton.cs: fix up compiler warnings.
8850
8851         * ToolStripStatusLabel.cs: same.
8852
8853         * ToolStripSplitButton.cs: same.
8854
8855         * ToolStripSeparator.cs: same.
8856
8857         * ToolStripProgressBar.cs: same.
8858
8859         * ToolStripDropDownMenu.cs: same
8860
8861         * ToolStripDropDown.cs: same.
8862
8863         * ToolStripDropDownButton.cs: same.
8864
8865         * ToolStrip.cs: same.
8866
8867         * ToolStripControlHost.cs: same.
8868
8869         * ToolStripContentPanel.cs: same.
8870
8871         * ToolStripDropDown.cs: same.
8872
8873         * ToolStripContainer.cs: same.
8874
8875         * ToolStripPanel.cs: same, and add "new" where we need it to work
8876         with the new ArrangedElementCollection.
8877
8878         * ToolStripItemCollection.cs: add "new" where we need it to work
8879         with the new ArrangedElementCollection.
8880
8881 2006-12-04  Andreia Gaita <avidigal@novell.com>
8882
8883         * TabControl.cs: Fix default tab selection to after TabControl
8884         gets focus and not before. Fixes #80128
8885
8886 2006-12-04  Chris Toshok  <toshok@ximian.com>
8887
8888         * DataGridTableStyle.cs: remove the gross calling of
8889         datagrid.Refresh from here.  It's a broken idea and it doesn't
8890         work anyway.
8891
8892         * DataGrid.cs: instead, just register/unregister from the
8893         DataGridTableStyle events in CurrentTableStyle.  we play it
8894         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
8895         even though some would most likely not require it.  Fixes bug
8896         #80115 (and one portion of #80117 as a side effect).
8897
8898 2006-12-04  Chris Toshok  <toshok@ximian.com>
8899
8900         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
8901         so the textbox (if any) goes away.  Fixes bug #80117.
8902
8903 2006-12-04  Chris Toshok  <toshok@ximian.com>
8904
8905         * DataGridColumnStyle.cs: set the column's readonly property
8906         initially based on the property descriptor's IsReadOnly.  Fixes
8907         bug #80044.
8908
8909 2006-12-04  Chris Toshok  <toshok@ximian.com>
8910
8911         * ComboBox.cs: wrap the dropdown style changing work in
8912         SuspendLayout/ResumeLayout.  Fixes bug #79968.
8913
8914 2006-12-04  Jackson Harper  <jackson@ximian.com>
8915
8916         * TextBoxBase.cs: Fix off by one, since these are one-based.
8917         * TextBox.cs: Select all the text when we get focus.  The TextBox
8918         does this but the RTB does not.
8919
8920 2006-12-04  Chris Toshok  <toshok@ximian.com>
8921
8922         * DataGridTextBoxColumn.cs: remove some spew.
8923
8924         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
8925         but some part of me is saying "it shouldn't be here.."  At any
8926         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
8927         setting the value.
8928
8929 2006-12-04  Chris Toshok  <toshok@ximian.com>
8930
8931         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
8932         to reassign the propertydescriptor.
8933
8934 2006-12-04  Jackson Harper  <jackson@ximian.com>
8935
8936         * TextBoxBase.cs:
8937         * TextControl.cs: Remove some unused variables.  Maybe this will
8938         patch things up between mike and I.
8939         - don't split lines less then one char wide, if the viewport is
8940         that small text won't be visible anyways.
8941         
8942 2006-12-04  Jackson Harper  <jackson@ximian.com>
8943
8944         * TextBoxBase.cs: Default selection length is -1, need to do some
8945         more testing on windows to see when this is used for the property.
8946         - Redid the Lines [] property to that we properly remove soft line
8947         breaks
8948         - added support for preserving carriage returns
8949         -  CanUndo is not a variable like 'is undo enabled' it just returns
8950         true if there is undo operations available.
8951         - AppendText doesn't need to grab the last tag itself anymore,
8952         this happens automatically when we move the cursor.
8953         * TextControl.cs: Add CompoundActions to the undo class. This
8954         allows combining the other operations into one big option.  ie a
8955         paste will combine { delete old, insert new, move cursor }
8956         - Add InsertString undo operation
8957         - New method for deleting multiline text
8958         - Add carriage returns to lines. So we can preserve carriage
8959         returns when text is 'roundtripped'
8960
8961 2006-12-04  Chris Toshok  <toshok@ximian.com>
8962
8963         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
8964         minimum 0.  Fixes the scrollbar exception in bug #80136.
8965
8966 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8967
8968         * MdiClient.cs: 
8969         * MdiWindowManager: Removed unused fields and methods.
8970         
8971 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8972         
8973         * StatusBar.cs: Update all panels when a AutoSize=Contents
8974         panel needs updating.
8975         
8976         * StatusBarPanel.cs: Remove twidth and only use initialize.
8977         Fixes #80031.
8978                 
8979 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8980
8981         * Form.cs: When a form's MdiParent is set add it directly
8982         on top of the z-order in stead of relying on MdiClient's
8983         ActivateChild to do it. Fixes #80135.
8984         
8985         * MdiClient.cs: 
8986         - Remove original_order, mdi_child_list is already doing
8987         the same thing.
8988         - Create mdi_child_list on construction in
8989         stead of first use (avoids a few null checks).
8990
8991         * MenuItem.cs: Use an already existing list of mdi children
8992         to get the correct order of children and remove the other
8993         redundant list.
8994
8995 2006-12-04  Chris Toshok  <toshok@ximian.com>
8996
8997         * PropertyGridView.cs: cached_splitter_location is only used in
8998         !DOUBLEBUFFER code.
8999
9000         * PropertyGrid.cs: implement the ComComponentNameChanged event
9001         using Events, hoping that would fix the warning.  Looks like a
9002         compiler bug instead (#80144).
9003
9004         * PropertyManager.cs: remove unused method.
9005
9006 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
9007
9008         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
9009         include parentesis to fix expression evaluation. Fixes #79634.
9010
9011 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
9012         
9013         * MenuAPI.cs:
9014         - Changes to fix behavior in Menu control, some reported in #80097
9015         and other detected during behavior refactory like a select event
9016         problems.
9017         - Remove unneded "if's" conditions.
9018         - Created an internal to flag when popup is active in control, we need 
9019         it because in .NET you can have menu active but without popup active
9020         when you active menu using popup without visible items.
9021         - Mimic win32 behavior for Select and Popup events.  
9022         - Dont open popup menu when you dont have visible subitems.
9023         - Do nothing when click on disabled menu item.
9024         - Some small changes to follow the coding style guidelines.
9025         - Unselect menu only when another control gives focus. Fixes #80097.
9026         - Remove unused code.
9027         
9028         * MenuItem.cs: internal VisibleItems method to check if menu
9029         theres visible subitems, it will be usefull to fix some 
9030         behavior in Menu control.
9031         
9032 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9033         
9034         * Timer.cs: Tag property for 2.0 profile.
9035         
9036 2006-12-01  Chris Toshok  <toshok@ximian.com>
9037
9038         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
9039         
9040         * Win32DnD.cs: comment out some unused fields.
9041
9042         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
9043         some unused properties/methods.
9044
9045         * XplatUIX11.cs: fix MousePosition so we override the base class's
9046         property instead of conflicting with it.
9047
9048         * PictureBox.cs: comment out some unused fields
9049
9050         * OSXStructs.cs: make some struct fields public.
9051
9052         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
9053         MousePosition so we override the base class's property instead of
9054         conflicting with it.
9055
9056         * X11Dnd.cs: comment out some unused fields
9057
9058         * X11DesktopColors.cs: fix some struct field visibility to quiet
9059         the compiler.
9060
9061         * X11Dnd.cs: remove some debug code.
9062
9063         * ThemeClearlooks.cs: comment out unused field.
9064
9065         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
9066
9067         * ThemeGtk.cs: comment out some unused pinvokes.
9068
9069         * Timer.cs: remove some unused fields.
9070
9071         * ThemeClearlooks.cs: comment out unused field.
9072
9073         * UpDownBase.cs: comment out unused field.
9074
9075         * DataObject.cs: comment out unused field.
9076
9077         * DataGridBoolColumn.cs: reomve unused field.
9078
9079         * DataGrid.cs: remove unused field.
9080
9081         * Cursor.cs: remove old ToBitmap code.
9082
9083         * ControlPaint.cs: remove unused method.
9084
9085         * ScrollBar.cs: remove unused fields.
9086
9087         * ComboBox.cs: remove unused field, and chain up to
9088         AccessibleObject ctor.
9089
9090         * ListBox.cs: remove unused field.
9091
9092         * ButtonBase.cs: wrap a couple fields in NET_2_0.
9093
9094         * GridEntry.cs: remove unused fields.
9095
9096         * Binding.cs: remove unused fields.
9097
9098         * AxHost.cs: remove unused method.
9099
9100         * ContainerControl.cs: remove unused field.
9101
9102         * ScrollableControl.cs: remove unused fields.
9103
9104 2006-12-01  Chris Toshok  <toshok@ximian.com>
9105
9106         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
9107         the Where/WhereString stuff.  it's easy enough to CWL
9108         Environment.StackTrace.
9109
9110         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
9111         unused private fields.
9112
9113 2006-12-01  Jackson Harper  <jackson@ximian.com>
9114
9115         * TextControl.cs: Do not update the view while inserting multiline
9116         text. If we update the view we might wrap lines, before entering
9117         the new lines, which causes the new line insertion calculations to
9118         be totally fubared.
9119         - Remove an old TODO
9120         - Make debug output a little nicer
9121         
9122 2006-12-01  Chris Toshok  <toshok@ximian.com>
9123
9124         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
9125
9126 2006-12-01  Chris Toshok  <toshok@ximian.com>
9127
9128         [ fix the majority of the CS0108 warnings we've been suppressing ]
9129         
9130         * TreeView.cs: mark BackgroundImageChanged as 'new'.
9131
9132         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
9133         to "LayoutToolBar" to quiet mcs.
9134         
9135         * TabControl.cs: mark our ControlCollection class as 'new'.
9136
9137         * TextBoxBase.cs: mark some events as 'new'.
9138
9139         * Splitter.cs: TabStop is 'new'.
9140
9141         * ControlBindingsCollection.cs: mark a few methods as new since
9142         they change the visibility from protected to public.
9143
9144         * RadioButton.cs: DoubleClick -> base class, and remove unused
9145         HaveDoubleClick.
9146
9147         * MonthCalendar.cs: ImeMode property -> base class, and mark many
9148         events as new.
9149
9150         * NumericUpDown.cs: TextChanged -> base class.
9151
9152         * CheckedListBox.cs: mark our ObjectCollection class as new to
9153         quiet mcs.
9154
9155         * FolderBrowserDialog.cs: make HelpRequest event new and have it
9156         muck with the base class.
9157
9158         * StatusBar.cs: fix some mcs warnings about Update being the same
9159         name as a base class method.
9160
9161         * RichTextBox.cs: mark some events as new, and make them do things
9162         to the base class impl.
9163
9164         * UserControl.cs: mark TextChanged as new, and have it manipulate
9165         base.TextChanged.
9166
9167         * UpDownBase.cs: mark some things new.
9168
9169         * CheckBox.cs: mark DoubleClick "new", and add some text about
9170         what we need to look at.
9171
9172         * Panel.cs: make the events "new", and manipulate the base
9173         version.  these are just here for attributes.
9174
9175         * AccessibleObject.cs: make owner private.
9176
9177         * Control.cs: deal with AccessibleObject.owner being private.
9178         cache our own copy if we need it.
9179
9180         * Button.cs: add "new" to the DoubleClickEvent.
9181
9182         * ListBox.cs: no need to track our own has_focus here.  let
9183         Control.has_focus do it for us.  Also some other work to clear up
9184         warnings about not overriding base class methods of the same name.
9185         
9186         * ComboBox.cs: clear up some warnings about not override base
9187         class methods of the same name.
9188
9189 2006-12-01  Chris Toshok  <toshok@ximian.com>
9190
9191         * Form.cs: flag a few things as "new" to quiet some of the mcs
9192         warnings.
9193
9194         * AxHost.cs: same.
9195
9196         * PrintPreviewDialog.cs: same.
9197
9198         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
9199         now DGV isn't so horrible on the class status page.  also, move
9200         all events to using System.ComponentModel.EventHandlerList.  my
9201         wrists hurt.
9202
9203 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9204
9205         * MdiWindowManager.cs:
9206         - Set form to active mdi child if shown,
9207         and update the active mdi child to the next 
9208         remaining child in the z-order if the form is hidden.
9209
9210         * Form.cs: 
9211         - Track if the form has been visible and if its 
9212         visibility is beeing changed, so that the MdiClient
9213         can properly decide the ActiveMdiChild. The MdiClient 
9214         cannot track this since the form can change visibility 
9215         before MdiClient is created.
9216
9217         * MdiClient.cs:
9218         - Don't activate anything of the parent form is changing
9219         its visibility.
9220         - Rework ActiveMdiChild to only return visible mdi 
9221         children and take into account several other corner 
9222         cases.
9223
9224 2006-12-01  Chris Toshok  <toshok@ximian.com>
9225
9226         * IBindableComponent.cs: new 2.0 interface.
9227
9228 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
9229
9230         * DataGrid.cs: Font for caption area is bold by default.
9231
9232 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
9233
9234         * Menu.cs: Tag property for 2.0.
9235         
9236 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9237
9238         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
9239         
9240 2006-12-01  Chris Toshok  <toshok@ximian.com>
9241
9242         * TreeView.cs: doh, the Begin* events should be
9243         TreeViewCancelEventHandler.
9244
9245 2006-12-01  Chris Toshok  <toshok@ximian.com>
9246
9247         * Form.cs: Form.ControlCollection already stores off the
9248         form_owner field.  don't access the base class's internal "owner"
9249         field.
9250
9251         * Control.cs: make all the fields in Control.ControlCollection
9252         private.  there's no need for any internal fields here.
9253
9254 2006-12-01  Chris Toshok  <toshok@ximian.com>
9255
9256         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
9257         OnHandleCreated.  Fixes bug #80109.
9258
9259 2006-12-01  Chris Toshok  <toshok@ximian.com>
9260
9261         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
9262         SplitContainer.cs, Control.cs, StatusStrip.cs,
9263         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
9264         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
9265         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
9266         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
9267         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
9268         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
9269         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
9270         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
9271         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
9272         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
9273
9274         do most of the work to convert our code over to use
9275         System.ComponentModel.Component.Events for
9276         adding/removing/dispatching events.
9277
9278
9279 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9280
9281         * DataGridView.cs: Fix an ArgumentNullException reported 
9282         twice today in IRC.
9283
9284 2006-11-30  Mike Kestner  <mkestner@novell.com>
9285
9286         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
9287         grabbed listbox.  Fixes #80036 and #80101.
9288
9289 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9290
9291         * Message.cs: Changed ToString() to match MS.
9292         
9293 2006-11-30  Jackson Harper  <jackson@ximian.com>
9294
9295         * TextBoxBase.cs: You can still change the selected text on a read
9296         only textbox.
9297         * TextControl.cs: Lower magic number for wrap calculations. This
9298         lets text get closer to the right (far) edge.
9299
9300 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9301
9302         * Control.cs: Tweak 2.0 layout properties.
9303         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
9304         * TextRenderer.cs: Add a new overload.
9305         * ToolStrip*: Huge amount of changes and new features.
9306
9307 2006-11-30  Mike Kestner  <mkestner@novell.com>
9308
9309         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
9310         scroll range correct.  Fixes #79994.
9311
9312 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9313
9314         * MdiWindowManager.cs: Update main form's text when
9315         a form is closed. (fixes #80038)
9316         
9317 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
9318
9319         * ToolBar.cs:
9320         - Fix an regression in ButtonSize.
9321         - Get ImeMode default value change to "Disable".
9322         - Get ShowTooltips default value change to true, default value is 
9323         "false" but after make a test in .NET we get "true" result as default.
9324         
9325 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
9326
9327         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
9328
9329 2006-11-29  Chris Toshok  <toshok@ximian.com>
9330
9331         * XplatUIWin32.cs (GetWindowTransparency): check return value of
9332         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
9333         SetWindowTransparency hasn't been called.
9334
9335 2006-11-29  Chris Toshok  <toshok@ximian.com>
9336
9337         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
9338         if it's supported.
9339         (set_AllowTransparency): reorder things a little so that the
9340         WS_EX_LAYERED style is removed properly.
9341
9342 2006-11-29  Chris Toshok  <toshok@ximian.com>
9343
9344         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
9345         
9346         * Form.cs: only call the XplatUI transparency method (get/set) if
9347         SupportsTransparency says it's supported. Otherwise fallback to
9348         doing nothing (in the set case) or returning the instance field we
9349         cache (in the get case).
9350
9351         * XplatUIStructs.cs: add TransparencySupport flag enum.
9352         
9353         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
9354         change to SupportsTransparency.
9355
9356         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
9357         TransparencySupport.None from SupportsTransparency.
9358
9359         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
9360         TransparencySupport.Set from SupportsTransparency.
9361
9362         * XplatUIWin32.cs: implement GetWindowTransparency calling
9363         GetLayeredWindowAttributes, and implement SupportsTransparency by
9364         checking whether or not both
9365         GetWindowTransparency/SetWindowTransparency are available
9366         entrypoints.  We need to do this since SetWindowTransparency is
9367         available as of win2k, but GetWindowTransparency requires winxp.
9368         yay win32 api.
9369
9370         * XplatUI.cs: Add GetWindowTransparency, and change
9371         SupportsTransparency to allow for either/both Get/Set.
9372
9373 2006-11-29  Chris Toshok  <toshok@ximian.com>
9374
9375         * DataGrid.cs: keep from going into an infinite loop redrawing a
9376         datagrid that has no datasource.  Fixes bug #80033.
9377
9378 2006-11-29  Chris Toshok  <toshok@ximian.com>
9379
9380         * MenuItem.cs: fix the NRE when we assign text (and therefore call
9381         Invalidate) before the mainmenu has been assigned to a control.
9382
9383 2006-11-29  Chris Toshok  <toshok@ximian.com>
9384
9385         * DataGrid.cs: detect when we should be double the double click
9386         row/column autosize stuff, although that codepath has yet to be
9387         written.  part of the work for bug #79891.
9388
9389 2006-11-29  Chris Toshok  <toshok@ximian.com>
9390
9391         * Binding.cs (SetControl): fix unit test.
9392
9393 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9394
9395         * PageSetupDialog.cs: Validate the margins and set them in
9396         PageSettings. 
9397         * NumericTextBox.cs: New class to mimic the behavior of the
9398         textboxes used in the printing dialogs.
9399
9400 2006-11-29  Andreia Gaita  <avidigal@novell.com>
9401         
9402         * Form.cs: Revert previous change (remove call UpdateBounds
9403         from form constructor), because it messes with the handle creation
9404         order, and that one needs lots and lots of love.
9405         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
9406         for valid printer and throw InvalidPrinterException if document
9407         is set but printer not valid), adding a MonoTODO. Once 
9408         handle creation is done properly, we can put this back in.
9409
9410 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9411
9412         * MenuItem.cs: Create a invalidate method for menu item, to be
9413         calling from set text, it make text changes to imadiate update
9414         on screen. Fixes #80013. 
9415         
9416 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9417
9418         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
9419         fixes bug #80070 and some other problem on toolbar buttons
9420         layout.
9421
9422 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9423
9424         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
9425         with dotted brush.      Fixes #79564
9426         
9427 2006-11-28  Andreia Gaita  <avidigal@novell.com>
9428
9429         * Form.cs: Removed call to UpdateBounds on Form
9430         constructor, it was causing a call to CreateHandle
9431         before it was supposed to.
9432         * PrintControllerWithStatusDialog: Applied patch
9433         by Chris Toshok to hide controller when there are
9434         no printers available.
9435         PrintDialog.cs: initialize printer settings to 
9436         null - correct DefaultValues test #5
9437         * PrintPreviewControl.cs: Move PrintController
9438         initialization to GeneratePreview
9439         * PrintPreviewDialog.cs: 
9440         - Remove Preview generation     from Document_set(). It is 
9441         called on OnPaint
9442         - Throw InvalidPrinterException on CreateHandle if
9443         a Document is set but there are no printers or 
9444         printer is not valid.
9445         * ThemeWin32Classic: don't paint PrintPreviewControl
9446         if there is nothing to paint    
9447
9448 2006-11-28  Miguel de Icaza  <miguel@novell.com>
9449
9450         * Form.cs: Add another popular method.
9451
9452         * TabPage.cs: ditto.
9453
9454 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9455
9456         * MenuItem.cs: Fixed a warning.
9457         * InternalWindowManager: Fixed a warning.
9458
9459 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9460
9461         * MenuItem.cs:
9462         - When cloning a menu also clone MdiList and clone the 
9463           window menu items properly (as the forms and menuitems
9464           are kept in an internal hashtable, these need updating 
9465           as well)
9466         - Rewrote the window menu code, menu items are added in the
9467           order the forms were added to their parent, and they are
9468           updated every time the window menu is shown (before the
9469           list was only generated once, in the current order of the
9470           forms, and would never be updated). A checkmark is shown
9471           next to the item corresponding to the active mdi child.
9472
9473 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9474
9475         * XplatUIStructs.cs: 
9476         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
9477         
9478         * XplatUIWin32.cs: 
9479         - Added TME_NONCLIENT to TMEFlags.
9480         - Handles WM_NCMOUSEMOVE in GetMessage to 
9481           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
9482
9483         * MdiWindowManager:
9484         - Now merges mdi child menu to parent menu when maximized.
9485         - Recalculate NC areas of both mdi child and mdi parent. 
9486           Fixes #79757 (4).
9487           on window state and size changes.Fixes #79844 (3).
9488         - Handle WM_NCCALCSIZE to properly calculate borders.
9489
9490         * Form.cs:
9491         - Add/remove to the mdi containers list of mdi children 
9492           in the order they are added.
9493         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
9494           to the maximized mdi child.
9495         
9496         * InternalWindowManager.cs:
9497         - Only execute a click on the control buttons on the mouse up,
9498           not on the mouse down. Show the state of the button 
9499           (was only showing Normal state, never Pressed state). The
9500           pressed button now follows the mouse (if you click the Close 
9501           button and move the mouse over the Maximize button, the 
9502           Maximize button will be shown as pressed). Since Win32 does
9503           not generate WM_NCLBUTTONUP if you release the button outside
9504           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
9505           it as a mouse up.
9506         
9507         * ThemeWin32Classic.cs:
9508         - Draw a missing border around mdi child forms. Fixes #79844 (2).
9509
9510         * MdiClient.cs:
9511         - Added a list of forms which contains the order the forms are
9512           added to the mdi parent.
9513         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
9514         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
9515         - If the active form changes set the scrollbars to the top
9516           of the Z order, otherwise the form could hide them.
9517         - Scrollbars are now sized according to ClientSize, not 
9518           to Size, and they take into account the other scrollbar
9519           to determine maximum.
9520         
9521 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
9522         
9523         * XplatUI.cs:
9524         * XplatUIDriver.cs:
9525         * XplatUIX11.cs:
9526         * XplatUIWin32.cs:
9527         * XplatUIOSX.cs:
9528         - Added RequestAdditionalWM_NCMessages for windows to 
9529           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
9530           Currently only implemented in XplatUIWin32.
9531
9532 2006-11-27  Chris Toshok  <toshok@ximian.com>
9533
9534         * Hwnd.cs: only add the hwnd to the windows hash in
9535         set_WholeWindow and set_ClientWindow if whole_window/client_window
9536         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
9537
9538 2006-11-27  Mike Kestner  <mkestner@novell.com>
9539
9540         * ComboBox.cs: remove redundant OnDropDown call.  It is called
9541         from the ComboListBox.ShowWindow code. Fixes #79969.
9542
9543 2006-11-27  Chris Toshok  <toshok@ximian.com>
9544
9545         * Hwnd.cs: remove the setters for ExposePending and
9546         NCExposePending - noone uses them.
9547
9548 2006-11-27  Jackson Harper  <jackson@ximian.com>
9549
9550         * TextControl.cs: new param for ReplaceSelection which determines
9551         whether we select the new selection, or set the cursor to the end
9552         of the new selection.
9553         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
9554         pasting, select the new text.
9555         * RichTextBox.cs: Use new param for ReplaceSelection.
9556
9557 2006-11-27  Jackson Harper  <jackson@ximian.com>
9558
9559         * TextBoxBase.cs: Set the selection to the caret after the caret
9560         is moved, otherwise they get out of sync.
9561
9562 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9563
9564         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
9565         it fixes #80015
9566
9567 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9568
9569         * ThemeWin32Classic.cs: 
9570         - Fix toolbar drop down arrow position.
9571         - Fix drop down appearance when ToolBar.Appearance is normal,
9572         it fixes #80018.
9573         
9574 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
9575
9576         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
9577         * Control.cs: Same.
9578         * UpDownBase.cs: Same.
9579         * ButtonBase.cs: Same.
9580         * ScrollBar.cs: Same.
9581         * TrackBar.cs: Same.
9582         * PictureBox.cs: Same.
9583         * UserControl.cs: Same.
9584         * Label.cs: Same.
9585         * ListControl.cs: Same.
9586         * TextBoxBase.cs: Same.
9587         * ListView.cs: Same.
9588         * RichTextBox.cs: Same.
9589         * TreeView.cs: Same.
9590
9591 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
9592
9593         * PrintDialog.cs:
9594         - Text label for where 
9595         - Text label comment was not shown
9596
9597 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
9598
9599         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
9600
9601 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9602
9603         * InternalWindowManager.cs: 
9604         - Handle WM_PARENTNOTIFY to activate the form
9605         if any child control is clicked.
9606         - The form is only sizable if not minimized.
9607
9608         * MdiWindowManager.cs:
9609         - Save the IconicBounds if the form is moved.
9610         - Rework SetWindowState, now the window bounds 
9611         are stored only if the old window state is Normal.
9612         
9613         * MdiClient.cs:
9614         - In SetWindowStates store the old window state if 
9615         the window is maximized and restore window state if
9616         the window looses focus.
9617         - Don't handle any scrollbar value changes if 
9618         initializing the scroll bars. Fixes #79771.
9619         - Reworked ArrangeIconicWindows. Current algorithm
9620         tests bounds agains all other minimized windows, if
9621         any intersections create new bounds (going left to 
9622         right, bottom to top) and then test again. When 
9623         successful the bounds are saved and never computed
9624         again. Fixes #79774.
9625
9626 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9627
9628         * InternalWindowManager.cs: Added HandleTitleBarUp.
9629
9630 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9631
9632         * NumericUpDown.cs: In .NET 1.1, user entered text is still
9633         hexadecimal in ParseUserEdit.
9634
9635         
9636 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9637
9638         * MdiWindowManager.cs: 
9639         - Handle a click on the form's icon to show the 
9640         system menu (when maximized). Fixes #79775.
9641         - Change the existing click handler for the form's
9642         icon when not maximized to show on MouseUp.
9643         Fixes #79776.
9644
9645         * Form.cs: In OnResize only layout the mdi child's
9646         parent if it actually has a parent. Might not if
9647         the window is closing.
9648
9649
9650 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9651
9652         * MdiClient.cs: Ignore active MDI client for text of parent, if
9653         child has no text set.
9654
9655 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9656
9657         * ToolBar.cs: Fixed ToString to match MS.
9658
9659 2006-11-22  Andreia Gaita  <avidigal@novell.com>
9660
9661         * NumericUpDown: 
9662         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
9663         update inner values on set. Fixes #79966.
9664         - Override OnLostFocus to update value on NET 2. Fixes #79950.
9665         - Fix hexadecimal parsing.
9666         
9667         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
9668         parent. Fixes #79957
9669
9670 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9671
9672         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
9673         the actual size has to be queried, since if height /
9674         width is negative Win32 changes it to 0. 
9675         Fixes #79999 on Windows.
9676         
9677         * XplatUIX11.cs: Set height / width to 0 if negative
9678         in SetWindowPos. Fixes #79999 on Linux.
9679         
9680 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9681
9682         * ThemeWin32Classic.cs: Fix text redenring when button is
9683         pressed.
9684
9685 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9686
9687         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
9688         and later navigate by mouse. Fixes #79528.
9689
9690 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9691
9692         * ToolBar.cs: Set default value for TabStop to false in
9693         constructor, it fixes remaining behavior of bug #79863.
9694
9695 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9696
9697         * MdiWindowManager.cs:
9698         * InternalWindowManager.cs:
9699         - Moved a few methods specific to Mdi from 
9700         InternalWindowManager to MdiWindowManager.
9701         Fixes #79996.
9702         
9703 2006-11-21  Chris Toshok  <toshok@ximian.com>
9704
9705         * XplatUIOSX.cs: stub out InvalidateNC.
9706
9707         * XplatUIWin32.cs: implement InvalidateNC using the call I found
9708         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
9709
9710         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
9711
9712         * XplatUIDriver.cs: add InvalidateNC abstract method.
9713
9714         * XplatUI.cs: add InvalidateNC.
9715
9716 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9717
9718         * ToolBar.cs: Invalidate complete button area when pressed status 
9719         was changed.
9720         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
9721         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
9722         by 1 when button is pressed.
9723
9724 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9725
9726         * ToolButton.cs: Invalidate middle of DropDown button when
9727         ToolBar theres DropDownArrows.
9728         * ThemeWin32Classic.cs: Change position of DropDown arrow and
9729         fix DropDown drawing operations.
9730
9731 2006-11-20  Chris Toshok  <toshok@ximian.com>
9732
9733         * NativeWindow.cs: fix the formatting of functions ('{' on the
9734         following line), and enable the thread exception dialog.
9735
9736         * Application.cs: remove the duplicate exception catching from
9737         here.
9738
9739 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9740
9741         * Toolbar.cs: Triggers button click event when click on icon
9742         of dropdown ToolBarButton. Fixes #79912.
9743         
9744 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9745
9746         * Theme.cs:
9747         * ThemeWin32Classic.cs:
9748         - Added a property WindowBorderFont to enable themeing
9749           of mdi child windows' Text.
9750           
9751 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9752
9753         * InternalWindowManager.cs:
9754         * Form.cs:
9755         * MdiClient.cs:
9756         * MdiWindowManager.cs: 
9757         - If mdi child is maximized, set mdi parent's
9758           text to "Parent - [Child]". Fixes #79770.
9759         - If there is any maximized mdi child windows, only the active 
9760           window (and any new windows) is maximized, the rest are normal.
9761         - On a WindowState change only save mdi child's window bounds 
9762           if the old window state was normal. Fixes #79774.
9763         - The scroll bars are now calculated on hopefully all
9764           necessary events. Fixed #79771 / #79844->6 / #79906.
9765         - MdiClient.SizeScrollBars() now takes into account docked 
9766           controls in the parent when calculating available space.
9767         - InternalWindowManager now always repaints the entire title
9768           area. Fixes #79844->1/4/5.
9769         - Added RequestNCRecalc on mdi child windowstate changes.
9770           Fixes #79772.
9771
9772 2006-11-20  Mike Kestner  <mkestner@novell.com>
9773
9774         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
9775         in the MouseUp handler of the listbox and move the return handling
9776         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
9777
9778 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9779
9780         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
9781
9782 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9783
9784         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
9785           working in 1.2.x anymore. So, updated.
9786
9787 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
9788
9789         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
9790         NumberGroupSeparator of current culture instead of assuming en-US.
9791         Fixed bug #79967.
9792
9793 2006-11-17  Mike Kestner  <mkestner@novell.com>
9794
9795         * Control.cs: Add the concept of implicit bounds setting so that
9796         dock/undock round trips preserve explicitly set size/locations.
9797         Fixes #79313.
9798
9799 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9800
9801         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
9802           can't handle those filters. (Fixes bug #79961)
9803
9804 2006-11-17  Chris Toshok  <toshok@ximian.com>
9805
9806         [ fixes the exit/crashes associated with #79835.  it's clearly
9807         suboptimal though, we need to figure out a better way to solve
9808         this. ]
9809         
9810         * PrintPreviewControl.cs: deal with the new invalid printer
9811         exceptions.
9812
9813         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
9814         and return false (so CommonDialog.ShowDialog doesn't actually show
9815         the form.)
9816
9817         * PrintDialog.cs: enable/disable the Ok button depending on
9818         whether or not the printer is valid.
9819
9820         * CommonDialog.cs (ShowDialog): only actually show the form if
9821         RunDialog returns true.
9822
9823 2006-11-17  Jackson Harper  <jackson@ximian.com>
9824
9825         * TextControl.cs: When soft splitting a line, mark it as a soft
9826         split line. Also carry over the current line break to the next
9827         line.
9828
9829 2006-11-17  Chris Toshok  <toshok@ximian.com>
9830
9831         * XplatUIX11.cs: when scrolling a window with an invalid area, we
9832         only want to shift the part of the invalid area that overlaps the
9833         area we're scrolling.  we also don't want to clear the invalid
9834         area unless the invalid area was entirely contained within the
9835         scrolling area.
9836
9837 2006-11-16  Chris Toshok  <toshok@ximian.com>
9838
9839         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
9840         also make sure to free the memory returned by XGetWindowProperty
9841         in GetText().
9842
9843         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
9844
9845 2006-11-16  Chris Toshok  <toshok@ximian.com>
9846
9847         * XplatUI.cs: add a new super secret way to get at the totally
9848         unsupported X11 backend.
9849
9850 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
9851
9852         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
9853
9854 2006-11-16  Jackson Harper  <jackson@ximian.com>
9855
9856         * TreeView.cs: Allow more explicit setting of top node position
9857         for scrollbars. Slower algo, but more accurate.
9858         - CollapseAll should maintain the current top node.
9859         * TextBoxBase.cs: When positioning the caret, use the line, pos
9860         method, since the x, y method does not grab the correct tag, and
9861         the caret height never gets set correctly. (Maybe I should just do
9862         away with the caret having its own height, and always use the
9863         carets current tag for height).
9864
9865 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
9866
9867         [Fixes 79778, 79923]
9868
9869         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
9870         Parent to the FosterParent instead.
9871
9872 2006-11-16  Jackson Harper  <jackson@ximian.com>
9873
9874         * TreeView.cs: Need to recalc the topnode when we expand or
9875         collapse. The scrolling methods can't handle this on their own,
9876         since they use differences between the last scroll position, and
9877         those difference get completely messed up since we are expanding
9878         nodes.  This problem should probably be fixed in the scrolling
9879         methods, so they can figure out exactly where they are, but this
9880         will slow things down a little.
9881         * ThemeWin32Classic.cs: Special case for groupboxes with empty
9882         strings, makes nunit-gui look a lot nicer.
9883
9884 2006-11-16  Chris Toshok  <toshok@ximian.com>
9885
9886         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
9887         the broken multithreaded event handling we have in here.  File
9888         this entry under "Why we should move to the new X11 backend".
9889
9890         Any thread can make it into UpdateMessageQueue, which gets events
9891         from the X socket - some of which could belong to hwnds being
9892         managed by a different thread.  We can also have multiple threads
9893         in UpdateMessageQueue at the same time, with each one reading from
9894         the X socket.  This leads to many problems, with the following
9895         solutions:
9896
9897         We can't use hwnd.Queue.Enqueue anywhere in here and must use
9898         EnqueueLocked.
9899
9900         The MotionNotify compression we do can't work across threads
9901         (without locking the entire queue, perhaps) since we call
9902         hwnd.Queue.Peek, so we just punt and don't compress motion events
9903         unless the owning thread is the one which got the X event.
9904
9905         ConfigureNotify is another fun one, since it modifies the hwnd's
9906         bounds and then enqueues the event.  We add a lock to Hwnd which
9907         is held when setting configure_pending to true (and enqueuing the
9908         event).
9909
9910         There is a race wrt the wake socket.  we need to make sure that
9911         only 1 thread is waiting on that socket, or else a thread could
9912         sleep waiting for data that never comes.  It's difficult (but not
9913         impossible) to make happen, because it seems to require something
9914         like the following:
9915
9916             1. Thread 1 polls on wake_receive
9917         
9918             2. poll returns saying there's data to be read on
9919                wake_receive.
9920         
9921             3. Thread 2 polls on wake_receive and immediately returns
9922                saying there's data to be read.
9923
9924             4. Thread 2 reads the wakeup byte from wake_receive
9925
9926             5. Thread 1 attempts to read the wakeup byte from
9927                wake_receive.
9928
9929             6. Thread 2 exits (due to a form closing, perhaps).
9930
9931             7. Thread 1 blocks forever.
9932         
9933         Fun, eh?
9934
9935         Fixing the Expose handling isn't done yet, and the races inherent
9936         in that piece of code are responsible for the drawing mistakes you
9937         see when generating expose events in a MT app (like NPlot).  This
9938         one is the likely to be the hardest to bandaid, and it doesn't
9939         appear to cause anything but drawing problems.  The other issues
9940         caused apps to exit or hang.
9941
9942         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
9943         called from a different thread than the one that should be calling
9944         these functions.
9945
9946         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
9947
9948 2006-11-15  Chris Toshok  <toshok@ximian.com>
9949
9950         * Application.cs: null out the context's MainForm when we exit
9951         RunLoop.  Fixes a newly checked in unit test as well as the last
9952         ODE from bug #79933.
9953
9954 2006-11-15  Chris Toshok  <toshok@ximian.com>
9955
9956         * Form.cs (set_Owner): allow a null value so we can clear the
9957         form's owner.
9958         (Dispose): set all our owned_form's Owner properties to null, and
9959         clear the owned_forms collection.
9960         (WM_CLOSE): clean up this a little bit.. still not right though.
9961
9962         * ApplicationContext.cs: OnMainFormClosed should only call
9963         ExitThreadCore if the main form isn't recreating.  Fixes unit
9964         test.
9965
9966 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9967
9968         [Fixes 78346]
9969
9970         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
9971
9972 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9973
9974         [Fixes 79433]
9975
9976         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
9977         keep popup window types from stealing focus from the main form
9978         on Windows.
9979
9980         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
9981
9982         * MenuAPI.cs: Set above flag to true.
9983
9984 2006-11-15  Chris Toshok  <toshok@ximian.com>
9985
9986         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
9987         the button being released is not in wParam.
9988
9989 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9990
9991         * Form.cs: Add the released button to MouseEventArgs.Button
9992         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
9993         on Win32.
9994
9995 2006-11-15  Chris Toshok  <toshok@ximian.com>
9996
9997         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
9998         GetText().  untested because it's unused in our implementation.
9999         Control.Text always caches the text, even if
10000         ControlStyles.CacheText is not set.
10001
10002         fixes bug #79939.
10003
10004 2006-11-15  Chris Toshok  <toshok@ximian.com>
10005
10006         [ fixes #79933 ]
10007         
10008         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
10009         message.  no hiding, no disposing.
10010
10011         in the WM_CLOSE handler, hide the form if it's modal.
10012
10013 2006-11-15  Chris Toshok  <toshok@ximian.com>
10014
10015         * XplatUIX11.cs: use AddExpose instead of sending a message.
10016         fixes textbox border drawing.
10017
10018 2006-11-15  Chris Toshok  <toshok@ximian.com>
10019
10020         * PropertyGridView.cs: keep from crashing on mouse move/down when
10021         the property grid is empty.
10022
10023 2006-11-14  Jackson Harper  <jackson@ximian.com>
10024
10025         * TextControl.cs: Make PageUp and PageDown more like the MS
10026         versions.
10027         * TextBoxBase.cs: When we set the text property position the
10028         cursor at the beginning of the document.
10029
10030 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10031
10032         * Form.cs: if a mdi child's WindowState has changed
10033         before it's creation, it would display wrong control
10034         buttons.
10035         
10036 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
10037
10038         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
10039           (Fixes bug #79927)
10040
10041 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
10042
10043         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
10044         the window gets to paint its borders even if the window is
10045         getting smaller.
10046         
10047         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
10048         otherwise the old control buttons would still be painted 
10049         if the window gets bigger.
10050         
10051         * PaintEventArgs.cs: add an internal method so that the clip 
10052         rectangle can be changed.
10053         
10054 2006-11-13  Chris Toshok  <toshok@ximian.com>
10055
10056         [ fixes bug #79745 ]
10057         
10058         * NotifyIcon.cs: lots of cleanup.
10059
10060         * X11Structs.cs: add an enum for XEMBED messages.
10061
10062         * XplatUIX11.cs: reindent one of the giant switch statements, it
10063         was taking up an additional tab stop, and this file is already way
10064         too wide for my laptop's screen.
10065
10066         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
10067         we get it, resize the hwnd to the WMNormalHints max_width/height.
10068
10069 2006-11-13  Jackson Harper  <jackson@ximian.com>
10070
10071         * TextBoxBase.cs: Compute the value changes for the mouse wheel
10072         teh simple way.
10073
10074 2006-11-13  Chris Toshok  <toshok@ximian.com>
10075
10076         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
10077         #79898.  force a reference to the Region to stick around so the
10078         unmanaged object isn't collected (rendering our handle in the MSG
10079         stale).
10080
10081 2006-11-13  Chris Toshok  <toshok@ximian.com>
10082
10083         * XplatUIX11.cs: fix #79917 for window managers which support
10084
10085         using XStoreName on the raw utf8, and we need to convert to
10086         COMPOUND_TEXT if it's non-latin1.
10087
10088 2006-11-13  Chris Toshok  <toshok@ximian.com>
10089
10090         * Form.cs (set_DialogResult): we need to set closing to false if
10091         we're setting our result to None.  fixes bug #79908.
10092
10093 2006-11-13  Jackson Harper  <jackson@ximian.com>
10094
10095         * TextControl.cs: When formatting text, compute the adjusted tag
10096         lengths correctly, using FindTag for the end tag instead of trying
10097         to figure it out outselves.
10098         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
10099         the item, ItemHeight doesn't work, because trees with large
10100         imagelists use those for their height
10101         * TreeView.cs: ActualItemHeight factors in the image height
10102         - compute left edge of checkboxes correctly
10103         - when expanding/collapsing move the bottom down one pixel, so we
10104         aren't moving part of the node
10105
10106 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10107
10108         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
10109         stack in PaintEventStart so that it won't get disposed by the gc
10110         before reaching PaintEventEnd.
10111
10112 2006-11-13  Jackson Harper  <jackson@ximian.com>
10113
10114         * TextBoxBase.cs: Don't select the word if we are on a line with
10115         no text.
10116         - We don't need to position the caret on mouse up, since the mouse
10117         move handler should be doing this
10118         - When double clicking a blank line, the caret is advanced to the
10119         next line.
10120
10121 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
10122
10123         * TreeNodeCollection.cs: Avoid duplicating indexer code.
10124
10125 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
10126
10127         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
10128         Fixes part of bug #79910.
10129
10130 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
10131
10132         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
10133           (bug #79903). Some minor string updates to match ms.
10134
10135 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10136
10137         * FileDialog.cs: Don't add an extension if the filename
10138           already ends with that extension.
10139
10140 2006-11-10  Jackson Harper  <jackson@ximian.com>
10141
10142         * TreeView.cs: Use the currently highlighted node for the
10143         BeforeSelect event.
10144         * TextBoxBase.cs: There is no need to expand selection on
10145         MouseMove.
10146         - CanUndo means 'is there any undo operations', not 'is undo
10147         allowed on this textcontrol. Fixed ClearUndo unit test.
10148
10149 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
10150
10151         * Button.cs: only perform click when button is Selectable (so as 
10152         not to activate default buttons when they're disabled)
10153         
10154         * Control.cs: Rewrite of the SelectNextControl and related 
10155         methods. HandleClick now selects next control if the current one
10156         is being disabled.
10157         
10158         * Form.cs: OnActivated selects next active control only if Load 
10159         has already occurred. If Load hasn't run, there's no point in 
10160         selecting here, Load might change the state of controls.
10161         
10162         * FocusTest.cs: Tests marked as working again for these fixes
10163
10164 2006-11-10  Chris Toshok  <toshok@ximian.com>
10165
10166         * XplatUIX11.cs: a couple of fixes.
10167
10168         - use XInternAtoms with almost all the atoms we need to register,
10169         instead of many, many calls to XInternAtom.  should help a bit on
10170         startup time, at the expense of making the code look a little
10171         worse.
10172
10173         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
10174         isn't reparented (which seems to be a clue that we're running fon
10175         compiz) and they have an Owner form.  This fixes the tool windows
10176         in paint.net when running under compiz.
10177
10178         - when setting the opacity of a window, support both the case
10179         where the window has been reparented and also when it hasn't been.
10180         Since compiz/beryl doesn't seem to reparent windows, and these are
10181         the only window managers which support translucency, I'm not sure
10182         why we need the hwnd.reparented case at all.. but leave it in.
10183         now we get translucent windows in paint.net under compiz/beryl.
10184
10185 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10186
10187         * FileDialog.cs: Always return the value for FilterIndex that
10188           was set. Internally convert it to values that make sense.
10189
10190 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
10191         
10192         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
10193
10194 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
10195
10196         * Toolbar.cs: Change default value of DropDownArrows to true, the 
10197         signature still using false to make it compatible with MS but the 
10198         initial value is true. Fixes #79855.
10199
10200 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10201
10202         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
10203           only available on Linux.
10204
10205 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
10206
10207         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
10208         reduce number of calls to redraw method during toolbar creation.
10209
10210 2006-11-09  Mike Kestner  <mkestner@novell.com>
10211
10212         * ListView.cs : raise SelectedIndexChanged when an item is selected
10213         programmatically via the Item.Selected property.  Gert's nice 
10214         ListViewSelectedIndexChanged test fixture now runs clean.
10215
10216 2006-11-09  Mike Kestner  <mkestner@novell.com>
10217
10218         * ListView.cs : raise SelectedIndexChanged when a selected item is
10219         removed from the item collection using Remove or RemoveAt.
10220
10221 2006-11-09  Mike Kestner  <mkestner@novell.com>
10222
10223         * ListView.cs : raise SelectedIndexChanged once per selected item
10224         for compat with MS.  Fixes #79849+.
10225
10226 2006-11-09  Chris Toshok  <toshok@ximian.com>
10227
10228         * TabControl.cs: initialize row_count to 0, and set it to 1 when
10229         we need to (if we have any tab pages).  Fixes unit test.
10230
10231 2006-11-09  Chris Toshok  <toshok@ximian.com>
10232
10233         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
10234         width is 0, not 3.  Fixes a unit test.
10235
10236 2006-11-09  Mike Kestner  <mkestner@novell.com>
10237
10238         * ListView.cs : use Implicit scrollbars so that focus isn't 
10239         stolen from the listview when they are clicked. Fixes #79850.
10240
10241 2006-11-09  Chris Toshok  <toshok@ximian.com>
10242
10243         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
10244         have a root item.  Fixes #79879.
10245
10246 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
10247
10248         * FileDialog.cs:
10249           - Fix ToString ()
10250           - An ArgumentException is now thrown if a wrong filter
10251             is applied (matches ms). The previous filter doesn't change
10252             anymore if an exception is thrown.
10253           - Changing the FileName property also affects FileNames
10254         * ColorDialog.cs: The length of the CustomColors array is always
10255           16. It doesn't matter if we use a smaller array or null to update
10256           or change the custom colors property.
10257         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
10258           for RootFolder if we get a undefined value.
10259
10260 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10261
10262         * StatusBarPanel.cs: 
10263         - Width is set to MinWidth if Width is smaller than
10264         MinWidth. Fixes #79842.
10265         - MinWidth now always overrides Width (MSDN says MinWidth
10266         is set to Width when AutoSize = None, but they do not 
10267         behave like that).
10268         - Style has now the the correct default value.
10269         
10270 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10271  
10272         * TrackBar.cs: 
10273         - The control is completely invalidated on 
10274         Got/LostFocus to draw the focus rectangle correctly.
10275         - When AutoSize then height is always 45 (width for 
10276         vertical controls).
10277         
10278         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
10279         on the mouse when moved and it doesn't move when grabbed
10280         until the mouse moves as well. Also fixed some wrong 
10281         calculations when clicking on the thumb (control thought
10282         click was outside of thumb and didn't grab it).
10283         Fixes some of the issues in #79718.
10284
10285 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
10286
10287         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
10288
10289 2006-11-08  Chris Toshok  <toshok@ximian.com>
10290
10291         * PropertyGridView.cs: only call ToggleValue if the item is not
10292         readonly.
10293
10294 2006-11-08  Jackson Harper  <jackson@ximian.com>
10295
10296         * TextBoxBase.cs: The RichTextBox and textbox have very different
10297         word selection methods.  Implement the textbox's simple word
10298         selection here, and let the RichTextBox override and provide it's
10299         own.
10300         - Don't do extra selection on mouseup
10301         * RichTextBox.cs: Use the documents word selection algorithm, I
10302         think ideally, this function will be pulled into the
10303         RichTextBox.cs code someday.
10304
10305 2006-11-08  Chris Toshok  <toshok@ximian.com>
10306
10307         * RootGridEntry.cs: new class to represent GridItemType.Root.
10308
10309         * CategoryGridEntry.cs: reformat, and add boilerplate.
10310         
10311         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
10312         returns the UI parent anyway, and we need special handling to
10313         implement the GetTarget method in the face of it.  Also, implement
10314         Select().
10315
10316         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
10317         a root grid item, and use that instead of PropertyGrid.grid_items.
10318         Also, make use of TypeConverters (and add limitted support for
10319         ICustomTypeDescriptors) when initially populating the grid.
10320         Arrays now show up more or less properly.
10321
10322 2006-11-08  Chris Toshok  <toshok@ximian.com>
10323
10324         * Application.cs: set the modal dialog to non modal after we close
10325         it.  Fixes bug #79866.
10326
10327 2006-11-08  Jackson Harper  <jackson@ximian.com>
10328
10329         * TextControl.cs: When combining lines carry over the line end
10330         style from the end line.
10331         - Invalidate the selected area when setting it, if it is visible.
10332         * TextBoxBase.cs: Only rich text box can do full line selects.
10333         - Make sure to set the cursor position when there is a click,
10334         otherwise two clicks in separate areas could cause a large chunk
10335         to be selected.
10336
10337 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10338
10339         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
10340         Fixes #79863.
10341
10342 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10343
10344         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
10345         time. Remove tooltips when ToolButton click events.  Fixes #79856.
10346
10347 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10348
10349         * MenuAPI.cs: Ignore right click for menu actions and fixes
10350         menu border when clicked.  Fixes #79846.
10351
10352 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10353
10354         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
10355         MouseState after create wParam for message, this fixes mouse button 
10356         equal none in mouse up events.
10357         
10358 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
10359
10360         * Control.cs : Focus() now calls Select to set the Container's
10361         Active Control and to give it focus. To avoid infinite recursion
10362         (because ActiveControl also calls Focus at one point), a check 
10363         is made in Focus with the help of a new internal variable
10364         is_focusing.
10365
10366 2006-11-07  Mike Kestner  <mkestner@novell.com>
10367
10368         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
10369         if there's a selection.  Fixes #79849.
10370
10371 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
10372
10373         * PropertyGrid.cs: Avoid fixed height of help description label.
10374         Fixes part of bug #79829.
10375
10376 2006-11-07  Chris Toshok  <toshok@ximian.com>
10377
10378         * XplatUIX11.cs: fix #79790 again, by using the
10379         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
10380
10381 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10382
10383         * ToolBar.cs: Fix left click checking.
10384
10385 2006-11-07  Chris Toshok  <toshok@ximian.com>
10386
10387         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
10388
10389 2006-11-07  Chris Toshok  <toshok@ximian.com>
10390
10391         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
10392         PropertyManager unit tests.
10393
10394         * PropertyManager.cs: make property_name internal.
10395
10396 2006-11-07  Chris Toshok  <toshok@ximian.com>
10397
10398         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
10399         pass a unit test.  Also, don't set image_index to anything in
10400         response to setting the ImageList property.
10401
10402 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10403
10404         * ToolBar.cs: Ignore click events when mouse button is not a
10405         left button, only accepts other button for dropdown menus.  
10406         Fixes #79854.
10407
10408 2006-11-07  Chris Toshok  <toshok@ximian.com>
10409
10410         * DataGrid.cs: make the back and parent row buttons a little less
10411         ugly.
10412
10413 2006-11-07  Jackson Harper  <jackson@ximian.com>
10414
10415         * TextBoxBase.cs: When converting to Text don't put line breaks in
10416         for soft line breaks.
10417         * TextControl.cs: There is an initial "fake" line in the document,
10418         this is now a soft break line, so that an extra line feed doesn't
10419         get added to the end of documents.
10420
10421 2006-11-07  Chris Toshok  <toshok@ximian.com>
10422
10423         [ fix bug #79778 ]
10424         
10425         * CurrencyManager.cs: if the list is readonly, don't bother
10426         checking if IBindingList.AllowNew is true.
10427
10428         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
10429         for non-DataRowView datasources..  or rather, make it not crash.
10430         (DataGridPaintRelationRow): make sure we limit the row painting to
10431         the area not covered by the row header, and make our cell width at
10432         least large enough to cover the relation area.  This allows grids
10433         that have relations but no rows to render correctly.
10434         (DataGridPaintRowContents): same type of changes here.
10435         (SetDataSource): move back to always calling
10436         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
10437         navigating back through relations.
10438         (HitTest): handle the case where we have no cells but have
10439         relations.  Right now we generate a hit in cell 0 of whatever the
10440         row is, not sure if this is strictly correct, but it works for our
10441         purposes.
10442         
10443         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
10444         bother doing anything.
10445
10446 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
10447
10448         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
10449         early version of StatusStrip.  Not responsible for eaten
10450         application or firstborn children.
10451
10452 2006-11-06  Chris Toshok  <toshok@ximian.com>
10453
10454         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
10455         call GetTabRect with a -1 index.  Fixes #79847.
10456
10457 2006-11-06  Jackson Harper  <jackson@ximian.com>
10458
10459         * TreeNodeCollection.cs: Update scrollbars after clearing.
10460
10461 2006-11-06  Chris Toshok  <toshok@ximian.com>
10462
10463         * NumericUpDown.cs: fix the ToString method for some unit test
10464         love.
10465
10466 2006-11-06  Chris Toshok  <toshok@ximian.com>
10467
10468         * PropertyGrid.cs:
10469         - set the initial SelectedGridItem if we can.
10470
10471         - Exclude non-mergable properties only if we're merging > 1
10472         object.  Merging 1 object isn't really merging, obviously.
10473
10474         - Handle PropertySort.NoSort just like Alphabetical, which is
10475         wrong of course, but at least gets things on the screen.
10476         
10477         * PropertyGridView.cs:
10478         - Add method "FindFirstItem" which finds the first property grid
10479         item, so we can select it by default.
10480
10481         - make use of GridEntry.CanResetValue.
10482
10483         - Don't call RedrawBelowItemOnExpansion here anymore, the
10484         individual GridEntry's will do that.
10485
10486         - Remove the ITypeDescriptorContextImpl internal class.
10487         
10488         * GridEntry.cs:
10489         - this class needs to implement ITypeDescriptorContext, as it's
10490         what MS's PropertyDescriptorGridEntry does, which means we can
10491         remove the ITypeDescriptorContextImpl internal class from
10492         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
10493
10494         - keep a reference to our PropertyGridView, and move the call to
10495         RedrawBelowItemOnExpansion here from PGV.  This means
10496         programmaticly setting Expanded actually does something visible.
10497
10498         - add a CanResetValue() function which takes into account our
10499         possibly multiple "selected_objects" in the merged case.  Shifting
10500         PropertyGridView to use this method fixes another unreported
10501         crasher found running the test for #79829.
10502
10503         - when Top or Bounds is updated, make sure the PropertyGridTextBox
10504         is updated to reflect this.
10505
10506         * CategoryGridEntry.cs: the ctor takes the PGV now.
10507         
10508 2006-11-06  Jackson Harper  <jackson@ximian.com>
10509
10510         * TextControl.cs: These are 1 based.
10511         * TextBoxBase.cs: When setting the selected text, don't change the
10512         selected text tags, this is done by ReplaceText, just position the
10513         cursor at the end of the new text.
10514
10515 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10516
10517         * ListView.cs: Allow label edit only when, when LabelEdit is
10518           set to true.
10519
10520 2006-11-06  Jackson Harper  <jackson@ximian.com>
10521
10522         * TextControl.cs: If a suitable wrapping position isn't found,
10523         just wrap right in the middle of a word.
10524
10525 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10526
10527         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
10528           bug #79820.
10529
10530 2006-11-06  Jackson Harper  <jackson@ximian.com>
10531
10532         * TreeView.cs: Can't use the VisibleCount property when setting
10533         scrollbar heights, because this doesn't take into account whether
10534         or not the horz scrollbar just came visible.
10535
10536 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
10537
10538         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
10539         activated.  Fixes #79369, #79832.
10540
10541 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
10542
10543         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
10544           had to remove support for links that point to a directory. FileInfo
10545           returns no usefull information (means, the directory they point to)
10546           for such links. Replaced some empty string ("") with String.Empty.
10547
10548 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10549
10550         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
10551         NullReferenceException when attempting to remove node that is not in
10552         collection. Throw NullReferenceException when null is passed to 
10553         Remove. Allow first element of the collection to be removed. Fixes
10554         bug #79831.  In GetEnumerator ().Current return null if positioned 
10555         before the first element of the collection. In GetEnumerator ().Reset,
10556         position before first element of the collection.
10557
10558 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10559
10560         * PropertyGrid.cs: To match MS, remove default title and description
10561         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
10562         buttons.
10563
10564 2006-11-04  Chris Toshok  <toshok@ximian.com>
10565
10566         * Theme.cs: add a Clamp method, just for kicks.
10567
10568         * ThemeWin32Classic.cs: clamp all color components to [0..255].
10569
10570 2006-11-04  Chris Toshok  <toshok@ximian.com>
10571
10572         * Form.cs: if the form isn't visible, Close() does nothing.
10573
10574 2006-11-03  Chris Toshok  <toshok@ximian.com>
10575
10576         * Form.cs (Close): if the form is modal, don't Dispose of it, only
10577         Hide it.
10578         (WndProc): don't Dispose after handling the WM_CLOSE message.
10579
10580         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
10581         them as such, instead of using casts from Control to Form.  Also,
10582         don't Dispose of the modal dialog when we fall out of the loop -
10583         Close() it instead.
10584
10585         fixes bug #79813.
10586
10587 2006-11-03  Chris Toshok  <toshok@ximian.com>
10588
10589         * Control.cs (Dispose): only go through the dispose thing if we're
10590         @disposing, and we haven't already been disposed.  Fixes bug
10591         #79814.
10592
10593         * Form.cs: no reason to call "base.Dispose()" here instead of
10594         "Dispose()".
10595
10596 2006-11-03  Mike Kestner  <mkestner@novell.com>
10597
10598         * ComboBox.cs : use ToString instead of casts in AddItem for
10599         sorting functionality.  Fixes #79812.
10600
10601 2006-11-03  Chris Toshok  <toshok@ximian.com>
10602
10603         * Application.cs: pave the way for actually using the thread
10604         exception dialog.  it's ifdefed out at the moment.
10605
10606 2006-11-03  Chris Toshok  <toshok@ximian.com>
10607
10608         * ThreadExceptionDialog.cs: until we get a better layout, actually
10609         hide the details textbox and label when we shouldn't see them.
10610
10611 2006-11-03  Jackson Harper  <jackson@ximian.com>
10612
10613         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
10614         multiline textboxes anymore.  This method also determines the
10615         width/height of a textboxes canvas area.
10616         - Sorta a revert of the last patch.  For multiline just position
10617         the controls, then bail.  This way the scrollbar width won't be
10618         altered.
10619
10620 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
10621
10622         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
10623         it dont need.  Fixes #79537.
10624
10625 2006-11-02  Jackson Harper  <jackson@ximian.com>
10626
10627         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
10628         send the status after firing the DndOver event.
10629
10630 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10631
10632         * TrackBar.cs: Now orientation only switches height / width if
10633         the control's handle is created (Win32 does it like this). Also 
10634         fixed a typo in ToString() for a test to pass, changed the 
10635         exception thrown in set_LargeChange and set_SmallChange to 
10636         match Win32 behaviour, and added TrackBar tests to the unit 
10637         tests.
10638
10639 2006-11-02  Chris Toshok  <toshok@ximian.com>
10640
10641         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
10642         not _NET_WM_STATE_NO_TASKBAR.
10643
10644 2006-11-02  Jackson Harper  <jackson@ximian.com>
10645
10646         * TextControl.cs: Increment count by one, since in the update view
10647         count - 1 is used.
10648
10649 2006-11-02  Jackson Harper  <jackson@ximian.com>
10650
10651         * TextBoxBase.cs: Use client rectangle not bounds for checking if
10652         the mouse is in the client rectangle (duh).
10653
10654 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10655         
10656         * TrackBar.cs: Fixed trackbar jumping around when clicking
10657         on it - the trackbar was not detecting correctly at which
10658         side of the thumb the click was done. (fixes #79718)
10659
10660 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10661
10662         * ListBox.cs: scroll visible area when change SelectedIndex to
10663         a non visible area.  Fixes #79481.
10664
10665 2006-11-01  Jackson Harper  <jackson@ximian.com>
10666
10667         * TextControl.cs: When replacing the selection move the selection
10668         start/end/anchor to the end of the new text.
10669
10670 2006-11-01  Jackson Harper  <jackson@ximian.com>
10671
10672         * XplatUIWin32.cs: When setting the parent change the controls
10673         visibility to it's visibility flag, not to it's old parents
10674         visibility (.Visible walks the parent chain).
10675
10676 2006-11-01  Chris Toshok  <toshok@ximian.com>
10677
10678         * XplatUIX11.cs: revert the #79790 fix, as the simple.
10679         XSetTransientForHint fix breaks paint .net's tool windows.  more
10680         work needed for that one.
10681
10682 2006-11-01  Chris Toshok  <toshok@ximian.com>
10683
10684         * ScrollBar.cs: throw ArgumentException instead of Exception in
10685         LargeChange/SmallChange setters.  fixes unit tests.
10686
10687 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10688
10689         * ContainerControl.cs: reverted rev.67183 (which was itself
10690         a reversion of rev.66853... eh).
10691         
10692         * Control.cs: Fixes Reflector hang by changing Focus() call
10693         to what it was before rev.66643 (calling Select() here sets 
10694         ActiveControl, which in some situations calls back Focus and 
10695         eventually does a stack overflow). Temp fix.    
10696         Changes to GetNextControl() to not look for children to select when
10697         parent cannot be selectable (so it looks for siblings instead)  
10698         
10699 2006-10-31  Mike Kestner  <mkestner@novell.com>
10700
10701         * CheckedListBox.cs : off by one error in returned index from
10702         ObjectCollection.Add.  Fixes #79758.
10703
10704 2006-10-31  Chris Toshok  <toshok@ximian.com>
10705
10706         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
10707         calls for the textbox/spinner, to keep from recursing to the point
10708         where we crash.  Fixes #79760.
10709
10710 2006-10-31  Chris Toshok  <toshok@ximian.com>
10711
10712         * ListControl.cs (set_SelectedValue): don't throw exceptions on
10713         null/"" value, just return.  matches ms's behavior and fixes some
10714         failing tests.
10715
10716 2006-10-31  Chris Toshok  <toshok@ximian.com>
10717
10718         * Control.cs (set_Capture): make a logic a little easier to
10719         follow.
10720
10721         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
10722         if it's being destroyed.  A necessary fix surely, but a bandaid
10723         also, to fix the stuck capture problem in bug #78413.
10724
10725 2006-10-31  Chris Toshok  <toshok@ximian.com>
10726
10727         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
10728         convention of clearing hwnd.ClientRect when we set the
10729         width/height (so it'll be recalculated by Hwnd).
10730
10731 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10732
10733         * ContainerControl.cs: reversed Contains check from
10734         ActiveControl due to hanging problems. This fix
10735         partly regresses #79667 (button does not have
10736         initial focus), so this might be a symptom for 
10737         a larger parenting problem (set_ActiveControl
10738         is being called but the child control does
10739         not have the parent set yet?)   
10740         
10741 2006-10-31  Mike Kestner  <mkestner@novell.com>
10742
10743         * MenuAPI.cs : fix keynav when menu is click activated.
10744
10745 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
10746
10747         * ToolStrip*: Version 0.2.
10748
10749         * MenuStrip.cs: Version 0.1.
10750
10751         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
10752
10753 2006-10-30  Chris Toshok  <toshok@ximian.com>
10754
10755         [ fixes the oversized notify icon issue in bug #79745 ]
10756         
10757         * NotifyIcon.cs: scale the icon down to the size we're given by
10758         the XplatUI layer (this would be faster if we did it once instead
10759         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
10760         since it's never invoked.
10761
10762         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
10763         pixels high by default, so let's hardcode our systray icon to that
10764         size.  The SYSTEM_TRAY protocol should really have a way for
10765         client apps to query for the correct icon size.. but oh well.  A
10766         couple of patches to deal with the screwy client_window ==
10767         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
10768         instance, and also make sure we don't XSelectInput twice).
10769
10770 2006-10-30  Chris Toshok  <toshok@ximian.com>
10771
10772         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
10773         recreating forms.  Control recreation is the bane of my existence.
10774         Fix it in a way that keeps everyone happy.
10775
10776 2006-10-30  Chris Toshok  <toshok@ximian.com>
10777
10778         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
10779         just non-CHILD ones.  otherwise sometimes scrollbars end up with
10780         client_windows not being resized to the proper size (ReportBuilder
10781         shows this extremely well).
10782
10783 2006-10-30  Chris Toshok  <toshok@ximian.com>
10784
10785         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
10786         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
10787         showing up in the gnome taskbar.  Fixes bug #79790.
10788
10789 2006-10-30  Chris Toshok  <toshok@ximian.com>
10790
10791         * ApplicationContext.cs: guard against a NRE.
10792
10793         * Application.cs: null out the old MainForm for the context, so we
10794         don't try to use it again once it's disposed.  Fixes bug #79783.
10795
10796 2006-10-30  Chris Toshok  <toshok@ximian.com>
10797
10798         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
10799         BindingContext, set the data source directly, otherwise do the
10800         lazy approach - the actual ListManager will be created when we get
10801         a BindingContext. Fixes bug #79700.
10802
10803 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
10804
10805         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
10806           XplatUIX11.cs: Remove old 2 parameter SetVisible.
10807
10808         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
10809
10810 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
10811
10812         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
10813         of SetVisible that allows a window to be shown, but not activated.
10814         This is needed on Windows for MenuStrip, and can probably be used
10815         with MainMenu and ComboBox to fix the focus stealing issues on
10816         Windows.
10817
10818         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
10819
10820 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
10821
10822         * PictureBox.cs: Fix the output of the ToString method.
10823
10824 2006-10-29  Chris Toshok  <toshok@ximian.com>
10825
10826         * Control.cs (get_TopLevelControl): fix bug #79781.
10827
10828 2006-10-29  Chris Toshok  <toshok@ximian.com>
10829
10830         * ListControl.cs (set_DataSource): throw Exception here, not
10831         ArgumentException, to match MS behavior.
10832
10833 2006-10-29  Chris Toshok  <toshok@ximian.com>
10834
10835         * Form.cs: remove the try-catch's around calls to GetWindowState.
10836         We can just check the return value.
10837
10838         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
10839         Instead return -1.
10840
10841         * XplatUI.cs: Add note about additional return value for
10842         GetWindowState.
10843
10844 2006-10-29  Chris Toshok  <toshok@ximian.com>
10845
10846         * Control.cs (CreateHandle): when we create our handle, we also
10847         create the handles of our child controls.  Fixes one of the
10848         Control unit tests (CH11).
10849
10850 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
10851
10852         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
10853
10854 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
10855
10856         * ThemeClearlooks.cs: A little speedup.
10857
10858 2006-10-27  Chris Toshok  <toshok@ximian.com>
10859
10860         * Control.cs: implement Control.FromChildHandle in a way that
10861         matches the docs (and fixes the failed test.)
10862
10863 2006-10-27  Chris Toshok  <toshok@ximian.com>
10864
10865         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
10866         comments).
10867
10868         * DataGrid.cs: implement ResetForeColor such that the tests
10869         succeed.
10870         
10871 2006-10-27  Chris Toshok  <toshok@ximian.com>
10872
10873         * ToolBarButton.cs: setting text/tooltiptext to null results in it
10874         being set to "".  Fixes bug #79759.
10875
10876 2006-10-27  Jackson Harper  <jackson@ximian.com>
10877
10878         * TextControl.cs: We need to clear the entire selection area when
10879         setting the start, otherwise multiline selections are still
10880         visible.
10881
10882 2006-10-26  Chris Toshok  <toshok@ximian.com>
10883
10884         * PropertyGridView.cs: 
10885
10886         - ifdef all the code specific to the double
10887         buffer case, and provide some alternatives in the non-doublebuffer
10888         code, which makes heavy use of XplatUI.ScrollWindow to move things
10889         around without having to invalidate (and cause flicker).  There
10890         are still some drawing problems in the non-doublebuffered case, so
10891         DOUBLEBUFFER is defined by default.
10892
10893         - Fix the way dropdowns are handled.  now we explicitly watch for
10894         the events which might cause the dropdown to close, and break out
10895         of the nested event loop there.  This gets rid of all Capture
10896         code, at the expense of the Msg special casing.  Seems to work,
10897         though, and fixes bug #79743.
10898
10899 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
10900         * Control.cs: SetIsRecreating now recreates implicitly added
10901         child controls as well. Finally fixes #79629. The flag passed to 
10902         SetIsRecreating has also been removed since it wasn't used.
10903         
10904 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10905
10906         * PageSetupDialog.cs: Clean some code, fix some bits, 
10907         add some checks, and add a printer sub-dialog.
10908
10909 2006-10-26  Chris Toshok  <toshok@ximian.com>
10910
10911         * PropertyGrid.cs: make set_SelectedObject call
10912         set_SelectedObjects, and move the duplicate logic to the
10913         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
10914
10915         * PropertyGridView.cs: hide the textbox when we get a
10916         SelectedObjectsChanged event.
10917
10918         Fixes bug #79748.
10919
10920 2006-10-26  Chris Toshok  <toshok@ximian.com>
10921
10922         * PropertyGridView.cs: deal with the type converter not supporting
10923         GetStandardValues() or GetStandardValues() returning null, which
10924         is does in the default case.  Fixes #79742.
10925
10926 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
10927
10928         * CheckedListBox.cs: nunit no longer crashes when selecting 
10929         Project/Edit menu option
10930         
10931 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
10932
10933         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
10934         is no menu selected. fixes #79739
10935
10936 2006-10-25  Chris Toshok  <toshok@ximian.com>
10937
10938         * PropertyGridView.cs: factor out the splitter invalidation code
10939         into the SplitterPercent setter, and for kicks implement the
10940         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
10941         amount in either direction.
10942
10943 2006-10-25  Chris Toshok  <toshok@ximian.com>
10944
10945         * PropertyGridView.cs: do some cleanup of the brush used to draw
10946         text - read only fields should be grayed out.  not sure how to do
10947         this with the textbox, though.  but the textbox's should also be
10948         readonly now at least.  Also, hide/show the textbox when resizing
10949         the control.
10950         
10951         * CursorConverter.cs: use System.Reflection when getting the
10952         properties of Cursors, as TypeDescriptor.GetProperties isn't
10953         returning static properties.
10954
10955 2006-10-25  Chris Toshok  <toshok@ximian.com>
10956
10957         * PropertyGridView.cs: factor out the up/down handling, and reuse
10958         it for page up/down.  also add End/Home support.
10959
10960 2006-10-25  Chris Toshok  <toshok@ximian.com>
10961
10962         * PropertyGridView.cs:
10963
10964         - ensure the selected grid item is visible in the scrolled area,
10965         fixes bug #79572.
10966
10967         - fix Keys.Down handling when you're on the last item in the
10968         propertygrid.
10969
10970 2006-10-25  Mike Kestner  <mkestner@novell.com>
10971
10972         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
10973         clicks too.  Fixes #79725.
10974
10975 2006-10-24  Chris Toshok  <toshok@ximian.com>
10976
10977         * PropertyGrid.cs: use property.Converter instead of
10978         TypeDescriptor.GetConverter(property.PropertyType), so we catch
10979         TypeConverters declared on the property as well as on the
10980         PropertyType.  Fixes bug #79678.
10981
10982 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
10983
10984         * MimeIcon.cs, Mime.cs:
10985           Fallback to the default platform handler if no shared mime info
10986           stuff exists (fixes #79693).
10987
10988 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
10989         * ContainerControl.cs: Incorrect contains check in ActiveControl 
10990         from previous fix (duh).
10991
10992 2006-10-20  Chris Toshok  <toshok@ximian.com>
10993
10994         * PropertyGridView.cs: the dropdown should be MIN(number of items
10995         in list, 15).  Fixes #79551.
10996
10997 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
10998         Fixes #79384, #79394, #79652, #79667
10999         * Application.cs: 
11000         
11001         - Modal windows are now destroyed in the proper order for windows
11002         
11003         * ContainerControl.cs:
11004         
11005         - ActiveControl setter has more conditions on when to return:
11006                 - if we're reselecting the active control, but it actually
11007                 didn't have focus (window hidden or some such), it runs
11008                 - if the active control being selected doesn't actually 
11009                 exist in the container, it returns
11010         
11011         * Form.cs
11012         
11013         - The ShowDialog now gets the current form as the owner when
11014         invoking without parameters, and correctly activates the owner 
11015         when returning
11016         
11017         * MessageBox.cs
11018         
11019         - MessageBox now catches the Escape key to exit
11020
11021 2006-10-20  Chris Toshok  <toshok@ximian.com>
11022
11023         * PropertyGridView.cs: fix a number of issues (bug #78565, and
11024         most of bug #79676):
11025
11026         - you can navigate around the property grid with the arrow keys.
11027
11028         - the dropdown is sized properly when the pg has a vertical
11029         scrollbar.
11030
11031         - fix the indentation for subentries, and properly select the
11032         entire label rect.
11033
11034         - fix the gray bar's drawing (only draw it to the last element,
11035         not for the height of the control.  Also make sure we draw that
11036         last horizontal grid line.
11037
11038         - use the same mechanism the datagrid uses wrt the editing textbox
11039         when scrolling/resizing/etc.  Namely, we hide it first, do the
11040         operation, then show it again (if it's still visible).
11041         
11042         - aggressively remove a lot of unnecessary refreshes (and also
11043         calls to Invalidate(). call more limited variants, and only redraw
11044         what we need.)
11045         
11046         * PropertyGrid.cs:
11047
11048         - when we're populating the merged collection, fill in the UI
11049         parent with either the passed in item, or the category item we
11050         create.
11051
11052         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
11053
11054         * GridItem.cs: drop some fully qualified names.
11055         
11056         * GridEntry.cs: add a "UIParent", which is basically the parent
11057         treenode.
11058
11059         * GridItemCollection.cs: add an IndexOf method.
11060
11061 2006-10-20  Mike Kestner  <mkestner@novell.com>
11062
11063         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
11064         a working win32 NC invalidation mechanism, we can't invalidate
11065         menus.  [Fixes #79705]
11066
11067 2006-10-20  Mike Kestner  <mkestner@novell.com>
11068
11069         * ListBox.cs : don't update the VScrollbar if the list is empty,
11070         just hide it.  [Fixes #79692]
11071
11072 2006-10-20  Jackson Harper  <jackson@ximian.com>
11073
11074         * RichTextBox.cs: Handle some special chars better, and don't skip
11075         the entire group when we encounter a special char that we don't
11076         handle correctly.
11077
11078 2006-10-18  Chris Toshok  <toshok@ximian.com>
11079
11080         * PropertyGridView.cs: address a number of issues from bug #79676,
11081         mostly of the cosmetic variety.
11082
11083         - The highlight rectangle for indented items not extends all the
11084         way to the left.
11085
11086         - Indented items aren't indented so much.
11087
11088         - the dropdown is properly sized width-wise if the pg has a
11089         vertical scrollbar.
11090
11091 2006-10-18  Chris Toshok  <toshok@ximian.com>
11092
11093         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
11094         systray stuff is rather convoluted to begin with.
11095
11096         systray icons are a single window for some reason (that I haven't
11097         figured out yet), and for them, client_window == whole_window.
11098         Given the way the tests are structured elsewhere to determine
11099         which paints are pending (client vs. nc), that situation will
11100         always yield PAINT, not NCPAINT.  So, if we have a pending
11101         nc_expose and no pending expose, remove the hwnd from the paint
11102         queue, and also set nc_expose_pending to false, to keep us from
11103         blocking further expose's adding the hwnd to the paint queue.
11104
11105         phew.  like i said, a rather convoluted change.  Fixes the
11106         notifyicon repaint issues in bug #79645.
11107
11108 2006-10-18  Chris Toshok  <toshok@ximian.com>
11109
11110         * Form.cs: when getting the backcolor of the form, don't get
11111         base.BackColor, as this allows parents to influence the background
11112         color.  This breaks mdi forms.  Instead, if the background_color
11113         is empty, return the default.
11114
11115 2006-10-18  Chris Toshok  <toshok@ximian.com>
11116
11117         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
11118         to being private instead of internal static.
11119
11120         * Control.cs: remove all the stupid ParentWaitingOnRecreation
11121         crap, it wasn't working for more deeply nested controls anyway,
11122         and we already have the is_recreating flag - use that instead.
11123         Before calling DestroyHandle in RecreateHandle, recurse through
11124         the control tree setting it to true.  this returns the recreate
11125         code to much of its original simplicity, while now guaranteeing we
11126         actually recreate everything we're supposed to.  This change gets
11127         fyireporting actually showing mdi children.
11128
11129 2006-10-17  Chris Toshok  <toshok@ximian.com>
11130
11131         * Form.cs: remove some debug spew, and collapse some duplicate
11132         code at the end of SetClientSizeCore.
11133
11134         * XplatUIX11.cs: 
11135         - add some more debug spew here too wrt Destroy handling.
11136         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
11137         in Control's handling of WM_DESTROY.
11138         - Remove the handling of zombie window DestroyNotifies from the
11139         event loop - we don't need it.  Now the only DestroyNotifies we
11140         actually handle are ones generated by X.
11141         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
11142         match gtk's (functioning) handling of this. This keep metacity
11143         from leaving droppings in the form of wm borders with no window
11144         contents all over the place.
11145
11146         * Control.cs:
11147         - add a bunch of debug spew wrt control recreation.
11148         - fix a bug where we weren't tracking Visible properly on
11149         recreated hwnds.
11150         - fixed the WM_PAINT double buffer handling to support re-entrant
11151         calls (yes, i know it's gross, but it's happening to us).
11152
11153 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11154         * ThemeWin32Classic.cs: changed drawing of selected days
11155         to make them look better.
11156
11157 2006-10-16  Chris Toshok  <toshok@ximian.com>
11158
11159         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
11160         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
11161
11162         * XplatUIX11.cs: move away from using hwnd.client_dc and
11163         hwnd.non_client_dc and on to a stack of dc's (and in window's
11164         case, PAINTSTRUCT's), so we can deal with nested Paint calls
11165         without puking or not disposing of Graphics objects.
11166
11167         * XplatUIOSX.cs: same.
11168
11169         * XplatUIWin32.cs: same.
11170
11171 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11172
11173         * FileDialog.cs: Don't call on_directory_changed inside
11174           OnSelectedIndexChanged (it changes the SelectedIndex too).
11175           Instead move it to OnSelectionChangeCommitted.
11176
11177 2006-10-13  Chris Toshok  <toshok@ximian.com>
11178
11179         * XplatUIX11.cs: more Destroy work.  the current code does the
11180         following things, in order:
11181
11182         1. Enumerates all handles of all controls at or below the one
11183         being destroyed, in pre-order.  As it is doing this, it marks the
11184         handles as zombie and clears all references to them.
11185         
11186         2. calls XDestroyWindow on the window passed in.
11187
11188         3. SendMessage's WM_DESTROY to all he handles in the accumulated
11189         list.
11190
11191 2006-10-13  Chris Toshok  <toshok@ximian.com>
11192
11193         * XplatUIX11.cs: set hwnd.zombie to true before calling
11194         SendMessage (WM_DESTROY).  this keeps us from marking the new
11195         window a zombie, and also keeps us from calling sendmessage at
11196         all.
11197
11198 2006-10-13  Jackson Harper  <jackson@ximian.com>
11199
11200         * TextControl.cs: Do not show the caret and selection at the same
11201         time.  Reduces ugliness by 35%.
11202
11203 2006-10-13  Chris Toshok  <toshok@ximian.com>
11204
11205         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
11206         zombie after we do the recursive call, so we actually do call
11207         SendMessage on the children controls.
11208         (GetMessage): if we find a pending paint event for a zombie hwnd,
11209         remove the hwnd from the paint queue, or else it will always be
11210         there (and we'll effectively loop infinitely)
11211
11212 2006-10-13  Mike Kestner  <mkestner@novell.com>
11213
11214         * MenuItem.cs : add Selected format under keynav too.
11215         Fixes #79528.
11216
11217 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
11218
11219         * PropertyGrid.cs: Fixed some NRE's and small difference between our
11220         implementation and that of MS.
11221
11222 2006-10-13  Chris Toshok  <toshok@ximian.com>
11223
11224         * Control.cs (OnInvalidated) only futz with the invalid_region if
11225         the control is double buffered.  this fixes the apparent hang in
11226         the ListView unit tests.  Someone needs to make the
11227         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
11228
11229 2006-10-13  Chris Toshok  <toshok@ximian.com>
11230
11231         * PropertyGridView.cs:
11232
11233         - do a little refactoring so that only one place calls
11234         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
11235         else call that.  Also make it Refresh, since there are redraw bugs
11236         otherwise (we should take a look at that...)
11237
11238         - do a little more refactoring work to share the body of code
11239         involved with the drop down.  it was duplicated in the code
11240         dealing with the listbox handling and in the code dealing with the
11241         UITypeEditors.
11242
11243         - add a Capture to the dropdown form's control once it's
11244         displayed, and add a MouseDown handler that checks to make sure
11245         the position is inside the control.  If it's not, close the
11246         dropdown.  This fixes #78190.
11247
11248         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
11249         if the value is different than the initial value.
11250         
11251 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
11252
11253         * Control.cs: see #78650
11254         - Fixed GetNextControl for several cases:
11255                 - Changed FindFlatForward to return 
11256                 correct sibling control when more than one
11257                 control has same TabIndex as the currently 
11258                 focused one.
11259                 - Changed FindFlatBackward to loop children
11260                 from last to first and apply same logic as in
11261                 FindFlatForward
11262                 - Changed FindControlForward to search for
11263                 children when control is not a container
11264                 but has children, or search for siblings if
11265                 control is a container...
11266                 - Changed FindControlBackward   to continue
11267                 searching for child controls when hitting 
11268                 Panel-like parents
11269                 
11270         - Fixed Focus method to update ActiveControl
11271         (FocusTest.FocusSetsActive failure)
11272         
11273         * TabControl.cs:
11274         - Focus rectangle now refreshes when gaining
11275         or losing focus
11276         - Removed grab for Tab key on IsInputKey that 
11277         was keeping tab navigation from working (#78650)
11278
11279 2006-10-13  Chris Toshok  <toshok@ximian.com>
11280
11281         * PropertyGridView.cs:
11282         - Rewrite SetPropertyValue to loop over SelectedGridItem's
11283         SelectedObjects.
11284
11285         - Deal with GridItem.Value == null a few places.
11286
11287         * PropertyGrid.cs: 
11288         - replace the PopulateGridItemCollection with a pair of methods
11289         which compute the intersection of all the properties in the
11290         SelectedObjects array.  Fixes #79615.
11291
11292         - Throw ArgumentException from set_SelectedObjects if there's a
11293         null in the array.
11294
11295         - Add GetTarget method which can be used to traverse up the
11296         GridItem.Parent chain.  It depends on the assumption that
11297         selected_objects for different GridEntries are always in the same
11298         order (a safe assumption).  Use this method and loop over all the
11299         selected objects in the entry when calling RemoveValueChanged and
11300         AddValueChanged.
11301         
11302         * GridEntry.cs: Make this handle multiple selected objects.
11303         .Value returns null if not all the selected objects share the same
11304         value.
11305
11306 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
11307         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
11308           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
11309           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
11310           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
11311           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
11312         add additional functionality.
11313
11314 2006-10-12  Mike Kestner  <mkestner@novell.com>
11315
11316         * ErrorProvider.cs : new ToolTipWindow ctor sig.
11317         * HelpProvider.cs : new ToolTipWindow ctor sig.
11318         * ToolTip.cs : remove ToolTip param from Window sig since it is
11319         not used.
11320         * ToolBar.cs : add tooltip support.  Fixes #79565.
11321
11322 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11323
11324         * ComboBox.cs: move the events in set_SelectedIndex to 
11325         after the call to HighlightIndex in order to avoid 
11326         possible recursion and subsequent problems with the call
11327         to HighlightIndex and include a range check in 
11328         set_HighlightIndex. Fixes #79588
11329         
11330 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11331
11332         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
11333         to ui thread's settings instead of sunday. 
11334         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
11335
11336 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11337
11338         * DateTimePicker.cs
11339         * MonthCalendar.cs
11340         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
11341         and implement missing functionality (selecting different parts 
11342         of the date and edit them individually with the keyboard).
11343         
11344 2006-10-11  Chris Toshok  <toshok@ximian.com>
11345
11346         * Control.cs (OnInvalidated): fix NRE relating to last change.
11347
11348 2006-10-11  Chris Toshok  <toshok@ximian.com>
11349
11350         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
11351         atoms in _NET_WM_STATE here if the window is maximized.  We need
11352         to do this because we're *replacing* the existing _NET_WM_STATE
11353         property, so those atoms will be lost otherwise, and any further
11354         call to GetWindowState will return Normal for a window which is
11355         actually maximized.  Fixes #79338.
11356
11357 2006-10-11  Jackson Harper  <jackson@ximian.com>
11358
11359         * TextControl.cs: Special case for setting selection end to
11360         selection start, we basically kill the anchor.
11361         - some todo comments.
11362
11363 2006-10-11  Chris Toshok  <toshok@ximian.com>
11364
11365         * Control.cs: switch to using an "invalid_region" to track which
11366         parts of the image buffer need updating.  This is more code than
11367         the simple fix from r66532.  That version just attempted to always
11368         fill the entire buffer on redraw, which turns out to be
11369         inefficient when invalidating small rectangles.  This version
11370         simply adds the invalid rectangle to the invalid region.  When we
11371         get any WM_PAINT message we see if it can be filled using the
11372         image buffer, and if it can't (if the paint event's clip rectangle
11373         is visible in the invalid region) we first fill the image buffer.
11374         So, the image buffer is still a cache, we just fill it lazily.
11375
11376         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
11377         need it any longer.
11378
11379 2006-10-11  Chris Toshok  <toshok@ximian.com>
11380
11381         * XplatUIX11.cs (SetWindowPos): we need to update both position as
11382         well as size after calling XMoveResizeWindow.  This keeps us from
11383         ignoring future SetWindowPos calls.  Fixes the disappearing
11384         DateTimePicker in the ToolBarDockExample from bug #72499.
11385
11386 2006-10-11  Chris Toshok  <toshok@ximian.com>
11387
11388         * TextBoxBase.cs: reorder things a bit when it comes to
11389         resizing-causing-recalculation.  we were recalculating the
11390         document when our position was changed, which shouldn't happen.
11391         We only care about size changes.  Clear up some more redundant
11392         recalculation calls while I'm at it.  This makes the toolbar dock
11393         example snappy when you're just dragging toolbars around (since it
11394         causes a relayout whenever you move one.)
11395
11396 2006-10-11  Chris Toshok  <toshok@ximian.com>
11397
11398         * ToolBarButton.cs (get_Rectangle): this only returns
11399         Rectangle.Empty if Visible == false, or Parent == null.
11400         Parent.Visible doesn't matter.
11401
11402 2006-10-10  Chris Toshok  <toshok@ximian.com>
11403
11404         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
11405         by .net 1.1, so switch to an internal method instead.
11406
11407 2006-10-10  Chris Toshok  <toshok@ximian.com>
11408
11409         * Control.cs (WM_PAINT): when a control is double buffered we draw
11410         initially to the ImageBuffer and then copy from there.  But when a
11411         parent control which has child controls is double buffered, the
11412         initial drawing doesn't encompass the entire ClientRectangle of
11413         the parent control, so we end up with uninitialized bits (this is
11414         easily seen by dragging the top toolbar in
11415         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
11416         manually set the ClipRectangle of the paint_event (only the one we
11417         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
11418         of the nastiness in bug #72499.
11419
11420         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
11421         which we use in Control.cs's WM_PAINT handling.
11422
11423 2006-10-10  Jackson Harper  <jackson@ximian.com>
11424
11425         * TextBoxBase.cs: Finish off the autoscrolling stuff.
11426
11427 2006-10-10  Chris Toshok  <toshok@ximian.com>
11428
11429         * Cursor.cs: Apply a slightly different patch to the one suggested
11430         in #79609.
11431
11432 2006-10-10  Jackson Harper  <jackson@ximian.com>
11433
11434         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
11435         not the parent form.
11436         * TextControl.cs: use difference in old line count vs new count to
11437         calculate how many lines were added, this takes into account soft
11438         line breaks properly.
11439
11440 2006-10-10  Chris Toshok  <toshok@ximian.com>
11441
11442         * LinkLabel.cs: don't call MeasureCharacterRanges against a
11443         rectangle located at 0,0 and the size of the text.  Use
11444         ClientRectangle instead.  This fixes rendering of non-left aligned
11445         link labels.
11446
11447 2006-10-10  Jackson Harper  <jackson@ximian.com>
11448
11449         * TextBoxBase.cs: When we set the selection start position the
11450         caret.
11451         * TextControl.cs: Need to update the caret when we decrement it to
11452         zero.
11453         - Make sure that the selection_visible flag gets reset to false if
11454         the selection isn't visible.  Before this you could get it set to
11455         visible by changing the selection start, then changing the end to
11456         equal the start.
11457
11458 2006-10-09  Jackson Harper  <jackson@ximian.com>
11459
11460         * TreeView.cs: Don't update scrollbars when we aren't visible.
11461         * TreeNodeCollection.cs: Only need to update scrollbars if being
11462         added to an expanded visible node or the root node.
11463
11464 2006-10-09  Chris Toshok  <toshok@ximian.com>
11465
11466         * XplatUIX11.cs (SendMessage): fix NRE.
11467
11468 2006-10-09  Jackson Harper  <jackson@ximian.com>
11469
11470         * TextBoxBase.cs: Implement horizontal autoscrolling.
11471         * TextControl.cs: Add a movement types that allows moving forward
11472         and backwards without wrapping.
11473
11474 2006-10-09  Mike Kestner  <mkestner@novell.com>
11475
11476         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
11477         with focus "expansion" of labels.  Fixes #79532 and then some.
11478         * ThemeWin32Classic.cs : add LineLimit to ListView label format
11479         when wrapping.
11480
11481 2006-10-09  Jackson Harper  <jackson@ximian.com>
11482
11483         * TextBoxBase.cs: Set the default max values to MaxValue since
11484         we use the scrollbar for autoscrolling and the default value is
11485         100.  If we don't do this the caret won't keep up with typing
11486         after about 18 characters.
11487         * TextControl.cs: Make sure the selection is offset by the
11488         viewport x.  This fixes selection when using auto scrolling.
11489
11490 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
11491         
11492         * Form.cs: The active control should be selected after the 
11493         OnLoad so that any child control initialization that affects
11494         the selection is done. Fixes #79406
11495
11496 2006-10-06  Chris Toshok  <toshok@ximian.com>
11497
11498         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
11499         to have no evil effects.
11500
11501         - Stop selecting StructureNotifyMask on non-toplevel windows.
11502
11503           The only way children should be resized is by using the SWF api,
11504           and we already send WM_WINDOWPOSCHANGED messages in those cases.
11505           Toplevel windows can be interacted with via the window manager,
11506           and so we keep the input mask there.
11507
11508           The other event StructureNotifyMask gives us (that we care
11509           about) is DestroyNotify.  The code is already structured such
11510           that it assumes we won't be getting a DestroyNotify event for
11511           the window we pass to XDestroyWindow (which is what
11512           StructureNotifyMask is supposed to guarantee.)  So, that code
11513           shouldn't be affected by this either.
11514
11515         - Stop selecting VisibilityChangeMask altogether.
11516
11517           We weren't doing anything with the resulting events anyway.
11518         
11519         This vastly reduces the number of X requests and events we see
11520         when resizing/laying out a large ui.
11521
11522 2006-10-06  Chris Toshok  <toshok@ximian.com>
11523
11524         * ScrollableControl.cs (DisplayRectangle): we need to take into
11525         account the DockPadding regardless of whether or not auto_scroll
11526         == true.  rework this slightly to this effect, and fix bug #79606,
11527         and part of #72499 (you can now see the drag handles and drag
11528         toolbars around).
11529
11530 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
11531
11532         * ListViewItem.cs: Collections of selected and checked items are now
11533         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
11534         we mark the collection "dirty".
11535         * ListView.cs: Marked collections readonly. Modified UpdateSelection
11536         to only clear SelectedItems when a new item is selected and MultiSelect
11537         is enabled. CheckedItems and SelectedItems now subscribe to Changed
11538         event of ListViewItemCollection, and mark its list dirty whenever
11539         that event is fire. This allows us to return selected/checked items 
11540         in the same order as they are in the Items collection. This matches
11541         the MS behavior.
11542
11543 2006-10-06  Chris Toshok  <toshok@ximian.com>
11544
11545         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
11546         right mouse clicks.  Fixes bug #79593.
11547
11548 2006-10-06  Chris Toshok  <toshok@ximian.com>
11549
11550         * Splitter.cs: doh, fix splitters that don't want to cancel the
11551         movement when you drag them.  Also, impose the limits on the
11552         values we send to the SplitterMovingEvent.  Fixes #79598.
11553
11554 2006-10-06  Jackson Harper  <jackson@ximian.com>
11555
11556         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
11557         since we use this for auto scrolling also.
11558
11559 2006-10-05  Chris Toshok  <toshok@ximian.com>
11560
11561         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
11562         beginning to think that most datagrid column types don't need this
11563         method.  Fixes bug #79392.
11564
11565 2006-10-05  Chris Toshok  <toshok@ximian.com>
11566
11567         * DataGrid.cs: move back to a more lazy scheme for creating the
11568         CurrencyManager, so we aren't updating it every time you set
11569         either DataSource or DataMember.  Also, don't call
11570         RecreateDataGridRows if the currency manager hasn't changed.
11571
11572 2006-10-05  Chris Toshok  <toshok@ximian.com>
11573
11574         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
11575         emitted, SelectedIndex should already be updated.  Fixes bug
11576         #78929.
11577
11578 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
11579
11580         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
11581           ToolStripTextBox.cs: Initial commit.
11582         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
11583
11584 2006-10-05  Jackson Harper  <jackson@ximian.com>
11585
11586         * TabControl.cs: We need to invalidate the tab control area when
11587         new ones are added (duh).
11588
11589 2006-10-03  Chris Toshok  <toshok@ximian.com>
11590
11591         * Form.cs (ProcessDialogKey): if the focused control is in this
11592         form and is a button, call its PerformClick method here.  Fixes
11593         #79534.
11594
11595 2006-10-04  Jackson Harper  <jackson@ximian.com>
11596
11597         * TabPage.cs: Ignore setting of Visible, and add an internal
11598         method for setting the controls visibility.  TabPage's Visible
11599         property is a little strange on MS, this seems to make us
11600         compatible, and fixes cases where people set all the tab pages to
11601         visible.
11602         * TabControl.cs: Use the new internal setting on tab pages
11603         visibility.
11604
11605 2006-10-03  Mike Kestner  <mkestner@novell.com>
11606
11607         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
11608
11609 2006-10-03  Mike Kestner  <mkestner@novell.com>
11610
11611         * ListView.cs : use is_visible instead of Visible to check if 
11612         scrollbars should be placed/sized.  Also some max_wrap_width
11613         love for LargeIcon view.  [Fixes #79533]
11614
11615 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
11616
11617         * TextControl.cs :
11618           Make set_TextAlign() do actually update the align. Fixed #78403.
11619
11620 2006-10-03  Chris Toshok  <toshok@ximian.com>
11621
11622         * DataGrid.cs: fix a crash when switching datasources if the
11623         vertical scrollbar is at someplace other than Value = 0.  Also,
11624         reduce the number of recalculation passes we do in SetDataSource
11625         from 2 to 1.
11626
11627 2006-10-03  Jackson Harper  <jackson@ximian.com>
11628
11629         * TextBoxBase.cs: Move the if value the same bail check up, we
11630         don't want to empty the document if it is already empty, this
11631         seems to severly mess up the caret.  TODO: I should probably fix
11632         the empty statement to update teh caret somehow.
11633
11634 2006-10-03  Chris Toshok  <toshok@ximian.com>
11635
11636         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
11637         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
11638         reflection, an internal row type, properties on said type, etc.)
11639         will work with our datagrid.  Fixes #79531.
11640
11641 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11642
11643         * FileDialog.cs: Don't crash if a path is not accessible
11644           (System.UnauthorizedAccessException). Fixes #79569.
11645         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
11646           a ':' too. Return unknown icon for those paths/files.
11647
11648 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
11649
11650         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
11651         GetContainerControl returns null.
11652
11653 2006-10-02  Chris Toshok  <toshok@ximian.com>
11654
11655         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
11656         call to XGetWindowAttributes instead of "handle".  fixes an X
11657         error using notifyicon after the NotifyIconWindow to Form base
11658         class switch.
11659
11660 2006-10-02  Chris Toshok  <toshok@ximian.com>
11661
11662         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
11663         server grab and looping we need to do to get down to the most
11664         deeply nested child window.
11665         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
11666         QueryPointer again after the WarpPointer so we can generate a
11667         proper (fake) MotionNotify event to be enqueued in the destination
11668         window's queue.
11669         (GetCursorPos): call QueryPointer.
11670
11671         Fixes #79556.
11672
11673 2006-10-02  Jackson Harper  <jackson@ximian.com>
11674
11675         * NotifyIcon.cs: Derive the notify icon from a form, so things
11676         like FindForm work on it.
11677         - Swallow the WM_CONTEXTMENU message, since that is generated on
11678         mouse down, and context menu is a mouse up kinda guy.  I believe
11679         the correct fix here is probably to make the notify icon entirely
11680         NC area, but this seems to work fine for anyone not manipulating
11681         WndProc.
11682
11683 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
11684
11685         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
11686           ToolStripItemCollection.cs, ToolStripLabel.cs,
11687           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
11688           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
11689           Initial implementation.
11690         * TextRenderer.cs: Provide padding to MeasureText.
11691
11692 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
11693
11694         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
11695         of ButtonBaseAccessibleObject. Fix bug #79552.
11696
11697 2006-10-02  Jackson Harper  <jackson@ximian.com>
11698
11699         * MdiWindowManager.cs: When maximizing use the containers client
11700         rect, not it's bounds, so nc area is accounted correctly.
11701         - Use the parent form's size for the menu position, since the
11702         client isn't always the full form size.
11703
11704 2006-10-01  Chris Toshok  <toshok@ximian.com>
11705
11706         * ScrollableControl.cs: make sure neither right_edge or
11707         bottom_edge are < 0, since they're used as LargeChange for the
11708         horiz/vert scrollbars respectively.  Fixes #79539.
11709
11710 2006-10-01  Chris Toshok  <toshok@ximian.com>
11711
11712         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
11713         the xplatuix11 code can cause us to destroy/recreate our handle.
11714
11715         * XplatUIX11.cs
11716         (SystrayAdd):
11717         - this code can be invoked many times for the same Hwnd.  Make
11718           sure we only destroy the client window once (the first time this
11719           method is called).  This fixes bug #79544.
11720         - Remove the call to the improperly bound XSync.  why we had two
11721           bindings to this, I will never know, but this call resulted in
11722           events being discarded from the queue(!).
11723         - correct a misunderstanding of _XEMBED_INFO - the second atom is
11724           not our current state but the state we wish to be in.  So, 0 if
11725           we don't want to be mapped.  Change it to 1.
11726         (SystrayRemove): The XEMBED spec makes mention of the fact that
11727         gtk doesn't support the reparent of client windows away from the
11728         embedder.  Looking at gtksocket-x11.c seems to agree with this.
11729         The only avenue we have for removing systray icons is to destroy
11730         them.  We don't want the handle to go away for good, though, so
11731         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
11732         #79545.
11733         
11734 2006-10-01  Chris Toshok  <toshok@ximian.com>
11735
11736         * Form.cs (WndProc): inline the native_enabled variable usage into
11737         the cases in which it's used.  Fixes #79536.
11738
11739 2006-09-29  Mike Kestner  <mkestner@novell.com>
11740
11741         * ListView.cs : toggle the selection state for ctrl clicks in 
11742         multiselect mode. [Fixes #79417]
11743
11744 2006-09-29  Mike Kestner  <mkestner@novell.com>
11745
11746         * ListView.cs : kill CanMultiSelect and refactor the selection
11747         code to support multiselection in the absence of mod keys. Steal
11748         arrow/home/end keys by overriding InternalPreProcessMessage to
11749         restore regressed keynav behavior.
11750         [Fixes #79416]
11751
11752 2006-09-29  Jackson Harper  <jackson@ximian.com>
11753
11754         * MdiClient.cs: Repaint the titlebars when the active window is
11755         changed.
11756
11757 2006-09-29  Chris Toshok  <toshok@ximian.com>
11758
11759         * Application.cs: when entering a runloop with a modal, make sure
11760         the hwnd is enabled.  Fixes #79480.
11761
11762 2006-09-29  Chris Toshok  <toshok@ximian.com>
11763
11764         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
11765         when ListManager.CanAddRows == false, bump us back one.
11766
11767         * DataGridColumnStyle.cs (ParentReadOnly): remove the
11768         listmanager.CanAddRows check.  This makes ArrayLists uneditable
11769         using a datagrid, which is not right.
11770         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
11771         is an IEditable, but call property_descriptor.SetValue regardless.
11772         fixes #79435.
11773
11774 2006-09-29  Chris Toshok  <toshok@ximian.com>
11775
11776         * DataGridBoolColumn.cs: we need to test equality in the face of
11777         possible null values (as is the case with the default NullValue).
11778         This patch keeps us from crashing in that case.
11779
11780 2006-09-29  Jackson Harper  <jackson@ximian.com>
11781
11782         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
11783         here, since it will get called for every node collection in the
11784         tree. This is now done in the treeview once the sorting is
11785         finished.
11786         * TreeView.cs: Recalculate the visible order, and update the
11787         scrollbars after sorting, set the top nope to the root so that the
11788         recalc actually works.
11789
11790 2006-09-29  Chris Toshok  <toshok@ximian.com>
11791
11792         * LinkLabel.cs: more handling of the default link collection in
11793         the face of LinkArea manipulation.  The default link collection
11794         contains 1 element (start=0,length=-1).  If the user sets LinkArea
11795         to anything and the links collection is the default, clear it.
11796         Then only add the link if its nonempty.  Fixes #79518.
11797
11798 2006-09-29  Chris Toshok  <toshok@ximian.com>
11799
11800         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
11801         piece correctly when we hit a '\n'.  Fixes #79517.
11802
11803 2006-09-29  Chris Toshok  <toshok@ximian.com>
11804
11805         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
11806         change the binding of gdk_init_check to take two IntPtr's, and
11807         pass IntPtr.Zero for both of them.  Fixes #79520.
11808
11809 2006-09-29  Mike Kestner  <mkestner@novell.com>
11810
11811         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
11812         [Fixes #78779]
11813
11814 2006-09-28  Jackson Harper  <jackson@ximian.com>
11815
11816         * XplatUIX11.cs: When translating NC messages make sure we go from
11817         whole window to screen, not client window to screen.
11818         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
11819         method doesn't exist
11820         - Skip over controls that aren't forms when arranging.
11821
11822 2006-09-28  Jackson Harper  <jackson@ximian.com>
11823
11824         * XplatUIWin32.cs: Clip the rect to the parent window.
11825         * XplatUIStructs.cs: Add clipping modes struct.
11826         * InternalWindowManager.cs: New private method that factors title
11827         bar heights in when calculating the pos of an NC mouse message.
11828         - Use SendMessage to force a paint when the form's size is changed
11829         instead of painting the decorations immediately.
11830         - Don't let the NC button click messages get to DefWndProc,
11831         because they will attempt to handle windowing themself, and this
11832         messes up z-order (it will put them in front of the scrollbars).
11833         * XplatUIX11.cs: Make sure that we don't reset window managers if
11834         we already have one (ie the window is an MDI window).
11835
11836 2006-09-28  Chris Toshok  <toshok@ximian.com>
11837
11838         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
11839         menu code really needs going over.
11840
11841 2006-09-27  Chris Toshok  <toshok@ximian.com>
11842
11843         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
11844         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
11845         window is maximizable.  So, we need to make sure that even if we
11846         clear the border/wm frame of those functions, they're still
11847         available (basically, we remove the decoration without removing
11848         the function).  Half the fix for #79338.
11849
11850 2006-09-27  Chris Toshok  <toshok@ximian.com>
11851
11852         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
11853         Fixes bug #79515.
11854
11855 2006-09-27  Chris Toshok  <toshok@ximian.com>
11856
11857         * Splitter.cs: reorder things a bit so that we don't actually
11858         draw/move the splitter until after calling OnSplitterMoving.  This
11859         lets users cancel/disallow the movement by explicitly setting
11860         event.SplitX/SplitY.  Fixes #79372.
11861
11862 2006-09-27  Jackson Harper  <jackson@ximian.com>
11863
11864         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
11865         because it is most likely on a window being destroyed, and that
11866         will give us an X11 error.
11867
11868 2006-09-27  Chris Toshok  <toshok@ximian.com>
11869
11870         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
11871         the dropdown button now toggles between showing and hiding the
11872         dropdown.  Also, get rid of dropdown_form_showing and just use
11873         dropdown_form.Visible.  We still don't do a grab, but I'll leave
11874         that part to someone who has handled Capture-fu before.
11875
11876 2006-09-27  Chris Toshok  <toshok@ximian.com>
11877
11878         * DataGrid.cs: return false if alt isn't pressed when '0' is
11879         pressed.  this keeps the '0' key from being swallowed, and fixes
11880         bug #79350.
11881
11882 2006-09-27  Chris Toshok  <toshok@ximian.com>
11883
11884         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
11885         Calling Refresh (in response to a scrollbar event) screws up the
11886         scrollbar painting.  Fixes bug #78923.
11887
11888 2006-09-27  Chris Toshok  <toshok@ximian.com>
11889
11890         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
11891         then insert into hashtable" blocks threadsafe.
11892
11893 2006-09-27  Chris Toshok  <toshok@ximian.com>
11894
11895         * MessageBox.cs (CreateParams): the styles should be |'ed with our
11896         baseclass's, since otherwise the
11897         ControlBox/MinimizeBox/MaximizeBox assignments above have no
11898         effect.  This gets the close button back in messageboxes.
11899
11900 2006-09-27  Chris Toshok  <toshok@ximian.com>
11901
11902         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
11903         flag, not just != 0.  this makes flags that are actually multiple
11904         bits (like WS_CAPTION) work.  fixes bug #79508.
11905
11906 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
11907
11908         * PageSetupDialog.cs: add support for getting and settings the 
11909         paper size, source and orientation.
11910
11911 2006-09-26  Chris Toshok  <toshok@ximian.com>
11912
11913         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
11914         and caption == "", we need to remove the resize handles as well as
11915         the title bar.
11916
11917         * Control.cs (set_Text): turns out that setting Text on a form
11918         should change the WM styles on the window, since if ControlBox ==
11919         false, the only way to get a window border is to have a non-""
11920         Text property.  check winforms/forms/text.cs for an example.  so,
11921         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
11922         update both window styles and title.  This fixes a lot of dialogs
11923         (including the preferences dialog in MonoCalendar.)
11924
11925 2006-09-26  Chris Toshok  <toshok@ximian.com>
11926
11927         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
11928         control isn't a Form), call Win32ShowWindow to hide the window,
11929         but don't update the control Visible property.  When we reparent
11930         back to a parent control, call SetVisible in order for the
11931         window's visibility to be reinstated.
11932
11933         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
11934         the FosterParent.
11935
11936         * Control.cs (ControlCollection.Remove): remove that value.Hide()
11937         call for good, since it breaks MonoCalendar (and other things I'm
11938         sure.) Also, set all_controls to null *after* the owner calls,
11939         which end up regenerating it.
11940         (ChangeParent): allow new_parent to be == null, passing
11941         IntPtr.Zero down to XplatUI.
11942
11943         this fixes #79294 the right way.
11944
11945 2006-09-26  Mike Kestner  <mkestner@novell.com>
11946
11947         * GridEntry.cs : internal SetParent method.
11948         * PropertyGrid.cs : attach to property changed on the proper
11949         target if we have a hierarchical grid with subobjects. Setup
11950         GridItem.Parent for hierarchical items.
11951         * PropertyGridView.cs : Set value on the correct target for
11952         hierarchical grids. [Fixes #78903]
11953
11954 2006-09-26  Chris Toshok  <toshok@ximian.com>
11955
11956         * Control.cs (ChildNeedsRecreating): this should return true if
11957         either we're being recreated and the child is in our list, or our
11958         parent is waiting for our recreation.
11959
11960 2006-09-26  Chris Toshok  <toshok@ximian.com>
11961
11962         * Control.cs (ControlCollection.Remove): reinstate the
11963         value.Hide() call as suggested in bug #79294.
11964
11965 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
11966
11967         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
11968         coordinates (versus a relative move).
11969
11970 2006-09-26  Chris Toshok  <toshok@ximian.com>
11971
11972         * Control.cs: rework child recreation a little bit.  It turns out
11973         that we race between the DestroyNotify the WM_DESTROY message.  If
11974         the parent gets its DestroyNotify before the child gets the
11975         WM_DESTROY message, the child ends up not recreating (since the
11976         parent finishes its recreation on DestroyNotify, and the child
11977         checks ParentIsRecreating.)
11978
11979         So, instead we store off a list of all the child controls which
11980         need to be recreated when the parent control starts to recreate
11981         itself.  Then, when child controls get their WM_DESTROY message we
11982         check to see if they're in the parent's pending recreation list,
11983         and if so, we recreate.  This removes all dependency on ordering
11984         from the code and fixes the initial MonoCalendar upgrade dialog.
11985         
11986 2006-09-26  Jackson Harper  <jackson@ximian.com>
11987
11988         * TextControl.cs: Use the Line to get the length of the line,
11989         since soft line breaks can change the end line.
11990
11991 2006-09-26  Chris Toshok  <toshok@ximian.com>
11992
11993         * Control.cs (ControlCollection.AddImplicit): don't add the
11994         control again if it's already in one of our lists.  This keeps us
11995         from adding controls over and over again for comboboxes when their
11996         handle gets recreated (as the combobox adds implicit controls in
11997         OnHandleCreated).  Fixes the X11 errors in bug #79480.
11998
11999 2006-09-26  Jackson Harper  <jackson@ximian.com>
12000
12001         * TextControl.cs: When deleting characters make sure that any
12002         orphaned zero lengthed tags get deleted.
12003         - Fix ToString for zero lengthed tags.
12004
12005 2006-09-25  Jackson Harper  <jackson@ximian.com>
12006
12007         * TextControl.cs: When getting a tag at the location there can be
12008         multiple tags at the same spot, these are 0-lengthed tags that
12009         appear when extra formatting has been stuck in a location.  We
12010         need to pull out the last of these 0 lengthed tags.
12011
12012 2006-09-25  Jackson Harper  <jackson@ximian.com>
12013
12014         * TextControl.cs: Fix print out in debug method.
12015         * TextBoxBase.cs: When text is set bail if we are setting to the
12016         previous value.
12017         
12018 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
12019
12020         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
12021           It is now possible to change the selected index in a FontXXXListBox
12022           with the up and down arrow keys from the FontXXXTextBoxes.
12023           Also, send the FontXXXTextBox mouse wheel event to the corresponding
12024           FontXXXListBoxes to match ms.
12025
12026 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
12027
12028         * SystemInformation.cs: Return a clone of the theme's MenuFont because
12029         anyone can dispose it, anytime. All other properties returns enums, 
12030         structs or basic types so they don't need such tricks.
12031
12032 2006-09-22  Jackson Harper  <jackson@ximian.com>
12033
12034         * XplatUI.cs:
12035         * XplatUIWin32.cs:
12036         * Clipboard.cs:
12037         * DataFormats.cs:
12038         * XplatUIOSX.cs:
12039         * XplatUIDriver.cs: Update interface to add a primary selection
12040         flag, so the driver can use the primary selection buffer if
12041         needed.
12042         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
12043
12044         * RichTextBox.cs: We need to supply the data object to paste now
12045         (so we can choose to supply CLIPBOARD or PRIMARY).
12046         * TextBoxBase.cs: Supply data object to paste (see above).
12047         - Middle click uses the primary selection data object.
12048         
12049 2006-09-21  Chris Toshok  <toshok@ximian.com>
12050
12051         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
12052         of SetWMStyles.  It's still a rat's nest and is largely
12053         order-dependent which I dislike immensely.  This also fixes the X
12054         button disappearing from toplevel forms.
12055
12056 2006-09-21  Mike Kestner <mkestner@novell.com>
12057
12058         * ListBox.cs: move Jordi's click/dblclick raising code to the
12059         mouse up handler.
12060
12061 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12062
12063         * ListBox.cs: Fixes 79450
12064
12065 2006-09-21  Mike Kestner <mkestner@novell.com>
12066
12067         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
12068         to deal with people updating the TreeNodeCollection after the tree
12069         is disposed.  "Fixes" 79330.
12070
12071 2006-09-20  Jackson Harper <jackson@ximian.com>
12072
12073         * TextControl.cs: Push the cursor record onto the undo stack
12074         before the delete action. This fixes 78651.
12075
12076 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
12077
12078         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
12079         CreateParams. Fixes 79329.
12080
12081 2006-09-19  Chris Toshok  <toshok@ximian.com>
12082
12083         * XplatUIX11.cs: a couple of blanket code massage passes to clean
12084         things up a bit.  First, get rid of the NetAtoms array (and the NA
12085         enum), and just embed the atoms as static fields.  Also, add a
12086         couple of functions (StyleSet and ExStyleSet) to clean up all the
12087         bitmask testing of styles.
12088
12089         * X11Structs.cs: remove the NA enum, not needed anymore.
12090         
12091 2006-09-19  Chris Toshok  <toshok@ximian.com>
12092
12093         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
12094         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
12095         added cleanup to get MessageBox titles appearing again, which were
12096         broken by my earlier fix for caption-less/ControlBox-less windows.
12097
12098 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
12099
12100         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
12101           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
12102           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
12103           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
12104           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
12105           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
12106           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
12107           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
12108           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
12109           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
12110           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
12111             Inital import.
12112         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
12113           ToolStripButton.cs: Stubs needed for above.
12114         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
12115
12116 2006-09-15  Chris Toshok  <toshok@ximian.com>
12117
12118         * XplatUIX11.cs:
12119         - make the MessageQueues hashtable Synchronized.
12120         
12121         - SendMessage: if the Hwnd is owned by a different thread, use the
12122         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
12123         thread.  Fixes bug #79201.
12124
12125 2006-09-15  Chris Toshok  <toshok@ximian.com>
12126
12127         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
12128         ControlBox == false, we disallow maximize/minimize/close.  If the
12129         form Caption is "" we also disallow move (and get rid of the Title
12130         decoration).  Unfortunately, regardless of how things are set,
12131         we're stuck with the Title and WM menu.
12132
12133 2006-09-15  Chris Toshok  <toshok@ximian.com>
12134
12135         * Application.cs: add locking around the static message_filters
12136         ArrayList, part of #79196.
12137
12138 2006-09-15  Chris Toshok  <toshok@ximian.com>
12139
12140         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
12141         Form.ControlBox == false, the window has no titlebar nor resize
12142         handles.  fixes bug #79368.
12143
12144 2006-09-15  Chris Toshok  <toshok@ximian.com>
12145
12146         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
12147         >= 0.  Fixes bug #79370.
12148
12149 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
12150         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
12151         * Control.cs:
12152             Add properties: LayoutEngine, Margin, DefaultMargin.
12153             Add method: GetPreferredSize.
12154             Move layout logic from PerformLayout to layout engines. 
12155
12156 2006-09-13  Chris Toshok  <toshok@ximian.com>
12157
12158         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
12159         fix for #79326 broke #78718, so this change addresses that.
12160
12161         - in SendWMDestroyMessages remove the call to
12162         CleanupCachedWindows, since we might be recreating the control and
12163         need to maintain the references to right Hwnd handles.  Also, set
12164         the zombie flag to true for each of the children in the hierarchy
12165         instead of calling hwnd.Dispose.  This will cause GetMessage to
12166         ignore all events for the window except for DestroyNotify.
12167
12168         - In GetMessage, ignore messages except for DestroyNotify for
12169         zombie hwnds.
12170         
12171         * Control.cs: revert the is_recreating fix from the last
12172         ChangeLog.  It's definitely "right", but it breaks switching from
12173         an MDI form to a non-MDI form.  Will need to revisit that.
12174
12175         * Hwnd.cs: add a zombie flag, which means "the
12176         client_window/whole_window handles are invalid, but we're waiting
12177         for the DestroyNotify event to come in for them".  Set the flag to
12178         false explicitly if setting WholeWindow/ClientWindow, and also
12179         when Disposing.
12180         
12181 2006-09-13  Chris Toshok  <toshok@ximian.com>
12182
12183         * XplatUIX11.cs: rework window destruction slightly.
12184
12185         - when destroying the windows associated with a control, we don't
12186         need 2 separate XDestroyWindow calls.  Just the one for the
12187         whole_window (or for client_window if whole_window is somehow
12188         IntPtr.Zero -- can this happen?) is enough.
12189
12190         - reworked SendWMDestroyMessages slightly, so we always dispose
12191         the child control hwnd's after sending the messages.
12192         
12193         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
12194         the two places it was used (one was even using hwnd.Handle and the
12195         other hwnd.client_window.  ugh), adding another call in
12196         SendWMDestroyMessages.  We need this new call because now the
12197         DestroyNotify events in the queue will be ignored for the child
12198         controls (as their hwnd's were disposed, and the window id's
12199         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
12200
12201         - this fixes bug #79326.
12202
12203 2006-09-13  Chris Toshok  <toshok@ximian.com>
12204
12205         * Control.cs: don't always set is_recreating to false at the end
12206         of RecreateHandle, since sometimes we're not done (and won't be
12207         until WndProc handles the WM_DESTROY message).  Also, set
12208         is_recreating to false in the WM_DESTROY handling code.  Part of
12209         the fix for bug #79326.
12210
12211 2006-09-13  Miguel de Icaza  <miguel@novell.com>
12212
12213         * X11DesktopColors.cs: Start the droppage of debugging messages.
12214
12215         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
12216
12217 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
12218
12219         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
12220
12221 2006-09-12  Chris Toshok  <toshok@ximian.com>
12222
12223         * DataGrid.cs (get_ListManager): if the list_manager is null, try
12224         to create it using SetDataSource.  Fixes bug #79151.
12225
12226 2006-09-11  Chris Toshok  <toshok@ximian.com>
12227
12228         * XEventQueue.cs: add a DispatchIdle property.
12229
12230         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
12231         either the queue is null, or the queue has DispatchIdle set to
12232         true.
12233         (DoEvents): set queue.DispatchIdle to false around the
12234         peek/translate/dispatch message loop in this method.  This keeps
12235         Application.Doevents from emitting idle events.  Part of the fix
12236         for #78823.
12237
12238 2006-09-11  Chris Toshok  <toshok@ximian.com>
12239
12240         * DataGrid.cs (set_DataSource): make this work for both the
12241         winforms/datagrid test and ReportBuilder.  It seems as though when
12242         we've created a ListManager (or maybe it's if we have a
12243         BindingContext?), when we set the DataSource it clears the
12244         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
12245         #79333.
12246
12247 2006-09-11  Chris Toshok  <toshok@ximian.com>
12248
12249         * XplatUIX11.cs: deal with queue being null, which happens in all
12250         the Clipboard functions.  Fixes one of the two problems mentioned
12251         in #78612.
12252
12253 2006-09-11  Chris Toshok  <toshok@ximian.com>
12254
12255         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
12256         button on various spots (including outside the menu) works closer
12257         to MS, and doesn't crash.  Fixes #79343.
12258
12259 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
12260
12261         * ListView.cs: Do not initialize item_sorter in init. To match MS,
12262         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
12263         and the internal comparer is set. When a new ListViewItemSorter is set,
12264         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
12265         was specified. No further processing is necessary if SortOrder is set
12266         to it's current value. If Sorting is modified to None, and View is
12267         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
12268         (either custom or our internal ItemComparer) to null, on 1.0 profile
12269         only set item_sorter to null if its our internal IComparer. If Sorting
12270         is modified to Ascending or Descending, then use our internal IComparer
12271         if none is set, and if the current IComparer is our internal one then:
12272         on 2.0 profile always replace it with one for new Sorting, and on 1.0
12273         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
12274         Enum.IsDefined to verify whether a valid View value is specified in
12275         its setter. Automatically sort listview items when listview is
12276         created. In Sort, do nothing if ListView is not yet created, or if
12277         no item_sorter is set (no Sorting was set, Sorting was explicitly set
12278         to None or ListViewItemSorter was set to null). Added Sort overload
12279         taking a bool to indicate whether the ListView should be redrawn when
12280         items are sorted (we use this in ListViewItemCollection to avoid double
12281         redraws). Modified our internal IComparer to take the sort order into
12282         account. In Add and AddRange methods of ListViewItemCollection, also
12283         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
12284         view), but use overload with noredraw option to avoid double redraw.
12285         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
12286         true when View is Tile, and do the same when attempting to set View to
12287         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
12288         for selected/checked indices, as it involves overhead when sorting is
12289         done while these collections are not used all that often. Instead
12290         we'll build the indices on demand. Modified IList implementation of
12291         CheckedIndexCollection to use public methods if object is int.
12292         Modified CheckedListViewItemCollection to hide checked items if
12293         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
12294         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
12295         IList implementation in SelectedIndexCollection to use public methods
12296         if object is int. Modified SelectedListViewItemCollection to hide
12297         selected items if listview is not yet created.
12298         * ListViewItem.cs: CheckedIndices list no longer needs to be
12299         maintained separately (see ListView changes). Also clone font, fixes
12300         test failure.
12301
12302 2006-09-11  Mike Kestner  <mkestner@novell.com>
12303
12304         * ComboBox.cs: if we are updating the contents of the currently
12305         selected index, refresh the control or the textbox selection.
12306         [Fixes #79066]
12307
12308 2006-09-11  Mike Kestner  <mkestner@novell.com>
12309
12310         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
12311         the 'specified' logic has been moved there.  This seems like a bug 
12312         in Control.cs, since our current SetBoundsCore completely ignores 
12313         the specified parameter.  Peter's commit seems to indicate that is 
12314         the way the MS control implementation works.  [Fixes #79325]
12315
12316 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
12317
12318         * XplatUI.cs: Set default_class_name to be composed
12319         of current domain id. This allows MWF to be loaded in multiple
12320         domains on Win32.
12321
12322 2006-09-09  Miguel de Icaza  <miguel@novell.com>
12323
12324         * X11Keyboard.cs: If we are unable to obtain the input method, do
12325         not call CreateXic to create the input context.   Should fix
12326         #78944/79276.
12327
12328 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
12329
12330         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
12331           Simplified gnome support by adding more pinvokes to get the
12332           icon for a file or mime type.
12333
12334 2006-09-08  Jackson Harper  <jackson@ximian.com>
12335
12336         * MenuAPI.cs: Deslect popup context menu items before closing the
12337         window, so that you don't see the previously selected item
12338         selected when you reopen the menu.
12339         * TextControl.cs: Update the cursor position even if we don't have
12340         focus.  This fixes typing in things like the ComboBox.  I'm not
12341         totally sure we should always set the visibility if we don't have
12342         focus, but couldn't find any corner cases where the cursor showed
12343         up when it shouldn't.
12344
12345 2006-09-08  Chris Toshok  <toshok@ximian.com>
12346
12347         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
12348         our arrays are length 256.  & 0xff before indexing.  Fixes the
12349         crash in bug #78077.
12350         
12351 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12352
12353         * ThemeWin32Classic.cs: 
12354         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
12355         is true. Handle that check box too.
12356
12357 2006-09-07  Chris Toshok  <toshok@ximian.com>
12358
12359         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
12360         79244.
12361
12362 2006-09-07  Chris Toshok  <toshok@ximian.com>
12363
12364         * Control.cs: in set_BackColor only do the work if
12365         background_color != value.
12366
12367         * XplatUIX11.cs: move the clearing of invalid areas (both client
12368         and nc) to the same block of code where we set (nc_)expose_pending
12369         to false.  That is, move it from PaintEventEnd to PaintEventStart,
12370         so things that cause invalidates from within OnPaint will trigger
12371         another call to OnPaint.  Fixes bug #79262.
12372
12373 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
12374
12375         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
12376         * FileDialog.cs: Fix typo
12377
12378 2006-09-07  Jackson Harper  <jackson@ximian.com>
12379
12380         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
12381         for tab pages if they have any.
12382
12383 2006-09-06  Mike Kestner  <mkestner@novell.com>
12384
12385         * Splitter.cs: use the "current" rect when finishing drag handle
12386         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
12387
12388 2006-09-06  Mike Kestner  <mkestner@novell.com>
12389
12390         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
12391         support offset splitters. [Fixes #79298]
12392
12393 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
12394
12395         * Mime.cs: Fixed a bug that could override the global mime type
12396           result.
12397
12398 2006-09-05  Jackson Harper  <jackson@ximian.com>
12399
12400         * TabControl.cs: Better calculation method for setting the slider
12401         pos. Prevents crashes on really wide tabs.
12402         - Draw Image on tab pages if an image list is used.
12403
12404 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12405
12406         * MonthCalendar.cs: When Font changes, the Size should be
12407         updated to fit the new font's space requirements.
12408
12409 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
12410
12411         * ListBox.cs: If the items are cleared with Items.Clear set
12412           top_index to 0.
12413
12414 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12415
12416         * MonthCalendar.cs: Handle arrow keys as input keys. Also
12417         fire DateChanged event instead of DateSelected event when
12418         the date was changed by keyboard interaction.
12419
12420 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12421
12422         * DateTimePicker.cs: Handle DateChanged for the associated
12423         month_calendar control, and set month_calendar.Font from 
12424         OnFontChanged method, as well as resize the height of the
12425         control when needed. Make PreferredHeight proportional.
12426
12427 2006-09-01  Chris Toshok  <toshok@ximian.com>
12428
12429         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
12430         properties.
12431
12432         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
12433
12434 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
12435
12436         * FileDialog.cs: Set ClientSize instead of window size, to allow space
12437           for decorations (Fixes #79219)
12438
12439 2006-09-01  Mike Kestner  <mkestner@novell.com>
12440
12441         * ComboBox.cs: first stab at sorting plus some selection handling
12442         fixes to bring us more in line with MS behavior.  Also switches back
12443         to index based selection.  Alternative patches for index-based 
12444         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
12445         and latency@gmx.de on bug 78848.  I assume they were similar to this
12446         code I've had simmering in my tree forever.
12447         [Fixes #78848]
12448
12449 2006-09-01  Chris Toshok  <toshok@ximian.com>
12450
12451         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
12452         when setting list position guard against ending up with a -1 index
12453         (the other part of the fix for #78812).  Should probably make sure
12454         we don't need the analogous fix in the ItemDeleted case.
12455
12456         * DataGrid.cs:
12457         - in SetDataSource, work around the fact that the way
12458         OnBindingContextChanged is invoked will cause us to re-enter this
12459         method.  I'll remove the hack once I investigate
12460         OnBindingContextChanged.
12461
12462         - fix the logic in set_DataSource and set_DataMember (basically
12463         what to do if the other of the two is null.)
12464         
12465         - in OnListManagerItemChanged, we need to take into account the
12466         edit row when deciding whether or not to call RecreateDataGridRows
12467         (part of the fix for #78812).
12468
12469 2006-09-01  Jackson Harper  <jackson@ximian.com>
12470
12471         * Splitter.cs: Don't do anything if there is no control to affect
12472         (prevents us from crashing in weird tet cases).
12473         * TreeView.cs: Bounding box for the mouse movement reverting
12474         focus/selection back to previously selected node.  This matches
12475         MS, and makes the tree a lot more useable.
12476         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
12477         use clipping so they are not drawn.  This fixes when the control
12478         is set to have a transparent background, or if it was over an
12479         image.
12480
12481 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
12482
12483         * MimeIcon.cs: Improved handling for reading default icons when
12484           using gnome (2.16 made it necessary). Check and read svg icons
12485           first, then 48x48 and then 32x32 icons.
12486
12487 2006-08-31  Chris Toshok  <toshok@ximian.com>
12488
12489         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
12490         visible.
12491
12492         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
12493         ProcessKeyPreview.  Fixes part of #77806.
12494
12495         * DataGrid.cs: big patch.
12496
12497         - revert the queueing up of DataSource/DataMember if inside
12498         BeginInit/EndInit calls.  That's not the way the datagrid achieves
12499         its delayed databinding.  Instead, call SetDataSource in
12500         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
12501         #78811.
12502
12503         - Also, it wasn't mentioned in #78811, but the test case exhibits
12504         behavior that was lacking in our datagrid implementation - Columns
12505         that have mapping names that don't exist in the datasource's
12506         properties aren't shown.  Yuck.  To fix this I added the bound
12507         field to the column style, and basically any calculation to figure
12508         out anything about columns uses a loop to find the bound columns.
12509         still need to investigate if I can cache an array of the bound
12510         columns or if the indices must be the same.
12511
12512         - When setting CurrentCell, we no longer abort if the cell being
12513         edited was in the add row.  This fixes the other part of #77806.
12514
12515         - The new code also fixes #78807.
12516         
12517         * ThemeWin32Classic.cs: perpetrate the same disgusting
12518         column.bound field hack, and only render bound fields.
12519
12520 2006-08-31  Chris Toshok  <toshok@ximian.com>
12521
12522         * DataGridColumnStyle.cs: add bound field.  this field is true if
12523         the datasource has a property corresponding to the mapping name.
12524
12525         * DataGridTableStyle.cs: set the bound field on the column styles
12526         depending on whether or not we have a column for that property.
12527
12528 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
12529
12530         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
12531           splitter control (fixes #79228)
12532
12533 2006-08-31  Chris Toshok  <toshok@ximian.com>
12534
12535         * DataGridColumnStyle.cs: we need to delay the assignment of
12536         property descriptor until the last possible moment due to the lazy
12537         databinding stuff in the datagrid.  Also, fix the exceptions
12538         thrown by CheckValidDataSource to match MS.
12539
12540 2006-08-31  Jackson Harper  <jackson@ximian.com>
12541
12542         * Form.cs: When activated select the active control, if there is
12543         no active control, we select the first control.
12544         * XplatUIX11.cs: If there is no focus control when we get a
12545         FocusIn event, find the toplevel form and activate it.  This
12546         occurs when you popup a window, it becomes the focus window, then
12547         you close that window, giving focus back to the main window.
12548
12549 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12550
12551         * MonthCalendar.cs: 
12552         * ThemeWin32Classic.cs: Cache Font in bold style, as well
12553         as StringFormat with Center alignments in MonthCalendar,
12554         instead of creating new ones when drawing the control. 
12555         Also, draw the month name in bold style.
12556
12557 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12558
12559         * Control.cs:
12560           - PerformLayout(): It would seem MS performs the fill even if the 
12561             control is not visible (part of #79218 fix)
12562           - ResetBackColor(): Use the setter to reset the color, to allow
12563             overriders to catch the change.
12564         * Form.cs:
12565           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
12566           - CreateHandle(): dito (part of $79218 fix)
12567           - Don't set an icon if we have a dialog
12568         * ScrollableControl.cs:
12569           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
12570           - ScrollIntoView(): No need to scroll if control is already visible
12571             (resolves fixme and fixes #79218)
12572
12573 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12574
12575         * MonthCalendar.cs: Change proportions in SingleMonthSize
12576         to match the aspect of the original control.
12577
12578 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
12579
12580         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
12581           get updated when they get maximized.
12582
12583 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
12584
12585         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
12586
12587 2006-08-29  Chris Toshok  <toshok@ximian.com>
12588
12589         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
12590
12591 2006-08-29  Jackson Harper  <jackson@ximian.com>
12592
12593         * TreeView.cs: Need to track selected node and highlighted node,
12594         they aren't always the same thing, when the mouse is down on a
12595         node it is hilighted, but not selected yet.
12596         - Do the HideSelection stuff right
12597         - Need to focus on rbutton mouse down. And redraw selection when
12598         right click is mouse upped.
12599
12600 2006-08-29  Mike Kestner  <mkestner@novell.com>
12601
12602         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
12603         when SubItems.Count < Columns.Count.  [Fixes #79167]
12604
12605 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
12606
12607         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
12608
12609 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
12610
12611         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
12612           from X. Only send based on ConfigureNotify if we don't have the
12613           correct location in hwnd (if the window manager moved us)
12614
12615 2006-08-28  Mike Kestner  <mkestner@novell.com>
12616
12617         * ListView.cs: remove a TODO. 
12618         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
12619         [Fixes ListView part of #79166]
12620
12621 2006-08-28  Mike Kestner  <mkestner@novell.com>
12622
12623         * ListView.cs: move wheel handler to parent since it is focused
12624         instead of the item_control now.  [Fixes #79177]
12625
12626 2006-08-28  Mike Kestner  <mkestner@novell.com>
12627
12628         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
12629         when the control is focused. [Fixes #79171]
12630
12631 2006-08-28  Mike Kestner  <mkestner@novell.com>
12632
12633         * ListView.cs: size the item and header controls for empty and
12634         unscrollable views.
12635         * ThemeWin32Classic.cs: draw disabled backgrounds.
12636         [Fixes #79187]
12637
12638 2006-08-28  Chris Toshok  <toshok@ximian.com>
12639
12640         * Form.cs: remove unused "active_form" static field.
12641
12642         * Hwnd.cs: lock around accesses to static windows collection.
12643
12644         * Application.cs: lock threads in Exit ().
12645
12646 2006-08-28  Chris Toshok  <toshok@ximian.com>
12647
12648         * NativeWindow.cs: lock around accesses to window_collection.
12649         
12650 2006-08-28  Chris Toshok  <toshok@ximian.com>
12651
12652         * Control.cs: err, fix this the right way, by locking on controls
12653         when using it.  not by making it synchronized.
12654
12655 2006-08-28  Chris Toshok  <toshok@ximian.com>
12656
12657         * Control.cs: make the static "controls" field synchronized, as it
12658         gets updated from multiple threads.
12659
12660 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12661
12662         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
12663           Prevent other threads from exiting when calling thread sets quit state.
12664         * XEventQueue.cs: Added PostQuitState property
12665
12666 2006-08-27  Chris Toshok  <toshok@ximian.com>
12667
12668         * AsyncMethodData.cs: add a slot for the window handle.
12669
12670         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
12671         window (the destination control's window, not the foster window).
12672
12673         * Control.cs (BeginInvokeInternal): store the window's handle in
12674         the AsyncMethodData.
12675         
12676
12677 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12678
12679         * XplatUIX11.cs:
12680           - PostQuitMessage: Removed resetting S.D display handle, we might have
12681             another loop started after calling PostQuitMessage (Fixes #79119)
12682           - Created destructor to reset S.D handle
12683
12684 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
12685
12686         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
12687
12688 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12689
12690         * TextControl.cs (Insert): Update the caret position even if we don't
12691           have a handle yet, just don't call the driver in that case.
12692         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
12693           to the end of the new selection text (Fixes #79184)
12694
12695 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12696
12697         * Form.cs (Activate): Only activate if the handle is created)
12698         * Control.c:
12699           - Mark window as invisible when it's disposed
12700           - Check if window handle is created when setting window visible, 
12701             instead of relying just on the is_created variable
12702           - Check if object is disposed when creating the control (Fixes #79155)
12703
12704 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12705
12706         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
12707           when allowing layout again. Otherwise we re-generate the anchoring 
12708           distance to the border again and actually alter what the user wanted
12709           This is ugly, it'd be better if we used DisplayRectangle instead of
12710           ClientRectangle for Control.UpdateDistances, but that causes us to
12711           have other problems (initial anchoring positons would be wrong)
12712           (Fixes #78835)
12713
12714 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12715
12716         * Control.cs:
12717           - The size and location setters shouldn't go directly to 
12718             SetBoundsCore, but to SetBounds, which triggers layout on the
12719             parent, then calls SetBoundsCore. (Related to fix for #78835)
12720           - SetBounds: Moved actual location update code into this function
12721             from SetBoundsCore, to match MS. Added call to PerformLayout if
12722             we have a parent (to trigger resizing of anchored parents if the 
12723             child size has changed (see testcase for #78835) 
12724         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
12725           new control code
12726         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
12727
12728 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12729
12730         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
12731           System.Drawing when a toplevel window gets closed; there might
12732           be other toplevel windows belonging to the same app (Fixes #78052)
12733
12734 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
12735
12736         * FileDialog.cs: After reading FileDialog settings from mwf_config
12737           use Desktop prefix only if a real folder doesn't exist anymore.
12738         * FontDialog.cs: Added char sets.
12739           It is now possible to select the font, size or style with the
12740           textboxes.
12741
12742 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
12743
12744         * PrintPreviewDialog.cs: Use assembly name constants.
12745
12746 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12747
12748         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
12749           scrollbar from whacking it's buttons)
12750
12751 2006-08-24  Chris Toshok  <toshok@ximian.com>
12752
12753         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
12754         in this patch (aggregating setting Left/Top/Width/Height to
12755         setting Bounds on the scrollbars), but the crux of the fix is in
12756         Recalculate, where we scroll by the remaining scroll_position if
12757         we're hiding a scrollbar.  The 2*$5 reward in the comment is
12758         serious.
12759
12760 2006-08-24  Jackson Harper  <jackson@ximian.com>
12761
12762         * MdiClient.cs:
12763         * MdiWindowManager.cs: If the form is made a non-mdi window we
12764         need to remove the form closed event so that closing forms works
12765         correctly.
12766
12767 2006-08-24  Jackson Harper  <jackson@ximian.com>
12768
12769         * Control.cs: Make IsRecreating internal so that the driver can
12770         check it
12771         - Temporarily remove the Hide when controls are removed, its
12772         making a whole bunch of things not work because visibility isn't
12773         getting reset elsewhere correctly
12774         * Form.cs: Need to do a full handle recreation when the mdi parent
12775         is set.
12776         * XplatUIX11.cs: If we are recreating handles don't dispose the
12777         HWNDs.  What was happening is the handles were being recreated in
12778         SendWMDestroyMessages, but then flow continued on in that method
12779         and destroyed the new handles.
12780
12781 2006-08-23  Jackson Harper  <jackson@ximian.com>
12782
12783         * Form.cs: MdiClient is always at the back of the bus
12784         * Control.cs: When the order of items in the collection is changed
12785         we need to reset the all_controls array
12786         - do the same sorta setup thats done when adding a control when a
12787         control is set on the collection.
12788
12789 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12790
12791         * TextBoxBase.cs (get_Text): Return an empty array if our document
12792           is empty (fixes #79052)
12793
12794 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12795
12796         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
12797           on WM_SYSCHAR messages (fixes #79053)
12798
12799 2006-08-23  Chris Toshok  <toshok@ximian.com>
12800
12801         * DataGrid.cs: fix flickering when scrolling vertically.
12802
12803 2006-08-23  Chris Toshok  <toshok@ximian.com>
12804
12805         * DataGrid.cs (EndEdit): only invalidate the row header when we
12806         need to.
12807
12808 2006-08-23  Chris Toshok  <toshok@ximian.com>
12809
12810         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
12811         methods.  fixes the flicker when scrolling around.
12812
12813 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12814
12815         * FileDialog.cs: Making sure the control is created before we get a 
12816           chance to use it with BeginInvoke (Fixes #79096)
12817
12818 2006-08-23  Chris Toshok  <toshok@ximian.com>
12819
12820         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
12821         width to use when painting the rows.
12822
12823 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12824
12825         * TextBoxBase.cs:
12826           - Throw ArgumentException if a negative value is passed to SelectionLength
12827           - Update the selection end if start is moved. end needs to be always
12828             after start. (Fixes #79095)
12829           - Track selection length; MS keeps the selection length even if start
12830             is changed; reset on all other operations affection selection
12831
12832 2006-08-22  Jackson Harper  <jackson@ximian.com>
12833
12834         * TreeView.cs: Make sure both scrollbars get displayed and sized
12835         correctly when the other bar is visible.
12836         - Use the original clip rectangle for checking if the area between
12837         the two scrollbars is visible, not the viewport adjusted clipping
12838         rectangle.
12839
12840 2006-08-22  Jackson Harper  <jackson@ximian.com>
12841
12842         * Binding.cs: We don't use IsBinding because it requires the
12843         control to be created, which really shouldn't be necessary just to
12844         set a property on the control.
12845
12846 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12847
12848         * ComboBox.cs: Some CB.ObjectCollection methods must throw
12849         ArgumentNullReferenceException when the argument is null.
12850
12851 2006-08-21  Jackson Harper  <jackson@ximian.com>
12852
12853         * Timer.cs: Track the thread that the timer is started in (NOT
12854         CREATED), this way messages for it will only be triggered on its
12855         queue.
12856         * XEventQueue.cs: Track the timers here, this makes timers per
12857         thread, like MS.
12858         * XplatUIX11.cs: The timers are moved to the XEventQueue.
12859
12860 2006-08-19  Chris Toshok  <toshok@ximian.com>
12861
12862         * XplatUIX11.cs: after further communication with pdb, we get the
12863         best of both worlds.  SetZOrder working for un-Mapped windows, and
12864         no X errors for un-mapped windows.
12865
12866 2006-08-19  Chris Toshok  <toshok@ximian.com>
12867
12868         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
12869         as it was causing pdn toolbars to not have the correct stacking.
12870
12871 2006-08-18  Mike Kestner  <mkestner@novell.com> 
12872
12873         * ListView.cs : guard against negative ClientArea.Width in scrollbar
12874         calculation.  Not sure why control should ever be setting a negative
12875         width though.  Fixes #78931.
12876
12877 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12878
12879         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
12880         null items in ObjectCollection class.
12881         * ListBox.cs.: Likewise.
12882
12883 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
12884
12885         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
12886           as the base method in ThemeWin32Classic should work fine.
12887           Fixed bug #78607.
12888
12889 2006-08-18  Jackson Harper  <jackson@ximian.com>
12890
12891         * Binding.cs: When validating if the value entered doesn't convert
12892         properly reset to the old value.
12893         * RadioButton.cs: Don't fire click when we get focus.
12894
12895 2006-08-18  Jackson Harper  <jackson@ximian.com>
12896
12897         * FileDialog.cs: Paint the selection on the directory combobox the
12898         same way as on MS. 
12899
12900 2006-08-17  Jackson Harper  <jackson@ximian.com>
12901
12902         * ErrorProvider.cs: Don't allow the error control to be selected.
12903         * Control.cs: Don't send the SetFocus messages, the control
12904         activation will do this, and if we do it blindly here validation
12905         does not work.
12906
12907 2006-08-17  Jackson Harper  <jackson@ximian.com>
12908
12909         * Control.cs:
12910         * ContainerControl.cs: Make validation events fire in the correct
12911         order.  TODO: For some reason the first validation event is not
12912         getting fired.
12913
12914 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12915
12916         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
12917
12918 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12919
12920         * ComboBox.cs : implement scroll wheel support for popped-down
12921         state. Fixes #78945. 
12922
12923 2006-08-17  Jackson Harper  <jackson@ximian.com>
12924
12925         * TreeView.cs: Specify treeview actions (old patch that didn't get
12926         committed for some reason).
12927         - Don't let the mouse wheel scroll us too far.  Just want to make
12928         the bottom node visible, not scroll it all the ways to the top.
12929
12930 2006-08-17  Jackson Harper  <jackson@ximian.com>
12931
12932         * XplatUIX11.cs: Mouse wheel events go to the focused window.
12933
12934 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12935
12936         * ComboBox.cs : don't do mouseover selection in simple mode.
12937
12938 2006-08-16  Jackson Harper  <jackson@ximian.com>
12939
12940         * Form.cs: Fire the closing events for all the mdi child windows
12941         when a window is closed.  If the cancel args are set to true, the
12942         main window still gets the event fired, but it doesn't not close.
12943         * MdiWindowManager.cs: Do this closing cleanup in a Closed
12944         handler, instead of when the button is clicked, so cancelling the
12945         close works correctly.
12946         * ComboBox.cs: Send the mouse down to the scrollbar.
12947
12948 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12949
12950         * ListBox.cs: When passing 'null' to SelectedItem,
12951         set SelectedIndex to -1, to unselect items. This is the
12952         observed behaviour in .Net.
12953
12954 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
12955
12956         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
12957           MS flags saying there won't be any. (fixes #78800)
12958         * Control.cs (HandleClick): Made virtual
12959
12960 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
12961
12962         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
12963           cultures. Fixed bug #78399.
12964
12965 2006-08-16  Jackson Harper  <jackson@ximian.com>
12966
12967         * Form.cs: Use the MdiClients MdiChildren property to access
12968         MdiChildren instead of creating the array from the child controls.
12969         * MdiClient.cs: Maintain a separate array of the mdi children, so
12970         that insertion order is maintained when the Z-order is changed.
12971
12972 2006-08-16  Mike Kestner  <mkestner@novell.com> 
12973
12974         * ListView.cs : add an ItemComparer and default to it for sorting.
12975         Fixes #79076, but sorting needs a complete overhaul to be compat with
12976         MS.
12977
12978 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
12979
12980         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
12981
12982 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12983
12984         * Hwnd.cs (Mapped): Properly traverse the tree
12985
12986 2006-08-15  Chris Toshok  <toshok@ximian.com>
12987
12988         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
12989         pass manager.Current.GetType() to ParseData.  It has to be the
12990         property type.  So, hold off doing the ParseData until we're in
12991         SetPropertyValue where we know the type.  This fixes the crash in
12992         #78821 but the textbox is still empty.
12993
12994 2006-08-15  Chris Toshok  <toshok@ximian.com>
12995
12996         * DataGrid.cs:
12997         - when we're scrolling, only call Edit() again if the
12998         current cell is still unobscured. Fixes bug #78927.
12999         - when handling mousedown on a cell, ensure the cell is visible
13000         before calling Edit.
13001         - remove the properties from DataGridRow, and remove the
13002         DataGridParentRow class altogether.
13003         
13004
13005 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13006
13007         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
13008           fire OnTextChanged by ourselves. There's no point calling base,
13009           we don't set the base value anywhere else. Fixes #78773.
13010
13011 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13012
13013         * ListBox.cs: Call CollectionChanged when modifying
13014         an item from Items indexer, to update the actual items
13015         in the list box.
13016
13017 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13018
13019         * PrintDialog.cs: Small fixes for focus and a pair of checks,
13020         to match .Net behaviour.
13021
13022 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13023
13024         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
13025
13026 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13027
13028         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
13029
13030 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13031
13032         * MessageBox.cs: Prevent potential NRE exception.
13033         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
13034
13035 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13036
13037         * MessageBox.cs: Calculate the owner of a messagebox, also make
13038           it topmost. Fixes #78753
13039
13040 2006-08-14  Chris Toshok  <toshok@ximian.com>
13041
13042         * XplatUIX11.cs: A couple of fixes so that metacity will let us
13043         programmatically move windows.  first, set the PPosition hint as
13044         well as the USPosition hint.  Second include some code from pdb
13045         that sets the window type to NORMAL when we set the transient for
13046         hint.  This is because, in the absence of a window type, metacity
13047         thinks any window with TransientFor set is a dialog, and refuses
13048         to let us move it programmatically.  fascists.
13049
13050 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13051
13052         * XplatUIX11.cs: When setting normal hints, take into consideration
13053           an different hints previously set so we don't delete them (fixes #78866)
13054
13055 2006-08-12  Chris Toshok  <toshok@ximian.com>
13056
13057         * ToolBarButton.cs: make Layout return a boolean, if something to
13058         do with the button's layout changed.
13059
13060         * ToolBar.cs:
13061         - add another parameter to Redraw, @force, which all existing
13062           calls set to true.
13063         - make the Layout function return a boolean which is true if the
13064           layout has actually changed.  Redraw now uses this (and @force)
13065           to determine when to invalidate.  At present the only place
13066           where @force can be false is the call from OnResize, when
13067           background_image == null.  So, resizing a toolbar when the
13068           layout doesn't change results in no drawing.
13069
13070 2006-08-12  Chris Toshok  <toshok@ximian.com>
13071
13072         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
13073         the VScrollBar and HScrollbar reversed.  oops.
13074
13075         * DataGrid.cs: fix the logic that assigns sizes to the implicit
13076         scrollbars.  we were assigning them twice (once in
13077         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
13078         therefore causing two scrollbar resizes (and redraws?) to happen
13079         per grid resize.
13080
13081 2006-08-12  Chris Toshok  <toshok@ximian.com>
13082
13083         * ToolBarButton.cs: redraw the entire button if the theme tells us
13084         to.
13085
13086         * Theme.cs: add ToolBarInvalidateEntireButton.
13087
13088         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
13089         buttons, just the border.
13090
13091         * ThemeNice.cs: redraw the entire toolbar button since we need to
13092         draw the highlight image.
13093
13094         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
13095         we need to redraw the entire button (not just the border).
13096
13097 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13098
13099         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
13100           for vertical bars. Fixes the mismatches shown by #78513
13101
13102 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
13103
13104         * FileDialog.cs: If a saved/remembered path doesn't exist
13105           anymore, fall back to "Desktop".
13106
13107 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13108
13109         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
13110           parent. It's apparently legal to not have one
13111         * XplatUIX11.cs:
13112           - SetZOrder: Don't try to set Z-Order on an unmapped window
13113           - CreateWindow: 0,0 are legal coordinates for a window. don't move
13114             it unless the coordinates are negative
13115
13116 2006-08-10  Mike Kestner  <mkestner@novell.com>
13117
13118         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
13119         when setting to null per msdn docs.  Fixes #78854.
13120
13121 2006-08-10  Chris Toshok  <toshok@ximian.com>
13122
13123         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
13124         flickering by setting a clip rectangle on the Graphics when we
13125         need to redraw just a particular menuitem.  Also, rename "OnClick"
13126         to "OnMouseDown" to reflect what it actually is.
13127         
13128         * Form.cs: track the OnMouseDown change.
13129
13130 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
13131
13132         * CommonDialog.cs: Properly inherit the CreateParams from the form
13133           and only change what we need. Fixes #78865
13134
13135 2006-08-10  Chris Toshok  <toshok@ximian.com>
13136
13137         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
13138         flickering in flat mode (and most of the flickering in general) by
13139         only invalidating the button border (and not the entire rectangle)
13140         when the state changes.  A couple of cases still flicker:
13141         ToggleButtons, and the dropdown arrow case when the user mouse
13142         ups.
13143
13144 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
13145
13146         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
13147           for german keyboards. Numlock state shouldn't affect the behaviour
13148           of the Del key. Fixes bug #78291.
13149
13150 2006-08-10  Chris Toshok  <toshok@ximian.com>
13151
13152         * ListControl.cs: remove the items.Clear line from BindDataItems,
13153         as this is the first thing done by both subclasses in their
13154         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
13155         passed -1, refresh the list.  This gets databinding working when
13156         the datasource is set on the list before the datasource is
13157         populated (as in wf-apps/ReportBuilder.)
13158
13159         * ComboBox.cs: remove the argument to BindDataItems.  This call
13160         should really go away, and be initiated by the ListControl code.
13161
13162         * ListBox.cs: same.
13163
13164 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
13165
13166         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
13167           if no data is in the document when the control is displayed
13168
13169 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
13170
13171         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
13172           yes (fixes #78806)
13173         * TextControl.cs: 
13174           - PositionCaret: Allow positioning of caret but don't call methods 
13175             requiring a handle if the window isn't created yet
13176           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
13177           - owner_HandleCreated: Don't position the caret, just update it's 
13178             location. User might have already set a different position
13179
13180 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
13181
13182         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
13183           windows. Screws up the returned coordinates for child windows. 
13184           Fixes #78825. I'm hoping this doesn't break something, since the
13185           code was explicitly put in 8 months ago, but no bug was attached.
13186           Menus still seem to work properly.
13187
13188 2006-08-08  Chris Toshok  <toshok@ximian.com>
13189
13190         * DataGrid.cs: make BeginInit/EndInit actually do what they're
13191         supposed to do - delay data binding until the EndInit call.  Also,
13192         make the table style collection's CollectionChangeAction.Refresh
13193         work properly.
13194
13195         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
13196         (with action = Refresh) when a consituent table's MappingName is
13197         changed.
13198
13199 2006-08-08  Chris Toshok  <toshok@ximian.com>
13200
13201         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
13202         Invalidate, since changing the text can change the size of the all
13203         toolbar buttons.
13204
13205 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13206
13207         * Form.cs (AddOwnedForm): Still need to add the form to our listif
13208           we don't have it yet
13209
13210 2006-08-08  Chris Toshok  <toshok@ximian.com>
13211
13212         * PrintControllerWithStatusDialog.cs: don't .Close() the status
13213         dialog, as this causes X errors later on, since we actually
13214         destroy the window.  Instead, .Hide() it.
13215
13216 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13217
13218         * ComboBox.cs: Added focus reflection for popup window
13219         * XplatUIX11.cs: 
13220           - Removed transient setting for non-app windows for now, not sure it
13221             was needed
13222           - Fixed logic checking if we have captions when deciding 
13223             override_redirect, WS_CAPTION is two bits and a 0 check was not
13224             sufficient
13225           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
13226             complicated
13227         * Form.cs: 
13228           - AddOwnedForm: Don't just add the form to the list, call the property
13229             to ensure the driver is informed about the ownership as well
13230           - CreateHandle: Set the TopMost status in the driver if we have an owner
13231         * XplatUI.cs: Fixed debug statement
13232
13233 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
13234         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13235           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
13236           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
13237           TrackBarRenderer.cs: Make constructor private.
13238         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
13239         * ProfessionalColorTable.cs: Make properties virtual.
13240
13241 2006-08-06  Duncan Mak  <duncan@novell.com>
13242
13243         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
13244         is not changing.
13245
13246 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13247         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13248           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
13249           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
13250           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
13251           Initial import of new 2.0 classes.
13252
13253 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13254         * Application.cs: Add 2.0 VisualStyles properties.
13255
13256 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13257         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13258           XplatUIX11.cs: Create property to allow access to existing private
13259           variable "themes_enabled"
13260
13261 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13262
13263         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
13264         file size, as otherwise our class libraries fail using windows. Fixes
13265         bug #78759.
13266
13267 2006-08-04  Jackson Harper  <jackson@ximian.com>
13268
13269         * Form.cs:
13270         * XplatUIX11.cs: Move the toolwindow window manager creation into
13271         the X11 driver, this way on win32 we can let windows create/handle
13272         the toolwindows.
13273
13274 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13275
13276         * PrintDialog.cs: Remove some redundant checks, add some others,
13277         clean some code, and move the focus to the text boxes when the
13278         values are incorrect.
13279
13280 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
13281
13282         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
13283
13284 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13285
13286         * NumericUpDown.cs: Setting the Minimum and Maximum is now
13287           handled correctly. Fixes bug #79001.
13288
13289 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13290
13291         * PrintDialog.cs: The "Copies" numeric up down must have
13292         set the Minimum property to 1; only if the value is bigger
13293         than 1, activate "Collate" check box. This is the behaviour of .Net.
13294         Also modify the Document elements only if it is not null.
13295
13296 2006-08-03  Jackson Harper  <jackson@ximian.com>
13297
13298         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
13299         length. (We have a larger array then actual node count).
13300                 
13301 2006-08-03  Jackson Harper  <jackson@ximian.com>
13302
13303         * ComboBox.cs: Don't show selection by default.
13304         - The SelectAll isn't needed here, since the focus code should do
13305         that
13306         - DDL style lists to manual selection drawing, so when they
13307         get/lose focus they have to invalidate.
13308
13309 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
13310
13311         * TextBoxBase.cs: Don't always show all selections by default.
13312
13313 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
13314         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
13315           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
13316           Fixed various typos.
13317
13318 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13319
13320         * Control.cs: Removing the controls in a ControlCollection with
13321           Clear now hides the controls as expected. Fixes bug #78804. 
13322
13323 2006-08-03  Jackson Harper  <jackson@ximian.com>
13324
13325         * Control.cs: Revert previous focus patch, it breaks reflector.
13326
13327 2006-08-03  Jackson Harper  <jackson@ximian.com>
13328
13329         * ComboBox.cs: Cleanup selection and focus with the combobox.
13330         This also eliminates some duplicated keyboard code, since now
13331         everything is handled by the main class.
13332         - Make list selection work on mouse up instead of down, to match
13333         MS.
13334
13335 2006-08-02  Jackson Harper  <jackson@ximian.com>
13336
13337         * Control.cs: Setting focus needs to go through the whole
13338         selection mechanism.
13339
13340 2006-08-02  Chris Toshok  <toshok@ximian.com>
13341
13342         * PrintPreviewDialog.cs: change MinimumSize to use
13343         base.MinimumSize so it works.
13344
13345 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
13346
13347         * TextControl.cs:
13348           - UpdateCaret: Added sanity check in case caret isn't defined yet
13349           - Line.Delete: Now updating selection and caret markers if we're
13350             transfering a node (Properly fixes #78323)
13351           - SetSelectionEnd: Added sanity check
13352         * TextBoxBase.cs: Removed broken attempt to fix #78323
13353
13354 2006-08-01  Chris Toshok  <toshok@ximian.com>
13355
13356         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
13357         Close() call is handled in Form, not here.
13358
13359 2006-08-01  Chris Toshok  <toshok@ximian.com>
13360
13361         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
13362         layout/rendering.
13363
13364         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
13365         for sizes < 100% zoom.  The code now aggressively attempts to keep
13366         from calling document.Print (), and tries not to use the scaling
13367         g.DrawImage whenever possible (it still does if you scale to >
13368         100%, since usually that involves huge images).
13369
13370         * PrintPreviewControl.cs: hook up the close button.
13371
13372 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
13373         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
13374           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
13375           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
13376           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
13377           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
13378           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
13379           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
13380           Removed [Serializable] for 2.0 Event Handlers.
13381
13382 2006-07-31  Jackson Harper  <jackson@ximian.com>
13383
13384         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
13385         * TextControl.cs: Uncomment out the body of this method.
13386
13387 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
13388
13389         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
13390           standard cursors.
13391
13392 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13393
13394         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
13395           that embed TextBox and need selections visible even if textbox is not
13396           focused to enforce that behaviour.
13397         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
13398           selection drawing
13399
13400 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13401
13402         * TextControl.cs:
13403           - Added new SetSelectionStart/SetSelectionEnd overloads
13404           - Fixed viewport width assignment to be accurate
13405           - Adjusted alignment line shift calculations to allow cursor on right
13406             aligned lines to be always visible at the right border (like MS)
13407         * TextBoxBase.cs:
13408           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
13409           - TextBoxBase_SizeChanged: recalculating canvas on size changes
13410           - CalculateScrollBars: Use ViewPort size instead of window size, to
13411             properly consider space occupied by the border and scrollbars 
13412             (Fixes #78661)
13413           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
13414             calculations; no longer leaves artifacts
13415           - CaretMoved: Adjusted window scrolling to match MS and fixed several
13416             calculation bugs (Still missing right/center align calculations)
13417
13418 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
13419
13420         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
13421           use of both scroll rect and clip rect, as they do the same.
13422
13423 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13424
13425         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
13426           in the event handler (fixes #78912)
13427
13428 2006-07-31  Chris Toshok  <toshok@ximian.com>
13429
13430         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
13431         grid.ListManager.Count, since grid.ListManager might be null.
13432         This of course begs the question "why are we drawing rows for a
13433         grid with no list manager (and therefor no rows)?"  Fixes the
13434         crash in bug #78929.
13435
13436 2006-07-31  Chris Toshok  <toshok@ximian.com>
13437
13438         * RelatedPropertyManager.cs: Don't always chain up to the parent
13439         ctor.  instead, call SetDataSource if the parent's position is !=
13440         -1.  Fixes the crash in #78822.
13441
13442 2006-07-31  Chris Toshok  <toshok@ximian.com>
13443
13444         * DataGrid.cs (get_ListManager): use field instead of property
13445         accessors for datasource and datamember.
13446         (RowsCount): make internal again.
13447         (OnMouseDown): end edits before resizing columns/rows.
13448         (OnMouseUp): restart edits after resizing columns/rows.
13449
13450 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
13451
13452         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
13453           This fixes the situation where the last set cursor is displayed
13454           whenever the mouse is over scrollbars.
13455
13456 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13457
13458         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
13459         Document properties, as well as initial values.
13460
13461 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
13462
13463         * XplatUIWin32.cs (SetBorderStyle): Setting both border
13464           and ClientEdge results in a 3-pixel border, which is
13465           wrong.
13466
13467 2006-07-28  Jackson Harper  <jackson@ximian.com>
13468
13469         * TreeNodeCollection.cs: Fix the clear method.
13470         - Fix the Shrink also
13471
13472 2006-07-27  Jackson Harper  <jackson@ximian.com>
13473
13474         * TreeView.cs: Make sure the visible order is computed when we
13475         attempt to size the scrollbars (for trees that mess with the
13476         scrolling when they shouldn't.
13477         - Make sure to give the scrollbars valid values.
13478
13479 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13480
13481         * XplatUIX11.cs: Move motion compression code to where it
13482           has less performance impact
13483
13484 2006-07-26  Jackson Harper  <jackson@ximian.com>
13485
13486         * UpDownBase.cs: When the control is selected make the child
13487         controls non selectable, so that a click on them won't do a
13488         focus/unfocus cycle.
13489         - Don't give focus to the text box when the spinner is selected.
13490         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
13491
13492 2006-07-26  Chris Toshok  <toshok@ximian.com>
13493
13494         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
13495         satisfied with this solution.  If the bitmaps are small, we should
13496         just cache them in the PrintPreviewDialog and draw them here.
13497         Also, the layout is broken for the 2-up and 3-up cases.
13498
13499         * Theme.cs: add PrintPReviewControlPaint.
13500
13501         * PrintPreviewDialog.cs: first pass implementation.
13502
13503         * PrintPreviewControl.cs: first pass implementation.  No
13504         scrollbars yet.
13505
13506         * PrintDialog.cs: only validate fields if that particular portion
13507         of the UI is enabled.  Also, set the document's controller to a
13508         PrintControllerWithStatusDialog wrapping the document's print
13509         controller.
13510
13511         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
13512         bring up a SaveFileDialog (i hope we don't want to match the
13513         behavior of the crappy windows file entry) and set the
13514         PrinterSettings.PrintFileName accordingly.
13515
13516 2006-07-26  Jackson Harper  <jackson@ximian.com>
13517
13518         * ContainerControl.cs: Add a field that disables auto selecting
13519         the next control in a container when the container is activated.
13520         * UpDownBase.cs: Don't select the text box when the up down is
13521         selected.
13522
13523 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13524
13525         * XEventQueue.cs: Added methods for peeking (used for compression
13526           of successive events)
13527         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
13528           mouse move events (fixes #78732)
13529
13530 2006-07-25  Jackson Harper  <jackson@ximian.com>
13531
13532         * UpDownBase.cs: Use an internal class for the textbox so that we
13533         can control focus.  the updown control should always have focus,
13534         if either the text area or the buttons are clicked.
13535         - Send the key messages to the textbox, since it never actually
13536         has focus
13537         - Activate and decativate the textbox caret.
13538
13539 2006-07-24  Jackson Harper  <jackson@ximian.com>
13540
13541         * Control.cs: Use the directed select when selecting a control,
13542         this way the container controls override will get called and the
13543         whole ActiveControl chain will get triggered.  TODO: probably need
13544         to make sure this gets done everywhere instead of the old
13545         Select(Control).
13546         * ContainerControl.cs: Implement the directed Select method to
13547         find and activate the correct child control.    
13548         
13549 2006-07-22  Mike Kestner  <mkestner@novell.com>
13550
13551         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
13552         menu handling code so that clicks without a grab work too.
13553         [Fixes #78914]
13554
13555 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
13556
13557         * FileDialog.cs: Enable the BackButton when dirstack has one element.
13558           Added some small optimizations.
13559
13560 2006-07-21  Matt Hargett  <matt@use.net>
13561
13562         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
13563
13564 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
13565
13566         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
13567           tests pass and match MS in some strange border cases.
13568
13569 2006-07-21  Chris Toshok  <toshok@ximian.com>
13570
13571         * ThemeWin32Classic.cs: handle drawing of the relation links and
13572         parent row buttons.
13573
13574         * Theme.cs: change args to DataGridPaintParentRow.
13575
13576         * DataGrid.cs: Don't use controls for the relation links and
13577         parent buttons, so we have to handle all their interactions in
13578         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
13579         when we're navigating through child tables, so we can reinstate
13580         selection, expanded state, current cell, etc.
13581
13582 2006-07-20  Chris Toshok  <toshok@ximian.com>
13583
13584         * ToolBar.cs: When we redraw a button, for whatever reason,
13585         there's no reason to redraw the entire toolbar.  Also, don't call
13586         Control.Refresh from within Redraw, as it's much heavier than
13587         Invalidate (which is really what we want).
13588
13589 2006-07-20  Chris Toshok  <toshok@ximian.com>
13590
13591         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
13592         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
13593         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
13594         traces from within a debug IBindingList datasource
13595         (in mono/winforms/datagrid) for *days*, I've finally gotten things
13596         to work in a similar fashion.
13597
13598 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13599
13600         * ListBox.cs: Don't call Sort () when setting 
13601         the Sorted property to false (avoid an unnecessary sort).
13602
13603 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13604
13605         * ListControl.cs: DataSource should throw an ArgumentException
13606         instead of a normal exception when the argument is not of the 
13607         correct type.
13608
13609 2006-07-20  Mike Kestner  <mkestner@novell.com>
13610
13611         * Control.cs: add InternalPreProcessMessage to allow us to steal
13612         key events before MWF gets its paws on them.  Adapted from a
13613         suggestion by eno.
13614         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
13615         up/down/left/right navigation. Override the new internal control
13616         method to steal the events since they never make it to WndProc.
13617         * ToolBarButton.cs: don't worry about pushed when setting hilight
13618         since the drawing code prefers pushed to hilight. Invalidate on 
13619         Hilight changes. Fixes #78547 and #78525.
13620
13621 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13622
13623         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
13624           the canvas size. Fixes #78868
13625
13626 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
13627
13628         * Splitter.cs: Track requested split position until first layout
13629           is performed. Fixes #78871
13630
13631 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13632
13633         * Application.cs: Removed code that forces 1.x for the version
13634           number if the version started with 0. Not sure why that code was
13635           there and I couldn't find any bugs that indicated we needed it.
13636           Fixes #78869
13637
13638 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
13639
13640         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
13641           ResetDefaults(), just write some output to the console until it's
13642           implemented. Fixes bug #78907 for now. Eliminated two warnings.
13643
13644 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
13645
13646         * PropertyGridView.cs: set StartPosition of drop down forms
13647         so they appear in correct initial spot.  Fixes #78190.
13648
13649 2006-07-19  Mike Kestner  <mkestner@novell.com>
13650
13651         * ThemeWin32Classic.cs: use parent background color when drawing
13652         flat toolbars.  Restructure the conditionals to make sure non-flat
13653         non-Divider toolbars are filled too.  Fixes #78837.
13654
13655 2006-07-19  Mike Kestner  <mkestner@novell.com>
13656
13657         * ListBox.cs: Sort on collection changes even if the handle
13658         isn't created yet.  Fixes #78813.
13659
13660 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13661
13662         * ListControl.cs: DisplayMember should never be null,
13663         and now we assign String.Empty when null is passed to it (this
13664         is the .Net way).
13665
13666 2006-07-17  Mike Kestner  <mkestner@novell.com>
13667
13668         * ListViewItem.cs: restructure Font and subitem Font handling 
13669         to hold a specific font and refer back to owner on null.
13670         Fixes #78761.
13671
13672 2006-07-17  Mike Kestner  <mkestner@novell.com>
13673
13674         * ToolBar.cs: bandaid for side-effect of previous patch which was
13675         discarding explicit heights for non-AutoSize toolbars.  Need to
13676         extend my format tester to deal with AutoSize=false. Fixes #78864.
13677
13678 2006-07-15  Jackson Harper  <jackson@ximian.com>
13679
13680         * LabelEditTextBox.cs:
13681         * TreeView.cs: Use a new LabelEdit class for node editing, this
13682         class automatically 'closes' itself when it gets the enter key or
13683         loses focus.
13684         - Use the client rectangle when setting the trees scrollbars, so
13685         border style is taken into account.
13686         
13687 2006-07-14  Jackson Harper  <jackson@ximian.com>
13688
13689         * TreeNode.cs:
13690         * TreeView.cs: Make the editing work similar to MSs, firing the
13691         events correctly and ending edits correctly.
13692
13693 2006-07-14  Mike Kestner  <mkestner@novell.com>
13694
13695         * ToolBarButton.cs:
13696         * ToolBar.cs: layout restructuring and redraw enhancements to support
13697         formatting changes gracefully, like setting TextAlign, ImageList, 
13698         ButtonSize, and Appearance.  Handles explicit button sizing quirks
13699         of the MS controls.  Things like flat toolbars ignoring button size
13700         but becoming constant sized at the largest button's size.  Normal
13701         toolbars with an image set cannot be shrunk smaller than the image,
13702         but text can be clipped/ignored.
13703         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
13704         is zero.  Seems like DrawString should be smart enough to not put
13705         anything on screen though. Also trim labels and ellipsize at the char
13706         boundary, not word.
13707         Fixes #78711 and #78483.
13708
13709 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13710
13711         * FolderBrowserDialog.cs: Disable "New Folder" button and
13712           "New Folder" contextmenu menuitem if a folder like "My Computer"
13713           is selected.
13714
13715 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13716
13717         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
13718         * FolderBrowserDialog.cs:
13719           - Use MWFConfig to store and read size and position settings
13720           - Added code to create a new folder (button or context menu).
13721             Use TreeView labeledit to change the name of the new folder.
13722
13723 2006-07-14  Jackson Harper  <jackson@ximian.com>
13724
13725         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
13726         when the tree is scrolled we end editing.
13727
13728 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13729
13730         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
13731           Down arrows
13732
13733 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
13734
13735         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
13736         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
13737         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
13738         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
13739         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
13740         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
13741         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
13742         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
13743         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
13744         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
13745         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
13746         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
13747         ListViewItemSelectionChangedEventHandler.cs,
13748         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
13749         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
13750         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
13751         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
13752         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
13753         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
13754         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
13755         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
13756         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
13757         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
13758         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
13759         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
13760         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
13761         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
13762         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
13763         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
13764         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
13765         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
13766         WebBrowserNavigatingEventHandler.cs, 
13767         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
13768
13769 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
13770
13771         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
13772         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
13773         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
13774         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
13775         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
13776         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
13777         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
13778         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
13779         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
13780         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
13781         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
13782         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
13783         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
13784         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
13785         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
13786         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
13787         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
13788         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
13789         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
13790         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
13791         ListViewItemStates.cs, MaskFormat.cs: Added
13792
13793 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
13794
13795         * PropertyGridView.cs: Fix keyboard navigation of drop down.
13796         Patch from eno for bug 78558.
13797         
13798 2006-07-13  Jackson Harper  <jackson@ximian.com>
13799
13800         * TreeView.cs: When an edit is finished make sure that the
13801         selected node is visible.
13802         - When setting the top/bottom use the scrollbars is_visible, so
13803         everything will be set correctly even if the tree isn't visible
13804         yet.
13805
13806 2006-07-13  Jackson Harper  <jackson@ximian.com>
13807
13808         * ComboBox.cs: Revert the item->index part of my previous patch.
13809         * TreeView.cs: Use LostFocus instead of Leave for detecting when
13810         the edit box has lost focus (duh).
13811         - Just make the edit box not visible when we get return, that will
13812         take the focus, which will call EndEdit
13813         * TreeNode.cs When we start editing, notify the treeview.
13814
13815 2006-07-12  Jackson Harper  <jackson@ximian.com>
13816
13817         * ComboBox.cs: Clear out old items before setting the item list.
13818         This prevents databound controls from having their items added
13819         twice.
13820         - Switch the combobox to use indices whereever possible instead of
13821         using Item's.  This allows usto navigate through lists that have
13822         more then one item with the same string value (ie a, b, b, a).
13823         - Scroll the listboxes scrollbar when a non visible item is
13824         highlighted
13825         - Allow keypress to cycle through all the possible values. For
13826         example if you have b1, b2, b3 and hold down the B key all the
13827         values will be cycled through.
13828         
13829 2006-07-12  Jackson Harper  <jackson@ximian.com>
13830
13831         * TextBoxBase.cs:
13832         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
13833         this using the internal methods.
13834         * Control.cs: Add OnGotFocusInternal.  A new method that allows
13835         controls to "override" OnGotFocus and change focus behavior if
13836         needed.
13837         - Same thing for LostFocus
13838         * ComboBox.cs: Pass off focus to the text control properly.
13839
13840 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
13841
13842         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
13843         * FolderBrowserDialog.cs: Almost a complete rewrite.
13844           - Better support for Environment.Specialfolders
13845           - Added support for MWFVFS
13846           - Made setting SelectedPath work
13847
13848 2006-07-12  Jackson Harper  <jackson@ximian.com>
13849
13850         * Control.cs: Optimze getting all the controls.
13851
13852 2006-07-11  Jackson Harper  <jackson@ximian.com>
13853
13854         * ContainerControl.cs: Override SETFOCUS in the container control,
13855         so that it is not selected on mouse click.
13856
13857 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
13858
13859         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
13860           Hopefully we will have a better way once all of focus is complete.
13861
13862 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
13863
13864         * ThemeWin32Classic.cs: Commented out some debug code and fixed
13865           a compile error with csc.
13866
13867 2006-07-11  Jackson Harper  <jackson@ximian.com>
13868
13869         * Control.cs: When hiding a control only select the next control
13870         if the current control was focused.
13871         - Don't handle enter/leave when setting/killing focus, this is
13872         done by the container control.
13873         - Remove is_selected, it's not needed anymore.
13874         - Add utility methods for selecting a child control, and for
13875         firing the Enter/Leave events.
13876         * ContainerControl.cs: When a control is activated fire the
13877         enter/leave events.
13878         - Don't wrap when processing the tab key, so that focus can be
13879         moved outside of the container.
13880         - Use the correct active control
13881
13882 2006-07-11  Jackson Harper  <jackson@ximian.com>
13883
13884         * ComboBox.cs: Remove some debug code that was blinding me.
13885         * UpDownBase.cs: These controls actually aren't implicit, they are
13886         visible to the user.
13887
13888 2006-07-10  Chris Toshok  <toshok@ximian.com>
13889
13890         * DataGrid.cs: move back to the is_adding boolean field.  god i
13891         hate this is_editing/is_adding/is_changing stuff.
13892
13893 2006-07-10  Chris Toshok  <toshok@ximian.com>
13894
13895         * DataGridTableStyle.cs: just check if the property type is bool.
13896         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
13897         Don't use CanRenderType.
13898
13899         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
13900         if our text == NullText.  Remove CanRenderType.
13901
13902         * DataGridBoolColumn.cs: nuke CanRenderType.
13903
13904         * DataGrid.cs: reenable some code to end the current edit inside
13905         of set_CurrentCell.  This fixes the other 1.1.16 regression.
13906         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
13907         Also, remove the visible_row_count arg from CalcRowHeaders, since
13908         we don't need to worry about the actual height of the area.
13909
13910 2006-07-10  Chris Toshok  <toshok@ximian.com>
13911
13912         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
13913         mode, just return.
13914
13915         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
13916         the real sense of the IsInEditOrNavigateMode property (true =
13917         navigate, false = edit).  Also, update OnKeyPress to reflect this.
13918
13919         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
13920         column style exists, we still need to set its property descriptor
13921         to match up with our list manager.
13922
13923 2006-07-10  Chris Toshok  <toshok@ximian.com>
13924
13925         * ThemeWin32Classic.cs: implement the new row/header painting
13926         approach.  The parent row painting will likely go away and
13927         replaced with label controls, but the rest seems to work ok (and
13928         efficiently).
13929
13930         * Theme.cs: change the way we draw datagrid rows.  we don't draw
13931         the row headers as a block now.  Instead we draw them in the
13932         normal draw-row loop.  Add some calls for drawing parent rows and
13933         relation rows.
13934
13935         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
13936         a default table style.  Set the defaults from ThemeEngine.Current,
13937         not SystemColors.  Fix lots of misc issues with property setters.
13938
13939         * DataGrid.cs: move loads of style information out of this class
13940         as it's being duplicated with DataGridTableStyle.  keep track of a
13941         special DataGridTableStyle for the properties we used to mirror
13942         here.  Switch all the style properties to access this table style
13943         instead of instance fields of this class.  Also add a internal
13944         class to represent parent rows (more needs to be stored here, like
13945         the selection state from the parent table, as well as the
13946         expansion state.)  Also, for datasources with relations, do the
13947         right thing for collapse/expand, and add support for the
13948         navigation/parent row buttons.
13949
13950         Lastly, fix the crash in the 1.1.16 build.
13951
13952         * GridTableStylesCollection.cs: make the explicit interface
13953         implementations call the class's methods as opposed to duplicating
13954         them.
13955
13956         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
13957         0 so the text doesn't jump around when we move the cursor.
13958
13959 2006-07-10  Jackson Harper  <jackson@ximian.com>
13960
13961         * TextBoxBase.cs:
13962         * ListBox.cs: Match MS's ToString (this makes debugging focus
13963         stuff infinitely easier).
13964
13965 2006-07-10  Jackson Harper  <jackson@ximian.com>
13966
13967         * Control.cs (SelectNextControl): When checking the control's
13968         parent use this instead of ctrl.parent so that null can be passed
13969         to SelectNextControl. (I have unit tests for this).
13970         - Remove unused var.
13971
13972 2006-07-10  Chris Toshok  <toshok@ximian.com>
13973
13974         * CurrencyManager.cs: correct one regression, the removal of the
13975         finalType field.  Also, add a MonoTODO on CanAddRows, implement
13976         Refresh() correctly, and fix some event emission in
13977         ListChangedHandler.
13978
13979 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
13980
13981         * FileDialog.cs: Don't use brackets for new folders if they exist
13982           under *nix. Instead use -(number of existing folders +1).
13983
13984 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
13985
13986         * FileDialog.cs:
13987           - Fixed really nasty bug #78771
13988           - Don't block the whole GUI when reading directories with a lot of
13989             entries. Use an other thread instead and call BeginInvoke to
13990             update the ListView in MWFFileView
13991
13992 2006-07-07  Chris Toshok  <toshok@ximian.com>
13993
13994         * Control.cs (Dispose): release any Capture when disposing.
13995
13996 2006-07-07  Chris Toshok  <toshok@ximian.com>
13997
13998         * LinkLabel.cs (Select): if we chain up to the parent, set
13999         focused_index to -1 so we'll search for the first available link
14000         the next time the user tabs into us.  Also, if the direction is
14001         backward and focused_index == -1, start the search from the last
14002         element.
14003
14004 2006-07-07  Chris Toshok  <toshok@ximian.com>
14005
14006         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
14007         is beyond the end of the text, don't do anything.
14008         (CreateLinkPieces): set our ControlStyles.Selectable based on
14009         whether or not we have any links.
14010         (Link.Invalidate): use a loop instead of foreach.
14011         (Link.set_Start): null out owner.sorted_links so it'll be
14012         recreated by CreateLinkPieces.
14013
14014 2006-07-06  Chris Toshok  <toshok@ximian.com>
14015
14016         * LinkLabel.cs: revert the SetStyle change.
14017
14018 2006-07-06  Chris Toshok  <toshok@ximian.com>
14019
14020         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
14021         (OnEnableChanged): s/Refresh/Invalidate
14022         (OnGotFocus): if we have a focused index already, refocus it (so
14023         if we mouse out/in to the window it'll focus the right link).
14024         (OnKeyDown): move the tab handling out of here.
14025         (OnLostFocus): don't set focused_index to -1, so we can refocus it
14026         when we lose focus.
14027         (OnMouseDown): don't Capture here - Control handles it.  Also,
14028         focus the active link.
14029         (OnMouseUp): don't deal with Capture.
14030         (OnPaintBackgroundInternal): remove.
14031         (OnTextAlignChanged): CreateLinkPieces before calling the
14032         superclass's method.
14033         (OnTextChanged): call CreateLinkPieces before calling superclass's
14034         method.
14035         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
14036         move around.
14037         (Select): implement this, moving the selection between different
14038         links, and call parent.SelectNextControl if we don't have another
14039         link to focus in the given direction.
14040         (CreateLinkPieces): call Invalidate instead of Refresh.
14041         
14042 2006-07-06  Chris Toshok  <toshok@ximian.com>
14043
14044         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
14045         new LinkLabel internals.
14046
14047         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
14048         over pieces looking for active/focused/etc links.  also, deal with
14049         runs of text (and links) with embedded \n's in them, and use
14050         MeasureCharacterRanges instead of MeasureString to figure out the
14051         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
14052         two-step.
14053
14054 2006-07-04  Jackson Harper  <jackson@ximian.com>
14055
14056         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
14057         XKB or key auto repeat, do it manually.  Without key auto repeat,
14058         when a key is held down we get key press, key release, key press,
14059         key release, ... with auto repeat we get key press, key press, key
14060         press ..., and then a release when the key is actually released.
14061
14062 2006-07-03  Jackson Harper  <jackson@ximian.com>
14063
14064         * TabControl.cs:
14065         * ThemeWin32Classic.cs: Tabs do not obey normal background color
14066         rules, they are always control color regardless of the background
14067         color.
14068
14069 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
14070
14071         * FileDialog.cs: Added internal class MWFConfig.
14072           Removed Registry support and replaced it with support for the new
14073           MWFConfig class. See MWFConfig comments for more information.
14074
14075 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
14076
14077         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
14078           rectangle. Added some patches from eno from bug #78490 and fixed
14079           the arrow position for small up and down CPDrawScrollButtons.
14080
14081 2006-06-30  Jackson Harper  <jackson@ximian.com>
14082
14083         * InternalWindowManager.cs: Remove some debug code.
14084         * Form.cs: When an MdiParent is set to null, the window is
14085         "detatched" and becomes a normal window.
14086         * MdiClient.cs: Don't bring the new child form to the front until
14087         it is activated (setting it as active does this), this makes the
14088         previously active forms titlebar get redrawn as inactive.
14089
14090 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
14091
14092         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
14093           with later controls
14094
14095 2006-06-29  Mike Kestner  <mkestner@novell.com>
14096
14097         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
14098         arrow in keynav state.  Fixes #78682.
14099
14100 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14101
14102         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
14103           order (fixes #78393)
14104
14105 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
14106
14107         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
14108           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
14109           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
14110           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
14111           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
14112           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
14113           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
14114           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
14115           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
14116           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
14117           enumerations (FlagsAttribute, SerializableAttribute, added/removed
14118           values)
14119
14120 2006-06-28  Mike Kestner  <mkestner@novell.com>
14121
14122         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
14123
14124 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14125
14126         * PropertyGrid.cs,
14127           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
14128           item lines from other area (It also makes BackColor consistent and
14129           compatible with .NET). Fixed bug #78564.
14130
14131 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
14132
14133         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
14134         Patch from Eno for #78555.
14135
14136 2006-06-27  Chris Toshok  <toshok@ximian.com>
14137
14138         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
14139
14140         * DataGridColumnStyle.cs: same.
14141
14142         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
14143         
14144         * DataGridDrawingLogic.cs: nuke.
14145
14146 2006-06-27  Chris Toshok  <toshok@ximian.com>
14147
14148         * DataGridTableStyle.cs: clean up the constructors, and build the
14149         list of child relations for this table.  I have no idea if this is
14150         where we should be doing it (it probably isn't), but since we're
14151         already iterating over the properties..
14152
14153         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
14154         struct and array for keeping track of row information, similar to
14155         what's shown in a hack on
14156         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
14157
14158         * Theme.cs: be consistent about the naming of DataGrid methods,
14159         prefering ColumnWidths and RowHeights over columnsWidths and
14160         RowsHeights.
14161
14162         * ThemeWin32Classic.cs: same, and also add support for variable
14163         sized rows (and the +/- expansion icons for related rows).
14164
14165 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
14166
14167         * TextBoxBase.cs: Applied Eno's patch from #78660
14168
14169 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
14170
14171         * Form.cs (ScaleCore): We don't want to scale our form if it's
14172           state is minimized or maximized, but we still need to scale our
14173           child windows. Also, added try/finally block to ensure layout
14174           gets reset (Fixes #78697)
14175
14176 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
14177
14178         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
14179
14180 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
14181
14182         * Form.cs: Fixed c+p error and added check to resize form if minimum
14183           size is bigger than current size (Fixes #78709)
14184
14185 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
14186
14187         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
14188
14189 2006-06-26  Mike Kestner  <mkestner@novell.com>
14190
14191         * ComboBox.cs: only do Keypress handling in the combo when there  
14192         are items in the collection. Fixes #78710.
14193
14194 2006-06-26  Chris Toshok  <toshok@ximian.com>
14195
14196         * Binding.cs: make this work bi-directionally.  also, clear up
14197         other mixups between Push/Pull Data (e.g. we're supposed to pull
14198         data when validating).
14199
14200         * BindingManagerBase.cs: trim some fully qualified collection
14201         types.
14202
14203         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
14204
14205 2006-06-23  Chris Toshok  <toshok@ximian.com>
14206
14207         * PropertyManager.cs: It appears (according to the unit tests)
14208         that PropertyManager doesn't use
14209         PropertyDescriptor.AddValueChanged to track propery value changes
14210         in its datasource, but uses the same scheme as Binding, where it
14211         looks for a <Property>Changed event and binds to it.
14212
14213         Also, according to the docs, IsSuspended always returns false for
14214         a property manager with a non-null datasource.
14215
14216 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
14217
14218         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
14219           need to update the actual DialogResult. (Fixes #78613)
14220
14221 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
14222
14223         * Form.cs (ShowDialog): Release any captures before running the
14224           new message pump (fixes #78680)
14225
14226 2006-06-22  Mike Kestner  <mkestner@novell.com>
14227
14228         * ListView.cs: Layout column widths properly in details mode even 
14229         if HeaderStyle.None is set.  Fixes #78691.
14230
14231 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
14232
14233         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
14234
14235 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
14236
14237         * Control.cs (ContainsFocus): Using new driver method to get focused
14238           window, instead of trying to use internal tracking var, which can
14239           recursion issues (Fixes #78685)
14240         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
14241           XplatUIWin32.cs: Added GetFocus method to return focused window
14242
14243 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14244
14245         * ColorDialog.cs: when the mouse button is pressed inside the color
14246         matrix, don't let the cursor move out of it until the button is
14247         released, which is the behavior on windows. Changed 'colours' by
14248         'colors' to use the same word consistently.
14249
14250 2006-06-21  Chris Toshok  <toshok@ximian.com>
14251
14252         * DataGrid.cs: add in some basic navigation stuff (navigating to a
14253         child relation and back, using a stack).  Also, remove
14254         GetDataSource and the code that calls it - it's not needed.  Also,
14255         track CurrencyManager.ListName's removal.
14256
14257 2006-06-21  Chris Toshok  <toshok@ximian.com>
14258
14259         * CurrencyManager.cs: push some of the original type checking from
14260         BindingContext.CreateBindingManager to here, and remove some of
14261         the finalType stuff.  Need more tests to make sure I've got the
14262         ListName part right, and we might need more in SetDataSource.
14263
14264         * PropertyManager.cs: add a ctor that takes just the datasource,
14265         and no property name.  Make SetDataSource work with a null
14266         property_name, and make Current return the data_source if the
14267         property descriptor is null.  this makes 'string foo = "hi";
14268         BindingContext[foo].Current' return "hi" as it should.
14269
14270         * RelatedCurrencyManager.cs: make this code more generic - there's
14271         no reason the parent manager has to be CurrencyManager, and
14272         there's no reason to pass the DataRelation.  It suffices to use a
14273         BindingManagerBase and PropetyDescriptor.
14274
14275         * RelatedPropertyManager.cs: make a similar change here.
14276         
14277         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
14278         flower I knew it could be.
14279
14280 2006-06-20  Chris Toshok  <toshok@ximian.com>
14281
14282         * PropertyManager.cs: the PropertyChangedHandler is invoked when
14283         data in the source has changed and we need to update the control,
14284         so s/PullData/PushData.
14285
14286         * CurrencyManager.cs: Refresh is meant to update the control from
14287         data in the datasource.  So, s/PullData/PushData.
14288
14289         * BindingContext.cs: add more ugliness (we weren't handling the
14290         case where data_source = DataTable and data_member = column_name).
14291
14292         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
14293         from the perspective of the datasource.  PullData pulls from the
14294         control, PushData pushes to the control.
14295
14296 2006-06-20  Chris Toshok  <toshok@ximian.com>
14297
14298         * BindingContext.cs: rewrite the CreateBindingManager code to
14299         handle navigation paths more or less properly.  This could
14300         definitely stand some more work, in particular to push the
14301         recursion up to the toplevel.  But that relies on fixes in other
14302         places (System.Data comes to mind).
14303
14304         Also, move to a flat hashtable (and encode the twolevel nature of
14305         the dictionary into the hash key).  This lets us implement the
14306         IEnumerable.GetEnumerator method.
14307
14308         * RelatedCurrencyManager.cs: new class.  Update our view based on
14309         our relation and our parent CurrencyManager's position.
14310
14311         * CurrencyManager.cs: split out some logic from the ctor into
14312         SetView, so it can be called from the new RelatedCurrencyManager
14313         subclass.
14314
14315         * RelatedPropertyManager.cs: new class.  Update our datasource
14316         based on the position of our parent CurrencyManager.
14317
14318         * PropertyManager.cs: split out some logic from the ctor into
14319         SetDataSource, so it can be called from the new RelatedDataSource
14320         subclass.  Also, make the Current getter return the value
14321         of the PropertyDescriptor, not the data_source.
14322
14323         * Binding.cs: no need to duplicate the string splitting code here.
14324
14325 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14326
14327         * Control.cs:
14328           - set_Enabled: OnEnabledChanged is not called if the inherited state 
14329             of the control is not altered, even though  we might be changing the
14330             internal state of the control (#78458)
14331           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
14332             OnEnabledChanged, to allow easy altering of any child window state
14333           - OnEnabledChanged: Added code to enable/disable driver window state
14334           - OnParentEnabledChanged: Instead of firing the event, call 
14335             OnEnabledChanged, which will fire the event and also a) set driver
14336             window state and pass the enabled state to any grandchildren (#78458)
14337
14338 2006-06-19  Jackson Harper  <jackson@ximian.com>
14339
14340         * InternalWindowManager.cs: We don't set the cursor explicitly
14341         thats done via the response to NCHITTESTs.
14342         - Don't need to adjust for titlebar heights anymore, the
14343         coordinates are coming in the correct coordinates now (see peters
14344         last patch).
14345
14346
14347 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14348
14349         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
14350           being translated relative to whole window, instead of client window.
14351           That caused broken offsets on mouseclick (and caused gas for our
14352           InternalWindowManager)
14353
14354 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14355
14356         * TextControl.cs:
14357           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
14358           - Undo(): Added replay of cursor move on DeleteChars action; added
14359             calling Undo() again if a recorded cursor move is invalid (to
14360             ensure that some action is performed on Undo)
14361         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
14362
14363 2006-06-16  Jackson Harper  <jackson@ximian.com>
14364
14365         * MdiClient.cs: Instead of just sizing maximized windows when
14366         there is a resize we also have to adjust the Y of minimized
14367         windows, so they stay pinned to the bottom of the mdi container.
14368         - Eliminate separate tracking of the active control, we can just
14369         get this from the controls collection.
14370         - Paint the decorations for the newly activated titlebar so we get
14371         a pretty blue bar.
14372         * InternalWindowManager.cs:
14373         * ThemeWin32Classic.cs: Minimized windows get all three buttons
14374         even if they are a tool window.
14375         
14376 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14377
14378         * TextControl.cs (Undo): Handle non-existent cursor locations in the
14379           undo buffer, these can happen when text was deleted and the cursor
14380           was recorded first. Since we will also have a recorded cursor
14381           after the delete this is not an issue. (Fixes #78651)
14382
14383 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
14384
14385         * AccessibleObject.cs: Remove dependence on Control.is_selected;
14386           instead properly track control states internally (allows us to
14387           remove is_selected from Control)
14388
14389 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14390
14391         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
14392         whose width is not a multiple of 8.
14393
14394 2006-06-13  Jackson Harper  <jackson@ximian.com>
14395
14396         * MdiClient.cs:  Only maximize the next child if the current one
14397         is maximized.
14398
14399 2006-06-13  Chris Toshok  <toshok@ximian.com>
14400
14401         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
14402         modified.  Also, guard against grid or grid_drawing being null in
14403         Invalidate.
14404
14405         * DataGrid.cs: Reformat tons of getters/setters.  In the
14406         DataMember setter, just call SetNewDataSource instead of
14407         duplicating some of its functionality.  In SetNewDataSource, don't
14408         check ListManager for null, since the property getter creates the
14409         object if needed.
14410
14411         * DataGridTableStyle.cs: don't set TableStyle or call
14412         SetDataGridInternal on the column here, it's done in
14413         GridColumnStylesCollection.Add.
14414
14415         * GridColumnStylesCollection.cs: fix all the explicit interface
14416         implementations to just call our methods.  Nuke AddInternal() and
14417         move the body of it to Add().  Also, add a call to
14418         column.SetDataGridInternal to Add().
14419
14420         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
14421         base()+duplicate code.  Also, use the Format property instead of
14422         format to generate an Invalidate ala MS.  Lastly, create the
14423         textbox here, unconditionally.
14424         (set_Format): call Invalidate.
14425         (get_TextBox): no need to call EnsureTextBox.
14426         (Commit): remove the message box.
14427         (Edit) remove the call to EnsureTextBox.
14428         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
14429         (EnterNullValue): no need to check textbox for null.
14430         (HideEditBox): no need to check textbox for null.
14431         (SetDataGridInColumn): add the textbox to the grid's controls.
14432         (EnsureTextBox): nuke.
14433         
14434 2006-06-13  Jackson Harper  <jackson@ximian.com>
14435
14436         * MdiWindowManager.cs: Hook up to the maximized menus paint event
14437         and redraw the buttons when needed. Unhook when the window is
14438         unmaximized.
14439         * MainMenu.cs: Add an internal Paint event, the mdi window manager
14440         needs this so that it can redraw its buttons when the menu is
14441         repainted.
14442         * InternalWindowManager.cs:
14443         * Form.cs: The method order has changed for DrawMaximizedButtons,
14444         so that it can be a PaintEventHandler.
14445         
14446 2006-06-13  Jackson Harper  <jackson@ximian.com>
14447
14448         * MdiClient.cs: When we close a maximized mdi window, the next mdi
14449         window is activated and maximized, even if it wasn't before.
14450         - When  a new window is activated repaint the decorations of the
14451         old one, so that it no longer has the Active "look" (the blue
14452         titlebar).
14453         * InternalWindowManager.cs: Open up CreateButtons to base classes
14454         so they can recreate the buttons on state changes.
14455         - If a window is maximized give it all three buttons
14456         * MdiWindowManager.cs: Create the titlebar buttons when the state
14457         is changed, this is needed because a toolwindow will not have all
14458         three buttons until it is maximized.
14459
14460 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
14461
14462         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
14463           Fixed bug #78609.
14464
14465 2006-06-12  Jackson Harper  <jackson@ximian.com>
14466
14467         * KeysConverter.cs: Make sure we handle the Ctrl special case
14468         if its the only key.
14469         
14470 2006-06-12  Jackson Harper  <jackson@ximian.com>
14471
14472         * Theme.cs: Add a method to get the size of a managed window
14473         toolbar button.
14474         * InternalWindowManager.cs: Remove the ButtonSize property, this
14475         should be retrieved from the theme.
14476         * MdiWindowManager.cs: Get the button size from the theme
14477         * ThemeWin32Classic.cs: Make the method to get the managed window
14478         titlebar button size public.
14479         - Handle the different button sizes of maximized toolwindows
14480         (should match any maximized window).
14481         - Get the titlebar height from the theme, not the WM (which gets
14482         it from the theme).
14483
14484 2006-06-12  Jackson Harper  <jackson@ximian.com>
14485
14486         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
14487         event down to the mdi window manager.
14488         - Expose some extra stuff to base classes
14489         - Make sure to end the Capture on an NC Mouse up, so that we can
14490         get double clicks properly, and the sizing doens't stick.
14491         - When doing PointToClient contain it in the workable desktop
14492         area, this prevents windows from changing size when the cursor is
14493         pulled outside of the working area while sizing.
14494         * MdiWindowManager.cs: When we get a double click maximize the
14495         window.
14496         - Reset the cursor after handling mode changes.
14497
14498 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
14499
14500         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
14501           current desktop, instead of just assuming a 0, 0 origin. This
14502           is needed for our internal window manager, to know the top
14503           margin of the desktop
14504
14505 2006-06-12  Chris Toshok  <toshok@ximian.com>
14506
14507         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
14508         we need this to get rid of the selected background in the bool
14509         column.
14510         (CancelEditing): move the ConcedeFocus call to above the Abort
14511         call.  Also, set is_changing to false and invalidate the row
14512         header if we were changing before.
14513         (ProcessKeyPreviewInternal): remove, since noone outside this
14514         class calls it anymore.  Roll the code into ProcessKeyPreview.
14515         (EndEdit): remove the internal version.
14516         (InvalidateCurrentRowHeader): make private.
14517
14518         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
14519         Keys.Escape handling (and with it the last call to
14520         DataGrid.EndEdit from outside the class.)
14521
14522
14523 2006-06-12  Chris Toshok  <toshok@ximian.com>
14524
14525         * DataGridTextBox.cs (.ctor): isedit defaults to false.
14526         (OnKeyPress): set isedit to true.
14527         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
14528         already handled by the grid.
14529
14530         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
14531         right.  ugh.
14532         (set_DataSource): SetDataSource always returns true, so stop
14533         putting it in an if statement.
14534         (EndEdit): get rid of some {}'s
14535         (ProcessGridKey): return true in case Keys.Escape.
14536         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
14537         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
14538         PositionChanged, stopped connecting to CurrentChanged.
14539         (GetDataSource): simplify this a bunch.
14540         (SetDataSource): change return type from bool to void.
14541         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
14542         to this, and make sure we don't set ListManager.Position inside
14543         set_CurrentCell.
14544         (OnListManagerItemChanged): if we're passed an actual index,
14545         redraw that row.
14546
14547         * CurrencyManager.cs (set_Position): don't call PullData here.
14548
14549 2006-06-09  Jackson Harper  <jackson@ximian.com>
14550
14551         * TreeNode.cs:  Recalculate the visible order before doing the
14552         Expand/Collapse Below calls, because those calls generate an
14553         expose.
14554         - Reduce calls to the TreeView property, which is mildly expensive
14555         by using a local var.
14556         * Form.cs: Layout the MDI child windows when creating the parent
14557         form.
14558         - Don't use the internal constructor anymore
14559         * MdiClient.cs: use the parent form width/height (if available)
14560         when laying out the child windows, we do this because the
14561         mdiclient isn't docked yet when the initial layout is done.
14562         - Don't need an internal constructor anymore.
14563
14564 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14565
14566         * FileDialog.cs: handle access errors when trying to create a folder
14567         or changing to a directory. No need to initialize out parameters.
14568
14569 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14570
14571         * FileDialog.cs: Append a number when creating a new folder if the
14572           folder already exists (use parenthesis instead of square brackets)
14573
14574 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14575
14576         * FileDialog.cs:
14577           - Disabled registry support for windows and added better registry
14578             error checking for other systems (need to investigate why it
14579             works perfectly on my system)
14580           - If a folder already exist show an error MessageBox instead of
14581             trying to create an indexed name.
14582           - Fixed a non intentional typo.
14583
14584 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14585
14586         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
14587
14588 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14589
14590         * FileDialog.cs: When creating a new folder don't crash if the
14591           folder already exists.
14592
14593 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14594
14595         * FileDialog.cs: Allmost a complete rewrite.
14596           - added a "virtual" file system that handles the differences
14597             between unix and windows file systems (especially the directory
14598             structure). Moved most of the directory and file handling code
14599             into the vfs.
14600             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
14601             UnixFileSystem and FSEntry.
14602           - Recently used folder/directory, size, location and used file names
14603             (file name ComboBox) are now stored in the registry and get read
14604             before the dialog shows up (fixes part 6 of bug #78446).
14605           - Creation of new folders/directories is now possible (context menu
14606             or ToolBar). Added TextEntryDialog for this that fills in the gap
14607             until ListView.LabelEdit works.
14608           - Fixed cursor handling (bug #78527) and focus handling for
14609             PopupButtonPanel
14610           - Various "Search in" ComboBox enhancements. The content of the
14611             dropdown listbox now almost matches ms.
14612           - Changed the behaviour when the user switches to SpecialFolder
14613             Recent to show the ListView in View.Details.
14614           - Beside using the ToolBar to change the View property of the
14615             file ListView it is now possible to use the context menu too.
14616
14617 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14618
14619         * ComboBox.cs: Don't create a new ObjectCollection when an item
14620           gets inserted. Just insert the item in the existing object_items
14621           ArrayList.
14622
14623 2006-06-08  Jackson Harper  <jackson@ximian.com>
14624
14625         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
14626         that the treeview and root node checks are done also, this fixes a
14627         regression i caused in the unit tests.
14628
14629 2006-06-07  Wade Berrier <wberrier@novell.com> 
14630
14631         * RichTextBox.cs: More ISO8859-1 -> unicode
14632
14633 2006-06-07  Mike Kestner  <mkestner@novell.com>
14634
14635         * ComboBox.cs : use items to hold highlight/selection so that
14636         collection insertions don't require synchronization.
14637
14638 2006-06-07  Jackson Harper  <jackson@ximian.com>
14639
14640         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
14641         routine.  We now always keep the sized edge at the cursor instead
14642         of computing movement and adjusting rects.  There is one buglet
14643         with this method though when the cursor is moved over area that
14644         the window can not expand too (such as the toolbars on the desktop).
14645
14646 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14647
14648         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
14649         here. Fixes crash on startup in AlbumSurfer.
14650
14651 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
14652
14653         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
14654           values
14655
14656 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14657
14658         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
14659         statement to avoid calling XNextEvent which will block if another thread
14660         took the event that we were expecting. Fixes bug #78605.
14661
14662 2006-06-07  Mike Kestner  <mkestner@novell.com>
14663
14664         * ListView.cs : isolated checkbox clicking from the selection logic.
14665         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
14666
14667 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14668
14669         * Form.cs: Check that the value passed to Form.DialogResult
14670         is a valid enum value.
14671
14672 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14673
14674         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
14675         Computer'. Clicking it in the network view goes to 'My Computer'.
14676         Added CIFS filesystem type. Display the mount point of filesystems.
14677         Avoid duplicate mount points (happens for me with CIFS);
14678
14679 2006-06-06  Jackson Harper  <jackson@ximian.com>
14680
14681         * InternalWindowManager.cs: Draw the maximized windows buttons
14682         when resizing.
14683
14684 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14685
14686         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
14687         all other dialogs. Fixes bug #78585.
14688
14689 2006-06-06  Mike Kestner  <mkestner@novell.com>
14690
14691         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
14692         Only invalidate checkbox on checkstate changes to avoid flicker.
14693         * ListBox.cs : avoid unselect/select when clicking selected item.
14694         avoid reselection flicker for already multiselected items.
14695         Fixes #78382.
14696
14697 2006-06-06  Jackson Harper  <jackson@ximian.com>
14698
14699         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
14700         the parent form so that the menu is removed if needed.
14701
14702 2006-06-06  Mike Kestner  <mkestner@novell.com>
14703
14704         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
14705         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
14706
14707 2006-06-06  Mike Kestner  <mkestner@novell.com>
14708
14709         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
14710
14711
14712 2006-06-06  Jackson Harper  <jackson@ximian.com>
14713
14714         * Control.cs: Use the property (instead of the field) to get the
14715         default cursor so it is instantiated correctly.
14716         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
14717         resizes so we need to manually repaint the window decorations here.
14718         - Set the titlebar button locations as soon as they are created,
14719         otherwise they are not set correctly on win32.
14720         
14721 2006-06-06  Chris Toshok  <toshok@ximian.com>
14722
14723         * CurrencyManager.cs (set_Position): call PullData before
14724         OnCurrentChanged.
14725         (AddNew): after calling IBindingList.AddNew, update our
14726         listposition, and call OnCurrentChanged/OnPositionChanged (without
14727         calling PullData).
14728         (OnCurrentChanged): remove the call to PullData from here.
14729         (OnItemChanged): remove the call to PushData from here.
14730         (OnPositionChanged): change the test from == null to != null to
14731         match the other methods.
14732         (ListChangedHandler): the grossest part of the patch.  Implement
14733         this such that it passes the unit tests in CurrencyManagerTest and
14734         the output more or less matches that of MS's implementation.
14735  
14736 2006-06-06  Mike Kestner  <mkestner@novell.com>
14737
14738         * ListView.cs : only update check state on single click.
14739         * ThemeWin32Classic.cs : fix focus drawing for details view without
14740         fullrowselect.  Fixes #78454.
14741         * XplatUIX11.cs : fix for double click emission.
14742
14743 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
14744
14745         * PropertyGridView.cs : Applied Atsushi's patch to fix
14746         font dialog bug  (#78197).
14747
14748 2006-06-05  Jackson Harper  <jackson@ximian.com>
14749
14750         * TreeNode.cs: Compute the next node for expanding/collapsing
14751         correctly. We now factor in nodes without a NextNode
14752         correctly. (Fixes somes cases in nunit-gui).
14753         * InternalWindowManager.cs: Set the bounds when updating the
14754         virtual position of a tool window.
14755         
14756 2006-06-05  Chris Toshok  <toshok@ximian.com>
14757
14758         * DataGrid.cs: rename cached_currencymgr to list_manager.
14759         (set_CurrentCell): move SetCurrentCell code here, and clean it up
14760         some.
14761         (CurrentRow, CurrentColumn): single accessors so we can make the
14762         cursor movement code a lot easier to understand.
14763         (CurrentRowIndex): implement this in terms of CurrentRow.
14764         (BeginEdit): clean this up a bit.
14765         (CancelEditing): sort out the is_editing/is_changing/is_adding
14766         stuff a little.
14767         (EndEdit): minor changes.
14768         (OnKeyDown): add a comment about a (most likely) unnecessary
14769         check.
14770         (OnMouseDown): cancel editing when we click on a row header.  And
14771         use the CurrentRow setter, not CurrentCell.
14772         (ProcessDialogKey): directly call ProcessGridKey.
14773         (UpdateSelectionAfterCursorMove): factor out this common block of
14774         code (it's used everywhere that we move the cursor by updating row
14775         or column).
14776         (ProcessGridKey): pretty substantial overhaul.  Use the
14777         CurrentRow/CurrentColumn properties to make the code a lot more
14778         readable.  Only use the CurrentCell property when we have to
14779         modify both row and column at once.  Tab behavior is still broken,
14780         and Delete is untested.
14781         (Select): if we have no selected rows, set selection_start to
14782         @row.
14783         (EditCurrentCell): rename EditCell this.  It was only ever invoked
14784         with CurrentCell as the arg, so drop the arg and rename it.
14785
14786         * DataGridColumnStyle.cs: clean up the constructors a little, and
14787         drop CommonConstructor().
14788
14789         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
14790         actually get notified when the user hits it.
14791         (ProcessKeyMessage): *substantially* simplify this method.
14792         There's no reason (that I can see) for the textbox to be making
14793         calls into the datagrid at all.  Remove all of them but the ones
14794         for Enter handling.  those will take some more work.
14795
14796         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
14797         calling HideEditBox.
14798         (HideEditBox): if we have an active textbox, render it invisible
14799         without causing a re-layout of the datagrid.
14800
14801 2006-06-05  Mike Kestner  <mkestner@novell.com>
14802
14803         * ListView.cs : fix NRE crasher when focuseditem is cleared by
14804         collection changes by resetting it to Items[0].  Fixes #78587.
14805
14806 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14807
14808         * MessageBox.cs: if the height of the text is larger than the icon_size,
14809         use that. Fixes bug #78575.
14810
14811 2006-06-05  Jackson Harper  <jackson@ximian.com>
14812
14813         * TreeView.cs: Fix line drawing when scrolling.  To do this each
14814         node is basically responsible for drawing its entire horizontal
14815         area.  When drawing a node it draws its parent node lines if
14816         needed.
14817         - Adjust the clip area to the viewport rectangle
14818         - Fix Left/Right key handling to match MS. (It expand/collapses
14819         and moves to parents/first child but does not move selection to
14820         sibling nodes).
14821         - Fix SetTop to work with new bound calculation code
14822         - When scrollbars are no longer needed we need to reset scrolling
14823         vars and recalculate the visible order so the redraw is correct
14824         * TreeNode.cs: We can't expand/collapse nodes with no children.
14825
14826 2006-06-03  John Luke  <john.luke@gmail.com> 
14827
14828         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
14829         so the colors work without dev packages
14830         
14831 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
14832
14833         * Control.cs 
14834           - Select: Implemented to just use activate. Seems to match MS 
14835             behaviour closest. Documented to only do actual control walking 
14836             based on it's parameters if in a container control so I moved 
14837             the code there.
14838           - Removed selection check logic from our internal Select() method
14839         * ContainerControl.cs:
14840           - Select: Moved selection logic from Control here, since MS documents
14841             that containers obey the bool arguments. No longer calling base
14842
14843 2006-06-02  Jackson Harper  <jackson@ximian.com>
14844
14845         * TreeView.cs: If the selected node isn't changed when we get
14846         focus update the previously selected node so that we see the
14847         selection box.
14848
14849 2006-06-02  Mike Kestner  <mkestner@novell.com>
14850
14851         * ComboBox.cs: restructure grab and general mouse event handling.
14852         Make the composite control raise mouse events like it was a single
14853         control for leaves/enters/motion/up/down events.  fix dropdown list
14854         coordinate mangling and refactor it into the scrollbar subclass to
14855         reduce code duplication.  Fixes #78282 #78361 and #78457.
14856
14857 2006-06-02  Mike Kestner  <mkestner@novell.com>
14858
14859         * ScrollBar.cs: remove Capture setting/clearing, as it happens
14860         automatically in the Control.WndProc.
14861
14862 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14863
14864         * FileDialog.cs: fix crash when running SharpChess, which sets the
14865         FilterIndex to 2 with only one Filter.
14866
14867 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14868
14869         * ToolBar.cs: add SizeSpecified property.
14870         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
14871         try to figure out our real size, otherwise fallback to what the
14872         container says.
14873
14874 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
14875
14876         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
14877         * Control.cs (WndProc): MS always calls the DefWndProc to pass
14878           up the event
14879
14880 2006-06-01  Mike Kestner  <mkestner@novell.com>
14881
14882         * ListView.cs: revamp the focus management in ListView.  It still
14883         causes churn of LostFocus/GotFocus emissions on clicks, but it's
14884         better than not handling focus at all.  Will revisit when pdb feels
14885         the general focus handling is solid.  Fixes #78526.
14886
14887 2006-06-01  Jackson Harper  <jackson@ximian.com>
14888
14889         * TreeView.cs: Set the default border style in the constructor.
14890         - Move painting to use OnPaintInternal instead of capturing
14891         WM_PAINT, this is the correct way of doing things
14892         - UpdateBelow shouldn't invalidate the scrollbar area
14893         - Cap the top on update below in case the node was above the top
14894         of the viewport rectangle.
14895         - ExpandBelow and Collapse below need to obey Begin/End Update.
14896         * TreeNode.cs: Make is_expanded internal so the treenode
14897         collection can change it without firing the whole event chain.
14898         * TreeNodeCollection.cs: When clearing all the child nodes make
14899         sure to recalc the visible order.
14900         - Improve algo for remove the top node
14901
14902 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
14903
14904         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
14905           SendMessage directly calling window procedures, which in turn might
14906           call SetFocus()
14907
14908 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
14909
14910         * Control.cs: Don't handle WM_SETFOCUS if the same window already
14911           has focus (works around X11 sending a FocusIn after our SetFocus)
14912         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
14913
14914 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
14915
14916         * Mime.cs: Fix for the NET_2_0 build.
14917           NameValueCollection needs StringComparer now.
14918
14919 2006-05-31  Chris Toshok  <toshok@ximian.com>
14920
14921         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
14922         return (via an out parameter) the starting X of the column.
14923         (UpdateVisibleColumn): track change to FromPixelToColumn.
14924         (HitTest): add a ColumnResize case here.
14925         (DrawResizeLine): new function, probably poorly named.
14926
14927         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
14928         only need to keep one reference.
14929         (set_ListManager): same.
14930         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
14931         Also, add support for HitTestType.ColumnResize.
14932         (OnMouseMove): add column resize behavior here, and change the
14933         cursor to the correct one as we move around the datagrid.
14934         (OnMouseUp): terminate the column resize if we're resizing.
14935         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
14936         for the current cell.
14937         (ConnectListManagerEvents): use cached_currencymgr.
14938         (DisconnectListManagerEvents): fill this in, using
14939         cached_currencymgr.
14940         (SetCurrentCell): remove cached_currencymgr_events handling.
14941         (SetDataMember): only call DisconnectListManagerEvents if
14942         cached_currencymgr is != null.
14943         (SetDataSource): same.
14944         (OnListManagerCurrentChanged): cached_currencymgr_events ->
14945         cached_currencymgr.
14946
14947 2006-05-31  Jackson Harper  <jackson@ximian.com>
14948
14949         * BindingManagerBase.cs: Remove somedebug code that creeped into
14950         SVN.
14951         * TreeNode.cs: We get the indent level dynamically right now, so
14952         don't track it as a member.
14953         * TreeNodeCollection.cs: Make sure all nodes added to the list
14954         have parents, treeviews/topnodes setup properly.
14955         - Don't attempt to track indent level.
14956
14957 2006-05-30  Jackson Harper  <jackson@ximian.com>
14958
14959         * BindingContext.cs: Create the currency manager tables here.
14960         This allows us to more easily create null tables (when bad data
14961         members are used), and more easily create related currency
14962         managers.
14963         * CurrencyManager.cs: All the table creation stuff is done by the
14964         binding context now.
14965         - Current should throw an exception if listposition is -1.
14966         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
14967         been bound yet.
14968
14969 2006-05-30  Mike Kestner  <mkestner@novell.com>
14970
14971         * ListView.cs: allow reexpansion of zero-width column headers.
14972         Fixes #78528.
14973
14974 2006-05-28  Chris Toshok  <toshok@ximian.com>
14975
14976         * CurrencyManager.cs (get_Current): after the late binding
14977         listposition = -1 fix, we need to guard against it here and return
14978         null, otherwise we raise an exception (which is swallowed
14979         elsewhere, and breaks datagrid databinding.)
14980
14981 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
14982
14983         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
14984           than WM_SYSKEY, don't throw if get something unexpected (#78507)
14985
14986 2006-05-26  Jackson Harper  <jackson@ximian.com>
14987
14988         * ControlPaint.cs:
14989         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
14990         values, it's faster and it's all we care about (we don't care if
14991         the names aren't equal).
14992         * KeyboardLayouts.cs: Eliminate some dead code.
14993         - Lazy init things
14994         * X11Keyboard.cs: Lazy init keyboard detection.
14995         - Cleanup access modifiers a little.
14996
14997 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
14998
14999         * XplatUIX11.cs: Once again, attempting to get layout just right.
15000
15001 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
15002
15003         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
15004           the sizes of each link section, that will result in sizes that
15005           match DrawString's layout (Fixes #78391)
15006
15007 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
15008
15009         * FileDialog.cs: If AddExtension property is true autocomplete the
15010           extensions in SaveFileDialog correctly. Fixes bug #78453.
15011           Set MyNetwork and MyComputer to "C:\" for windows. This should
15012           fix part 8 of bug #78446 for now.
15013
15014 2006-05-26  Chris Toshok  <toshok@ximian.com>
15015
15016         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
15017         invalidate the current row header if we need to, but presumably
15018         we'll invalidate the row corrsponding to the bounds or
15019         editingControl.
15020         (GridHScrolled): switch back to this method, as it's part of the
15021         public api.  *sigh*.
15022         (GridVScrolled): same.
15023         (OnMouseWheel): hack up something that more or less works.  Call
15024         GridHScrolled/GridVScrolled directly, instead of duplicating much
15025         of their code here.
15026         (EnsureCellVisibility): reinstate a bunch of this code, since we
15027         can't just set the scrollbar Value and expect to do all the work
15028         in the ValueChanged handler.  Also, Call Update() after scrolling
15029         in one direction so the other XplatX11.ScrollWindow call has the
15030         proper stuff in the proper places.
15031         (EditCell): set is_editing to true before calling .Edit.
15032
15033         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
15034         don't bother comparing first.
15035         (OnKeyPress): call grid.ColumnStartedEditing before calling
15036         base.OnKeyPress.  this will set is_changing and invalidate the row
15037         header if necessary.
15038         (ProcessKeyMessage): for WM_CHAR messages, call
15039         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
15040         and WM_KEYDOWN.
15041         
15042         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
15043         it's done in the DataGrid.
15044         (NextState): call grid.ColumnStartedEditing, which takes care of
15045         invalidating the row header (and setting is_changing).
15046
15047         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
15048         here.  it's done in the DataGrid.
15049
15050 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15051
15052         * Control.cs: allow changing the cursor when the mouse position is
15053         out of bounds but Capture is set.
15054         * LinkLabel.cs: handle the case when the mouse button is pressed on the
15055         linklabel but released somewhere else.
15056
15057 2006-05-25  Jackson Harper  <jackson@ximian.com>
15058
15059         * TreeView.cs: When we get focus if there is no selected node make
15060         it the top node
15061         - Remove some uneeded setup code from Draw.
15062         * TreeNodeCollection.cs: If the tree doesn't have a top node when
15063         a new node is inserted make the new node the top.
15064         * XplatUIX11.cs:
15065         * Timer.cs: Use Utc time so that no local time zone stuff needs to
15066         be used (should be faster).
15067         
15068 2006-05-25  Chris Toshok  <toshok@ximian.com>
15069
15070         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
15071         problem with the last commit.
15072
15073 2006-05-25  Chris Toshok  <toshok@ximian.com>
15074
15075         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
15076         need the invalidate call here, while scrolling right-to-left via
15077         the left arrow key (i.e. moving the editing cell while scrolling).
15078
15079         * DataGrid.cs (.ctor): remove the initialization of
15080         ctrl_pressed/shift_pressed.  We no longer track them using key
15081         up/down handlers, but by using Control.ModifierKeys.  Also, switch
15082         to using ValueChanged handlers on the scrollbars instead of
15083         Scrolled event handlers.  This simplifies a bunch of the scrolling
15084         code.
15085         (GridHValueChanged): rename from GridHScrolled, and change it to
15086         work with the new event args.
15087         (GridVValueChanged): same.
15088         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
15089         (OnMouseWheel): actually scroll the datagrid.  Don't change the
15090         selected cell.
15091         (ProcessGridKey): correct all the keyboard navigation stuff I
15092         could find.  Ctrl up/down/left/right/home/end work now.
15093         (EnsureCellVisibility): correct method name spelling.  Also,
15094         simplify this a touch by not explicitly calling the
15095         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
15096         scrollbar value.
15097         (OnKeyUpDG): no need for this method now.
15098         
15099 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15100
15101         * LinkLabel.cs: display the OverrideCursor when hovering the label.
15102         Fixes bug #78392.
15103
15104 2006-05-25  Chris Toshok  <toshok@ximian.com>
15105
15106         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
15107         r61019.
15108
15109 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15110
15111         * Application.cs: Moved setting of is_modal and closing to before
15112           we create the control, to allow the event handlers called as a
15113           result of creation affect closing. Also removed Gonzalo's previous
15114           change to setting DialogResult, the behaviour has been moved to 
15115           Form.ShowDialog()
15116         * Form.cs: 
15117           - ShowDialog(): Removed explicit creation of the form, let RunLoop
15118             handle it instead
15119           - ShowDialog(): If no dialog result is set, we need to return Cancel
15120           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
15121             the close is cancelled
15122
15123 2006-05-25  Jackson Harper  <jackson@ximian.com>
15124
15125         * StatusBar.cs: We only need to update the sizes of the other
15126         panels when we have auto size contents.  Also we are only updating
15127         the contents of the panel, not the borders, so compensate for the
15128         border width (TODO: get this width from the theme somehow).
15129         * TreeView.cs: Scrollable is true by default
15130         - Use invalidate instead of refresh where needed
15131         - Factor the scrollable value into scrollbar updating
15132         - Update the scrollbars if the Scrollable property is altered
15133         - Update the selected node if its ImageIndex is changed
15134         - Handle null nodes in UpdateNode (mainly so we don't have to
15135         check if selected is null when updating it
15136         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
15137         are factored into the visible count
15138         - Use VisibleCount for clarity in the code
15139         - When the font is changed we need to recurse through all the
15140         nodes and invalidate their sizes
15141         
15142 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15143
15144         * Application.cs: set the DialogResult to fixed when the main form is
15145         hidden or destroyed while being modal.
15146
15147 2006-05-25  Miguel de Icaza  <miguel@novell.com>
15148
15149         * Theme.cs: Use Tangoified messagebox icons. 
15150
15151         (GetSizedResourceImage): Also cope with width = 0 and do not
15152         trigger a warning in that case (0 means "give me your icon from
15153         the resouce, no special size needed).
15154
15155 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15156
15157         * Application.cs: Leave runloop if the the main modal form is 
15158           hidden (fixes #78484)
15159
15160 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
15161
15162         * BindingContext.cs : reject null datasource in Contains() and
15163           Item[].
15164         * CurrencyManager.cs : check data_member validity when data_source
15165           is dataset. When it is late binding, the initial position is -1.
15166
15167 2006-05-24  Jackson Harper  <jackson@ximian.com>
15168
15169         * TreeNodeCollection.cs: Dont't recalculate the visible order on
15170         inserted nodes that aren't visible.  This changes the
15171         max_visible_order which confuses scrollbar settings.
15172         - Use the enumerator to get the prev node instead of duplicating
15173         code.
15174         * TreeView.cs: Use new method for setting scrollbar values
15175         - Don't set the bounds every time the scrollbar is updated
15176         - When updating below the root node use an invalidate instead of a
15177         refresh to prevent the child controls (scrollbars) from being
15178         refreshed. (UpdateBelow still needs to be reworked anyways).
15179         - Reenable SetBottom now that visible orders are set correctly,
15180         added some debug code incase we ever get bad values there again.
15181         - Set the scrollbar max to 2 less then the max value, this
15182         compensates for the max value being one above the node count, and
15183         for scrollbars adding one extra "notch".
15184         - When drawing image nodes if there is an imagelist we draw the
15185         first image in the list if the supplied image index is out of the
15186         image list's bounds.
15187         
15188 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15189
15190         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
15191           we receive a size change from the WM (Fixes #78503)
15192
15193 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
15194
15195         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
15196           rectangle (Fixes #78501)
15197
15198 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15199
15200         * ButtonBase.cs: 
15201           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
15202             as a bitfield.
15203           - Fixed MouseMove to no longer switch pressed state unless the left
15204             mouse button is pressed. Atsushi provided the original patch (#78485)
15205           
15206 2006-05-24  Jackson Harper  <jackson@ximian.com>
15207
15208         * ScrollBar.cs: New internal methods that allow us to change a
15209         couple values on the scrollbar (the most common case is maximum
15210         and large change) without getting multiple invalidates.
15211
15212 2006-05-24  Chris Toshok  <toshok@ximian.com>
15213
15214         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
15215         (Edit): save off the original state in oldState, and set
15216         grid.is_editing to true.
15217         (OnKeyDown): abort editing if escape is pressed.  also, call
15218         NextState if space is pressed.
15219         (OnMouseDown): call NextState.
15220         (NextState): factor out shared code from OnKeyDown and OnMouseDown
15221         here.  Also, only invalidate the row header once (on the initial
15222         is_changing switch) to save on redraws.
15223
15224 2006-05-24  Chris Toshok  <toshok@ximian.com>
15225
15226         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
15227         if the value in the cell is different than it was before.  This
15228         keeps us from triggering a layout when we move around a datarid
15229         with a highlighted cell.
15230         (Edit): suspend layout when creating/positining the text box, and
15231         resume passing false so we don't ever actually re-layout.
15232         (ReleaseHostedControl): same.
15233         (EnsureTextBox): reformat slightly, and set WordWrap to false.
15234
15235         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
15236         control-key sequences should go to the datagrid - remove that
15237         lock.  Also, modify the conditions under which we move between
15238         cells when moving the cursor within a cell, and remove the "this"
15239         and "base" from field accesses.  We weren't even consistent, given
15240         they all were in the base class.
15241
15242 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
15243
15244         * Binding.cs : (.ctor)
15245           An obvious NRE fix for BindingTest.CtorNullTest().
15246
15247 2006-05-23  Chris Toshok  <toshok@ximian.com>
15248
15249         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
15250         them between lines.  This fixes some quirks editing cells in the
15251         datagrid.
15252
15253 2006-05-23  Jackson Harper  <jackson@ximian.com>
15254
15255         * TreeView.cs: Use begin/end update when doing expand/collapse all
15256         so that we don't get flicker on the scrollbar.
15257
15258 2006-05-23  Jackson Harper  <jackson@ximian.com>
15259
15260         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
15261         treenode calculations to be independant of the painting code. To
15262         do this nodes track a visible order which is calculated by the
15263         treeview.
15264         - Call new methods for expanding/collapsing nodes.  These methods
15265         use scrollwindow so we don't have to update everything below the
15266         node.
15267         * TreeView.cs: Refactored drawing and scrolling code.  We don't
15268         need to update nodes when drawing anymore or calculate scrollbar
15269         stuff.
15270         - Added new methods for expanding/collapsing nodes. These methods
15271         use ScrollWindow so as to not have to redraw all the nodes below.
15272         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
15273         we add/remove nodes or sort.
15274         - Handle removing the selected and the top node properly.
15275
15276 2006-05-23  Chris Toshok  <toshok@ximian.com>
15277
15278         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
15279         maybe this should actually happen in the datagrid code?
15280         (EndEdit): no need to invalidate anything, given that
15281         ReleaseHostedControl causes the datagrid to relayout, which
15282         invalidates everything anyway.
15283
15284         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
15285         in SetCurrentCell).
15286         (set_SelectionBackColor): call InvalidateSelection instead of
15287         Refresh.
15288         (set_SelectionForeColor): same.
15289         (BeginEdit): Flesh this out a bit.
15290         (CancelEditing): only do any of this if we're editing/adding.
15291         (EndEdit): same.
15292         (OnMouseDown): there's no need to cancel editing here, it's done
15293         in SetCurrentCell.
15294         (SetCurrentCell): only invalidate the current row header if it's a
15295         different row than the new one.
15296         (ShiftSelection): fix this to work like MS does.
15297         (ResetSelection): factor out the invalidation of selected_rows to
15298         InvalidateSelection.
15299         (SetDataSource): cancel any editing that's going on.
15300
15301         * DataGridColumnStyle.cs
15302         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
15303         call the non-interface version.
15304
15305         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
15306         header rectangle with the clip rectangle so we don't redraw the
15307         entire header for just a small area.  Gets rid of the last flicker
15308         when horizontally scrolling.
15309         (DataGridPaintRow): same.
15310
15311 2006-05-23  Mike Kestner  <mkestner@novell.com>
15312
15313         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
15314         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
15315         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
15316         Critical bug report.
15317
15318 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15319
15320         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
15321           and this fixes #78493
15322
15323 2006-05-23  Miguel de Icaza  <miguel@novell.com>
15324
15325         * Theme.cs (GetSizedResourceImage): Scale images if the proper
15326         size is not found.  
15327         
15328         * FileDialog.cs: Do not change the background for the side bar as
15329         it wont work nicely with the theme, and also reduces the artifacts
15330         in rendering the icons (which I want to fix too).
15331
15332         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
15333         resources, not resgen resources. 
15334
15335         (PlatformDefaultHandler): Pull images using the new API.
15336
15337 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15338
15339         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
15340           a reference to the hwnd and will not remove it unless there are
15341           no pending exposures (fixes #78341)
15342         * XplatUI.cs: Improved debug
15343
15344 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
15345
15346         * MenuAPI.cs : don't handle OnClick event when it was not the left
15347           button. Fixed bug #78487.
15348
15349 2006-05-23  Mike Kestner  <mkestner@novell.com>
15350
15351         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
15352         prefer submenus to the top menu for item lookup, to avoid popping down
15353         top-row items.
15354
15355 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
15356
15357         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
15358           Graphics.FillRectangle as the visual results are really bad (even
15359           on win). We now draw perfect arrows (and perfect shadows when the
15360           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
15361           Pen.DashPattern to draw the dots of each line.
15362
15363 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
15364
15365         * FileDialog.cs: Update the filename combobox when navigating through
15366           the ListView with the cursor keys. Fixes part 7 of bug #78446.
15367
15368 2006-05-22  Mike Kestner  <mkestner@novell.com>
15369
15370         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
15371         Fixes #78463.
15372
15373 2006-05-22  Mike Kestner  <mkestner@novell.com>
15374
15375         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
15376         requests. Fix a misspelled parameter and a copy paste exception error
15377         in Select.
15378
15379 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
15380
15381         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
15382           to get the same width/height (5/13) on X11 as the default font has on
15383           win32. This means that our DefaultFont emSize is smaller than the 
15384           the MS SWF equivalent (even thought the width/height stays the same)
15385
15386 2006-05-20  Jackson Harper  <jackson@ximian.com>
15387
15388         * MdiClient.cs:
15389         * MdiWindowManager.cs:
15390         * InternalWindowManager.cs: Make sure to use the border width from
15391         the theme.
15392
15393 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
15394
15395         * PrintDialog.cs: Implements printer details
15396
15397 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
15398
15399         * FileDialog.cs: Added focus handling for PopupButtonPanel.
15400           Fixes part 1 and 2 of bug #78446
15401
15402 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
15403
15404         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
15405           instead of sticking to the first ever calculated value
15406
15407 2006-05-19  Mike Kestner  <mkestner@novell.com>
15408
15409         * ComboBox.cs: fix mouse motion selection to use MousePosition and
15410         PointToClient, since Capture is set. Fixes #78344.
15411
15412 2006-05-19  Mike Kestner  <mkestner@novell.com>
15413
15414         * ListView.cs: match MS behavior in Details view where items are not
15415         drawn if Columns.Count == 0. 
15416         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
15417         Use a separate pen to draw the check, since changing the width affects
15418         the box as well.  Fixes #78454.
15419
15420 2006-05-18  Miguel de Icaza  <miguel@novell.com>
15421
15422         * ListView.cs: ArgumentOutOfRangeException, single versions of the
15423         exception should throw the name of the invalid argument.
15424
15425         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
15426         there are no files listed. 
15427
15428 2006-05-18  Jackson Harper  <jackson@ximian.com>
15429
15430         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
15431         up.
15432
15433 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15434
15435         * Control.cs: Brought back our old UpdateZOrder method as a private
15436           function and switched our calls from UpdateZOrder to the new one.
15437           This fixes the Paint.Net canvas disappearing bug.
15438
15439 2006-05-18  Jackson Harper  <jackson@ximian.com>
15440
15441         * Theme.cs:
15442         * ThemeWin32Classic.cs:
15443         * InternalWindowManager.cs: Move the drawing into the theme,
15444         expose everything the theme should need from the window manager.
15445
15446 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15447
15448         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
15449           from the call to NativeWindow to avoid walking up the parent chain
15450           further than needed (speeds up setting cursors and avoids setting
15451           the wrong cursor if a parent has another cursor defined)
15452         * Cursor.cs: When loading an icon as cursor, MS uses the center of
15453           the icon as hotspot, not what's contained as hotspot in the icon
15454           file. This fixes the perceived drawing offset seen with Paint.Net
15455         
15456 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15457
15458         * XplatUIX11.cs: 
15459           - Store the calculated rectangle in Hwnd object and use it when 
15460             setting the client size
15461           - Force Toolwindows to always be type Dock, to ensure they're on top
15462
15463 2006-05-18  Mike Kestner  <mkestner@novell.com>
15464
15465         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
15466         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
15467         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
15468         Substantial refactoring to remove confusing nested classes. Coding
15469         standard and Get+Set->property refactorings.  Shift to index based
15470         highlighting in ComboListBox instead of constantly using IndexOf and
15471         Items[]. Add invalidations on resize for DropDownList to fix ugliness
15472         in FileDialog growth.  Draw borders manually since Simple mode needs
15473         to look like two independent controls.  Make listbox border
15474         conditional to DropDownStyle.  Improved OwnerDraw support.
15475
15476 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
15477
15478         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
15479         Don't set the disposed graphics to null, so we can throw the "right"
15480         exception if the graphics is reused later (added a flag to avoid 
15481         double disposing). Some behaviours are different under 2.0 and are
15482         filled under bug #78448.
15483
15484 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15485
15486         * Control.cs: When double-buffering is enabled, we need to reset
15487           our graphics context between paint calls. Otherwise, any 
15488           transformations and other alterations on the context will 
15489           become cumulative (#77734)
15490
15491 2006-05-18  Mike Kestner  <mkestner@novell.com>
15492
15493         * ListView.cs: do focused item selection like MS on clicks. 
15494         Rework focus handling for ItemControl so LostFocus invalidates as
15495         well.
15496         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
15497         the ListView ItemControl has focus.
15498
15499 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
15500
15501         * XplatUIX11.cs: If client_window ends up being width or height zero
15502           due to border settings, move it off window inside whole_window (#78433)
15503
15504 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15505
15506         * Mime.cs: Shrink the mime file cache correctly.
15507
15508 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15509
15510         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
15511
15512 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15513
15514         * XplatUIX11.cs (AddExpose): More sanity checks
15515
15516 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15517
15518         * XplatUIX11.cs:
15519           - AddExpose: Don't add expose ranges outside the size of our
15520             window
15521           - Cast opacity values to Int32 to avoid crashes with certain
15522             values
15523           - Added disabled code paths that protect against illegal cross-
15524             thread painting (Developers.exe)
15525
15526 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15527
15528         * ProgressBar.cs: Invalidate the control when it's resized
15529           since block size is based on control size. (#78388)
15530
15531 2006-05-16  Miguel de Icaza  <miguel@novell.com>
15532
15533         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
15534         of setting the incoming argument to the "reset" value, we set the
15535         this.datamember to string.empty (before we were invalidating the
15536         incoming data).   
15537
15538         Fixes 78420
15539
15540 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15541
15542         * Form.cs: Only apply transparency settings after the form
15543           is created. (Fixes #77800)
15544
15545 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15546
15547         * ApplicationContext.cs: Grab the HandleDestroyed event so
15548           we know when to fire OnMainFormClosed 
15549
15550 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15551
15552         * Application.cs: Introduced sub-class to allow tracking of
15553           threads and centralized triggering of the event mess for
15554           ThreadExit, AppExit, etc..  (#76156)
15555
15556 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
15557
15558         * MimeIcon.cs:
15559           - Do not return a null icon index value for a mime subclass.
15560             Instead try the main mime type class too.
15561           - Seems that some newer distributions don't have a link to some
15562             gnome default icons anymore. So check the default gnome dir too.
15563           
15564
15565 2006-05-16  Jackson Harper  <jackson@ximian.com>
15566
15567         * MdiClient.cs: Don't paint the parent background image if we have
15568         our own background image.
15569
15570 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15571
15572         * Control.cs:
15573           - PerformLayout: Do not shrink space filled by DockStyle.Fill
15574             controls, all filled controls are supposed to overlap (#78080)
15575           - UpdateZOrder is supposed to update the control's z-order in the
15576             parent's z-order chain. Fixed to behave like that
15577           - BringToFront: Removed obsolete code
15578           - SendToBack: Simplyfied
15579           - SetChildIndex: Trigger layout calculations when Z-order changes
15580             since layout is done by z-order
15581
15582 2006-05-16  Chris Toshok  <toshok@ximian.com>
15583
15584         [ fixes bug #78410 ]
15585         * DataGrid.cs (set_AlternatingBackColor): use
15586         grid_drawing.InvalidateCells instead of Refresh().
15587         (set_BackColor): call grid_drawing.InvalidateCells.
15588         (set_BackgroundColor): use Invalidate instead of Refresh.
15589
15590         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
15591         invalidate the cell area.
15592
15593 2006-05-15  Chris Toshok  <toshok@ximian.com>
15594
15595         [ fixes bug #78011 ]
15596         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
15597         on to DataGridPaintRow.
15598         (DataGridPaintRow): take a clip argument, and only draw the cells
15599         which intersect it.  same with the not_usedarea.
15600
15601         * Theme.cs (DataGridPaintRow) add @clip parameter.
15602
15603         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
15604         XplatUI.ScrollWindow.
15605         (ScrollToRow): same.
15606
15607         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
15608         with last column which was causing a gray swath to appear with the
15609         XplatUI.ScrollWindow code.
15610
15611 2006-05-15  Chris Toshok  <toshok@ximian.com>
15612
15613         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
15614         use XplatUI.ScrollWindow.
15615         (VerticalScrollEvent): use XplatUI.ScrollWindow.
15616
15617 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
15618
15619         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
15620
15621 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15622
15623         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
15624           file since there are no equivalent X11 cursors
15625
15626 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15627
15628         * MonthCalendar.cs : DateTimePicker should reflect selected date
15629           on mouse*up*, not mouse*down*. Fixed originally reported part of
15630           bug #76474.
15631
15632 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15633
15634         * TabControl.cs : When argument index is equal or more than tab
15635           count, just ignore. Fixed bug #78395.
15636
15637 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15638
15639         * Control.cs: Dispose all child controls when control is diposed (#78394)
15640
15641 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15642
15643         * ColorDialog.cs: Finally it is possible to select the color with
15644           the text boxes
15645
15646 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15647
15648         * PrintDialog.cs: Fix typo
15649
15650 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15651
15652         * PrintDialog.cs: PrintDialog is not resizable
15653         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
15654           color. Made some ToolBar drawing methods protected virtual.
15655
15656 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
15657
15658         * PrintDialog.cs: Implementation of the PrintDialog
15659
15660 2006-05-12  Chris Toshok  <toshok@ximian.com>
15661
15662         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
15663         thumb, instead use MoveThumb.  This has the side effect of making
15664         most of the other thumb moving machinery use MoveThumb as well.
15665         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
15666         need to actually invalidate the rectangle where the new thumb will
15667         go.
15668         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
15669         We force an Update() after, so it's not as fast as it could be,
15670         but at least there's zero flicker and no droppings.
15671         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
15672         (UpdateThumbPos): add another argument (dirty), which says whether
15673         or not to calculate/add dirty regions which we later invalidate.
15674         For cases where we know we're going to use MoveThumb, we pass
15675         false for this.  Otherwise, pass true.
15676
15677 2006-05-12  Jackson Harper  <jackson@ximian.com>
15678
15679         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
15680         the status bar.
15681         
15682 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
15683
15684         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
15685           and GetClipRegion methods and UserClipWontExposeParent property.
15686         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
15687           overriding UserClipWontExposeParent property, setting to false, since
15688           Win32 handles the required expose messages to draw our clipped parent
15689           areas internally
15690         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
15691           PaintEventStart to set the user clip region if set.
15692         * Control.cs: 
15693           - Now internally tracking the Region for the control since we need to
15694             store it if the handle is not yet created and only set it when it
15695             becomes created. Before setting the region forced handle creation
15696           - Added code to draw the parents underneath a user-clipped region
15697         * Hwnd.cs: Added UserClip property
15698
15699 2006-05-12  Chris Toshok  <toshok@ximian.com>
15700
15701         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
15702         (set_Maximum): same.
15703         (set_Minimum): same.
15704         (set_SmallChange): same.
15705         (OnMouseUpSB): remove the call to refresh when releasing the
15706         thumb.  We shouldn't need it.
15707         
15708 2006-05-12  Miguel de Icaza  <miguel@novell.com>
15709
15710         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
15711         AutoSize set to None, we do not need to relayout everything, we
15712         just need to invalidate the current region.
15713
15714         (Draw): Do not draw the entire ClientArea, just redraw the
15715         clip area being passed.
15716
15717         * MdiClient.cs: Make MdiClient constructor with the Form argument
15718         internal. 
15719
15720 2006-05-12  Jackson Harper  <jackson@ximian.com>
15721
15722         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
15723         parents background image,  but strangely not their own.
15724         - (DrawStatusBarPanel): Take into account horizontal alignment
15725         when drawing the strings and icons.
15726
15727 2006-05-12  Mike Kestner  <mkestner@novell.com>
15728
15729         * ListBox.cs: avoid invalidations for focus when the collection is
15730         empty. 
15731
15732 2006-05-12  Chris Toshok  <toshok@ximian.com>
15733
15734         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
15735         invalidate the entire thumb area.  Call InvalidateDirty which
15736         limits the redraw to the thumb itself and surrounding pixels.
15737
15738         * XplatUIX11.cs (ScrollWindow): optimize copying.
15739         
15740 2006-05-12  Chris Toshok  <toshok@ximian.com>
15741
15742         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
15743         Figure out the positioning/layout in a single pass instead of
15744         multiple recursive invocations.  Speeds up the initial display of
15745         the data grid.  Also, make many things private that were
15746         originally public but unused outside this class.
15747
15748 2006-05-11  Jackson Harper  <jackson@ximian.com>
15749
15750         * MdiClient.cs: Improved layout code.
15751
15752 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
15753
15754         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
15755           not SelectedObject.
15756
15757 2006-05-11  Chris Toshok  <toshok@ximian.com>
15758
15759         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
15760         union of that will always be {0,0,width,height}.
15761
15762 2006-05-11  Jackson Harper  <jackson@ximian.com>
15763
15764         * Form.cs: Match MS's DefaultSize for forms (they must have
15765         changed the size in sp2).
15766
15767 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15768
15769         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
15770
15771 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15772
15773         * TextControl.cs : Fixed bug #78109. This incorrect position
15774           comparison caused crash on automatic line split.
15775         * TextBoxBase.cs : reduce duplicate code.
15776
15777 2006-05-10  Jackson Harper  <jackson@ximian.com>
15778
15779         * MdiClient.cs: Active form is only sent to the back when using
15780         the Next form functionality, when a form is clicked the current
15781         active shouldn't be sent to the back.
15782         - Layout the mdi windows when the container is first made visible.
15783         * Form.cs: Give the MdiClient a ref to the containing form when we
15784         create it.
15785         
15786 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15787
15788         * LinkLabel.cs : link_font could be uninitialized, so populate one
15789           before actual use. Fixed bug #78340.
15790
15791 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15792
15793         * XplatUIX11.cs : clipboard format native value is IntPtr.
15794           Fixed bug #78283.
15795
15796 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15797
15798         * Control.cs: 
15799           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
15800             which is passed up the parent chain by DefWndProc
15801           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
15802             to DefWndProc (#77956)
15803         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
15804
15805 2006-05-10  Jackson Harper  <jackson@ximian.com>
15806
15807         * MdiClient.cs: We need to remove the controls from the mdi
15808         collection, when we close the window.
15809         * MdiWindowManager.cs: Special handling of closing mdi windows.
15810         * InternalWindowManager.cs: Make the close method virtual so the
15811         mdi window manager can handle it specially.
15812
15813 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
15814
15815         * DataGrid.cs:
15816           - Recalculate grid when the data source has changed
15817           - Matches styles provided by user from all data sources types
15818         * DataGridTableStyle.cs: For columns that provided by the user set the
15819         with the preferred value is there was unassigned.
15820         * CurrencyManager.cs: throw OnItemChanged event
15821
15822 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
15823
15824         * PictureBox.cs: Don't animate until handle is created. Start animation
15825           when handle is created.
15826
15827 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15828
15829         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
15830           current codebase.
15831         * XEventQueue.cs: We don't need to provide the extra info
15832
15833 2006-05-10  Jackson Harper  <jackson@ximian.com>
15834
15835         * MdiClient.cs: If the mdi clients parent form has a background
15836         image set, we draw that background image for the mdi area's
15837         background.
15838
15839 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15840
15841         * TextBoxBase.cs: Set IBeam cursor (#78347)
15842
15843 2006-05-10  Mike Kestner  <mkestner@novell.com>
15844
15845         * ToolBar.cs: fix some text padding issues with ButtonSize
15846         calculation. Update the default size to match MS documentation.
15847         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
15848         button size. Fixes #78296.
15849
15850 2006-05-10  Mike Kestner  <mkestner@novell.com>
15851
15852         * ListBox.cs: use is_visible for scrollbar positioning in case the
15853         control isn't on screen yet.  Fix off by one with Right vs Width
15854         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
15855         
15856 2006-05-10  Jackson Harper  <jackson@ximian.com>
15857
15858         * X11Dnd.cs: Drop to a control with another control on top of it.
15859         * ToolBar.cs: Work on a copy of the buttons list, so that it can
15860         be modified in click handlers. TODO: Look for similar problems in
15861         other controls.
15862
15863 2006-05-09  Jackson Harper  <jackson@ximian.com>
15864
15865         * Form.cs: Window managers need the old window state when setting
15866         window state now.
15867         * InternalWindowManager.cs: Allow the base mdi window manager to
15868         handle more of the MDI only stuff (like maximize buttons).
15869         * MdiWindowManager.cs: Fix some snafus in changing the window
15870         state.  Add all the menu functionality, for both popup and
15871         maximized menus.
15872         * MdiClient.cs: When a new form is selected the currently
15873         activated form is sent to the back, this matches MS.
15874         - Implement a new method to activate the next mdi child window.
15875
15876 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
15877
15878         * Control.cs: 
15879           - Added new InternalCapture method to allow controls to prevent
15880             the capture behaviour on the click handlers
15881           - Switched to use InternalCapture
15882         * ComboBox.cs:
15883           - Using InternalCapture to prevent mouse captures from being released
15884             on mouse button release (Fixes #78100)
15885         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
15886           returns Form borders if a caption is present. (Fixes #78310)
15887
15888 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
15889
15890         * TreeNode.cs: Changed serialization .ctor to not require every field
15891           to be present. (#78265)
15892         * OwnerDrawPropertyBag.cs: Added serialization .ctor
15893
15894 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
15895
15896         * MimeIcon.cs: for is faster than foreach for strings.
15897
15898 2006-05-05  Mike Kestner  <mkestner@novell.com>
15899
15900         * CheckedListBox.cs: update check handling code to not use selected.
15901         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
15902         behavior for visual feedback, motion response, shift/ctrl handling,
15903         and properly deal with all 4 selection modes. Updates to bounds
15904         handling logic.  Add scroll wheel support. [Fixes #77842]
15905
15906 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
15907
15908         * ListView.cs:
15909           - Moved adding of Implicit controls into .ctor. That way, subsequent
15910             creation of the controls will not cause them to think they are 
15911             toplevel windows (fixes #78200 header problem)
15912           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
15913           - Switched visibility setting of header control to use internal field
15914             to avoid triggering handle creation
15915           - Now checking if handle is created before causing a refresh when items
15916             are added (This makes us now match handle creation time with MS)
15917         * Splitter.cs: Removed loading of private splitter cursor, switched to
15918           Cursors version now that that is loading the right ones
15919         * Cursors.cs: Load proper splitter cursors from resources
15920         * Cursor.cs: Added second method of loading resource cursors for the 
15921           VS.Net users amongst us
15922
15923 2006-05-05  Mike Kestner  <mkestner@novell.com>
15924
15925         * ListView.cs: give header_control a minimum size based on the
15926         ListView size.
15927
15928 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
15929
15930         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
15931           window seems to do that with metacity, so set that type. (#78120)
15932
15933 2006-05-05  Mike Kestner  <mkestner@novell.com>
15934
15935         * ListViewItem.cs: fix Details mode checkbox layout bug.
15936         * ThemeWin32Classic.cs: draw a ListView column header for unused space
15937         at the end of the header, if it exists. [Fixes for #78200]
15938
15939 2006-05-04  Jackson Harper  <jackson@ximian.com>
15940
15941         * MdiClient.cs: Add a helper property to get the container form.
15942         * MdiWindowManager.cs: We have to make sure to use the menu origin
15943         when drawing the icons and buttons, this fixes maximized window
15944         icons/buttons on win32.
15945         * InternalWindowManager.cs: Reset the restore captions when a
15946         window goes from Maximized to Minimized and vice versa. Move the
15947         DrawMaximizedButtons into the MdiWindowManager source, tool
15948         windows can't be maximized. NOTE: This could use a little
15949         refactoring if time ever permits.
15950         
15951 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15952
15953         * TextBox.cs: Add MWFCategoryAttributes
15954         * TextBoxBase.cs: Add MWFCategoryAttributes
15955         * Form.cs: Add MWFCategoryAttributes
15956
15957 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15958
15959         * Control.cs: Add MWFCategoryAttributes
15960         * ScrollableControl.cs: Add MWFCategoryAttributes
15961
15962 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
15963
15964         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
15965           Divider is true. Fix a little glitch in PropertyToolBar
15966           drawing code
15967
15968 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
15969
15970         * Control.cs:
15971           - Dispose: Call base.Dispose, this causes the disposed event
15972             to be fired (and probably other, more important stuff)
15973           - SetVisibleCore: Set is_visible to true after creating the
15974             window so that the window still gets created invisible (if
15975             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
15976             to generate a WM_ACTIVE message
15977         * Form.cs: Call Dispose when we want to destroy the window, instead of
15978           just destroying the handle (Dispose will do that for us)
15979         * XplatUIX11.cs:
15980           - RootWindow also needs a queue, so we can properly process the
15981             property change events from RootWindow (like Activate)
15982           - Generatic synthetic WM_ACTIVE message when the active window is
15983             being destroyed
15984
15985 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
15986
15987         * LinkLabel.cs: Trigger a recalc of our label dimensions when
15988           bounds are changed
15989
15990 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
15991
15992         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
15993           for determining width and height (image might not be assigned if
15994           we're drawing an imagelist)
15995
15996 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
15997
15998         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
15999         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
16000           height from system
16001         * Theme.cs: No longer returns hardcoded menu height, instead calls
16002           new driver method
16003         * Form.cs (OnLoad): Scaling happens before triggering Load events 
16004           on MS (# 78257)
16005
16006 2006-05-01  Mike Kestner  <mkestner@novell.com>
16007
16008         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
16009
16010 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
16011
16012         * TextBoxBase.cs: Removed Fixme
16013         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
16014
16015 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
16016
16017         * XplatUIX11.cs:
16018           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
16019             the rectangle relative to the parent, considering borders. We
16020             don't really want that.
16021           - ScrollWindow: Fixed warning to be more understandable
16022         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
16023           scrollbars and scroll only the visible area
16024         * RichTextBox.cs: Removed debug output
16025
16026 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16027
16028         * NumericUpDown.cs (Text): Just use base
16029         * UpDownBase.cs: Ensure txtView is created before using it
16030
16031 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16032
16033         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
16034           casting to IntPtr to avoid 64bit overflow errors
16035
16036 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16037
16038         * Control.cs:
16039           - AllowDrop: Don't force handle creation.
16040           - CreateHandle: Added call to tell driver if we're allowed to drop
16041
16042 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16043
16044         * FileDialog.cs: Remember the last directory not only for the
16045           current instance but also for new FileDialog instances.
16046
16047 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16048         
16049         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
16050           broke sending async messages
16051
16052 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16053
16054         * XplatUIX11.cs:
16055           - ScrollWindow: Fixed method. We finally generate expose events again
16056             for scrolled areas. This was causing 'garbage' when scrolling
16057             textbox and other controls that used ScrollWindow
16058           - Switched from using the regular queue for paint events to the MS 
16059             model of 'generating' paint events when the queue is empty.
16060             We use the new XQueueEvent.Paint subclass to store which windows
16061             need painting.
16062           - AddExpose now takes the x/y/width/height of the exposed area
16063             and inserts the window into the paint queue if not already there
16064           - InvalidateWholeWindow: Switched to use new AddExpose method
16065           - UpdateMessageQueue: Added which queue to monitor for paint events
16066           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
16067             the unlikely case nothing above handles it. We reset the expose
16068             pending states to get them off the queue.
16069           - GetMessage: Now pulls a paint event if no other events are in the
16070             queue
16071           - Invalidate: Switched to new AddExpose method
16072           - PeekMessage: Updated to understand pending paint events
16073           - UpdateWindow: Fixed logic bug. We were only updating if the window
16074             didn't need updating. Also switched to sending WM_PAINT directly,
16075             like MS does.
16076         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
16077           and random access Remove(). The random access is needed to handle
16078           UpdateWindow() where a WM_PAINT is sent directly without accessing
16079           the queue.
16080         * ScrollBar.cs: Added Update() calls to cause immediate updates to
16081           allow for better feedback when scrolling. Scrollbars are small and
16082           the immediate update should make it 'feel' more responsive without
16083           slowing things down. ScrollBar still needs it's invaliate logic
16084           updated to not always invalidate the whole bar on certain changes.
16085
16086 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16087
16088         * Control.cs:
16089         (BackColor): if the control does not support a transparent background,
16090         return the default backcolor when the parent backcolor is transparent.
16091
16092 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
16093
16094         * Application.cs: Updated to new StartLoop/GetMessage API
16095         * RichTextBox.cs: Provide some output on RTF parsing errors
16096         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
16097           new queue_id argument to GetMessage and PeekMessage to allow faster
16098           handling of per-thread queues in drivers.
16099         * Hwnd.cs: Added Queue tracking and property
16100         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
16101         * XEventQueue.cs: Added thread trackingA
16102         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
16103         * XplatUIX11.cs:
16104           - Implemented new per-thread queue
16105           - GetMessage: Fixed return/break behaviour on several cases. We were
16106             returning stale messages in some cases, instead of just processing
16107             the next message
16108
16109 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16110
16111         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
16112
16113 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
16114
16115         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
16116           fixed off-by-one comparisons between Width/Height and Right/Bottom.
16117
16118 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16119
16120         * PropertyGridView.cs: Fix drop down width.
16121
16122 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16123
16124         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
16125           a mess in DrawToolBar, so I removed one of them.
16126
16127 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16128
16129         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
16130           needed (clip). Otherwise we get artifacts.
16131
16132 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16133
16134         * FixedSizeTextBox.cs: Added constructor to allow specifying which
16135           dimension is fixed
16136         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
16137           and switched FixedSizeTextBox to only be fixed vertical (#78116)
16138         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
16139           if it matches the scale base font (avoids unneeded scaling)
16140
16141 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
16142
16143         * X11DesktopColors.cs: One gtk_init_check should be enough
16144
16145 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
16146
16147         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
16148           match MS behaviour
16149
16150 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16151
16152         * TextBoxBase.cs: 
16153           - Generate OnTextChanged for Backspace even if we're only deleting
16154             the current selection
16155           - When setting the Text property, only select all text if the
16156             control does not have focus when it is being set. Otherwise
16157             just place the cursor at the beginning of the control
16158
16159 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
16160
16161         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
16162           Added a little helper to draw PropertyGrid ToolBar with a different
16163           border and a different BackColor.
16164         * PropertyGrid.cs: Some background parts didn't get painted with the
16165           correct background color. Added a class that helps us to draw the
16166           correct border for PropertyGridView and a class that helps us to
16167           draw ToolBars with a different backcolor
16168         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
16169
16170 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
16171
16172         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
16173         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
16174
16175 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
16176
16177         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
16178           into the palette entries. Also, since we're working on a copy
16179           we needed to copy the palette back onto the bitmap.
16180         * Cursor.cs: Same fix as XplatUIWin32.cs.
16181
16182 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
16183
16184         * ImageListStreamer.cs: Need to read the var (or we're off)
16185
16186 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
16187
16188         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
16189           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
16190           TextBoxBase.cs: Unused var fixes
16191         * AxHost.cs: Small 2.0 fix
16192         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
16193           as it seems that is what at least Metacity expects. This will make
16194           icons show up on 64bit platforms. We still have some 64bit size
16195           issues, though, since the startup app window size still won't match.
16196
16197 2006-04-25  Mike Kestner  <mkestner@novell.com>
16198
16199         * *.cs: cleanup newly reported exception var unused warnings.
16200
16201 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16202
16203         * ThemeWin32Classic.cs: Button image alignment now matches exactly
16204           ms
16205
16206 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16207
16208         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
16209           image. The image position is always the same, no matter if the
16210           button is pressed or not.
16211
16212 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16213
16214         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
16215           selection and set the correct filename for SaveFileDialog.
16216           Patch by Emery Conrad.
16217
16218 2006-04-24  Mike Kestner  <mkestner@novell.com>
16219
16220         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
16221         check for item.X outside the ClientRect instead of item.Y. Fixes
16222         #78151.
16223
16224 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16225
16226         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
16227         trust that value blindly and do some sanity check. Fixes bug #77814.
16228
16229 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16230
16231         * ImageListStreamer.cs: save the mask as a 1bpp image.
16232
16233 2006-04-21  Mike Kestner  <mkestner@novell.com>
16234
16235         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
16236         pass Checked and Indeterminate to the Theme Engine. Improve
16237         encapsulation with ListBox.
16238         * ListBox.cs: Keep a StringFormat instead of calculating it every item
16239         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
16240         nested types.  Move all CheckState functionality to CheckedListBox.
16241         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
16242         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
16243         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
16244         single base list. Fix scrollbar sizing and placement to mirror MS.
16245         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
16246         used.
16247         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
16248         for CheckedListBox by using new DrawItemState info.  Center the
16249         checkboxes on the items. Use new StringFormat property.
16250
16251 2006-04-18  Jackson Harper  <jackson@ximian.com>
16252
16253         * Form.cs: MdiChildren don't do default locations the same way as
16254         regular forms.  This prevents a crash when trying to position the
16255         mdi windows.
16256
16257 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
16258
16259         * PropertyGridTextBox.cs: Formatting, copyright
16260         * PropertiesTab.cs: Formatting
16261         * PropertyGrid.cs: Formatting
16262         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
16263           click toggling of values
16264           
16265 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
16266
16267         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
16268         * Control.cs (.ctor): verify_thread_handle is static, don't reset
16269           every time a control is created
16270         * Application.cs: Removed obsolete EnableRTLMirroring method
16271
16272 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
16273
16274         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
16275         SelectedIndex to -1. Fixes bug #78121.
16276
16277 2006-04-17  Jackson Harper  <jackson@ximian.com>
16278
16279         * Binding.cs: Handle null values for Current and BindingContext.
16280         This occurs when binding is a little delayed.
16281         * CurrencyManager.cs: return null for Current when there are no
16282         items in the list.
16283         - Hookup to the listchanged event on the DataView and update
16284         bindings when the list is changed.  This fixes late binding of
16285         controls.
16286
16287 2006-04-17  Jackson Harper  <jackson@ximian.com>
16288
16289         * X11Dnd.cs:
16290         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
16291         Ringenbach.
16292
16293 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
16294
16295         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
16296           place
16297         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
16298           with the correct ButtonState
16299
16300 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
16301
16302         * XplatUIX11.cs: Improved distinguishing between window types to
16303           tell the WM a type closer to what the app wants (Fixes #78107)
16304
16305 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16306
16307         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
16308           GrabHandle
16309
16310 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16311
16312         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
16313           drawing code to reflect the size grip changes
16314
16315 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16316
16317         * ImageListStreamer.cs: fix handling of the mask that follows the main
16318         bitmap when deserializing and serialize it properly. The generated mask
16319         should better be a 1bpp image, but I'll do that later.
16320
16321 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16322
16323         * FileDialog.cs: Show something in the DirComboBox on *nix if the
16324           path doesn't fit into some of our Current.Places
16325
16326 2006-04-13  Jackson Harper  <jackson@ximian.com>
16327
16328         * ComboBox.cs: Use borders instead of drawing our own decorations,
16329         try to obey correct rules for heights.
16330         * Theme.cs:
16331         * ThemeNice.cs:
16332         * ThemeClearLooks.cs:
16333         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
16334         this is now handled by borders.
16335         - Remove unused DrawListBoxDecorationSize method.
16336         
16337 2006-04-13  Mike Kestner  <mkestner@novell.com>
16338
16339         * MenuAPI.cs: null guarding for the disbled click check fixes crash
16340         reported by Alex.
16341
16342 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16343
16344         * ThemeWin32Classic.cs: 
16345           - Fixed CPDrawStringDisabled
16346           - Corrected drawing of disabled menu items
16347           - Fixed drawing of disabled radio buttons (bug #78095)
16348           - Draw check in a disabled CheckBox with color ControlDark 
16349
16350 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16351
16352         * Form.cs: Use the provided width when calculating the menu size;
16353           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
16354           and ClientSize.Width won't be updated yet
16355         * Application.cs: Use Visible instead of Show() to make form visible,
16356           this way we create the handle later and menusize is considered
16357
16358 2006-04-12  Mike Kestner  <mkestner@novell.com>
16359
16360         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
16361         reporting.
16362
16363 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16364
16365         * TextBox.cs: Implemented context menu
16366
16367 2006-04-12  Mike Kestner  <mkestner@novell.com>
16368
16369         * ListView.cs: implement box selection. fixes #77838.
16370         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
16371
16372 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16373
16374         * XplatUIX11.cs: Added setting of window type when transient window
16375           is created (metacity would move it otherwise)
16376         * X11Structs.cs: Added WINDOW_TYPE atoms
16377         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
16378           background (the control is Opaque but still wants transparent
16379           backgrounds)
16380
16381 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16382
16383         * Control.cs: Added OnPaintBackgroundInternal to allow controls
16384           that set Opaque but don't mean it (like all ButtonBase-derived
16385           controls) to still draw their background
16386         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
16387           the background
16388
16389 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16390
16391         * Control.cs (PaintControlBackground): Set the graphics object
16392           on our PaintEvent to null to prevent it from being disposed
16393           when the PaintEvent gets disposed
16394
16395 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
16396
16397         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
16398         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
16399
16400 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16401
16402         * Control.cs: 
16403           - Added transparency check to BackColor property. Transparent
16404             backgrounds are only allowed if the control styles permit it
16405           - Added recursive painting of parent control background and
16406             foreground if a control with a transparent backcolor is drawn
16407             (Thanks to Tim Ringenback for providing his 'hack' as a base
16408              for this patch) Fixes #77985 and #78026.
16409           - Added Opaque style check before calling OnPaintBackground, no
16410             need to draw the background if the control is opaque
16411           - Removed ControlAccessibleObject owner variable (inherited from
16412             base, no need to define again)
16413           - Added some documentation links explaining the drawing events
16414             and styles
16415
16416 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16417
16418         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
16419           that the affected control is the located at the left border of our
16420           parent (Fixes #77936)
16421
16422 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16423
16424         * TextBoxBase.cs: When rendering disabled or readonly controls,
16425           draw the background with 'Control' instead of 'Window' color as
16426           long as the user hasn't specifically set a color
16427
16428 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16429
16430         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
16431           since that won't be updated if the user types text (only if it's
16432           programatically set)
16433
16434 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16435
16436         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
16437           layout changes do to app-triggered resizes will have the proper
16438           display rectangle for layout
16439
16440 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
16441
16442         * ThemeWin32Classic.cs:
16443           - Make use of the SystemBrushes and SystemPens wherever possible
16444           - Corrected some highlight colors
16445           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
16446             drawing
16447         * Theme.cs: Added Empty field to CPColor struct
16448
16449 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16450
16451         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
16452           is displayed when calculating the display rectangle. Thanks to Mike
16453           for teaching me the err of my ways.
16454
16455 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
16456
16457         * ScrollableControl.cs:
16458           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
16459             (instead of 0,0) and we now return the real width/height instead of
16460             just the clientrectangle, adjusted for padding. The rectangle is
16461             now cached and created by the new CalculateDisplayRectangle method.
16462           - Created new CalculateDisplayRectange method, which basically does
16463             what get_DisplayRectangle() did originally, but now using the 
16464             right edge instead of DisplayRectangle to determine the size of
16465             our scrollbars
16466           - get_Canvas(): Fixed it to properly calculate canvas for 
16467             right/bottom controls which seem to be placed to the right/bottom
16468             of any controls that have a fixed location
16469           - Removed TODO that's taken care of
16470           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
16471             and SetDisplayRectLocation according to new MSDN2 docs
16472           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
16473             event when that is called, this is added for compatibility
16474           - ScrollControlIntoView(): Implemented.
16475           - Switched scrollbars to be implicit, they shouldn't be selectable
16476         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
16477           call it when the active control is set/changed
16478         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
16479         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
16480           implicit_control variable (used for native Win32 message generation)
16481         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
16482           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
16483         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
16484         * XplatUIStructs.cs: Added ScrollBarCommands enum
16485
16486 2006-04-10  Jackson Harper  <jackson@ximian.com>
16487
16488         * ButtonBase.cs:
16489         * CheckedListBox.cs:
16490         * ComboBox.cs:
16491         * DataGrid.cs:
16492         * DataGridView.cs:
16493         * Form.cs:
16494         * GroupBox.cs:
16495         * ListBox.cs:
16496         * PrintPreviewControl.cs:
16497         * ProgressBar.cs:
16498         * PropertyGrid.cs:
16499         * Splitter.cs:
16500         * StatusBar.cs:
16501         * TrackBar.cs:
16502         * UpDownBase.cs: Fixup base event overrides.
16503         
16504 2006-04-06  Mike Kestner  <mkestner@novell.com>
16505
16506         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
16507         all user-initiated value changes to min <= value <= max-thumbsz+1.
16508         (set_Value): check for vert/horiz when calculating new thumb position.
16509         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
16510         like MS does.
16511         (OnMouseMoveSB): refactor the thumb dragging code and refine
16512         invalidation logic to reduce flicker.
16513         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
16514         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
16515         (UpdateThumbPosition): small code readability cleanup
16516
16517 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
16518
16519         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
16520           different
16521
16522 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16523
16524         * ThemeNice.cs: Use a better graphics effect when a button is pressed
16525
16526 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16527
16528         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
16529         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
16530           This dramatically reduces the number of Pen.Dispose calls. 
16531           Where possible call ResPool methods only once instead of calling it
16532           over and over again (for example for the same color).
16533
16534 2006-04-06  Mike Kestner  <mkestner@novell.com>
16535
16536         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
16537         Also remove an unused private field on the collection. Fixes #77972.
16538
16539 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16540
16541         * ThemeNice.cs: Added ToolBar drawing code
16542
16543 2006-04-06  Mike Kestner  <mkestner@novell.com>
16544
16545         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
16546         I'm assuming that means we need to look up the toplevel for the
16547         provided control. Fixes the crash trace in #77911 but exposes another
16548         crash in some strange reflection usage in NDocGui.
16549
16550 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16551
16552         * ThemeNice.cs: Gave it a little silver touch and added Images
16553           method
16554         * FontDialog.cs: FontDialog is not resizable
16555         * FileDialg.cs: Added SizeGripStyle.Show
16556
16557 2006-04-05  Jackson Harper  <jackson@ximian.com>
16558
16559         * KeyboardLayouts.cs: Remove warning.
16560
16561 2006-04-05  Jackson Harper  <jackson@ximian.com>
16562
16563         * Control.cs: Enable OnPaintInternal so we can use it for drawing
16564         all of our controls instead of Paint +=.
16565         * ListBox.cs:
16566         * ListView.cs:
16567         * MenuAPI.cs:
16568         * MessageBox.cs:
16569         * NotifyIcon.cs:
16570         * ProgressBar.cs:
16571         * ScrollBar.cs:
16572         * Splitter.cs:
16573         * StatusBar.cs:
16574         * TabControl.cs:
16575         * TextBoxBase.cs:
16576         * ToolBar.cs:
16577         * TrackBar.cs:
16578         * UpDownBase.cs:
16579         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
16580         use OnPaintInternal. Remove Width/Height and Visible checks in
16581         paint handler, this is done at a higher level now.
16582         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
16583         * PaintEventArgs.cs: Add a handled flag so controls that don't
16584         want anymore painting after OnPaintInternal can make sure OnPaint
16585         isn't called.
16586
16587 2006-04-05  Mike Kestner  <mkestner@novell.com>
16588
16589         * Form.cs: fix the menu WndProc hacks to respect the native enabled
16590         state of the form, so that we don't process events when Modal dialogs
16591         are up. Fixes #77922.
16592
16593 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
16594
16595         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
16596           checking is done.
16597
16598 2006-04-05  Mike Kestner  <mkestner@novell.com>
16599
16600         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
16601
16602 2006-04-05  Mike Kestner  <mkestner@novell.com>
16603
16604         * ListView.cs (HeaderMouseMove): null guarding for the over column
16605         when setting up the drag_to_index.  Fixes #78015.
16606
16607 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
16608
16609         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
16610           in the taskbar. Transient windows seem to accomplish that.
16611
16612 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
16613
16614         * Form.cs:
16615           - Re-enabled CreateParams.X/Y code for FormStartPosition
16616           - Added code for manual placement when creating the Control
16617           - Incomplete patch to treat MDI forms differently when
16618             setting the ClientSizeCore. (Still need to figure out handling
16619             x/y coords there)
16620         * XplatUIX11.cs:
16621           - When we're explicitly setting the X/Y position of a non-Child
16622             window, let the WM know. Metacity really wants this.
16623
16624 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16625
16626         * ThemeNice.cs: Added CPDrawButton
16627
16628 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16629
16630         * ThemeNice.cs: Changed the color for focused buttons and activated
16631           the arrows for small scroll buttons.
16632
16633 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16634
16635         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
16636           anymore. Changed some method modifiers to protected (virtual)
16637         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
16638           changes
16639         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
16640           Updated drawing of menus, buttons and progressbars; added
16641           CPDrawBorder3D 
16642
16643 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16644
16645         * ImageListStreamer.cs: implemented serialization/deserialization
16646         of the images.
16647
16648 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
16649
16650         * ThemeWin32Classic.cs:
16651           - Removed all the DrawFrameControl stuff; CPDrawButton,
16652             CPDrawCheckBox and CPDrawRadioButton are now handled directly
16653             inside the methods
16654           - Updated and corrected the drawing code of CPDrawButton,
16655             CPDrawCheckBox and CPDrawRadioButton to better match ms
16656           - Updated theme checkbox and radiobutton code to use the CP*
16657             methods
16658
16659 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16660
16661         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
16662           bug is fixed
16663
16664 2006-03-31  Jackson Harper  <jackson@ximian.com>
16665
16666         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
16667         sometimes.
16668         * UpDownBase.cs: Don't CreateGraphics manually, use a
16669         Refresh. Ideally we would invalidate the correct areas here.
16670
16671 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16672
16673         * XplatUIX11.cs: 
16674           - We now track the mapping state of windows. If a window (or 
16675             one of it's parents) is not mapped we no longer permit
16676             WM_PAINT messages to be generated since we'd otherwise get 
16677             lots of BadMatch X errors. Jackson did all the work figuring
16678             out the problem.
16679           - Destroying the caret if the window it's contained in is 
16680             destroyed. Can't use regular DestroyCaret method since it
16681             might fall into a drawing function (trying to remove the
16682             caret) and with that generate new BadMatch errors. Again,
16683             Jackson tracked this down.
16684           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
16685             make sure we send the messages to all windows. (The old code
16686             would send the WM_DESTROY to the window, and then all child
16687             windows would be 'gone' because the WM_DESTROY handle lookup
16688             would no longer find the destroyed window)
16689         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
16690         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
16691
16692 2006-03-31  Jackson Harper  <jackson@ximian.com>
16693
16694         * ScrollableControl.cs: Dont recalc if we are not visible.
16695
16696 2006-03-31  Mike Kestner  <mkestner@novell.com>
16697
16698         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
16699         the visibility branch.
16700
16701 2006-03-31  Jackson Harper  <jackson@ximian.com>
16702
16703         * ScrollBar.cs: Cap values when incrementing/decrementing.
16704
16705 2006-03-31  Mike Kestner  <mkestner@novell.com>
16706
16707         * MenuAPI.cs: setup menu.tracker for popup/context menus.
16708         * ToolTip.cs: guard against timer expirations with no active control.
16709         Not sure why it happened.
16710
16711 2006-03-31  Mike Kestner  <mkestner@novell.com>
16712
16713         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
16714         text.
16715         * ToolTip.cs: Position the tooltip based on where the cursor is at
16716         popup time, not at MouseEnter time.  Add a Down state so that we don't
16717         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
16718         positioning offset. Lookup DisplaySize at positioning time, since it
16719         can theoretically change during invocation.
16720         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
16721         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
16722
16723 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16724
16725         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
16726           Fixes behaviour when the Text property of the box is String.Empty
16727
16728 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
16729
16730         * XplatUIX11.cs: Only send mouseleave for our client windows, not
16731           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
16732           a window)
16733
16734 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16735
16736         * FileDialog.cs: Visual enhancement for the popup buttons in 
16737           PopupButtonPanel
16738
16739 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16740
16741         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
16742           code
16743
16744 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
16745
16746         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
16747           highlighted menu items to match ms
16748
16749 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
16750
16751         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
16752
16753 2006-03-30  Mike Kestner  <mkestner@novell.com>
16754
16755         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
16756         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
16757         go active to account for HotLight to Selected transition.
16758         * MenuItem.cs: add internal Selected prop. Fill out the Status
16759         property by calculating it from item info. Add HotLight,
16760         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
16761
16762 2006-03-30  Mike Kestner  <mkestner@novell.com>
16763
16764         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
16765
16766 2006-03-29  Jackson Harper  <jackson@ximian.com>
16767
16768         * Form.cs: Implement TODO.
16769
16770 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
16771
16772         * PrintPreviewDialog.cs: Implemented missing methods and events; still
16773           missing proper dialog setup in the constructor
16774
16775 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
16776
16777         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
16778         * Control.cs:
16779           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
16780           - Fixed ResetBindings and removed TODO
16781           - Added check for cross-thread calls to get_Handle()
16782           - Added Marshaller attribute for set_Font to satisfy class status
16783         * FontDialog.cs: Removed TODOs that seemed implemented
16784         * UpDownBase.cs: Removed unneeded TODO and Fixme
16785         * MessageBox.cs: Implemented support for Default button and removed TODO
16786         * FileDialog.cs: Removed obsolete TODO
16787         * DomainUpDown.cs: Removed obsolete TODO
16788         * ButtonBase.cs: Removed obsolete TODO
16789         * XplatUIWin32.cs: Removed obsolete TODO
16790         * Form.cs:
16791           - Removed obsolete TODO
16792           - Calling CheckAcceptButton when the acceptbutton is changed to allow
16793             internal status updates
16794           - Making sure the active control is selected when the control is created
16795         * CurrencyManager.cs: Removed obsolete TODO
16796
16797 2006-03-29  Mike Kestner  <mkestner@novell.com>
16798
16799         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
16800         of PrintPreviewDialog and RichTextBox.
16801
16802 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16803
16804         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
16805           DarkDark, Light and LightLight colors for a specific color
16806         * ThemeWin32Classic.cs:
16807           - Use Button drawing code to draw RadioButtons and CheckBoxes with
16808             Appearance = Button 
16809           - Make use of the new ResPool helper CPColor
16810           - Draw ProgressBar and StatusBar with correct 3D borders
16811
16812 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16813
16814         * ColorDialog.cs: Return selected color. Fixes bug #77940.
16815
16816 2006-03-28  Mike Kestner  <mkestner@novell.com>
16817
16818         * ListView.cs: fix Icon layout to plan for scrollbar widths when
16819         calculating col/row counts.
16820
16821 2006-03-28  Mike Kestner  <mkestner@novell.com>
16822
16823         * ColumnHeader.cs:
16824         * ListView.cs:
16825         * ListViewItem.cs:
16826         * Menu.cs: 
16827         switch to explicit interface method implementation for some methods
16828         corcompare identifies as inconsistent with MS.
16829
16830 2006-03-28  Mike Kestner  <mkestner@novell.com>
16831
16832         * MainMenu.cs: 
16833         * Menu.cs:
16834         add a few missing methods from the class status output.
16835
16836 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
16837
16838         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
16839           correct.
16840
16841 2006-03-28  Mike Kestner  <mkestner@novell.com>
16842
16843         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
16844
16845 2006-03-27  Mike Kestner  <mkestner@novell.com>
16846
16847         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
16848         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
16849
16850 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
16851
16852         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
16853
16854 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16855
16856         * ThemeWin32Classic.cs:
16857           - GroupBox: Inserted a little gap between the text and the lines
16858             on the right side
16859           - Made the code in CPDrawBorder3D more readable
16860           - Corrected the drawing location of the up and down arrows in 
16861             CPDrawScrollButton
16862
16863 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16864
16865         * ControlPaint.cs: Corrected line widths in DrawBorder for
16866           ButtonBorderStyle Inset and Outset
16867
16868 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16869
16870         * ThemeWin32Classic.cs:
16871           - Rewrote the totally broken CPDrawBorder3D method. That was
16872             one of the main problems for the terrific ThemeWin32Classic
16873             look
16874           - Updated and corrected Button drawing
16875           - Correct the dimensions of the SizeGrip to match ms ones
16876           - Removed a small drawing glitch in DrawComboBoxEditDecorations
16877         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
16878           Border3DStyle.Sunken to match ms.
16879
16880 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16881
16882         * ThemeWin32Classic.cs: First small part of the "de-uglify
16883           ThemeWin32Classic" effort, SizeGrip
16884
16885 2006-03-24  Jackson Harper  <jackson@ximian.com>
16886
16887         * XplatUIX11.cs: Give a max idle time of one second, this matches
16888         MS and forces an Idle event every second when there are no other
16889         events in the queue.
16890
16891 2006-03-24  Mike Kestner  <mkestner@novell.com>
16892
16893         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
16894         * ListView.Item.cs: fix layout issues with null image lists and images
16895         smaller than checkbox size.
16896         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
16897         mode like MS does.  It's weird, but consistent.  ;-)
16898         Fixes #77890.
16899
16900 2006-03-24  Mike Kestner  <mkestner@novell.com>
16901
16902         * ListView.cs: Scroll wheel support for the item control.  Fixes
16903         #77839.
16904
16905 2006-03-23  Jackson Harper  <jackson@ximian.com>
16906
16907         * ScrollableControl.cs: Special case negative sized areas, not
16908         zero.
16909         * MonthCalendar.cs: Save the rect of the clicked date so we can
16910         use it for invalidation.
16911         - Try to cut down on the number of invalidates
16912         - Invalidate the rect the mouse is over and was over when moving
16913         the mouse, so we get the focus box following the cursor.
16914
16915 2006-03-23  Mike Kestner  <mkestner@novell.com>
16916
16917         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
16918         focus rectangle drawing. Fixes #77835.
16919
16920 2006-03-23  Mike Kestner  <mkestner@novell.com>
16921
16922         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
16923         the if and else if and reverting back to the original == check on the
16924         None conditional.
16925
16926 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
16927
16928         * FontDialog.cs: Update the example panel if the selected index of
16929           the fontListBox changes.
16930
16931 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
16932
16933         * FileDialog.cs: Make FileDialog remember which directory it was in
16934           last in the same execution.
16935
16936 2006-03-22  Mike Kestner  <mkestner@novell.com>
16937
16938         * FileDialog.cs: make the DropDownMenu on the toolbar display
16939         RadioChecks since they are mutually exclusive and that's what MS does.
16940
16941 2006-03-22  Mike Kestner  <mkestner@novell.com>
16942
16943         * Theme.cs: add Color param to CPDrawMenuGlyph.
16944         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
16945         checks and radio marks and arrows are visible on highlighted items.
16946         * ControlPaint.cs: update to use new Theme signature.
16947
16948 2006-03-22  Mike Kestner  <mkestner@novell.com>
16949
16950         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
16951         is active. Fixes #77870.
16952
16953 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
16954
16955         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
16956           to be focused/selected after startup
16957
16958 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
16959
16960         * ColorDialog.cs: 
16961           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
16962             CustomColors and ShowHelp properties
16963           - Some internal rewrites to get better results when using the
16964             ColorMatrix
16965
16966 2006-03-22  Mike Kestner  <mkestner@novell.com>
16967
16968         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
16969         HoverSelection.  Fixes #77836.
16970
16971 2006-03-22  Mike Kestner  <mkestner@novell.com>
16972
16973         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
16974         ToggleButtons.  (De)Sensitize the Back button around a stack count of
16975         1, not 0.  Update ButtonSize based on a pixel count of the win32
16976         control.  Adjust the toolbar size/location for new button size.
16977
16978 2006-03-22  Jackson Harper  <jackson@ximian.com>
16979
16980         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
16981         true.
16982         * ScrollBar.cs: When doing increments and decrements we need to
16983         set the Value property so that ValueChanged gets raised. A
16984         possible optimization here would be to make an internal SetValue
16985         that doesn't invalidate immediately.
16986         * ToolTip.cs: Tooltips get added to their container (when
16987         supplied) so they get disposed when the container is disposed.
16988         - Don't create tooltips for String.Empty. This prevents all these
16989         little 2-3 pixel windows from showing up when running nunit-gui
16990         and driving me mad.
16991         * Form.cs: Don't set topmost when setting the owner if the handles
16992         haven't been created yet.  The topmost set will happen when the
16993         handles are created.
16994
16995 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
16996
16997         * XplatUIX11.cs:
16998           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
16999           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
17000             visible (to allow them to recalculate their sizes)
17001
17002 2006-03-21  Mike Kestner  <mkestner@novell.com>
17003
17004         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
17005         methods. Removed a ton of redundant code.  Still not really happy with
17006         the border rendering, but I think that's mainly because of the
17007         ControlDarkDark being black instead of a dark grey. Depending on how 
17008         close we want to be, we might want to revisit those color choices.
17009         Among the new features added during the refactor were DropDownArrow
17010         pressed rendering, Disabled image rendering.  Proper flat appearance
17011         boundary rendering.  Removed the Divider and Wrapping dividers since I
17012         can't figure out any combination of themes and conditions to make the
17013         MS control draw a horizontal line on a toolbar despite what the
17014         Divider property docs indicate.
17015         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
17016         conditions and incorrect layout.  Updated to coding standard.
17017         * ToolBarButton.cs: refactored layout and positioning code from
17018         ToolBar to here.  Invalidate wherever possible instead of forcing
17019         redraws of the whole toolbar. 
17020         (Known remaining issues: explicit ButtonSize smaller than provided
17021         images.)
17022
17023 2006-03-21  Mike Kestner  <mkestner@novell.com>
17024
17025         * ContextMenu.cs (Show): use the position parameter instead of just
17026         showing at the MousePosition.
17027
17028 2006-03-21  Jackson Harper  <jackson@ximian.com>
17029
17030         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
17031         control handle this.
17032         * TreeNodeCollection.cs: If we are clearing the root node we need
17033         to reset top_node so calcs can still happen.
17034         * ThemeWin32Classic.cs: This is a Flags so we need to check
17035         properly.
17036         
17037 2006-03-21  Jackson Harper  <jackson@ximian.com>
17038
17039         * DataGrid.cs: Create columns when the binding context has been
17040         changed.
17041         * X11Structs.cs: Keysyms are uints.
17042         - Add size to fix build.
17043
17044 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
17045
17046         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17047           XplatUIOSX.cs: 
17048           - Added ResetMouseHover method to allow controls to retrigger
17049             hovering if they need it more than once
17050           - Implemented MouseHoverTime and MouseHoverSize properties
17051         * Timer.cs: Start() must reset the interval
17052         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
17053           properties
17054
17055 2006-03-21  Jackson Harper  <jackson@ximian.com>
17056
17057         * X11Keyboard.cs: improved layout detection. Move the nonchar
17058         tables into this file.
17059         * KeyboardLayouts.cs: Move the tables into resource files.
17060
17061 2006-03-21  Mike Kestner  <mkestner@novell.com>
17062
17063         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
17064
17065 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
17066
17067         * Mime.cs: Various speed optimizations. Looking up mime types
17068           is now 2 times faster than before
17069
17070 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
17071
17072         * CreateParams.cs: Added internal menu field
17073         * Control.cs: 
17074           - Switched call order for UpdateBounds; now we always call
17075             the one that also takes ClientSize, and we're calculating the 
17076             client size via driver method in the others. The previous
17077             method of tracking client size by difference wasn't working
17078             for forms where even the starting client size wouldn't match
17079             the overall form size (due to borders) (Part of fix for #77729)
17080           - CreateParams(): Do not use parent.Handle unless the handle is
17081             already created. Causes havoc with Nexxia and throws off our
17082             creation of controls
17083         * XplatUIX11.cs:
17084           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
17085           - Switched handling of ConfigureNotify over to new PerformNCCalc 
17086             method (consolidates code)
17087           - Changed RequestNCRecalc to use new PerformNCCalc method
17088           - Added calls to RequestNCRecalc when menus and borders are changed
17089             to allow app to set NC size. (Part of fix for #77729) This matches
17090             when MS send a WM_NCRECALC on Win32 windows.
17091           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
17092             (Part of fix for #77729). This matches what MS does, they also
17093             send that message when the form is made visible.
17094           - XException.GetMessage: Improved usability of X errors by including
17095             a translation of the window into Hwnd and Control class
17096           - Improved debug info for window creation, reparenting and destruction
17097           - Created helper method WindowIsMapped() [Currently not used]
17098         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
17099         * Form.cs:
17100           - CreateParams: Now setting our menu on the new internal menu field
17101           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
17102             avoid calculating the same property twice
17103         * Hwnd.cs:
17104           - Improved usability of ToString() for debugging purposes
17105           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
17106             determine the height of the menu, instead of just the font. This
17107             required to also create a graphics context and to keep a bmp 
17108             around (for performance reasons)
17109
17110 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
17111
17112         * MenuAPI.cs: Added OnMouseUp method
17113         * Form.cs:
17114           - Now remembering the requested client size, avoids size errors
17115           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
17116             instead of base if the menu is active. This is required due to
17117             control now capturing and releasing on down/up and it would
17118             prematurely release our menu capture
17119
17120 2006-03-17  Jackson Harper  <jackson@ximian.com>
17121
17122         * KeyboardLayouts.cs: Add the czech layouts.
17123
17124 2006-03-16  Jackson Harper  <jackson@ximian.com>
17125
17126         * Control.cs: Use the viewport space when sizing not the controls
17127         client size, so things like ScrollableControl that effect the
17128         viewport size (when scrollbars are added) are computed correctly.
17129         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
17130         of ManagerEntrys.
17131         - Handle creating BindingManagers for null data sources.
17132         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
17133         source, otherwise when rows are added they are added to the 'fake'
17134         datasource and we will crash when trying to set the position in
17135         those rows.
17136         - Use Implicit scrollbars on the datagrid so they arent
17137         selectable.
17138         
17139 2006-03-16  Jackson Harper  <jackson@ximian.com>
17140
17141         * Binding.cs:
17142         * InternalWindowManager.cs:
17143         * MdiWindowManager.cs:
17144         * X11Keyboard.cs: I really want Mike to love me again (fix
17145         compiler warnings).
17146
17147 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
17148
17149         * DataGrid.cs:
17150           - OnMouseDown: Switch to editing mode when clicking on the cell
17151                          even if we're clicking on the cell that's currently 
17152                          selected
17153           - ProcessGridKey: Left/Right now wrap like MS.Net does
17154           - ProcessGridKey: Tab now knows to add a new row when tab is
17155                             pressed in the cell of the last column of the 
17156                             last row
17157           - ProcessGridKey: Enter now adds another row  if pressed in the last
17158                             row and selectes the new row, same column cell
17159           - ProcessGridKey: Home/End navigate columns, not rows, like 
17160                             originally implemented
17161           - Broke ProcessKeyPreview code out into an extra Internal method
17162             so it can be called from the edit code
17163         * DataGridTextBox.cs (ProcessKeyMessage):
17164           - Switched to accept Tab keypresses
17165           - Added F2 handling to allow jumping to the end of the edited cell
17166           - Added logic to allow moving caret left/right inside edited cell
17167             and making the edited cell jump when the caret hits cell borders
17168           - Tab and Enter are now passed to the datagrid after being handled
17169         * TextBoxBase.cs:
17170           - Removed capture code now that Control handles it
17171           - set_SelectionStart now ensures caret is visible
17172
17173 2006-03-16  Jackson Harper  <jackson@ximian.com>
17174
17175         * TrackBar.cs: Debackwards the increment/decrement for handling
17176         mouse clicks on the bar with vertical trackbars.
17177         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
17178         bottom to match MS.
17179
17180 2006-03-16  Mike Kestner  <mkestner@novell.com>
17181
17182         * ListView.cs: make shift/ctrl keyboard and mouse selection 
17183         consistent with the MS control. Fix a bug in
17184         SelectedListViewItemCollection.Clear that was pissing me off for the
17185         better part of a day because the collection was being altered
17186         underneath us as we walked the list.
17187
17188 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
17189
17190         * Control.cs: Not sure how we could miss this so long, but it seems
17191           that MS.Net has Capture set all the way from before calling 
17192           OnMouseDown through sending the mouse events until after
17193           OnMouseUp. This will fix DataGrid's selection being set to end
17194           at the location of the MouseUp.
17195
17196 2006-03-15  Jackson Harper  <jackson@ximian.com>
17197
17198         * BindingContext.cs: Check the binding after its added so that it
17199           can initialize the binding managers and hookup to events.
17200         * Binding.cs: Data members seem to sometimes include rows/cols in
17201           the format Row.Column we now take this into account.
17202           - Hookup to the position changed event so we can update the
17203           control when the position has changed in the data set.
17204         * CurrencyManager.cs: Take into account the row/col naming
17205           convention when creating dataset tables.
17206         * BindingContext.cs: Using a newer better way of storing
17207           datasource/datamember pairs.  Hopefully this better matches MS for
17208           looking up binding managers.
17209
17210
17211 2006-03-15  Jackson Harper  <jackson@ximian.com>
17212
17213         * BindingContext.cs: The currency manager needs the data member
17214         name, if the member is a data set we use the name to find the
17215         correct table.
17216         * CurrencyManager.cs: When creating the list prefer an IList over
17217         an IListSource.
17218         - Attempt to create a DataTable from a DataSet (TODO: might need
17219         some better error checking here, although MS doesn't seem to have much)
17220         - If we have a DataTable create a view and use it as our list.
17221
17222 2006-03-15  Mike Kestner  <mkestner@novell.com>
17223
17224         * ListView.cs: keep a matrix of the icon mode layout to facilitate
17225         keyboard navigation. Support Up/Down/Left/Right selection correctly
17226         for all 4 View modes.
17227         * ListViewItem.cs: add internal row/col fields for icon layouts.
17228
17229 2006-03-15  Jackson Harper  <jackson@ximian.com>
17230
17231         * TabControl.cs: Redraw the tabs when we resize so their newly
17232         calculated sizes are drawn on screen.
17233         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
17234         composite characters.
17235         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
17236         - filter events so that composite characters can be created
17237         patches by peter
17238         * X11Structs.cs: Add XIMProperties enum.
17239
17240 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17241
17242         * Control.cs (BringToFront, SendToBack): Don't use window or handle
17243           unless it's created
17244
17245 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17246
17247         * Control.cs (PerformLayout): We don't need to consider visiblity
17248           for anchoring, only for docking. This fixes 'whacky' alignment
17249           in listbox and other controls that use implicit scrollbars after
17250           the previous PerformLayout patch
17251         * ListBox.cs: Switched to use implicit scrollbars
17252           
17253 2006-03-14  Mike Kestner  <mkestner@novell.com>
17254
17255         * ToolBar.cs: 
17256         * VScrollBar.cs:
17257         - chain up the "new event" overrides to base and use
17258         OnEvent to raise them.  Part of fix for bug #76509.
17259
17260 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
17261
17262         * FileDialog.cs: Do not select an item in the parent directory
17263           on backspace
17264
17265 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17266
17267         * Control.cs (PerformLayout): It would seem that we considered
17268           invisible windows for our layout. Not quite the right thing
17269           to do. Now we don't any longer, thereby fixing bug #76889.
17270
17271 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17272
17273         * Control.cs (CanFocus): I goofed. A control can have focus 
17274           even though it's not selectable. Made it match MS docs.
17275
17276 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17277
17278         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
17279           center by default (fixes #76895)
17280         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
17281           all uses of Border3DSides.All with the explicit ORd together
17282           Left|Right|Top|Bottom because I assume that nobody was aware 
17283           that All also implies a center fill. Most places I checked had
17284           a fill right above.
17285         * ProgressBarStyle.cs: Added
17286
17287 2006-03-13  Mike Kestner  <mkestner@novell.com>
17288
17289         * ListView.cs: fix breakage in drag shadow header positioning 
17290         from Peter's csc compilation fix.
17291
17292 2006-03-13  Mike Kestner  <mkestner@novell.com>
17293
17294         * ListView.cs: fix NRE produced by backspacing twice in a focused
17295         FileDialog.
17296
17297 2006-03-13  Mike Kestner  <mkestner@novell.com>
17298
17299         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
17300
17301 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17302
17303         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
17304           be changed
17305         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
17306           the allowed size before making programmatic size changes
17307
17308 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
17309
17310         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
17311           set, metacity is broken and will still use the emty sizes in 
17312           the struct. (Fix for #77089)
17313
17314 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17315
17316         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
17317           WindowExStyles and marked both enums as Flags
17318         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
17319           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
17320           to match WindowStyles split
17321         * XplatUIX11.cs:
17322           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
17323           - Updated to match WindowStyles split
17324         * XplatUIWin32.cs:
17325           - Fixed FosterParent creation, was using ExStyle on the Style field
17326             (This should help with Popup focus issues)
17327           - Updated to match WindowStyles split
17328
17329 2006-03-13  Jackson Harper  <jackson@ximian.com>
17330
17331         * MdiWindowManager.cs: Use the system menu height. Fixes some
17332         strange sizing issues.
17333
17334 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17335
17336         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
17337         * TextBoxBase.cs:
17338           - Scroll to caret after inserting text (#77672)
17339           - Make scroll range one pixel higher, fixes off-by-one error (and
17340             makes underlines visible on the last line)
17341
17342 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
17343
17344         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
17345           the keyboard state from being stuck with keys in 'pressed' state when
17346           focus is switched away via keyboard
17347         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
17348           reset the keyboard if no X11 KeyUp events are expected to come
17349         * X11Structs.cs: Switched type of Visible to bool to match driver
17350
17351 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17352
17353         * TextControl.cs:
17354           - Switched caret to be just 1 pixel wide, matches MS and looks less
17355             clunky
17356           - Moved caret display 1 pixel down from the top of the control
17357             to improve view
17358           - InsertCharAtCharet: Update the selection start if moving the caret
17359             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
17360           - No longer always creating the caret when the caret methods are
17361             called. Only the actual ShowCaret/HideCaret will do that now
17362           - Only setting caret visible if the owner control has focus
17363           - UpdateView: Added invalidation-shortcut logic for center and right 
17364             aligned text. Previously we'd update all according to the left
17365             logic which caused drawing errors. Also fixed height of invalidated
17366             areas, now properly invalidating the whole area (was off-by-one)
17367           - owner_HandleCreated: Always generate the document when the
17368             handle is created; this ensures that 
17369         * TextBoxBase.cs:
17370           - Fixed situation where caret would disappear under the right
17371             window border, also improved scrolling behaviour on left-
17372             aligned textboxes
17373           - Fixed right-aligned textboxes to have a border to the
17374             right instead of the caret being under the right border
17375         * XplatUIX11.cs:
17376           - Switched from 'nested' to simple visible/not visible tracking 
17377             for caret (part of fix for #77671)
17378           - No longer passing through translated FocusIn/FocusOut messages
17379             since we were notifying too often and the wrong windows. Instead
17380             we just notify our focussed window of receiving or loosing focus
17381         * XplatUIWin32.cs: Switched from 'nested' show/hide 
17382           counting for caret to simple visible yes/no behaviour (part of 
17383           fix for #77671)
17384
17385 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17386
17387         * Mime.cs: Remove debug code...
17388
17389 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17390
17391         * MimeGenerated.cs: Removed
17392         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
17393           and subclasses) from /usr/(local/)share/mime and
17394           $HOME/.local/share/mime.
17395
17396 2006-03-10  Jackson Harper  <jackson@ximian.com>
17397
17398         * MdiWindowManager.cs: Recalc the NC area when a window is
17399         maximized/restored so that the menu area is drawn on forms that
17400         don't have a menu.
17401
17402 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17403
17404         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17405           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
17406           us to force a WM_NCCALCRESIZE message being sent. This is needed
17407           for MDI maximizing.
17408
17409 2006-03-10  Jackson Harper  <jackson@ximian.com>
17410
17411         * Form.cs: We need to use the ActiveMenu when calculating menu
17412         height.
17413         - Fix nullref when the window manager hasn't been created yet.
17414         * Control.cs: Fix nullref when we try to bring a control to the
17415         front that has no parent.
17416         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
17417         height.
17418         - Add a dummy item to the maximized menu so it always has the
17419         correct height. Otherwise when there are no menus we don't get our
17420         icon and buttons.
17421         
17422
17423 2006-03-10  Jackson Harper  <jackson@ximian.com>
17424
17425         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
17426         stuff.
17427         * Form.cs: Make the window_state internal so the window managers
17428         can track it.
17429         - When an MDI child is maximized let its window manager create the
17430         main menu (so it can add its icon).
17431         - Notify the window managers of state changes
17432         - Let the window manager paint its buttons and handle button
17433         clicks on the menu when it is maximized.
17434         * InternalWindowManager.cs: Move the prev_bounds into the mdi
17435         window manager, since tool windows don't use it, only mdi windows.
17436         - Tell the main form that we don't want it to handle NCPAINT
17437         itself to avoid extra painting.
17438         - Handle clicks on a maximized windows menu.
17439         - Handle window state changes
17440         - Handle minimize/maximize clicks correctly by setting the window state.
17441         * MdiWindowManager.cs: Add an icon menu that (the menu you get
17442         when clicking on the forms icon).
17443         - New method to create a forms maximized menu. This is its normal
17444         menu + an icon.
17445         - Handle window state changes.
17446         - Handle sizing of maximized windows.  Maximized windows are just
17447         drawn bigger then the parent visible area. All controls are still
17448         there, they are just outside the visible area (this matches windows).
17449         * MdiClient.cs: No scrollbars when a child window is maximized.
17450         - Let the children windows figure out how big they should be when
17451         sizing maximized windows.
17452         - Implement a version of ArrangeIconicWindows somewhat similar to
17453         Windows version.  There are some little differences, but I don't
17454         think any app will rely on the layout of minimized mdi windows.
17455
17456 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17457
17458         * Padding.cs: Several fixes to allow compiling with csc 2.0
17459
17460 2006-03-09  Jackson Harper  <jackson@ximian.com>
17461
17462         * Menu.cs:
17463         * MenuItem.cs: Cheap hack so we can add items to the list without
17464         the events being raised.  This allows adding mdi items during
17465         drawing. TODO: Should probably find a better time to add the items.
17466
17467 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17468
17469         * ThemeWin32Classic.cs:
17470           - CheckBox_DrawText: Added logic to not wrap if not enough space
17471             is available (Fix for bug #77727)
17472           - RadioButton_DrawText: Added logic not to wrap if not enough
17473             space is available (Fix for bug #77727). Also removed some
17474             duplicate code, DrawString always drawing the regular text
17475             before hitting the if statement.
17476
17477 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
17478
17479         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
17480
17481 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17482
17483         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
17484         * ContainerControl.cs: Partial implementation of some 2.0 scaling
17485           methods. Moved the new 2.0 properties into alphabetical order with
17486           other properties and added MonoTODO tags
17487
17488 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17489
17490         * AutoScaleMode.cs: Added. Fix build.
17491
17492 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17493
17494         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17495           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
17496           and was requiring premature handle creation for calls from above
17497         * Form.cs, Control.cs: Removed handle arguments from calls to
17498           CalculateClientRect()
17499
17500 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17501
17502         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
17503           drag_column.column_rect is MarshalByRef and can't be used that way
17504
17505 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17506
17507         * AxHost.cs: Added deserialization constructor for 
17508           AxHost+State (fixes 77743)
17509
17510 2006-03-09  Mike Kestner  <mkestner@novell.com>
17511
17512         * ListView.cs: 
17513         - Added column drag reordering for details view.
17514         - fixed behavior when mouse is dragged off column and
17515         AllowColumnReorder is false.
17516         * ColumnHeader.cs: clone the format too in Clone.
17517         * Theme.cs: add DrawListViewHeaderDragDetails method.
17518         * ThemeWin32Classic.cs:
17519         - impl new method for drawing drag column shadows and targets.
17520         - support column offset for details mode in DrawListViewItem.
17521
17522 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17523
17524         * TextControl.cs: Reset the char_count when the document is cleared
17525           (Fixes bug reported on mono-winforms mailing list)
17526
17527 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17528
17529         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
17530           of calling base we simply process the key ourselves, since both
17531           DefWindowProc and the handled method would set m.Result. 
17532           (Fixes #77732)
17533
17534 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17535
17536         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
17537           method also moves the window; instead implemented a copy of
17538           Control.ScaleCore (Part of fix for #77456)
17539         * TextBoxBase.cs: 
17540           - Created new CreateGraphicsInternal method to allow providing
17541             a graphics context when no handle is created without triggering
17542             handle creation. (Part of fix for #77456)
17543           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17544         * TextControl.cs: 
17545           - Switched Constructor to require TextBoxBase instead of Control (to
17546             allow uncast access to CreateGraphicsInternal)
17547           - Safeguarded use of owner.Handle property. No longer accessing it
17548             unless the handle is already created.
17549           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17550           - Now triggering a recalc when owning control becomes visible
17551         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
17552           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
17553           premature handle creation (Part of fix for #77456)
17554         * Control.cs:
17555           - We now only destroy our double-buffering buffers when the
17556             control is resized or disposed, but not when visibility
17557             changes. (The code even re-created them twice every time)
17558           - Now requiring a redraw of the buffer on visibility changes
17559             (fixes bug 77654 part 2)
17560           - Not passing OnParentVisibleChanged up unless the control
17561             is visible
17562           - CanFocus: Fixed to match MS documentation
17563           - Focus: Fixed to return actual focus state and to check if
17564             setting focus is legal before setting it
17565
17566 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
17567
17568         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
17569           when to draw focus rectangle by looking at parent focus and
17570           selected state instead. This fixes TabPages on Linux sometimes
17571           having none or multiple focus rectangles.
17572         * XplatUIX11.cs (SetFocus): 
17573           - Don't set the focus if the same window already has focus
17574           - Use SendMessage instead of PostMessage (like it's Win32
17575             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
17576             to match MS behaviour
17577         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
17578           are not selectable.
17579
17580 2006-03-07  Jackson Harper  <jackson@ximian.com>
17581
17582         * PictureBox.cs: Revert line I accidently committed last week.
17583
17584 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17585
17586         * Control.cs: 
17587           - Added new IsRecreating and ParentIsRecreating properties to
17588             allow testing if RecreateHandle has been called on ourselves
17589             or one of our parents
17590           - WndProc(WM_DESTROY): If our control handle is being recreated
17591             we immediately need to create the handle when receiving the
17592             destroy, that way our child windows find a valid parent handle
17593             when they themselves are being recreated upon WM_DESTROY receipt
17594             (fix for bug #77654 part 1)
17595         * XplatUIX11.cs:
17596           - DestroyWindow: WM_DESTROY must be sent to our own window before
17597             notifying any child windows. MS documents that child windows
17598             are still valid when WM_DESTROY is received. (Control now relies on
17599             this behaviour)
17600           - Added some fine-grain debug options
17601
17602 2006-03-06  Jackson Harper  <jackson@ximian.com>
17603
17604         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
17605         box and base calculations off this.
17606         * MdiChildContext.cs:
17607         * MdiWindowManager.cs: Don't need to ensure scrollbars here
17608         anymore.
17609         
17610 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
17611
17612         * Splitter.cs: In situations where the affected control is added
17613           to the parent's control list after the splitter, we would not
17614           populate affected. Now we try populating it on mousedown, if
17615           it's not already set, and force it to be re-set whenever our
17616           parent changes.
17617
17618 2006-03-03  Matt Hargett  <matt@use.net>
17619
17620         * Control.cs: implement Control.Padding
17621         * Padding.cs: -Padding.All returns -1 when constructing with the
17622         implicit default ctor
17623         -Padding.ToString() matches MS.NET
17624         * ContainerControl.cs: implement
17625         ContainerControl.AutoScaleDimensions
17626         * ListControl.cs: implement ListControl.FormattingEnabled
17627         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
17628         * ButtonBase.cs:
17629         * TabPage.cs: Implement UseVisualStyleBackColor.
17630         * PictureBox.cs: Implement PictureBox.InitialImage.
17631
17632 2006-03-03  Mike Kestner  <mkestner@novell.com>
17633
17634         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
17635         event declarations to proxy to base event.
17636         * ListViewItem.cs: update to use ItemControl.
17637         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
17638         * ThemeWin32Classic.cs: update to new ListView theme API and fix
17639         column header label rendering for 0 width columns.
17640
17641 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
17642
17643         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
17644           that causes the control to be created. Fixes #77476.
17645
17646 2006-03-02  Jackson Harper  <jackson@ximian.com>
17647
17648         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
17649         expose_pending.
17650
17651 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
17652
17653         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
17654           passed in for the EventArgs (fixes #77690)
17655
17656 2006-03-01  Jackson Harper  <jackson@ximian.com>
17657
17658         * ScrollBar.cs: Refresh afterbeing resized.
17659
17660 2006-02-28  Mike Kestner  <mkestner@novell.com>
17661
17662         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
17663         Clean up a tracker compile warning.
17664         * MenuItem.cs: add internal PerformPopup method.
17665         [Fixes #77457]
17666
17667 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17668
17669         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
17670           implicit expose) when the text is set to null
17671
17672 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
17673
17674         * RichTextBox.cs (FlushText): When newline is true, we always
17675           need to split the line, even if no text is on it and we may
17676           never eat newlines. (Fixes #77669)
17677
17678 2006-02-28  Mike Kestner  <mkestner@novell.com>
17679
17680         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
17681         and set Selected instead.
17682         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
17683         collections.
17684
17685 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17686
17687         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
17688
17689 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
17690
17691         * FontDialog.cs:
17692           - Got rid of the panel. All controls are now directly added to
17693             the dialog form
17694           - It is now possible to set a font with the Font property
17695           - MinSize and MaxSize property do now what they should
17696           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
17697           - Searching and selecting a font with the font textbox works now,
17698             the same applies to the style and size textbox
17699           - Draw the correct 3D border in the example panel
17700           - Fixed a little mem leak (unused fonts didn't get disposed)
17701           - Many other internal updates/rewrites...
17702           - Fix typo
17703
17704 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17705
17706         * TextControl.cs: 
17707           - InsertRTFFromStream: Added 'number of characters inserted' argument
17708           - set_SelectedRTF: Now using the number of characters to calculate
17709             the new location for the selection and cursor (x/y cannot be used
17710             due to potentially already wrapped text)
17711
17712 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
17713
17714         * TextControl.cs: Added property and implemented means to allow 
17715           disabling recalculation of a document (can be used to speed up
17716           multiple inserts and is needed to make RTF inserts predictable, see
17717           bug #77659)
17718         * RichTextBox.cs: Using the new NoRecalc property of Document to
17719           keep x/y insert locations predictable. Also makes it faster inserting
17720           large chunks of RTF
17721
17722 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17723
17724         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
17725           it's easier for a child control to handle the other messages without
17726           having to duplicate the special functionality
17727         * TextBoxBase.cs
17728           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
17729             code to handle processing the key ourselves, in order to get 
17730             access to the result of KeyEventArgs.Handled. We now only call 
17731             ProcessKey if they key hasn't been handled already. Fixes #77526.
17732           - set_Text: If null or empty string is given, just clear the 
17733             document. Fixes part of #77526
17734
17735 2006-02-27  Jackson Harper  <jackson@ximian.com>
17736
17737         * SizeGrip.cs: Paint the background color before painting the grip
17738         so things look right.
17739         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
17740
17741 2006-02-27  Mike Kestner  <mkestner@novell.com>
17742
17743         * ListView.cs:
17744           - Restructure layout and invalidation model to remove a ton of
17745           flicker from the control and speed up performance in general.
17746           - Add manual column resize, flickers like crazy, but I already have
17747           some ideas on how I'll fix that. (#76822)
17748           - Merge the three Icon-based views into a single layout method.
17749           - Move item selection interaction logic from the item since 
17750           interaction with the collections is more appropriate to the view.
17751           - Deselection on non-item clicks.
17752         * ListViewItem.cs:
17753           - Encapsulate most of the layout. Add some internal props to trigger
17754           layout.  Move to a model where Items invalidate themselves instead
17755           of just invalidating the whole control every time something changes.
17756           - Invalidate on Text/Caption changes.
17757           - switch to an offset based layout model to avoid having to absolute
17758           position every element on item moves.
17759           - correct checkbox layout to conform to MS layout.
17760         * ThemeWin32Classic.cs:
17761           - refactor some column header drawing code.
17762           - fix string justification for column headers (#76821)
17763           - make SmallIcon labels top justified for compat with MS impl.
17764         * ThemeClearlooks.cs:
17765           - adjust to new ListViewItem internal checkbox bounds api.
17766
17767 2006-02-27  Jackson Harper  <jackson@ximian.com>
17768
17769         * Control.cs:  Change where implicit controls fall in the zorder.
17770         They are now on top of all children.
17771         - Synced AddImplicit code with Add
17772         - Removed unused enumerator.
17773         * SizeGrip.cs: Remove the TODO as its been TODONE.
17774
17775 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
17776
17777         * TextControl.cs(Insert): Combine the last lines unless the insertion
17778           string ends with \n\n, otherwise we leave one line too many (Fixes
17779           something I noticed with the testapp for #77526; the bug itself was
17780           already fixed in the previous checkin)
17781
17782 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
17783
17784         * RichTextBox.cs:
17785           - SelectionColor and SelectionFont methods no longer set absolute
17786             styles. Instead, the keep font or color respectively (This 
17787             resolves a long-standing FIXME in the code)
17788           - When flushing RTF text, the insert code now considers text trailing
17789             behind the insertion point (Fixes the bug where when replacing
17790             the selected text via SelectedRTF the remainder of the line behind 
17791             the selection would stay on the first insertion line)
17792         * TextBoxBase.cs:
17793           - AppendText now updates the selection points after inserting text
17794           - AppendText now ensures that the last tag (sometimes 0-length) of
17795             the document is used for the style information (Fixes part of 
17796             bug #77220)
17797         * TextControl.cs:
17798           - Created new FontDefiniton class to allow describing partial style
17799             changes
17800           - StreamLine() now takes a lines argument, to allow it to decide
17801             whether an encountered zero-length tag is the last in the document
17802             (which must be kept to not loose the font/color contained in it,
17803             for later appends)
17804           - Created Combine() and Split() methods for Marker structs, to 
17805             support marker updates due to reformatted documents (soft line
17806             wraps)
17807           - Implemented Document.CaretTag setter
17808           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
17809             of the last line (Not the cause, but also exposed by bug #77220)
17810           - Added LineTag argument to InsertString method, to allow callers
17811             to force a certain tag to be used (required to force use of the
17812             trailing zero-length tag of a document)
17813           - Now updating markers in Combine(), to avoid stale tag markers
17814           - Added some method descriptions to aid maintenance
17815           - Implemented new FormatText concept, allowing additive/subtractive
17816             formatting by only specifying the components that are to be 
17817             changed. This was needed for resolving the RTB.SelectedColor/
17818             RTB.SelectedFont fixmes
17819           - Added Break() support method to allow breaking up linetags (used
17820             for partial formatting)
17821           - Added GenerateTextFormat() method. It is used for partial 
17822             formatting and allows to generate a full font/color from given
17823             attributes and an existing tag.
17824
17825 2006-02-26  Jackson Harper  <jackson@ximian.com>
17826
17827         * XplatUIX11.cs:  Use the correct caption height.
17828         - Translate hittest coordinates to screen coords to match MS.
17829         * XplatUIWin32.cs: When we create MDI windows we need to reset
17830         some of the style flags, so we get a nice blank window, and can
17831         draw all the decorations ourselves.
17832         - Set a clipping rectangle on the non client paint event, the
17833         window manager drawing code needs one.
17834         * Form.cs: The window manager needs to know when the window state
17835         has been updated.
17836         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
17837         don't need to factor in border and title sizes in these
17838         methods. TODO: Remove the args and fix the call points.
17839         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
17840         properly.
17841         - Let the driver set the cursors.
17842         - Improve active window handling
17843         - Correct sizes for title bars and buttons.
17844         - Match MS drawing better
17845         * MdiWindowManager.cs: We don't need to handle border style
17846         updates specially anymore.
17847         - Check for scrollbars when windows are done moving
17848         - Handle Active properly.
17849         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
17850         correctly. I am spewing the exception though, so we don't hide the
17851         bugs.
17852         
17853 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
17854
17855         * DataGridViewRowPostPaintEventArgs.cs,
17856           DataGridViewCellPaintingEventArgs.cs,
17857           DataGridViewRowCollection.cs,
17858           DataGridViewRowPrePaintEventArgs.cs,
17859           DataGridViewCell.cs: Clear a few warnings and implement a few
17860           exceptions that should be thrown.
17861
17862 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
17863
17864         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
17865           'inheriting' our parent's (non-default) cursor. (Part of
17866            the fix for #77479)
17867
17868 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
17869
17870         * XplatUIX11.cs: Fixed cast to make csc happy
17871
17872 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
17873
17874         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
17875           it's for the client area (part of fix for #77479 and needed
17876           for MDI window cursor handling)
17877         * XplatUIX11.cs
17878           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
17879             the appropriate default cursors and also passing the message
17880             up the parent chain 
17881           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
17882             for non-client areas
17883
17884 2006-02-15  Jackson Harper  <jackson@ximian.com>
17885
17886         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
17887         is a real MDI window
17888
17889 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
17890
17891         * X11DesktopColors.cs: Instead of checking the desktop session
17892           string for "KDE" check if it starts with "KDE"
17893
17894 2006-02-10  Jackson Harper  <jackson@ximian.com>
17895
17896         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
17897         systems).
17898
17899 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
17900
17901         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
17902           errors
17903         * ColorDialog.cs:
17904           - Got rid of the panel. All controls are now directly added to
17905             the dialog form
17906           - Changed to mono coding style
17907
17908 2006-02-10  Jackson Harper  <jackson@ximian.com>
17909
17910         * InternalWindowManager.cs: We don't need the set visibility to
17911         false hack anymore now that peter has written beautiful shutdown
17912         code.
17913
17914 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
17915
17916         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
17917           where already explicitly destroyed
17918
17919 2006-02-10  Jackson Harper  <jackson@ximian.com>
17920
17921         * MdiClient.cs: Handle the case where windows are too high or to
17922         the left and we need scrollbars.
17923
17924 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
17925
17926         * MimeIcon.cs: Added some icons
17927         * FileDialog.cs:
17928           - Fixed bug #77477
17929           - Got rid of the panel. All controls are now directly added to
17930             the dialog form
17931           - Changed to mono coding style
17932           - On Linux "My Computer" and "My Network" will now show some
17933             more usefull information. A new class, MasterMount, gathers
17934             this information from /proc/mount. Updated MWFFileView to make
17935             use of this information
17936           - Fixed a bug that caused FileDialog to crash when
17937             ".recently_used" file had a zero size
17938           - FilterIndex does now what it should
17939           - Some Refactoring
17940         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
17941             FileDialog changes
17942
17943 2006-02-09  Jackson Harper  <jackson@ximian.com>
17944
17945         * ComboBox.cs: Don't touch if null.
17946
17947 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
17948
17949         * Cursor.cs: 64bit safeness fix
17950         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
17951
17952 2006-02-09  Jackson Harper  <jackson@ximian.com>
17953
17954         * Form.cs: If a form is made into an MDI form update the styles so
17955         all the props can get set correctly.
17956         - Kill the mdi_container when we dont need it anymore.
17957         * InternalWindowManager.cs: Add missing NOT
17958
17959 2006-02-08  Jackson Harper  <jackson@ximian.com>
17960
17961         * InternalWindowManager.cs: Respek clipping when drawing MDi
17962         decorations.
17963
17964 2006-02-08  Jackson Harper  <jackson@ximian.com>
17965
17966         * Hwnd.cs: Add bits to track non client expose events.
17967         * XplatUIX11.cs: Track non client expose events on the hwnd. This
17968         gives us a proper invalid rect and will allow for some nice
17969         optimizations with NC client drawing
17970         - MDI windows are children windows, so move their style handling
17971         into the child window block.
17972         * InternalWindowManager.cs: Remove a state reset that was
17973         getting invoked at the wrong time. Fixes managed windows getting
17974         into a 'stuck' captured state.
17975
17976 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
17977
17978         * TextControl.cs (Document.ctor): Now initializing 
17979           selection_anchor. Fixes #77493
17980
17981 2006-02-07  Jackson Harper  <jackson@ximian.com>
17982
17983         * TrackBar.cs: The increment/decrements were backwards.
17984
17985 2006-02-07  Mike Kestner  <mkestner@novell.com>
17986
17987         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
17988         to the instance itself.
17989
17990 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
17991
17992         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
17993           on ulongs and pointers, the size differs between 32bit and 64bit
17994           systems. 
17995
17996 2006-02-07  Mike Kestner  <mkestner@novell.com>
17997
17998         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
17999         for 64 bit platforms to work around a metacity bug. 
18000
18001 2006-02-07  Jackson Harper  <jackson@ximian.com>
18002
18003         * TrackBar.cs: Process the input keys we need, and hookup to
18004         KeyDown instead of using WndProc, so we get key messages.
18005
18006 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
18007
18008         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
18009           machine we're on. 
18010         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
18011           we need to translate the XdndVersion atoms array before sending it
18012
18013 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
18014
18015         * XplatUIX11.cs: 
18016           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
18017             number of bits for the property, not the number of bytes. The
18018             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
18019             but would not crash since it specified 8 bits instead of 4 bits)
18020           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
18021             defined as XID -> long in the C headers)
18022           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
18023             references since those are now IntPtr to begin with
18024           - Switched all Atom.XXX 'int' casts to IntPtr casts
18025           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
18026           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
18027           - Added XChangeActivePointerGrab DllImport (for X11DnD)
18028         * X11Structs.cs:
18029           - Changed 'int' type for Atoms in XEvent structures to IntPtr
18030           - Changed atom in HoverStruct to be IntPtr
18031         * X11DnD.cs:
18032           - Removed local DllImports, switched code to use those from XplatUIX11
18033           - Removed/fixed casts related to the switch of Atom to be a IntPtr
18034
18035 2006-02-06  Mike Kestner  <mkestner@novell.com>
18036
18037         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
18038         method signatures in the import region.  There may still be some
18039         lingering struct marshaling issues, as I didn't drill down into those.
18040         Yet.
18041
18042 2006-02-06  Jackson Harper  <jackson@ximian.com>
18043
18044         * ComboBox.cs: Dont manually set the top_item, this is computed
18045         when the scrollbar position is set.
18046
18047 2006-02-06  Mike Kestner  <mkestner@novell.com>
18048
18049         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
18050         startup crashes on amd64.  There's other fixes needed.  All pinvoke
18051         usage of Atom needs to be mapped to IntPtr for example.  And there are
18052         likely other int/long issues to be addressed.
18053
18054 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
18055
18056         * FileDialog.cs: One more...
18057
18058 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18059
18060         * FileDialog.cs: Next try
18061
18062 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18063
18064         * FileDialog.cs: First part of fix for #77464
18065
18066 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18067
18068         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
18069           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
18070           AcceptButton border drawing.
18071
18072 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
18073
18074         * Form.cs: Moved positioning of form after auto scaling is applied,
18075           otherwise it would possibly use wrong form size.
18076
18077 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
18078
18079         * Control.cs (RecreateHandle): No need to re-create any child
18080           controls, the child windows will get destroyed automatically by
18081           the windowing system or driver, and re-created when the handle
18082           is being accessed the first time. Fixes #77456
18083         * Form.cs: No longer setting the form to closing if the handle is 
18084           being recreated. This seems like the right thing to do, don't
18085           have a bug or testcase for this, though.
18086
18087 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18088
18089         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
18090           controls to avoid unwanted side effects
18091
18092 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
18093
18094         * Control.cs: 
18095           - ScaleCore needs to scale the bounds, not the ClientSize of the 
18096             control. Fixes #77416.
18097           - DefaultSize is 0,0 for control
18098         * TextBoxBase.cs: 
18099           - DefaultSize is 100, 20
18100           - SetBoundsCore: Now enforcing the height, no matter if the provided
18101             height is more or less than the preferred one, as long as AutoSize
18102             is on
18103         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
18104
18105 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18106
18107         * Control.cs:
18108           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
18109             call unless both performLayout is true *and* we have a pending
18110             layout change
18111           - ResumeLayout: MS does not completely nest Suspend and Resume,
18112             they bottom out at 0, fixed our code to match that.
18113           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
18114             SetBoundsCore, we were updating even when we shouldn't. This fixes
18115             swf-anchors mis-anchoring when resizing the app fast and lots.
18116           - UpdateDistances: Now only setting the left and top distance if 
18117             we have a parent and are not suspended, this is based on
18118             a suggestion by Don Edvaldson in bug #77355.
18119           - OnVisibleChanged: Fixed logic when to create the control. We may
18120             not create the control if we have no parent or if it's not visible;
18121             switched to using Visible property instead of is_visible field 
18122             since the property also considers parent states. This fixes a bug
18123             when starting Paint.Net
18124
18125 2006-02-02  Jackson Harper  <jackson@ximian.com>
18126
18127         * Form.cs: If the forms handle hasn't been created yet don't call
18128         into xplatui to make it top most, just set the topmost flag on the
18129         form in CreateParams
18130         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
18131
18132 2006-02-01  Jackson Harper  <jackson@ximian.com>
18133
18134         * ScrollableControl.cs: Refactored the Recalculate method a
18135         little, this wasn't handling all the variants of bottom and right
18136         bars needed to be added and added/removed based on their
18137         counterparts being added/removed (which changes the drawable
18138         size). Also we special case client widths and heights of 0 and
18139         don't add the scrollbar for those.
18140
18141 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
18142
18143         * XplatUIX11.cs: 
18144           - Added method to get AbsoluteGeometry(); currently unused, but might
18145             be used in the future, if we try again to figure out toplevel
18146             coordinates with some more crappy window managers
18147           - Added FrameExtents() method to retrieve the WM set decoration size
18148           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
18149             to deal with at least KDE, FVWM and metacity (Fixes #77092)
18150         * Hwnd.cs: 
18151           - Added whacky_wm tracking var for metacity
18152           - Added logic to have default menu height if the actual menu height
18153             has not yet been calculated (part of fix for #77426)
18154         * Form.cs: Keep track whether client size has been set and re-set 
18155           it if a menu is added/removed afterwards (Fixes #77426)
18156
18157 2006-01-31  Jackson Harper  <jackson@ximian.com>
18158
18159         * Control.cs: When a new Site is set on the component attempt to
18160         pull the AmbientProperties from it.
18161
18162 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
18163
18164         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
18165           in the background of the owning form. Fixes #77332
18166
18167 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
18168
18169         * MimeIcon.cs: Fix for #77409
18170
18171 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
18172
18173         * XplatUIX11GTK.cs: Initial import
18174
18175 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
18176
18177         * FixedSizeTextBox: fixes class signature
18178
18179 2006-01-30  Jackson Harper  <jackson@ximian.com>
18180
18181         * FixedSizeTextBox.cs: New internal class that represents a
18182         textBox that will not be scaled.
18183         * TreeView.cs:
18184         * ComboBox.cs:
18185         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
18186         standard TextBox.
18187                 
18188 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
18189
18190         * XplatUIX11.cs: Retrieve default screen number instead of
18191           assuming 0. Attempted fix for #77318
18192
18193 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
18194
18195         * XplatUIWin32.cs: 
18196           - GetWindowPos: When a window is parented by FosterParent, use 
18197             the desktop instead of FosterParent as the base to get coordinates
18198           - CreateWindow: Don't make FosterParent the parent window for Popups
18199             if we don't want a taskbar entry, Popups automatically don't get one
18200         * Hwnd.cs: Need to call remove to actually remove the key from the
18201           hash table
18202
18203 2006-01-30  Mike Kestner  <mkestner@novell.com>
18204
18205         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
18206
18207 2006-01-30  Jackson Harper  <jackson@ximian.com>
18208
18209         * TreeView.cs:
18210         * TreeNode.cs: Raise events no matter how the treenode is
18211         checked. Patch by Don Edvalson.
18212
18213 2006-01-30  Jackson Harper  <jackson@ximian.com>
18214
18215         * TreeNode.cs: Signature fix.
18216
18217 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
18218
18219         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
18220
18221 2006-01-20  Mike Kestner  <mkestner@novell.com>
18222
18223         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
18224         event forwarding when menus are active.
18225         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
18226         Most of the patch is pdb's with a little rework.
18227
18228 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18229
18230         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
18231           Removed GetMenuDC and ReleaseMenuDC methods; replaced
18232           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
18233         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
18234         * InternalWindowManager.cs: Added use of PaintEventStart/End to
18235           handling of WM_NCPAINT message, now passing the PaintEventArgs to
18236           the PaintWindowDecorations method
18237         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
18238         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
18239         * MenuAPI.cs: Made tracker window invisible
18240         * XplatUIWin32.cs:
18241           - Removed GetMenuDC and ReleaseMenuDC methods
18242           - Implemented the client=false path for PaintEventStart and
18243             PaintEventEnd
18244
18245 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18246
18247         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
18248         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
18249           styles
18250         * Form.cs: 
18251           - MaximizeBox, MinimizeBox: Recreate the handle when setting
18252             the style
18253           - CreateParams: Reworked the styles to match MS look'n'feel,
18254             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
18255             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
18256
18257 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18258
18259         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
18260           window is not mapped, since otherwise every form that's being 
18261           created is considered minimized, which is wrong.
18262         * Form.cs: Catching the exception and returning our internal value
18263           instead
18264
18265 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18266
18267         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
18268           SetWindowMinMax() to have means to tell the driver about the minimum,
18269           maximum and maximized state window sizes. (Part of the fix for #76485)
18270         * Form.cs:
18271           - Implemented tracking of minimum and maximum window size, now calling
18272             new SetWindowMinMax() driver method to tell the driver (Part of the
18273             fix for #76485)
18274           - Finished handling of WM_GETMINMAXINFO method, now setting all values
18275             (Completes fix for #76485)
18276           - Calling new SetWindowMinMax driver method when the handle for a 
18277             form is created, to make sure the driver knows about it even if
18278             the values have been set before the window was created
18279           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
18280             to avoid messing up our anchoring calculations (partial fix
18281             for #77355)
18282         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
18283         * XplatUIX11.cs:
18284           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
18285           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
18286             (and presumably other freedesktop.org compliant WMs). Left the
18287             assumption unmapped=minimized, needed for SetVisible to work.
18288           - Now setting the window state when creating windows
18289           - Fixed SetVisible to consider/set the window state when mapping
18290             a Form. We cannot set the state before it's mapped, and we cannot
18291             use Form.WindowState once it's mapped (since it would ask the
18292             driver and get 'normal'. Therefore, we grab the state before
18293             mapping, map, and then set state.
18294           - Implmemented SetWindowMinMax method; Metacity does not seem to
18295             honor the ZoomHints, though.
18296         * XplatUIWin32.cs:
18297           - Removed MINMAXINFO (moved to XplatUIStructs)
18298           - Added SetWindowMinMax stub (on Win32 the only way to set that
18299             information is in response to the WM_GETMINMAXINFO message, which
18300             is handled in Form.cs)
18301           - Added logic to SetVisible to set the proper window state when a 
18302             form is made visible (fixes #75720)
18303
18304 2006-01-26  Jackson Harper  <jackson@ximian.com>
18305
18306         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
18307         same way we handle them with Invoke.
18308
18309 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
18310
18311         * Form.cs:
18312           - Added tracking of window state so CreateParams can return
18313             the appropriate style
18314           - Moved setting of WS_CAPTION style in CreateParams to allow
18315             styles without caption
18316         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
18317           control if the TextBox property is accessed. Fixes #77345
18318         * Control.cs:
18319           - get_Created: now uses is_disposed and is_created to determine
18320             return value (suggested by Jackson)
18321           - CreateHandle: No longer exits if the handle is being recreated
18322           - RecreateHandle: If the handle is not yet created call the 
18323             appropriate method to create either control or handle. If the
18324             control is already created CreateHandle will simply exit instead
18325             of just creating the handle
18326         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
18327           now SendMessage WM_DESTROY directly to the control when DestroyWindow
18328           is called.
18329         * XplatUIX11.cs: 
18330           - When DestroyWindow is called, instead of waiting for the 
18331             DestroyNotification from X11, we directly post it to the WndProc
18332             and immediately dispose the hwnd object.
18333             Same applies to DestroyChildWindows, and this obsoletes the
18334             expose_pending tracking. Contrary to Win32 behaviour we destroy our
18335             child windows before our own, to avoid X11 errors.
18336           - Removed the direct sending of WM_PAINT on UpdateWindow
18337         * XplatUIWin32.cs:
18338           - Reworked DoEvents and GetMessage to allow access to internal queue
18339             even when trying non-blocking access to the queue.  Fixes #77335. 
18340             Based on a patch suggestion by Don Edvalson. The new private
18341             GetMessage can now also be used as a backend for a PeekMessage
18342             frontend version.
18343         * XplatUI.cs: Improved debug output for CreateWindow
18344
18345 2006-01-25  Jackson Harper  <jackson@ximian.com>
18346
18347         * Help.cs: Allow param to be null. Patch by Don Edvalson.
18348
18349 2006-01-24  Jackson Harper  <jackson@ximian.com>
18350
18351         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
18352         when we have a MaxDropItems lower then the selected index.
18353
18354 2006-01-24  Jackson Harper  <jackson@ximian.com>
18355
18356         * Control.cs: Don't allow selection of non visible controls, allow
18357         selection of controls without parents.
18358
18359 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18360
18361         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
18362         * DataGridDrawingLogic.cs: Add editing row only when is necessary
18363
18364 2006-01-23  Jackson Harper  <jackson@ximian.com>
18365
18366         * UpDownBase.cs: Make the textbox handle all the selection and
18367         tabbing. This fixes tabing to updown controls.
18368
18369 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18370
18371         * TextBoxBase.cs: fixes exception thown the object was null
18372
18373 2006-01-23  Jackson Harper  <jackson@ximian.com>
18374
18375         * ButtonBase.cs: Just use the base CreateParams. They set
18376         visibility and enabled correctly.
18377         * ComboBox.cs:
18378         * TrackBar.cs:
18379         * MonthCalendar.cs: Lets let the base set as much of the
18380         createparams as possible so we don't have duplicate code all over
18381         the place.
18382
18383 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
18384
18385         * ThemeGtk.cs: Added TrackBar and some experimental code to
18386           get double buffering back
18387
18388 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
18389
18390         * DataGrid.cs: Allows row number set internally higher than the last
18391         when creating a new row. Restores the editing functionality.
18392
18393 2006-01-20  Mike Kestner  <mkestner@novell.com>
18394
18395         * MimeIcon.cs: delay Image creation until the icons are accessed
18396         instead of creating 190 scaled images on GnomeHandler startup.
18397
18398 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
18399
18400         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
18401           first call base before processing the event. Fixes #77279
18402
18403 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
18404
18405         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
18406           that the stride for the GDI bitmap would match the stride of
18407           a DIB or a Cursor.
18408
18409 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
18410
18411         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
18412
18413 2006-01-19  Jackson Harper  <jackson@ximian.com>
18414
18415         * ComboBox.cs: Hookup the text controls keydown event so we get
18416         those when the text control has the focus.
18417
18418 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18419
18420         * Label.cs: Now using the base events instead of defining new ones;
18421           this allows us to just call the base properties without having to
18422           duplicate all base property logic 
18423
18424 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18425
18426         * Label.cs: A label by default is not a tabstop (Fixes one of our
18427           failing nunit tests)
18428
18429 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18430
18431         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
18432         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
18433
18434 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18435
18436         * Cursor.cs: Reimplemented creating cursor bitmaps without using
18437           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
18438           This fixes #77218
18439         * XplatUIWin32.cs: 
18440           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
18441             constructor creates images that can't be saved. Part of the fix
18442             for #76103
18443           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
18444           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
18445             bug fix for handling window state in forms properly)
18446
18447 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18448
18449         * ThemeGtk.cs: Simplify ScrollBar drawing
18450
18451 2006-01-18  Jackson Harper  <jackson@ximian.com>
18452
18453         * Splitter.cs: Set the default dock style for the splitter control
18454         in the constructor.
18455
18456 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18457
18458         * ThemeGtk.cs: Corrected StateType and ShadowType for
18459           gtk_paint_box
18460
18461 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18462
18463         * Control.cs: Make use of Theme.DoubleBufferingSupported
18464         * ThemeGtk.cs:
18465           - Added drawing for flat style buttons
18466           - Added ScrollBar drawing
18467
18468 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18469
18470         * ThemeClearlooks.cs: Removed some unneeded code.
18471         * ThemeGtk.cs: First part of ThemeGtk enhancements.
18472
18473 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18474
18475         * LinkLabel.cs: We need to update the hover drawing when
18476           leaving the control as well.
18477
18478 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
18479
18480         * DataGrid.cs: Clicking on non empty areas in the columns
18481            area was giving an exception
18482
18483 2006-01-17  Jackson Harper  <jackson@ximian.com>
18484
18485         * ThemeWin32Classic.cs:
18486         * ListView.cs: Do not draw/clip the headers when the header style
18487         is None.
18488
18489 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18490
18491         * DataGrid.cs: Fixes 77260
18492         
18493 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18494
18495         * DataGrid.cs: Clicking on a column on a empty grid was giving
18496           an exception
18497
18498 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18499
18500         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
18501           or any keypress will crash the grid.
18502
18503 2006-01-17  Mike Kestner  <mkestner@novell.com>
18504
18505         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
18506         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
18507         invisible/previously-visible items.
18508         [Fixes #76909]
18509
18510 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
18511
18512         * ThemeClearlooks.cs:
18513         - Added CL_Draw_Button method; now other theme controls that are 
18514           not derived from button or do not have a button can draw buttons
18515           too
18516         - Updated ComboBox drawing
18517         - Beautified RadioButton drawing
18518         - Corrected drawing of bottom and left tabs
18519         - Beautified DateTimePicker and MonthCalendar
18520         - Added CPDrawButton and CPDrawRadioButton
18521
18522 2006-01-16  Jackson Harper  <jackson@ximian.com>
18523
18524         * ComboBox.cs: Set the initial value of the scrollbar to the
18525         current index. Reduce the numbers of refreshs and IndexOfs called.
18526
18527 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
18528
18529         * FileDialog.cs: When the file listview is focused hitting the
18530           backspace key moves the fileview to the parent directory
18531
18532 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18533
18534         * Form.cs: 
18535           - Added RecreateHandle call when changing taskbar visibility to 
18536             trigger reparenting in Win32 driver (Fixes #75719)
18537           - If a window has minimize or maximize buttons, it cannot have
18538             a help button
18539         * XplatUIWin32.cs:
18540           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
18541             the toplevel form with FosterParent (A toolwindow not on the
18542             taskbar) (Fixes #75719)
18543           - Made FosterParent a toolwindow
18544
18545 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18546
18547         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
18548
18549 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18550
18551         * ToolTip.cs: If SetToolTip is called from a control and the mouse
18552           is currently over that control, make sure that tooltip_window.Text
18553           gets updated
18554
18555 2006-01-13  Mike Kestner  <mkestner@novell.com>
18556
18557         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
18558
18559 2006-01-13  Jackson Harper  <jackson@ximian.com>
18560
18561         * TreeView.cs: On MS GetNodeAt never actually factors in the X
18562         value passed.  Also redraw the selected node when we recieve
18563         focus, so tabbing between trees works correctly.
18564
18565 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18566
18567         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
18568           ~/.gconf/%gconf-tree.xml, so use
18569           .gconf/desktop/gnome/interface/%gconf.xml
18570
18571 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18572
18573         * TextControl.cs: Draw text in gray if control is disabled
18574
18575 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18576
18577         * TreeView.cs: Draw the focus rectangle outside the highlight, to
18578           make sure it's always visible. Fixes #76680.
18579
18580 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18581
18582         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
18583
18584 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
18585
18586         * PageSetupDialog.cs: Added.
18587         * PrintDialog.cs: Attributes.
18588         * PrintPreviewControl.cs: Updates.
18589         * PrintPreviewDialog.cs: Updates.
18590         
18591 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18592
18593         * Control.cs: Undid my selection check fix, since it's not needed
18594         * TextBoxBase.cs:
18595           - Now considering the presence of hscroll/vscroll when sizing
18596             vscroll/hscroll respectively. Fixed bug #77077
18597           - Added Left/Up/Down/Right to IsInputKey list to prevent
18598             ContainerControl from stealing them. This fixes what I broke
18599             with my last checkin.
18600
18601 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
18602
18603         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
18604           I finally understand how the property can be set without a setter :-)
18605
18606 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18607
18608         * Application.cs:
18609           - Switched RunLoop to use static Message.Create to create a 
18610             Message object
18611           - Added PreProcessMessage call in runloop for keyboard events; this
18612             is part of the fix for #77219, I overlooked this originally in the
18613             MSDN doc for PreProcessMessage
18614         * Control.cs:
18615           - Removed call to PreProcessMessage from handling of keyboard 
18616             messages; it's supposed to be done in the message pump
18617           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
18618             per MSDN documentation.
18619           - IsInputChar: All chars are input chars by default; removed the 
18620             parent calling chain, MS does not document that
18621           - PreProcessMessage: If IsInputChar is true, we want to return false
18622             to allow dispatching of the message
18623           - When selecting the next control, now also check that we're not
18624             selecting ourselves again and therefore return a false positive.
18625         * TextBoxBase.cs:
18626           - Tried to match return values for IsInputKey and ProcessDialogKey
18627             to what MS returns; moved processing of our special keys outside
18628             ProcessDialogKey since MS does not seem to return true on those.
18629           - Moved code that previously was in ProcessDialogKey into new private
18630             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
18631           - Reworked handling of WM_CHAR to not have to duplicate code from
18632             Control.cs anymore, instead we simply call down to base.
18633            
18634 2006-01-12  Jackson Harper  <jackson@ximian.com>
18635
18636         * ComboBox.cs: We always need to refresh the text area when
18637         EndUpdate is called. Fixes the combobox in the file dialog.
18638         * Control.cs: Don't create the creator_thread until the controls
18639         handle is created.  Also in InvokeRequired we check if the
18640         creator_thread is null. This gives the effect of InvokeRequired
18641         returning true if the controls handle is not created yet, and
18642         matches MS.
18643
18644 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18645
18646         * XplatUI.cs:
18647           - Added StartLoop() driver method. This is used to allow drivers to
18648             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
18649             loop for a particular thread
18650           - Added EndLoop() driver method. This is called once the message
18651             pump for the thread is shut down
18652           - Added SupportsTransparency method to allow the driver to indicate
18653             opacity support for windows
18654         * Form.cs:
18655           - Removed TODO attribute, completed AllowTransparency property
18656           - Added documented logic to Opacity
18657         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
18658           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
18659           versions of CompatibleTextRendering
18660         * X11Structs.cs: Added opacity atom to our atom enumeration
18661         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
18662           of a form might be set before it's reparented by the WM, and we need
18663           the opacity value without calling up to Form)
18664         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
18665           SupportsTransparency() driver methods
18666         * Application.cs: Now calling StartLoop and EndLoop driver methods
18667         * XplatUIX11.cs:
18668           - Added opacity atom registration
18669           - Added StartLoop()/EndLoop() methods. They're empty right now but
18670             will need to get implemented when we switch to a per-thread queue
18671           - Implemented SupportsTransparency() method
18672           - Implemented SetWindowTransparency() method
18673           - Added support for setting the opacity value when a window is
18674             reparented (since the opacity needs to be set on the WM frame)
18675         * XplatUIOSX.cs, XplatUIWin32.cs:
18676           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
18677
18678 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18679
18680         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
18681
18682 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18683
18684         * FileDialog.cs: Added ToolTip for MWFFileView
18685         * MimeIcon.cs: Rewrote GnomeHandler.
18686           - Get currently used gnome icon theme from
18687             ($HOME)/.gconf/%gconf-tree.xml
18688           - Make use of inherited icon themes
18689           - Support SVG icon themes like Tango via librsvg
18690
18691 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18692
18693         Revert's Jackson's revert which broke 2.0 builds.   Fix both
18694         builds. 
18695         
18696         * Application.cs: Move the use_compatible_text_rendering outside
18697         the NET_2_0 define.  If we ever need to use the
18698         use_compatible_text_rendering on the individual controls they will
18699         access the variable from the common shared code paths.
18700
18701 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18702
18703         * XplatUI.cs:
18704           - Added more granular debug options
18705           - Added method to print both window text and id
18706           - Switched debug output to use new Window() debug method
18707           - Added IsEnabled() driver method
18708           - Added EnableWindow() driver method
18709         * Form.cs:
18710           - Removed end_modal; no longer needed, new loop handles termination
18711             via 'closing' variable
18712           - If form is modal, setting DialogResult will now initiate loop
18713             termination via 'closing' variable
18714           - Added support for is_enabled/WS_DISABLED to CreateParams
18715           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
18716             does all the work
18717           - Removed code that's now in RunLoop from ShowDialog()
18718           - Added various documented sanity checks to ShowDialog()
18719           - Added handling of WM_DESTROY message; we set 'closing' on getting
18720             the message to indicate the message pump to terminate
18721           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
18722             send by the Application.ExitThread method. (We send the message
18723             to destroy the window after all other events have been
18724             processed through the queue, instead of destroying the handle 
18725             directly)
18726           - Moved code from Close() method to WM_CLOSE handler; added logic
18727             to only send close-related events if the form is not displayed
18728             modal
18729         * Splitter.cs (..ctor): Fixed typo in resource name
18730         * Control.cs:
18731           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
18732             brush now
18733           - set_Cursor: Now only setting calling into XplatUI if the handle for
18734             the control is already created; this avoids implict handle creation
18735             or crashes if it's not created
18736           - set_Enabled: Now setting the enabled state via the new driver method
18737             instead of just tracking it
18738           - CreateParams: Added logic to set WS_DISABLED based on enabled state
18739           - CreateControl: Reordered event firing and method calls to more
18740             closely fire events in the order MS does. Now setting the
18741             enabled state in the driver when creating the control.
18742           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
18743             match MS order
18744         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
18745           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
18746         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
18747         * Hwnd.cs:
18748           - Added tracking of window enabled state (get_Enabled/set_Enabled)
18749           - Added EnabledHwnd property to easily allow a driver to find the
18750             handle of the first enabled window in the parent chain (this is
18751             used by drivers to pass up input events of disabled windows)
18752         * XplatUIDriver.cs: Added IsEnabled() method
18753         * Application.cs:
18754           - Removed crude and obsolete exiting tracking variable
18755           - Removed internal ModalRun(); replaced by RunLoop()
18756           - Implemented private CloseForms() method to allow closing all 
18757             windows owned by a particular (or all) threads
18758           - Exit() now properly closes all windows without forcing the message
18759             pump to quit
18760           - Removed obsolete InternalExit() method
18761           - Changed Run() methods to use new RunLoop() message pump
18762           - Implemented new RunLoop() method for both modal and non-modal forms
18763         * CommonDialog.cs:
18764           - get_CreateParams: Added setting of WS_DISABLED
18765           - Simplified ShowDialog(); now all the work is done in RunLoop(),
18766             invoked via Form.ShowDialog()
18767         * NativeWindow.cs: We don't remove the window from the collection when
18768           the handle is destroyed; there might still be messages for it in the
18769           queue (mainly the resulting WM_DESTROY); instead it will be removed
18770           when Control calls InvalidateHandle in the WM_DESTROY handler
18771         * XplatUIX11.cs:
18772           - CreateWindow: Added logic to handle the WS_DISABLED window style
18773           - EnableWindow: Implemented based on Hwnd.Enabled
18774           - GetMessage: Reset PostQuitState so the method can be called again
18775           - Implemented support for disabled windows (passing messages to the
18776             first enabled parent) in handling all input messages
18777           - Added optimizations for handling Expose events
18778           - Implemeted new driver method IsEnabled()
18779           - Now always resetting paint pending tracking vars when we start paint
18780           - Re-implemented UpdateWindow via just sending a WM_PAINT message
18781         * XplatUIOSX.cs: Added IsEnabled method stub
18782         * XplatUIWin32.cs: Implemented new IsEnabled() method
18783
18784 2006-01-11  Jackson Harper  <jackson@ximian.com>
18785
18786         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18787         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
18788         variables a little.
18789         * ColorDialog.cs: Clear out the old form before adding the new
18790         panel.  
18791
18792 2006-01-11  Jackson Harper  <jackson@ximian.com>
18793
18794         * X11Dnd.cs: Make sure to add all the text formats when adding
18795         strings to the data object.
18796         * TreeNodeCollection.cs: When adding to a sorted tree we need to
18797         do some redrawing too.  Also change the UpdateNode to an
18798         UpdateBelow so the newly added node gets painted.
18799         
18800 2006-01-11  Miguel de Icaza  <miguel@novell.com>
18801
18802         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18803         LinkLabel.cs, PropertyGrid.cs: Implement the
18804         UseCompatibleTextRendering property for 2.x
18805
18806         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
18807
18808 2006-01-11  Jackson Harper  <jackson@ximian.com>
18809
18810         * TreeView.cs: Use the property for setting the selected node so
18811         the correct events get raised.
18812         * TreeNode.cs: Update the tree when the fore/back colours of a
18813         node are set.
18814
18815 2006-01-10  Jackson Harper  <jackson@ximian.com>
18816
18817         * TreeView.cs: Allow setting SelectedNode to null.
18818
18819 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18820
18821         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
18822
18823 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18824
18825         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
18826
18827 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18828
18829         * PrintDialog.cs: Added attributes and set default property values.
18830
18831 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18832
18833         * PrintControllerWithStatusDialog.cs: 
18834         Added PrintControllerWithStatusDialog.
18835
18836 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18837
18838         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
18839         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
18840
18841 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18842
18843         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
18844
18845 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18846
18847         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
18848         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
18849
18850 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
18851
18852         * MimeIcon.cs: Added internal class SVGUtil.
18853
18854 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
18855
18856         * FileDialog.cs: Don't crash if there are two files with the
18857           same name but different locations.
18858
18859 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
18860
18861         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
18862         dates across multiple month grids. Used to not highlight entire 
18863         month, but does now.
18864         
18865 2006-01-06  Jackson Harper  <jackson@ximian.com>
18866
18867         * MonthCalendar.cs: Removed DoEvents call to prevent a running
18868         message loop. Change timer intervals to numbers that seem more
18869         natural.
18870
18871 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
18872
18873         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
18874           object for location info since screen object is now implemented.
18875
18876 2006-01-05  Jackson Harper  <jackson@ximian.com>
18877
18878         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
18879         * AsyncMethodResult.cs: We no longer use a WeakReference for the
18880         AsyncMethodResult, this is because we ALWAYS want the
18881         ManualResetEvent to get set.
18882         * Control.cs: When disposing use an async invoke to call shutdown
18883         code, so that thigns don't block on the finalizer thread.  Also
18884         check if we even have a message loop before trying to send
18885         messages, if we don't then don't bother sending messages.
18886         - No more weak references for async methods
18887         * XplatUIDriver.cs: No more weak references for async methods.
18888
18889 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18890
18891         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
18892           returns two FontFamily with the same name
18893
18894 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
18895
18896         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
18897           drawing disabled text. Instead using the ColorGrayText color
18898
18899 2006-01-04  Jackson Harper  <jackson@ximian.com>
18900
18901         * TreeNode.cs: redraw the node when its image index is changed.
18902
18903 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
18904
18905         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
18906           time I checked there are no others like it.
18907
18908 2006-01-04  Jackson Harper  <jackson@ximian.com>
18909
18910         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
18911         this gives the behavoir I was looking for.
18912         * Control.cs: Special case Invoking EventHandlers, this matches MS
18913         and fixes part of bug #76326.
18914
18915 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18916
18917         * ThemeClearlooks.cs, FileDialog.cs:
18918           - Reflect the latest Theme class changes
18919           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
18920             with DateTime
18921             
18922 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18923
18924         * Theme.cs: Cache UI resource images and resize them if needed
18925
18926 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
18927
18928         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
18929           is called. This fixes the crash in Nexxia when setting the font
18930           attributes in the chat. [However, RTF needs a look-over to make sure
18931           that all SelectionXXX methods handle the special case that selection
18932           is empty and therefore the change must be applied to all text starting
18933           at the cursor/selection start]
18934
18935 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
18936
18937         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
18938           XplatUIOSX.cs: Added SendMessage and PostMessage methods
18939         * X11Keyboard.cs: Switched to new way of calling PostMessage
18940
18941 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
18942
18943         * Theme.cs: Added theme interface for images to allow the theme to
18944           control what images are used for things like FileDialog, MessageBox
18945           icons, etc.
18946         * MessageBox.cs: Now uses the new Theme icon/image interfaces
18947
18948 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
18949
18950         * FileDialog.cs:
18951           - Removed some dead code
18952           - Opening a recently used file does work now
18953           - Small UI enhancements
18954           - Refactoring
18955
18956 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
18957
18958         * FileDialog.cs: Forgot too add __MonoCS__
18959
18960 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
18961
18962         * FileDialog.cs: We are able to read recently used files now let's
18963           go on and write them.
18964
18965 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
18966
18967         * FileDialog.cs: Breathe some life into "last open"/"recently used"
18968           button
18969         * MimeIcon.cs: Do a check for the top level media type also
18970
18971 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
18972
18973         * ThemeClearlooks.cs:
18974           - Added CPDrawStringDisabled
18975           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
18976             some chars if the text doesn't fit into text_rect
18977           - DrawListViewItem: If View = View.LargeIcon center the image;
18978             rewrote the drawing of ListViewItem.Text if View = 
18979             View.LargeIcon
18980
18981 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
18982
18983         * MimeIcon.cs: Use default KDE icon theme if there is no
18984           "48x48" directory for the current icon theme, fixes #77114
18985         * Mime.cs: Disable not working and actually not used code. 
18986         * ThemeWin32Classic.cs:
18987           - Replace "new SolidBrush" in GetControlBackBrush and
18988             GetControlForeBrush with ResPool.GetSolidBrush
18989           - Changed DrawListViewItem from private to protected virtual
18990         * FileDialog.cs:
18991           - Added form.MaximizeBox = true
18992           - Don't throw an exception if there is a broken symbolic link
18993
18994 2005-12-23  Jackson Harper  <jackson@ximian.com>
18995
18996         * TabControl.cs: Give the panels focus, keyboard navigation is
18997         fixed so this works correctly now.
18998         - We need these key events also.
18999         * ToolBar.cs: Remove some of the poor mans double buffering.
19000         
19001 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
19002
19003         * ComboBox.cs: The internal TextBox now returns the focus.
19004
19005 2005-12-23  Jackson Harper  <jackson@ximian.com>
19006
19007         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
19008
19009 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19010
19011         * Control.cs: Removed debug code
19012         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
19013           implicit children
19014
19015 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
19016
19017         * Control.cs: When creating the control, update the Z-order after
19018           all it's children are created, too. (Fixes nexxia not showing
19019           picturebox bug)
19020
19021 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19022
19023         * Control.cs: Do not update the anchoring distances if layout is
19024           suspended, instead do it once layout is resumed
19025
19026 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
19027
19028         * Control.cs: 
19029           - After many hours of debugging, for both Jackson and
19030             myself, it turns out that it helps to set the parent of a control
19031             if you want to actually see it onscreen. In the spirit of that
19032             discovery, we're now setting the parent of the control and
19033             it's children when the control's handle is created. This fix
19034             will make Lutz Roeder's Reflector run happily. 
19035           - now just creating the handle instead of the whole control when
19036             getting a graphics context for the control.
19037
19038 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19039
19040         * ScrollableControl.cs: When calculating the canvas, don't consider
19041           the scrollbar widths. Instead, predict if horizontal scrollbar
19042           will affect canvas when deciding on vertical display and vice versa.
19043
19044 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19045
19046         * RichTextBox.cs: Set default RTF font for documents that don't
19047           have a font table (Fixes #77076)
19048
19049 2005-12-22  Jackson Harper  <jackson@ximian.com>
19050
19051         * TextBoxBase.cs: It's difficult to do, but you can have an empty
19052         clipboard. This prevents a NullRef in that case.
19053         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
19054         clipboard. PRIMARY is for the currently selected text only. (We
19055         should implement PRIMARY at some point.
19056
19057 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19058
19059         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
19060           a Unicode function with a structure that was defined in Ansi way.
19061           This fixes #76942.
19062
19063 2005-12-21  Jackson Harper  <jackson@ximian.com>
19064
19065         * StatusBar.cs: Statusbar handles its fore/back colours on it's
19066         on. Because thats how it rolls. (and this avoids it using ambient
19067         colours).
19068         * ThemeWin32Classic.cs: Use the proper back color for filling.
19069         * Menu.cs: Use the system menu bar color for drawing menu
19070         bars. Using the window back color will bring ambient colours into
19071         the picture.
19072
19073 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
19074
19075         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
19076           Bitmaps were created and not disposed.
19077
19078 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19079
19080         * Control.cs (CreateControl): Don't do anything if the control is
19081           already created, otherwise we'd fire the OnCreated event more than
19082           once
19083
19084 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19085
19086         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
19087           will always match. Instead return -1. Fixes #76464.
19088
19089 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19090
19091         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
19092           neither the beginning nor the end of the line (Fixes bug #76479)
19093
19094 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19095
19096         * Control.cs:
19097           - ControlNativeWindow.ControlFromHandle(): Now handling situation
19098             where handle is invalid
19099           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
19100             instead of slower linear search
19101         * NativeWindow.cs: Don't remove the window from the hashtable until
19102           after the driver has destroyed it (since the driver might use
19103           Control.FromHandle to lookup the control object
19104         * Hwnd.cs: Added DestroyPending property to track if a window is 
19105           already destroyed as far as the driver is concerned and only hasn't
19106           yet notified the control
19107         * XplatUIX11.cs:
19108           - Activate(): Check if the window is still valid before using the 
19109             handle
19110           - Implemented DestroyChildWindow() method to mark child windows as
19111             destroyed when a window is destroyed. This prevents situations 
19112             where we might call an X method based on queued events for a
19113             window that already has been destroyed but we haven't yet pulled
19114             the destroy method from the queue.
19115           - Added a call to the new DestroyChildWindow() method to the drivers
19116             DestroyWindow code. Also now marking the destroyed window itself
19117             as pending
19118
19119 2005-12-20  Jackson Harper  <jackson@ximian.com>
19120
19121         * StatusBar.cs:
19122         * StatusBarPanel.cs: Don't calculate panel sizes on draw
19123         anymore. Just do them when needed, also track the rects of panels
19124         so that we can optimize refreshing more in the future.
19125
19126 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
19127
19128         * ColorDialog.cs: Fixed focus drawing in small color controls
19129
19130 2005-12-19  Jackson Harper  <jackson@ximian.com>
19131
19132         * InternalWindowManager.cs:
19133         * MdiWindowManager.cs: Cleanup some coordinate system changes so
19134         moving windows works properly.
19135
19136 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
19137
19138         * Control.cs: 
19139           - Removed call to InitLayout() from SetBoundsCore(); doc says
19140             it's only called when a control is added to a container
19141           - Split InitLayout logic, moved to separate UpdateDistances() method
19142             since we need to perform those calculations more often than just
19143             when adding the control to a container. (Needed to fix #77022)
19144           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
19145           - Reduced the OnBindingContextChanged events count, don't send them
19146             unless the control is created, we still aren't totally matching
19147             MS, but I can't quite figure out some of their rules
19148
19149 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19150
19151         * ThemeClearlooks.cs: Corrected distance between ProgressBar
19152           stripes
19153
19154 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19155
19156         * ThemeClearlooks.cs:
19157           - Updated ProgressBar drawing
19158           - Corrected drawing of ScrollBars and scroll buttons
19159           - Some temporary fixes for minor pixel artefacts
19160
19161 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
19162
19163         * Control.cs:
19164           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
19165             cause events to be sent in the same order as MS does.
19166           - Added ChangeParent() method to trigger various OnXXXChanged events
19167             that need to be fired when a parent changes (This is a reworking
19168             of the patch from r54254, with the X11 errors fixed)
19169           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
19170             since on MS we get OnLayoutChanged events when calling Clear()
19171           - Changed Enabled property to consider parent state as well, if a
19172             parent is not enabled, the control will not be either
19173           - Changed Parent property to simply call Controls.Add() since that
19174             now does all the work required, this way we avoid code duplication
19175           - Threw in a few OnBindingsContextChanged calls to try and match
19176             when MS sends them. We seem to send a few too many, though.
19177           - Added call to CreateControl when adding the control to a parent.
19178             We were never calling CreateControl. Still needs some work, in
19179             some places we treat HandleCreated and ControlCreated as equal, 
19180             which is wrong
19181           - Removed obsolete commented out code from UpdateZOrder()
19182
19183 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19184
19185         * ThemeClearlooks.cs: Updated TrackBar drawing.
19186
19187 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
19188
19189         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
19190
19191 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
19192
19193         * FileDialog.cs: Add the Help button and the open readonly
19194           checkbox only if needed
19195
19196 2005-12-16  Jackson Harper  <jackson@ximian.com>
19197
19198         * Control.cs: Make sure we have an active menu before trying to
19199         process commands on it. Prevents menu-less forms from crashing
19200         when Alt is pressed.
19201         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
19202         Dieter Bremes.
19203         * RichTextBox.cs: Expand statement to help out gmcs and fix the
19204         2.0 build.
19205
19206 2005-12-16  Jackson Harper  <jackson@ximian.com>
19207
19208         * InternalWindowManager.cs: Don't translate tool windows screen
19209         coordinates. This fixes windows 'bouncing' around when being moved.
19210
19211 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19212
19213         * TextBoxBase.cs:
19214           - MaxLength now treats 2^31-1 equal to unlimited length (this is
19215             not quite MS compatible, MS uses that number only for single line
19216             and 2^32-1 for multi-line, but I figure it won't hurt keeping
19217             the limit at 2GB)
19218           - Now enforcing the MaxLength limit when entering characters
19219           - Added argument to internal Paste() method to track if it's called
19220             from programatically or via keyboard, since keyboard driven pastes
19221             need to enforce max-length
19222           - Added logic to Paste to only paste as many chars as MaxLength 
19223             allows
19224         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
19225         * TextControl.cs:
19226           - Added Length property to return number of characters in document
19227           - Added private CharCount property which only tracks actual chars
19228             in the document (no linefeeds) and fires event when CharCount
19229             changes
19230           - Added tracking of character count to all methods that alter it
19231           - Added LengthChanged event to allow applications to subscribe
19232             to any changes to the document
19233
19234 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19235
19236         * TextBox.cs: 
19237           - Removed local password_char field (moved to TextBoxBase)
19238           - Now setting the document's password var when password is
19239             set
19240         * TextBoxBase.cs:
19241           - Added password_char field (needed here so MultiLine can
19242             access it)
19243           - Added logic to MultiLine property setter to set the document's
19244             variable when password display is allowed
19245           - Removed debug code and made some debug code conditional
19246         * TextControl.cs:
19247           - Added RecalculatePasswordLine() method to handle special password
19248             char only lines
19249           - Added PasswordChar property, also added related tracking vars
19250           - Draw() method now uses local text var for grabbing text to draw,
19251             this var is set to line.text unless we're doing password display,
19252             then it is set to the pre-generated all-password-chars line
19253           - Added calling RecalculatePasswordLine() method for password lines
19254
19255 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19256
19257         * Hwnd.cs: 
19258           - Added Reparented property to allow tracking of Window Manager
19259             reparenting actions (which affect X/Y calculations of toplevel 
19260             windows)
19261           - Made ToString() print window handles in hex
19262         * XplatUIX11.cs:
19263           - AddConfigureNotify(): Now uses reparented state off Hwnd to
19264             determine if X/Y needs offsetting
19265           - AddConfigureNotify(): Fixed offset calculations
19266           - Now adds ReparentNotify messages into the queue
19267           - Now processes ReparentNotify messages and causes a 
19268             WM_WINDOWPOSCHANGED message to be sent upstream if a window
19269             is reparented (as most likely it's X/Y coordinates are changed
19270             due to that)
19271
19272 2005-12-14  Jackson Harper  <jackson@ximian.com>
19273
19274         * XplatUIX11.cs: Tool windows still need to respek focus.
19275
19276 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19277
19278         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
19279           have a working release
19280
19281 2005-12-13  Jackson Harper  <jackson@ximian.com>
19282
19283         * Form.cs: Update styles after setting the border style regardless
19284         of whether or not the window is using a window manager.
19285
19286 2005-12-13  Jackson Harper  <jackson@ximian.com>
19287
19288         * Form.cs: We now hook into an internal window manager instead of just an
19289         MDI subsystem, this is so we can have properly behaving tool windows.
19290         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
19291         * InternalWindowManager.cs: New internal class that acts as a
19292         window manager for tool windows and as a base for mdi windows.
19293         * MdiWindowManager.cs: New class that acts as a window manager for
19294         mdi windows.
19295
19296 2005-12-12  Jackson Harper  <jackson@ximian.com>
19297
19298         * Control.cs: Updates so we match behavoir for for implicit
19299         controls. Fixes explosions in MDI.
19300
19301 2005-12-12  Jackson Harper  <jackson@ximian.com>
19302
19303         * Control.cs: Implement Invalidate (Region).
19304
19305 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
19306
19307         * Control.cs: 
19308           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
19309             the same events as MS does. MS fires events for each property 
19310             except, for unknown reasons, Cursor, when the control is reparented. 
19311             I can't seem to totally match add/remove since MS also fires some 
19312             VisibleChanged events, which makes no sense. Consolidated the
19313             parenting code into a separate method so it can be called from
19314             both Add and Remove. set_Parent no longer needs any special logic
19315             as it calls the parent's add method which implicitly fires
19316             all events
19317           - Removed some obsolete code and debug output
19318           - Enabled state is inherited from parents, if this is enabled
19319
19320 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
19321
19322         * Form.cs: Removed commented out code
19323
19324 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
19325
19326         * Control.cs:
19327           - Added internal version of Invoke, with additional argument 
19328             indicating if we're calling it from a Dispose() handler. That
19329             way we can avoid BeginInvoke throwing an exception if we're
19330             calling for an already destroyed window.
19331           - Added a dispose argument to BeginInvokeInternal, and made the
19332             check if a valid window handle chain exists conditional on
19333             it not being a dispose call
19334           - Removed code in DestroyHandle to destroy our children. Since we
19335             now handle the WM_DESTROY message we will catch all our children
19336             being destroyed.
19337           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
19338         * Form.cs:
19339           - Added a field to track the application context of the form.
19340           - No need to set closing variable as response to WM_CLOSE, instead
19341             we destroy the window. We also call PostQuitMessage if the form
19342             has an application context (which makes it the main app form,
19343             which, when closed terminates the app)
19344         * XplatUI.cs:
19345           - Dropped Exit() method, it's naming was confusing
19346           - Added PostQuitMessage() which causes GetMessage to return false
19347             once the message queue is empty
19348         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
19349           PostQuitMessage()
19350         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
19351           no longer a valid XplatUI method, but left it in since it's used
19352           internally. Added empty PostQuitMessage() method.
19353         * MenuAPI.cs: Replaced call to Exit() with call to
19354           PostQuitMessage, even though this is probably no longer needed.
19355         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
19356         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
19357         * Application.cs:
19358           - Replaced call to XplatUI.Exit() with PostQuitMessage()
19359           - Removed old debug code that would call XplatUI for exception
19360             display, enabled standard exception handling (Still not enabled
19361             though, until NativeWindow's ExternalExceptionHandler define
19362             is removed
19363         * NativeWindow.cs:
19364           - Added internal method to allow control to update NativeWindow
19365             after a window has been destroyed
19366           - Added handling of already destroyed windows when calling i
19367             DestroyWindow
19368           - Added removal of handle from list on ReleaseHandle
19369         * XplatUIX11.cs:
19370           - Dropped GetMessageResult var and related code
19371           - Added PostQuitState to field to track if PostQuitMessage has been
19372             called
19373           - Dropped Exit() method
19374           - Added PostQuitMessage() method
19375           - GetMessage now will return false if PostQuitState is set and no
19376             more messages are in the queue.
19377           - Expose handler will no longer generate WM_PAINT messages if we are
19378             in PostQuitState since it's very likely any windows have already
19379             been destroyed, and since Hwnd won't get updated until we have
19380             processed the DestroyNotify we'd be causing X errors.
19381         
19382 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19383
19384         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
19385           Thanks to Mike for pointing out the err of my ways.
19386
19387 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19388
19389         * Control.cs(PreProcessMessage): Moved menu handling back, but
19390           after all other key handling, to match MS (who handles Menu in
19391           DefWndProc)
19392         * Menu.cs (WndProc): Removed my brainfart
19393
19394 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19395
19396         * Control.cs(PreProcessMessage): Removed special menu handling 
19397         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
19398
19399 2005-12-07  Mike Kestner  <mkestner@novell.com>
19400
19401         * Control.cs : special case SYSKEYUP so that we can adjust keynav
19402         state according in tracker.
19403         * Menu.cs : promote tracker field to base class and provide a tracker
19404         lookup capability.  Add/Remove shortcuts dynamically if the top menu
19405         has a tracker. Unparent items that are removed from the collection.
19406         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
19407         * Theme*.cs: add always_show_hotkeys field to support configurability
19408         of mnemonic display.  win32 doesn't show mnemonics until Alt is
19409         pressed.
19410
19411 2005-12-07  Jackson Harper  <jackson@ximian.com>
19412
19413         * MdiChildContext.cs: Use Control.ResetCursor.
19414         * Control.cs: ResetCursor needs to set the property so that the
19415         correct XplatUI call gets made.
19416
19417 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19418
19419         * Control.cs: More fixes to make our key events match MS. We
19420           were not setting the modifier state on KeyData, and we were
19421           not generating any events when Alt was pressed with a key
19422           since handling of WM_SYSxxx was missing for the OnKey methods.
19423
19424 2005-12-07  Jackson Harper  <jackson@ximian.com>
19425
19426         * MdiChildContext.cs: reenable the sizing code.
19427         - When the mouse leaves a window reset its cursor.
19428
19429 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19430
19431         * ThemeClearlooks.cs: Reflect latest Hwnd changes
19432
19433 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19434
19435         * Hwnd.cs: Now using the theme 3d bordersize to calculate
19436           widths of Fixed3D borders
19437
19438 2005-12-07  Jackson Harper  <jackson@ximian.com>
19439
19440         * MdiClient.cs: Fix warnings. Earn Mike's love.
19441
19442 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19443
19444         * ThemeClearlooks.cs:
19445           - Adjusted mouse over button color
19446           - Added first parts of CheckBox drawing
19447           - Added correct color for selected text background
19448           - Fixed ComboBox drawing
19449           - Added CPDrawBorder3D and CPDrawBorder
19450
19451 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19452
19453         * XplatUIX11.cs: Added call to XBell for AudibleAlert
19454
19455 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
19456
19457         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19458           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
19459           alert users via sound. We could add an enum arg with different
19460           types of alerts in the future
19461
19462 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19463
19464         * Control.cs: Fix behaviour problems pointed out by Mike
19465
19466 2005-12-05  Mike Kestner  <mkestner@novell.com>
19467
19468         * StatusBarPanel.cs: add Invalidate method and hook it into all the
19469         prop setters.  Calls parent.Refresh for now, but could be maybe be
19470         optimized with an internal method on StatusBar at some point.
19471         [Fixes #76513]
19472
19473 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
19474
19475         * RichTextBox.cs: Implemented get_SelectionColor
19476
19477 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
19478
19479         * ThemeClearlooks.cs:
19480           - Removed dead code
19481           - Draw black button border only if button is Form.AcceptButton
19482           - Draw correct button color for pressed RadioButton if the mouse 
19483             has entered the button
19484           - Updated ProgressBar drawing!
19485           - Updated CPDrawSizeGrip drawing
19486           - Updated StatusBarPanel drawing
19487
19488 2005-12-05  Mike Kestner  <mkestner@novell.com>
19489
19490         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
19491         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
19492
19493 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
19494
19495         * ThemeClearlooks.cs: Initial check-in, activate with
19496           export MONO_THEME=clearlooks
19497         * ThemeEngine.cs: Added ThemeClearlooks
19498
19499 2005-12-03  Mike Kestner  <mkestner@novell.com>
19500
19501         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
19502         [Fixes #76897]
19503
19504 2005-12-02  Jackson Harper  <jackson@ximian.com>
19505
19506         * Form.cs: If the child form has no menu the default main menu is
19507         used as the active menu.
19508
19509 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
19510
19511         * ListBox.cs: Check if any items exist before trying to resolve 
19512           coordinates into items
19513
19514 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19515
19516         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
19517           as the second color for the background hatch
19518
19519 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19520
19521         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
19522         * RichTextBox.cs: FormatText position arguments are 1-based, now making
19523           sure that what we pass to FormatText is always 1-based. Fixes #76885
19524
19525 2005-11-29  Miguel de Icaza  <miguel@novell.com>
19526
19527         * NumericUpDown.cs (EndInit): When we are done initializing,
19528         reflect any updates on the UI.
19529
19530 2005-12-02  Jackson Harper  <jackson@ximian.com>
19531
19532         * ImplicitHScrollBar.cs:
19533         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
19534         their container controls.
19535         * TreeView.cs: Use the new implicit scrollbars.
19536
19537 2005-12-02  Jackson Harper  <jackson@ximian.com>
19538
19539         * TreeView.cs: Make top_node internal so the TreeNodeCollections
19540         can play with it.
19541         * TreeNodeCollection.cs: If we remove the topnode we need to
19542         update topnode to the next node in line.
19543         - When clearing nodes go through the same process as removing
19544         them, so they get depareneted and checked if they are top node.
19545
19546 2005-12-01  Jackson Harper  <jackson@ximian.com>
19547
19548         * TreeView.cs: When imagelists are used the image area is
19549         selectable as well as the text.
19550         - If there are no selected nodes select the first one.
19551         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
19552         so don't do it more then we need to.
19553
19554 2005-12-01  Jackson Harper  <jackson@ximian.com>
19555
19556         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
19557         that arrows can be scaled.
19558
19559 2005-12-01  Jackson Harper  <jackson@ximian.com>
19560
19561         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
19562         fail. Patch by Dieter Bremes
19563
19564 2005-11-30  Jackson Harper  <jackson@ximian.com>
19565
19566         * Form.cs: Property is 2.0 only
19567         * PrintDialog.cs: Signature fix.
19568
19569 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19570
19571         * TextControl.cs: 
19572           - No longer artificially moves text 2 pixels down (now that we have
19573             borders this is no longer needed)
19574           - Added calcs for left, hanging and right indent
19575
19576 2005-11-23  Mike Kestner  <mkestner@novell.com>
19577
19578         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
19579
19580 2005-11-30  Jackson Harper  <jackson@ximian.com>
19581
19582         * MdiChildContext.cs: Set the cloned menus forms, as these don't
19583         get cloned as part of CloneMenu ().
19584         * Menu.cs: Make sure the parent of the items get set correctly
19585         when they are added.  And the owners are notified of the changes.
19586         * Form.cs: Create an ActiveMenu property, so that when MDI is used
19587         we can change the menu being displayed/handled by the form without
19588         changing the menu assosciated with the form.
19589         - Don't let Mdi children draw/handle menus.
19590         
19591 2005-11-30  Jackson Harper  <jackson@ximian.com>
19592
19593         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
19594         a MenuChanged event. Just to make the API a little more
19595         consistent.
19596         * MainMenu.cs:
19597         * MenuItem.cs: Use the new OnMenuChanged
19598         * MdiChildContext.cs: Handle menu merging.
19599         * Form.cs: Implement MergedMenu.
19600         
19601 2005-11-30  Jackson Harper  <jackson@ximian.com>
19602
19603         * Menu.cs: We were misusing Add. Add goes behind the specified
19604         index according to the docs, and does not replace the specified
19605         index. So I added an Insert method.
19606
19607 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19608
19609         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
19610           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
19611           is for Jackson
19612         * RichTextBox.cs: Added calls to base for DnD events
19613
19614 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
19615
19616         * TextControl.cs:
19617           - Fixed drag-selection related crash; style fixes
19618           - Implemented undo class
19619             o Implemented method to capture document state for specified
19620               range in document tree
19621             o Implemented method to restore captured document state
19622             o Implemented cursor tracking
19623             o Implemented basic undo stack
19624           - Added undo cursor tracking to methods altering cursor location
19625           - Added undo tracking to selection deletion (still missing
19626             other text-altering hookups)
19627         * RichTextBox.cs:
19628           - Added SelectionLength property
19629           - Implemented CanPaste()
19630           - Implemented Paste()
19631           - Added missing protected methods
19632           - Fixed RTF->Document conversion; now uses font index 0 and color 
19633             index 0 as the default font for the parsed text
19634           - Fixed RTF<->Document font size translation
19635           - Fixed RTF generation, now properly handles cross-tag boundaries
19636             for single line selection
19637           - No longer always appends blank line to generated RTF
19638           - Removed TODOs
19639           - Added missing attributes
19640           - Hooked up undo-related methods
19641         * TextBoxBase.cs:
19642           - Implemented Copy()
19643           - Implemented Paste()
19644           - Implemented Cut()
19645           - Fixed caret mis-behaviour on backspace across line-boundaries
19646
19647 2005-11-29  Jackson Harper  <jackson@ximian.com>
19648
19649         * MdiClient.cs: Add a method for activating mdi children. Very
19650         basic right now. I imagine someday it might need more girth.
19651         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
19652         children windows names are added to the menu item.
19653         * ThemeWin32Classic.cs: Draw the arrow if the item is an
19654         mdilist. This happens regardless of whether or not there are any
19655         mdi windows to see in the list, and according to my tests happens
19656         before the items are even added. Also happens if there isn't even
19657         an mdi client to get windows from.
19658
19659 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
19660
19661         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
19662         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
19663
19664 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
19665
19666         * DataGridTableStyle.cs:
19667           - Create always the styles for the missing columns even if they are
19668             provided by the user (not default table style)
19669         * DataGrid.cs:
19670           - Fixes bug 76770
19671           - Fixes SetDataBinding (always re-attach source)
19672           - Fixes SetNewDataSource (only clear styles if they are not for 
19673             this source)
19674          -  Expands OnTableStylesCollectionChanged to handle style refresh 
19675             and remove properly
19676
19677 2005-11-29  Jackson Harper  <jackson@ximian.com>
19678
19679         * FileDialog.cs: Implement missing bits, remove some dead
19680         code.
19681         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
19682         creation of the panel so that the options set on the dialog are
19683         seen when the panel is created.
19684         * TreeView.cs: raise a click when items are clicked.
19685         
19686 2005-11-29  Jackson Harper  <jackson@ximian.com>
19687
19688         * MdiClient.cs: Pass some signature methods through to base.
19689
19690 2005-11-28  Jackson Harper  <jackson@ximian.com>
19691
19692         * ListView.cs: Raise the click event when items are clicked.
19693
19694 2005-11-28  Jackson Harper  <jackson@ximian.com>
19695
19696         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
19697         a nullref.
19698
19699 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
19700
19701         * ThemeNice.cs: - Removed 1 pixel bitmaps
19702           - Use SmoothingMode.AntiAlias where it makes sense
19703             (ScrollButton arrow for example)
19704           - Enhanced Button focus drawing
19705           - Fixed ComboBox drawing (no artefacts anymore, focus
19706             rectangle is back again, reduced size of ComboButton, etc.)
19707           - Fixed RadioButton focus drawing for Appearence.Button
19708           - Slight ScrollButton redesign
19709           - Some LinearGradientBrush size fixes
19710           - GroupBoxes have now rounded edges
19711           - Fixed StatusBar drawing
19712
19713 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
19714
19715         * ThemeNice.cs: - Remove dead code
19716           - use correct background colors for menus, etc.
19717           - Fake pixel drawing with 1 pixel bitmaps
19718
19719 2005-11-24  Jackson Harper  <jackson@ximian.com>
19720
19721         * MdiClient.cs: Size the scrollbars when resizing the window.
19722         - Resize the maximized windows when the client is resized
19723         * Form.cs: Make the child context available
19724         
19725 2005-11-23  Jackson Harper  <jackson@ximian.com>
19726
19727         * MdiChildContext.cs: Don't size windows if they are maximized.
19728
19729 2005-11-23  Mike Kestner  <mkestner@novell.com>
19730
19731         * ContextMenu.cs: use MenuTracker.
19732         * Control.cs: remove menu handle usage.
19733         * Form.cs: remove menu handle usage.
19734         * Hwnd.cs: remove menu handle usage.
19735         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
19736         motion and clicks to the new Tracker handlers.
19737         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
19738         and handle usage.
19739         * MenuAPI.cs: refactored to combine popup and menubar event handling.
19740         Killed the MENU and MENUITEM data types and associated collections
19741         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
19742         MenuTracker class that exposes the leftovers from the old MenuAPI
19743         static methods. Restructured Capture handling so that only one grab is
19744         done for the entire menu hierarchy instead of handing off grabs to
19745         submenus. Tracker now has an invisible control to Capture when active.
19746         * MenuItem.cs: add sizing accessors, kill Create
19747         and handle usage.
19748         * Theme.cs: remove menu handle and MENU(ITEM) usage.
19749         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
19750         MENU(ITEM). remove menu handle usage, use Menu directly.
19751         * XplatUIDriver.cs: remove menu handle usage.
19752         * XplatUIOSX.cs: remove menu handle usage.
19753         * XplatUIWin32.cs: remove menu handle usage.
19754         * XplatUIX11.cs: remove menu handle usage.
19755
19756 2005-11-22  Jackson Harper  <jackson@ximian.com>
19757
19758         * Hwnd.cs: Don't compute the menu size for
19759         DefaultClientRectangle.
19760         - Reenable menu sizes being computed for GetClienRectangle.
19761         * Form.cs: Remove comment of trechery
19762         
19763 2005-11-22  Jackson Harper  <jackson@ximian.com>
19764
19765         * Hwnd.cs: The adjustments for the menu bar are made when it is
19766         attached to the form.
19767
19768 2005-11-19  Jackson Harper  <jackson@ximian.com>
19769
19770         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
19771         (just like on windows).
19772
19773 2005-11-19  Jackson Harper  <jackson@ximian.com>
19774
19775         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
19776         use real buttons anymore because they are in non client area. The
19777         one TODO here is that I need to somehow invalidate a section of
19778         the non client area.
19779
19780 2005-11-18  Jackson Harper  <jackson@ximian.com>
19781
19782         * Control.cs: Put the enum check back in now that MDI doesnt have
19783         to use this to set border styles.
19784         * Form.cs: Only set mdi child windows borders if the handle has
19785         been created.
19786         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
19787         this directly on to the driver.
19788         - Get the move start position before adjusting for the titlebar
19789         height, this fixes the windows "skipping" when they are first
19790         moved.
19791
19792 2005-11-18  Jackson Harper  <jackson@ximian.com>
19793
19794         * XplatUIX11.cs: Just compute the mdi borders separately as they
19795         don't totally match up with normal form borders.
19796
19797 2005-11-18  Jackson Harper  <jackson@ximian.com>
19798
19799         * Control.cs: Set WS_ styles for borders, so that the driver does
19800         not have to retrieve the control instance to figure out what kind
19801         of borders it should have.
19802         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
19803         driver can know its an mdi child easily.
19804         * XplatUIX11.cs: Get the border styles and whether the window is
19805         MDI from the Styles and ExStyles params instead of having to get a
19806         control. This prevents a chicken and egg problem.       
19807
19808 2005-11-18  Jackson Harper  <jackson@ximian.com>
19809
19810         * MdiClient.cs: Fix typo so scrollbars show up correctly.
19811
19812 2005-11-18  Jackson Harper  <jackson@ximian.com>
19813
19814         * MdiClient.cs: Calculate when to add and remove scrollbars
19815         correctly.
19816         * MdiChildContext.cs: Adjust the y position to take the titlebar
19817         into account.
19818         - No height for FormBorderStyle.None
19819
19820 2005-11-18  Jackson Harper  <jackson@ximian.com>
19821
19822         * Control.cs: Allow non enum values to be used for
19823         InternalBorderStyle.  MDI does this to set a special border style.
19824         - New utility methods for converting points to/from client coords
19825         - Add the newly created control to the Controls collection before
19826         updating its style. This way UpdateStyle can walk the control
19827         heirarchy to find the control if needed.
19828         so I don't need to create a new Point object all the time.
19829         * Form.cs: Let MDI windows handle their border styles.
19830         - Set styles on MDI windows so the correct title style is derived.
19831         * MdiChildContext.cs: Move all the painting and window handling
19832         into the non client area.
19833         - Use correct sizing and put correct buttons on frames based on
19834         the FormBorderStyle.
19835         - Notify the mdi client about scrolling
19836         - Need to handle the buttons ourselves now, because they are all
19837         in non client areas and we can't add controls there.
19838         * MdiClient.cs: Halfway to scrolling, this implementation is
19839         somewhat broken though, we need to check to make sure other
19840         windows aren't causing scrolling before removing the bars. Also
19841         the bars need to be drawn on top, maybe I can switch implicit
19842         controls to be on top.
19843         * Hwnd.cs: caption_height and tool_caption_height are now
19844         properties of an hwnd, this way they can be set by the driver
19845         based on the type of window they are.  In X11 the window manager
19846         handles the decorations so caption_height is zero unless its an
19847         MDI window.
19848         - Add 3 pixel borders for MDI windows (0xFFFF).
19849         - Get rid of some code duplication, have DefaultClientRectanle
19850         just call GetClientRectangle.
19851         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
19852         Hwnd now.
19853         - Set border styles differently for mdi windows.
19854         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
19855         Hwnd now.
19856         
19857 2005-11-15  Mike Kestner  <mkestner@novell.com>
19858
19859         * Menu.cs: when adding an item to the collection, if item is already 
19860         parented, remove it from the parent.
19861
19862 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
19863
19864         * X11DesktopColors.cs: Added KDE support
19865
19866 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
19867
19868         * XplatUIWin32.cs: 
19869           - Clipboard methods now can translate Rtf format
19870           - No longer removes clipboard contents whenever a new format is added
19871             to allow placing multiple formats on the clipboard
19872         * Clipboard.cs: Clipboard now supports getting a IDataObject and
19873           will place all formats contained in it onto the clipboard. Also
19874           now cleans the clipboard before placing a new object onto it
19875         * RichTextBox.cs:
19876           - Implemented set_Rtf
19877           - Implemented set_SelectedRtf
19878           - Created InsertRTFFromStream() method to allow single code base
19879             for all properties and methods that insert RTF into document
19880           - Removed debug output
19881         * TextControl.cs:
19882           - Fixed Delete(int) to fix up line numbers
19883           - Fixed ReplaceSelection to combine start and end line
19884           - Fixed serious DeleteChars bug that would leave the document tree
19885             broken
19886           - Improved DumpTree with several logic checks to detect broken
19887             document trees
19888           - Removed debug lines
19889           - Fixed Caret.WordForward/WordBack moving code, now always also 
19890             updates caret.tag (fixes crash when word-selecting across tag
19891             boundaries via keyboard)
19892           - Added Insert() method for inserting multiline text into documents
19893           - Fixed DeleteChars() calculation errors that would cause a broken
19894             tag chain with multiple tag lines
19895           - DeleteChars() no longer crashes on multi-tag lines if not all tags
19896           - Split() no longer moves caret if split is at caret location
19897           - ReplaceSelection() now updates the cursor and re-displays it
19898           - ReplaceSelection() now uses new Insert() method to avoid code
19899             duplication
19900           - FormatText() can now handle formatting partial lines
19901         * TextBoxBase.cs:
19902           - Append now uses new TextControl.Insert() method (this avoids 
19903             duplicate code)
19904           - Implemented Ctrl-X (Cut) (
19905           - Implemented Ctrl-C (Copy)
19906           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
19907             regeneration when pasting text; roundtripping Copy&Paste within
19908             edit control still fails due to some calculation bugs in GenerateRTF)
19909           - The Delete key will now remove the current selection if it is visible
19910         * TextBox.cs: Removed debug lines
19911         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
19912           driver to be initialized and can't therefore be done via a static ctor)
19913
19914 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
19915
19916         * TextControl.cs: Added backend code for finding char arrays and strings
19917         * TextBoxBase.cs:
19918           - Added mouse wheel scroll support
19919           - Added support for VScroll and HScroll events
19920         * RichTextBox.cs:
19921           - Implemented all seven Find() variants
19922           - Implemented GetCharFromPosition()
19923           - Implemented GetCharIndexFromPosition()
19924           - Implemented GetLineFromIndex()
19925           - Implemented GetPositionFromCharIndex();
19926           - Implemented SaveFile for PlainText and UnicodeText
19927           - Fixed set_Font, now setting a new font applies that font to
19928             the whole document
19929           - Implemented generic Document to RTF converter
19930           - Implemented SaveFile for RichText format (still missing unicode
19931             conversion for non-ansi chars)
19932           - Implemented get_Rtf
19933           - Implemented get_SelectedRtf
19934
19935 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
19936
19937         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
19938           to allow any captures to be released before triggering OnClick. This
19939           way a click handler may capture the mouse without interference.
19940         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
19941           This way we send them even though X may not allow a grab (if the window
19942           isn't visible, for example)
19943
19944 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
19945
19946         * DataGridViewRowEventArgs.cs: DataGridView implementation
19947         * DataGridViewElement.cs: DataGridView implementation
19948         * DataGridViewComboBoxCell.cs: DataGridView implementation
19949         * DataGridViewDataErrorContexts.cs: DataGridView implementation
19950         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
19951         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
19952         * ImageLayout.cs: DataGridView implementation
19953         * DataGridViewComboBoxColumn.cs: DataGridView implementation
19954         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
19955         * DataGridViewSelectionMode.cs: DataGridView implementation
19956         * IDataGridViewEditingControl.cs: DataGridView implementation
19957         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
19958         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
19959         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
19960         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
19961         * DataGridViewColumnSortMode.cs: DataGridView implementation
19962         * DataGridView.cs: DataGridView implementation
19963         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
19964         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
19965         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
19966         * Padding.cs: DataGridView implementation
19967         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
19968         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
19969         * DataGridViewRowEventHandler.cs: DataGridView implementation
19970         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
19971         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
19972         * DataGridViewButtonCell.cs: DataGridView implementation
19973         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
19974         * DataGridViewEditMode.cs: DataGridView implementation
19975         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
19976         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
19977         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
19978         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
19979         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
19980         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
19981         * DataGridViewCellEventHandler.cs: DataGridView implementation
19982         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
19983         * DataGridViewCellStyleConverter.cs: DataGridView implementation
19984         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
19985         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
19986         * DataGridViewColumnEventArgs.cs: DataGridView implementation
19987         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
19988         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
19989         * QuestionEventArgs.cs: DataGridView implementation
19990         * IDataGridViewEditingCell.cs: DataGridView implementation
19991         * DataGridViewTriState.cs: DataGridView implementation
19992         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
19993         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
19994         * DataGridViewColumnCollection.cs: DataGridView implementation
19995         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
19996         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
19997         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
19998         * DataGridViewColumn.cs: DataGridView implementation
19999         * DataGridViewCellBorderStyle.cs: DataGridView implementation
20000         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
20001         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
20002         * DataGridViewRow.cs: DataGridView implementation
20003         * DataGridViewImageCellLayout.cs: DataGridView implementation
20004         * DataGridViewImageCell.cs: DataGridView implementation
20005         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
20006         * DataGridViewCheckBoxCell.cs: DataGridView implementation
20007         * DataGridViewHeaderCell.cs: DataGridView implementation
20008         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
20009         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
20010         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
20011         * DataGridViewTextBoxColumn.cs: DataGridView implementation
20012         * QuestionEventHandler.cs: DataGridView implementation
20013         * DataGridViewCellStyleScopes.cs: DataGridView implementation
20014         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
20015         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
20016         * DataGridViewCell.cs: DataGridView implementation
20017         * DataGridViewCellEventArgs.cs: DataGridView implementation
20018         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
20019         * DataGridViewCellStyle.cs: DataGridView implementation
20020         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
20021         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
20022         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
20023         * TextFormatFlags.cs: DataGridView implementation
20024         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
20025         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
20026         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
20027         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
20028         * DataGridViewButtonColumn.cs: DataGridView implementation
20029         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
20030         * HandledMouseEventArgs.cs: DataGridView implementation
20031         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
20032         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
20033         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
20034         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
20035         * DataGridViewRowCollection.cs: DataGridView implementation
20036         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
20037         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
20038         * DataGridViewHitTestType.cs: DataGridView implementation
20039         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
20040         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
20041         * DataGridViewColumnEventHandler.cs: DataGridView implementation
20042         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
20043         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
20044         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
20045         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
20046         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
20047         * DataGridViewContentAlignment.cs: DataGridView implementation
20048         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
20049         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
20050         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
20051         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
20052         * DataGridViewPaintParts.cs: DataGridView implementation
20053         * DataGridViewCellCollection.cs: DataGridView implementation
20054         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
20055         * DataGridViewImageColumn.cs: DataGridView implementation
20056         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
20057         * DataGridViewElementStates.cs: DataGridView implementation
20058         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
20059         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
20060         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
20061         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
20062         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
20063         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
20064         * DataGridViewRowHeaderCell.cs: DataGridView implementation
20065         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
20066         * DataGridViewTextBoxCell.cs: DataGridView implementation
20067         * DataGridViewBand.cs: DataGridView implementation
20068         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
20069         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
20070         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
20071         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
20072         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
20073         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
20074         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
20075         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
20076         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
20077         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
20078         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
20079
20080 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
20081
20082         * ThemeWin32Classic.cs: 
20083           - Draw the outside focus rectangle around buttons
20084           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
20085             doesn't use end caps for every dash of a line anymore. This
20086             workaround ignores the forecolor.
20087
20088 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
20089
20090         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
20091           endian safe.
20092
20093 2005-11-07  Jackson Harper  <jackson@ximian.com>
20094
20095         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
20096
20097 2005-11-07  Jackson Harper  <jackson@ximian.com>
20098
20099         * ScrollableControl.cs: Calculate the maximum and change vars
20100         (more) correctly so that scrollbars appear as a sensible size.
20101
20102 2005-11-04  Jackson Harper  <jackson@ximian.com>
20103
20104         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
20105         collection.
20106         * TreeView.cs: When the tree is sorted null out the top_node so
20107         that it is recalculated.
20108         - Use dotted lines instead of dashed lines to match MS better.
20109
20110 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
20111
20112         * ListView.cs: 
20113           - Implements key search for items. Useful when browsing files with FileDialog
20114           - When changing view mode or when clear the items reset scrollbar positions
20115
20116 2005-11-04  Jackson Harper  <jackson@ximian.com>
20117
20118         * CurrencyManager.cs: Implement the MetaDataChanged event, the
20119         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
20120         as to what the method may do as there is no real way of creating a
20121         derived CurrencyManager and calling the method. 
20122
20123 2005-11-03  Jackson Harper  <jackson@ximian.com>
20124
20125         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
20126         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
20127         method which seems to just be used internally to refresh the tabs.
20128
20129 2005-11-03  Jackson Harper  <jackson@ximian.com>
20130
20131         * TabControl.cs: Implement the remove method. Fix some broken
20132         comments.
20133
20134 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20135
20136         * DateTimePicker.cs:
20137           - Added missing DateTimePickerAccessibleObject class
20138           - Added missing events
20139           - Added OnFontChanged method
20140         * Form.cs: Added missing attributes
20141         * TreeView.cs: Added missing attributes
20142
20143 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
20144
20145         * GridItemCollection.cs: Fix signatures
20146
20147 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20148
20149         * XplatUI.cs: Updated build rev/date
20150         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
20151           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
20152         * Application.cs: Trigger context-specific ExitThread events
20153
20154 2005-11-03  Jackson Harper  <jackson@ximian.com>
20155
20156         * Menu.cs:
20157         * MainMenu.cs:
20158         * GridTableStylesCollection.cs:
20159         * Timer.cs:
20160         * TabPage.cs:
20161         * HelpProvider.cs:
20162         * StatusBar.cs:
20163         * MonthCalendar.cs: Signature fixes
20164
20165 2005-11-03  Jackson Harper  <jackson@ximian.com>
20166
20167         * TreeNodeCollection.cs: Remove should not be virtual.
20168         * TreeView.cs: Implement the last of the missing methods.
20169
20170 2005-11-03  Jackson Harper  <jackson@ximian.com>
20171
20172         * TreeNodeConverter.cs: Implement to get off my class-status back.
20173
20174 2005-11-03  Jackson Harper  <jackson@ximian.com>
20175
20176         * TreeView.cs: Hookup the bits for drag and drop.
20177         * TreeNode.cs: Don't cache the tree_view or index anymore, now
20178         that nodes can be moved from tree to tree easily this just causes
20179         all sorts of problems.
20180         * TreeNodeCollection: Don't need to give treenodes an index and
20181         treeview anymore when they are added, these are computed on the
20182         fly. Also make sure to remove a node before its added.
20183
20184 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20185
20186         * TextControl.cs:
20187           - Added CaretSelection enum
20188           - Added comparison methods to Marker struct, makes selection code
20189             more readable
20190           - Added SelectionStart and SelectionEnd as 'moveable' location for
20191             the CaretDirection enum and handler
20192           - Added selection_prev variable to track optimized invalidation for
20193             word and line selection
20194           - Added SelectionVisible property (returns true if there is a valid 
20195             selection)
20196           - Switched CaretHasFocus to only display the caret if there is no
20197             visible selection
20198           - Avoiding StringBuilder.ToString to retrieve a single char, instead
20199             using the direct character index; should be much faster
20200           - Added various conditional debug statements
20201           - Fixed invalidation calculation for selection ranges
20202           - Added ExpandSelection() method to support word and line selection
20203           - Switched SetSelectionToCaret to use new Marker compare overloads
20204           - Added central IsWordSeparator() method to determine word 
20205             separators/whitespace and FindWordSeparator() to streamline common
20206             usage of IsWordSeparator()
20207         * TextBoxBase.cs:
20208           - Removed unneeded grabbed variable, it was just mirroring
20209             Control.Capture
20210           - No longer firing OnTextChanged event when Text setter is called,
20211             since the base will fire the event for us
20212           - Added handling of Ctrl-Up/Down selection
20213           - Added handling of Shift-Cursorkey selection
20214           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
20215             words
20216           - Added handling of Shift and Ctrl-Shift-Home/End selection
20217           - Removed some debug output
20218           - Added handling for single/double/tripple-click to place caret/
20219             select word/select line respectively (Fixes bug #76031)
20220           - Added support for drag expansion of word/line selection
20221         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
20222           current selection
20223
20224 2005-11-02  Jackson Harper  <jackson@ximian.com>
20225
20226         * X11Dnd.cs: If the drag is going to and from a MWF window just
20227         copy the data instead of sending it out through the X Selection
20228         mechanism.
20229
20230 2005-11-02  Jackson Harper  <jackson@ximian.com>
20231
20232         * X11Dnd.cs:
20233         * XplatUIX11.cs: When in a drag we don't want motion notify
20234         messages to get passed on to the other controls. This prevents
20235         mouse move messages from showing up in the drag source.
20236
20237 2005-11-02  Jackson Harper  <jackson@ximian.com>
20238
20239         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
20240         the correct button is release to end a drag.
20241         * XplatUIX11.cs: Make the button state internal so the drag system
20242         can access it.  Dragging needs to know about all button releases,
20243         not just left button.
20244
20245 2005-11-02  Miguel de Icaza  <miguel@novell.com>
20246
20247         * Form.cs (Icon): If the icon is null, reset the icon to the
20248         default value. 
20249
20250         * Cursor.cs: When writing the AND-mask bitmap do not include the
20251         number of colors, but hardcode those to two (black and white),
20252         fixes the loading of color cursors (Paint Dot Net).
20253
20254         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
20255         turn off autoscaling.
20256
20257         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
20258
20259 2005-11-02  Jackson Harper  <jackson@ximian.com>
20260
20261         * X11Dnd.cs: Make sure to send a status message if the pointer
20262         enters a control that can not accept a drop, otherwise the cursor
20263         isn't updated correctly. Also tried to compress the lines of code
20264         a bit.
20265
20266 2005-11-02  Jackson Harper  <jackson@ximian.com>
20267
20268         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
20269         set actions correctly.  This isn't perfect as XDND and win32 have
20270         some differences on how you allow actions. I'll clear this up by
20271         adding a path for drag from MWF to MWF windows.
20272         * XplatUIX11.cs: Hook into the dnd system.
20273
20274 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
20275
20276         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
20277         previously shown but they are no longer need it. Very obvious when 
20278         browsing files with FileDialog.
20279
20280 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
20281
20282         * Control.cs: We always need to call OnPaintBackground. We pretty much
20283           ignore AllPaintingInWmPaint and always do the painting there, whether 
20284           it's set or not, since we always ignore the WM_ERASEBKGND message 
20285           (which we don't generate on X11). This fixes #76616.
20286         * Panel.cs: Removed unneeded background painting. This happens properly
20287           in Control.cs already
20288
20289 2005-10-31  Mike Kestner  <mkestner@novell.com>
20290
20291         * Menu.cs: Add items to collection before setting their index.
20292         * MenuItem.cs : add range checking with ArgumentException like MS.
20293         [Fixes #76510]
20294
20295 2005-10-31  Jackson Harper  <jackson@ximian.com>
20296
20297         * ListBox.cs: Invalidate if the area is visible at all not just
20298         contained in the visible rect. Fixes unselection of semi visible
20299         items.
20300
20301 2005-10-31  Jackson Harper  <jackson@ximian.com>
20302
20303         * Control.cs: Consistently name the dnd methods. Make them
20304         internal so we can override them to match some MS behavoir
20305         internally.
20306         * Win32DnD.cs: Use the new consistent names.
20307
20308 2005-10-31  Jackson Harper  <jackson@ximian.com>
20309
20310         * TreeView.cs: Don't draw the selected node when we lose focus.
20311
20312 2005-10-31  Jackson Harper  <jackson@ximian.com>
20313
20314         * X11Dnd.cs: We still need to reset the state even though a full
20315         reset isn't being done, otherwise status's still get sent all over
20316         the place.
20317
20318 2005-10-31  Jackson Harper  <jackson@ximian.com>
20319
20320         * Control.cs: Make the dnd_aware flag internal so the dnd
20321         subsystem can check it. Catch exceptions thrown in dnd handlers to
20322         match MS behavoir.
20323         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
20324         * X11Dnd.cs: Handle null data in the converters. Set the XDND
20325         version when sending a XdndEnter. Use the control/hwnd dnd_aware
20326         flags to reduce the number of dnd enters/status's sent.
20327
20328 2005-10-31  Jackson Harper  <jackson@ximian.com>
20329
20330         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
20331
20332 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
20333
20334         * PictureBox.cs: Fixes 76512
20335
20336 2005-10-28  Jackson Harper  <jackson@ximian.com>
20337
20338         * X11Dnd.cs: Early implementation to support winforms being a drag
20339         source for data on X11. Also restructured the converters so they
20340         can go both ways now.
20341         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
20342         
20343 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
20344
20345         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
20346           clipboard requests
20347
20348 2005-10-27  Jackson Harper  <jackson@ximian.com>
20349
20350         * TreeNode.cs: Implement serialization so my DnD examples will work.
20351
20352 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
20353
20354         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
20355           TreeView.cs: Don't dispose objects that are not owned.
20356           
20357 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
20358
20359         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
20360           should retrieve the current cursor and report that, but XplatUI
20361           doesn't (yet) have an interface for that (and I'm not sure I even
20362           can, on X11)
20363         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
20364           until any message loop processing is done (and the WM_SETCURSOR
20365           replaces the cursor to the proper one)
20366         * XplatUIX11.cs: 
20367           - Fixed override behaviour, we can't set the cursor globally on X11, 
20368             just for our windows.
20369           - Invalidating the System.Drawing X11 display handle when we are
20370             shutting down
20371         * Control.cs: Fix to make csc happy
20372
20373 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
20374
20375         * TextBoxBase.cs: 
20376           - get_Text: Add last line (without trailing newline) to returned
20377             value (Fixes 76212)
20378           - get_TextLength: Count last line in returned length
20379           - ToString: Call Text property instead of duplicating code
20380
20381 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
20382
20383         * ImageList.cs: Dispose ImageAttributes objects.
20384
20385 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20386
20387         * ImageList.cs: Use attribute constructors with less arguments where
20388           possible.
20389
20390 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20391
20392         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
20393           Use typeof instead of strings when assembly is referenced. Added
20394           some more comments.
20395
20396 2005-10-21  Jackson Harper  <jackson@ximian.com>
20397
20398         * ListView.cs: Raise a double click event. Also tried to somewhat
20399         fix when the selectedindexchanged event is raised. Its still
20400         broken though.
20401
20402 2005-10-21  Jackson Harper  <jackson@ximian.com>
20403
20404         * TreeView.cs: New method to invalidate the plus minus area of a
20405         node without invalidating the whole node (maybe this can be used
20406         in some more places).
20407         * TreeNodeCollection.cs: When adding to an empty node we need to
20408         invalidate its plus minus area so the little block shows up.
20409         
20410 2005-10-21  Jackson Harper  <jackson@ximian.com>
20411
20412         * TreeView.cs: Make sure that when we invalidate a node the bounds
20413         are big enough to cover the selected box and the focus
20414         rectangle. Use a different colour for the lines connecting nodes
20415         so they show up with all themes.
20416
20417 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20418
20419         * NativeWindow.cs: Don't call anything that could call into the driver,
20420           we might be on a different thread.
20421
20422 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
20423
20424         * Control.cs(Dispose): Since Dispose might run on a different thread,
20425           make sure that we call methods that could call into the driver via
20426           invoke, to avoid thread issues
20427
20428 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20429
20430         * XplatUI.cs: Removed finalizer
20431         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
20432           not allowing to be called on the finalizer thread.
20433
20434 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
20435
20436         * ImageList.cs:
20437           - Reverted r51889 and r51891.
20438           - Added ImageListItem class that stores unmodified image items and image
20439             properties required to create list images until handle is created.
20440           - Added AddItem and moved image creation logic to AddItemInternal.
20441           - Added CreateHandle method that creates images based on unmodified items.
20442           - Added DestroyHandle that changes state to store unmodified items.
20443           - Add and AddStrip methods no more create handle.
20444           - ReduceColorDepth has no return value.
20445           - Dispose destroys handle.
20446           - Modified other methods to reflect the above changes.
20447           - Implemented key support.
20448           - Added profile 2.0 members and attributes.
20449           - Added private Reset and ShouldSerialize methods that provide the same
20450             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
20451             them as they are private.
20452           - Added some more comments about implementation details.
20453
20454 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20455
20456         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
20457
20458 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20459
20460         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
20461
20462 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20463
20464         * DataGridDrawingLogic.cs: Fixes column hit calcultation
20465         * DataGridColumnStyle.cs: Remove debug message
20466
20467 2005-10-20  Jackson Harper  <jackson@ximian.com>
20468
20469         * TreeView.cs: We can always get input keys regardless of whether
20470         or not editing is enabled. They are used for navigation.
20471
20472 2005-10-20  Jackson Harper  <jackson@ximian.com>
20473
20474         * TreeNode.cs: Use the viewport rect for determining if a node
20475         needs to be moved for visibility. Don't use Begin/End edit. This
20476         calls a full refresh when its done.
20477         * TreeView.cs: New SetBottom works correctly.  Make the viewport
20478         rect property internal so the treenodes can see it. When clicking
20479         on a node we need to ensure that its visible because it might just
20480         be partly visible when clicked.
20481
20482 2005-10-20  Jackson Harper  <jackson@ximian.com>
20483
20484         * TreeNodeCollection.cs: Remove debug code.
20485
20486 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20487
20488         * Datagrid.cs: Implements column sorting in Datagrid
20489         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
20490
20491 2005-10-20  Jackson Harper  <jackson@ximian.com>
20492
20493         * TreeNodeCollection.cs: Remove items properly. Update the correct
20494         area after removing them.
20495
20496 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20497
20498         * Datagrid.cs: Should not call base.OnPaintBackground
20499
20500 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20501
20502         * XplatUIX11.cs (GetMessage):
20503           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
20504             window instead of client window
20505           - Now properly calculates NC_xBUTTONUP message coordinates
20506           - ScreenToMenu now properly calculates it's coordinates of whole 
20507             window, since menus are in the whole window, not in the client
20508             window
20509           - Added WholeToScreen coordinate translation method
20510
20511 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
20512
20513         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
20514           want to return a message, loop back to the beginning of the function
20515           and grab the next real message to process instead.
20516
20517 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20518
20519         * Splitter.cs: Properly set limits if no filler control is used
20520
20521 2005-10-19  Jackson Harper  <jackson@ximian.com>
20522
20523         * ColorDialog.cs: Don't show the help button if it is not enabled
20524         instead of disabling it (this is what MS does). Don't create the
20525         panel until the dialog is run, otherwise the vars (such as
20526         ShowHelp) are not set yet.
20527
20528 2005-10-19  Jackson Harper  <jackson@ximian.com>
20529
20530         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
20531         are reduced when adding nodes.
20532         * TreeNode.cs:
20533         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
20534         tree.
20535         
20536 2005-10-19  Jackson Harper  <jackson@ximian.com>
20537
20538         * FolderBrowserDialog.cs: End editing our treeview so the window
20539         actually gets refreshed.
20540
20541 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20542
20543         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
20544           Obsoleted handling of WM_ERASEBKGND, now always draws our background
20545           inside of WM_PAINT
20546
20547 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20548
20549         * MenuAPI.cs: Returns after Hidding window
20550         * XplatUIX11.cs: Added TODO found while debugging menu issues
20551
20552 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20553
20554         * XplatUIX11.cs: Do not re-map the whole window when it's size
20555           becomes non-zero unless it's supposed to be actually visible
20556
20557 2005-10-18  Jackson Harper  <jackson@ximian.com>
20558
20559         * TreeView.cs: We don't need to keep a count anymore.
20560         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
20561         use the Grow method.
20562
20563 2005-10-18  Jackson Harper  <jackson@ximian.com>
20564
20565         * TreeNodeCollection.cs: Insert is not supported on arrays, so
20566         implement it manually here.
20567
20568 2005-10-18  Jackson Harper  <jackson@ximian.com>
20569
20570         * ImageList.cs: Dont kill the list when the colour depth is
20571         changed, just change the colour depth of all the images.
20572         - Same goes for setting the image size. Just resize them all
20573         instead of killing the list softly.
20574
20575 2005-10-18  Jackson Harper  <jackson@ximian.com>
20576
20577         * Control.cs: Don't invalidate empty rectangles.
20578
20579 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20580
20581         * ListViewItem.cs:
20582           - Adds checked item to the Checked/Item lists (where empty before)
20583           - Do not add items to the Selected lists if they are already present
20584         * ListView.cs:
20585           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
20586           - When deleting items make sure that we delete them for the Selected
20587           and Checked list also.
20588
20589 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20590
20591         * Label.cs: Dispose objects no longer used
20592         * ThemeWin32Classic.cs: Dispose objects no longer used
20593
20594 2005-10-18  Jackson Harper  <jackson@ximian.com>
20595
20596         * TabControl.cs: Don't refresh the whole control when the tabs are
20597         scrolled, we just need to refresh the tab area.
20598
20599 2005-10-17  Jackson Harper  <jackson@ximian.com>
20600
20601         * XplatUIX11.cs: Compress code a little bit. Only calculate the
20602         after handle when we need it.
20603
20604 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20605
20606         * Control.cs: When the parent size changes, recalculate anchor 
20607           positions. Partial fix for #76462
20608
20609 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20610
20611         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
20612           drawn. Fixes #76462
20613
20614 2005-10-17  Jackson Harper  <jackson@ximian.com>
20615
20616         * MonthCalendar.cs: Don't create the numeric up down until our
20617         handle is created. Otherwise our handle is created in the
20618         constructor and we don't know if we are a WS_CHILD or WS_POPUP
20619         yet.
20620
20621 2005-10-17  Jackson Harper  <jackson@ximian.com>
20622
20623         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
20624         correctly.
20625
20626 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
20627         * TreeNode.cs : small logical fix (was using local var instead of field)
20628         
20629 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20630
20631         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
20632
20633 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20634
20635         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
20636
20637 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
20638
20639         * Control.cs: 
20640           - Re-implemented anchoring code. My first version was really broken.
20641             This fixes bug #76033. Unlike the previous implementation we will
20642             no longer have round errors since all numbers are calculated from
20643             scratch every time. Removed various anchor-related obsolete vars.
20644           - InitLayout no longer causes layout event firing and layout to be 
20645             performed
20646
20647 2005-10-16  Jackson Harper  <jackson@ximian.com>
20648
20649         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
20650         which was broken).
20651
20652 2005-10-16  Jackson Harper  <jackson@ximian.com>
20653
20654         * TabControl.cs: Remove debug code.
20655
20656 2005-10-16  Jackson Harper  <jackson@ximian.com>
20657
20658         * XEventQueue.cs: Increase the default queue size (very simple
20659         apps needed to grow the queue).
20660         * Hwnd.cs: No finalizer so we don't need to suppress
20661         finalization. Compute the invalid area manually so a new rectangle
20662         does not newto be created.
20663         * ScrollableControl.cs: Don't set any params (otherwise visibility
20664         isn't set correctly).
20665         * MdiChildContext.cs: New constructor takes the mdi parent so it
20666         doesn't have to be computed and avoids a crash on windows. Draw
20667         the window icon properly, and allow the text to be seen.
20668         * Form.cs: Use new MdiChildContext constructor. Make sure the
20669         child context isn't null in wndproc.
20670         * TabControl.cs: Don't set focus, this is muddling keyboard
20671         behavoir. Expand the tab rows when a window size increase will
20672         allow extra tabs to be seen. Don't allow tabs smaller than the
20673         width of a window to be scrolled out of view.
20674         * TreeNode.cs:
20675         * TreeView.cs: Use measure string to calculate a nodes width, the
20676         width is cached and only updated when the text or the font is
20677         changed. Don't check for expand/collapse clicks on the first level
20678         nodes if root lines are disabled.
20679         
20680 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
20681
20682         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
20683
20684 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20685
20686         * DataGridBoolColumn.cs: fixes warning
20687
20688 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20689
20690         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
20691         to match more to match more precisely the MS Net behavior
20692
20693 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20694
20695         * Hwnd.cs: Added field to track if window is mapped
20696         * XplatUIX11.cs: 
20697           - Unmap windows if they become 0-size, re-map when 
20698             they are >0 again; fixes #76035
20699           - Re-set our error handler after initializing X11Desktop
20700             to override any error handlers Gtk or whatever was called
20701             may have set.
20702
20703 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20704
20705         * CheckedListBox.cs: Removed unused vars
20706         * ListView.cs: Fixed signatures
20707         * RichTextBox.cs: Removed unused vars
20708         * TextBoxBase.cs: Removed unused vars
20709         * XplatUIWin32.cs: Removed unused vars
20710         * XplatUIX11.cs: Removed unused vars
20711         * XplatUI.cs: Updated version and date to latest published
20712
20713 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20714
20715         * Cursor.cs: Added private .ctor to work around a bug in
20716           resourceset (Thanks to Geoff Norton for the help on this)
20717         * SplitterEventArgs.cs: Made fields accessible so we don't
20718           waste boatloads of objects and can reuse the same one
20719           in Splitter
20720         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
20721           any captions and borders when generating screen coordinates
20722         * Splitter.cs: Reimplemented control, now fully complete, uses
20723           rubberband drawing, supports and obeys all properties, has
20724           proper cursors
20725
20726 2005-10-13  Miguel de Icaza  <miguel@novell.com>
20727
20728         * Form.cs (Form): Setup default values for autoscale and
20729         autoscale_base_size;  Make these instance variables, not static
20730         variables. 
20731
20732         (OnLoad): on the first load, adjust the size of the form.
20733
20734 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20735
20736         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
20737           width argument to DrawReversibleRectangle()
20738         * XplatUIWin32.cs, XplatUIX11.cs: 
20739           - Implemented width for DrawReversibleRectangle()
20740           - Added logic to DrawReversibleRectangle that recognizes a zero
20741             width or height and only draws a line in that situation
20742         
20743 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
20744
20745         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
20746         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
20747         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
20748           method (it uses our FosterParent window to get a graphics context)
20749
20750 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
20751
20752         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
20753           and SetWindowBackground methods
20754         * Control.cs:
20755           - Setting proper ControlStyles
20756           - We no longer call XplatUI.SetWindowBackground and XplatUI.
20757             EraseWindowBackground, instead we draw the window background
20758             ourselves in PaintControlBackground. This behaviour is
20759             required to match MS, where, when OnPaintBackground is not
20760             called, the background is not drawn.
20761           - Removed unneeded Refresh() in set_Text
20762         * Hwnd.cs: Dropped the ErasePending support. No longer needed
20763         * XplatUIX11.cs:
20764           - Created DeriveStyles method to translate from CreateParams to
20765             FormBorderStyle and TitleStyle, also handles BorderStyle (which
20766             matches FormBorderStyle enum values)
20767           - Consolidated SetHwndStyles and CalculateWindowRect border/title
20768             style calculations into single DeriveStyles method
20769           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
20770             from redrawing the whole window on any resize or expose.
20771           - Fixed CreateWindow usage of SetWindowValuemask. Before not
20772             all styles were applied to our whole/client window appropriately
20773           - Removed EraseWindowBackground() and SetWindowBackground() methods
20774           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
20775             no longer clear/redraw the background through X
20776           - Removed handling of erase_pending bit, we have no use for it (or
20777             so it seems)
20778         * XplatUIOSX.cs:
20779           - Removed generation and handling of WM_ERASEBKGND message
20780           - Removed EraseWindowBackground() and SetWindowBackground() methods
20781           - Removed handling of hwnd.ErasePending flag
20782         * XplatUIWin32.cs:
20783           - Removed EraseWindowBackground() and SetWindowBackground() methods
20784           - We no longer call EraseWindowBackground on PaintEventStart, we 
20785             ignore the fErase flag, erasing is handled in Control in the
20786             background handler
20787         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
20788           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
20789           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
20790           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
20791           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
20792           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
20793           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
20794
20795 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
20796
20797         * PropertyGrids.cs: Get sub properties
20798         * PropertyGridView.cs: Fix drawing code
20799
20800 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20801
20802         * ListBox.cs: Fixes 76383
20803
20804 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20805
20806         * DataGridTextBoxColumn.cs: Sets location and size before attachment
20807         * ThemeWin32Classic.cs: Fixes border drawing and calculations
20808         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
20809
20810
20811 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20812
20813         * ComboBox.cs: Fixes border drawing
20814
20815 2005-10-10  Miguel de Icaza  <miguel@novell.com>
20816
20817         * MimeIcon.cs: Ignore errors if the file can not be read.
20818
20819 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20820
20821         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
20822          - Fixed border calculations
20823          - Fixed horizontal scrolling in single column listboxes
20824          - Fixed drawing issues
20825
20826 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
20827
20828         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
20829           FormBorderStyle enum
20830         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
20831           code to determine FormBorderStyles from CreateParams
20832         * Form.cs:
20833           - Fixed bug where we'd set the wrong window styles if we were
20834             not creating an MDI window
20835           - Added call to XplatUI.SetBorderStyle when form borders are set
20836         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
20837         * Hwnd.cs:
20838           - Removed obsolete edge style
20839           - Switched from BorderStyle to FormBorderStyle
20840         
20841 2005-10-10  Jackson Harper  <jackson@ximian.com>
20842
20843         * Form.cs: Use the property to get the window handle instead of
20844         accessing it directly. Prevents a null reference exception.
20845
20846 2005-10-10  Jackson Harper  <jackson@ximian.com>
20847
20848         * TreeView.cs: Don't adjust the rect given to DrawString now that
20849         our libgdiplus draws correctly.
20850
20851 2005-10-08  Jackson Harper  <jackson@ximian.com>
20852
20853         * TreeView.cs: Don't try to find the clicked on node if there are
20854         no nodes in the tree.
20855
20856 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
20857
20858         * RichTextBox.cs:
20859
20860           restore
20861
20862 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
20863
20864         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
20865           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
20866           ErrorProvider.cs:
20867           Use ResPool for brushes and dispose System.Drawing objects that
20868           are not used anymore.
20869
20870 2005-10-07  Jackson Harper  <jackson@ximian.com>
20871
20872         * MdiChildContext.cs: Use the new borders instead of drawing them
20873         ourselves.
20874
20875 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
20876
20877         * Calling UpdateBounds after changing the window's BorderStyle 
20878         since the style can change the ClientSize
20879
20880 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20881
20882         * Control.cs: Made PaintControlBackground virtual
20883         * Panel.cs: Overriding PaintControlBackground instead of using paint
20884           event; paint event method was interfering with 'real' users of the
20885           event.
20886
20887 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
20888
20889         * ThemeWin32Classic.cs: remove border drawing since it is handled
20890         by the base control class now and was causing double border drawing.
20891
20892 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20893
20894         * Panel.cs: Redraw our background on paint. Not a pretty solution,
20895           but it does seem to match MS behaviour. This fixes bug #75324
20896
20897 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20898
20899         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
20900           somewhat hackish looking
20901
20902 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20903
20904         * TextBoxBase.cs:
20905           - We now accept Enter even if AcceptEnter is false, if the containing
20906             form does not have an AcceptButton configured (fixes bug #76355)
20907           - Calculations are now fixed to no longer use Width/Height, but
20908             ClientSize.Width/Height, since we now support borders (this was
20909             a result of fixing borders and therefore bug #76166)
20910           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
20911             true (fixes bug #76354)
20912         
20913 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20914
20915         * Control.cs: 
20916           - Defaulting BorderStyle and setting it in XplatUI when our window 
20917             is created
20918           - Added enum check to InternalBorderStyle setter
20919         * XplatUIX11.cs: 
20920           - Added drawing of window borders
20921           - Now properly calculates WM decorations offset for toplevel 
20922             windows (fixes bug #74763)
20923         * XplatUIWin32.cs: 
20924           - Implemented BorderStyles for windows (we're letting win32 draw 
20925             the border for us)
20926           - Fixed the signature for SetWindowLong
20927         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
20928           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
20929           setting borders
20930         * UpDownBase.cs: Remove drawing of borders, this is handled by
20931           the driver, outside the client area
20932         * ListView.cs: Removed bogus border calculations. The control should
20933           be oblivious to borders, since those are not part of the client
20934           area. 
20935         * X11DesktopColors.cs: Commented out (currently) unneeded variables
20936         * ThemeWin32Classic.cs: Removed border calculations from ListView 
20937           drawing code
20938
20939 2005-10-06  Jackson Harper  <jackson@ximian.com>
20940
20941         * MdiChildContext.cs: Clear out the old virtual position remove
20942         all the unneeded calls to CreateGraphics.
20943
20944 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20945
20946         * TextControl.cs: Use proper color for highlighted text; fixes #76350
20947
20948 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20949
20950         * Form.cs: 
20951           - Added loading and setting of our new default icon
20952           - Only set icon if window is already created
20953
20954 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20955
20956         * Label.cs:
20957           - Do not explicitly set the foreground and background colors, to
20958             allow inheriting from parents (fixes #76302)
20959           - Use Control's InternalBorderStyle property to deal with borders
20960
20961 2005-10-06  Jackson Harper  <jackson@ximian.com>
20962
20963         * MdiChildContext.cs: Use the new xplatui function to draw a
20964         reversible rect.
20965
20966 2005-10-06  Jackson Harper  <jackson@ximian.com>
20967
20968         * Form.cs: Add the parent before creating the child context cause
20969         we need the parent when setting up the child.
20970
20971 2005-10-06  Jackson Harper  <jackson@ximian.com>
20972
20973         * FolderBrowserDialog.cs: redo the tree population code so a
20974         second thread isn't used. Should be a lot faster and more stable
20975         now.
20976
20977 2005-10-05  Jackson Harper  <jackson@ximian.com>
20978
20979         * TreeView.cs: There are no expand/collapse boxes if the node has
20980         no children.
20981
20982 2005-10-05  Jackson Harper  <jackson@ximian.com>
20983
20984         * X11DesktopColors.cs: Get menu colours for the gtk theme.
20985
20986 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
20987
20988         * FileDialog.cs: Fix InitialDirectory
20989
20990 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
20991
20992         * ComboBox.cs:
20993                 - Fixes changing between styles
20994                 - Fixes simple mode
20995                 - Fixes last item crashing when navigating with keyboard
20996
20997 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
20998
20999         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
21000
21001 2005-10-05  Jackson Harper  <jackson@ximian.com>
21002
21003         * TreeView.cs: If updating the root node do a full refresh.
21004         * TreeNode.cs: The root node should be expanded by default. Also
21005         added a utility prop to tell if we are the root node.
21006         * TreeNodeCollection.cs: Only refresh if the node we are being
21007         added to is expanded. Also added a comment on a potential
21008         optimization.
21009         
21010 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
21011
21012         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
21013           in dispose method. Fixes #76330
21014
21015 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
21016
21017         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
21018
21019                 - Implements vertical and horizontal scrolling using XplatUI
21020                 - Fixes keyboard navagation
21021                 - Fixes EnsureVisible
21022                 - Drawing fixes
21023                 - Handles and draws focus properly
21024
21025
21026 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
21027
21028         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
21029           Create handle. NET_2_0: Destroy handle when value is null.
21030
21031 2005-10-03  Jackson Harper  <jackson@ximian.com>
21032
21033         * ScrollBar.cs: My last scrollbar patch was broken. This is a
21034         revert and a new patch to prevent the thumb from refreshing so
21035         much.
21036
21037 2005-10-02  Jackson Harper  <jackson@ximian.com>
21038
21039         * ScrollBar.cs: Don't update position if it hasn't actually
21040         changed. This occurs when you hold down the increment/decrement
21041         buttons and the thumb gets to the max/min.
21042
21043 2005-10-01  Jackson Harper  <jackson@ximian.com>
21044
21045         * Form.cs:
21046         * MdiChildContext.cs:
21047         * MdiClient.cs: Implement ActiveMdiChild in Form.
21048
21049 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
21050
21051         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
21052
21053 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
21054
21055         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
21056           be found
21057
21058 2005-09-30  Jackson Harper  <jackson@ximian.com>
21059
21060         * ListBox.cs: Don't do a full refresh unless some data has
21061         actually changed.
21062
21063 2005-09-30  Jackson Harper  <jackson@ximian.com>
21064
21065         * TreeView.cs: Make sure that the checkboxes size is factored in
21066         even when not visible.
21067
21068 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21069
21070         * FileDialog.cs: Fix Jordi's build break
21071
21072 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21073
21074         * FileDialog.cs: 
21075                 - Use standard the Windows colours for the combobox as espected
21076                 - Dispose objects that use resouces when no longer need them
21077
21078 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21079
21080         * X11DesktopColors.cs: Initial incomplete implementation
21081         * XplatUIX11.cs: Added call to initialize X11DesktopColors
21082
21083 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
21084
21085         * Theme.cs: 
21086           - Switched Theme color names to match the names defined in 
21087             System.Drawing.KnownColors. Life's hard enough, no need to make 
21088             it harder.
21089           - Added setters to all theme color properties so themes can set
21090             their color schemes. The setters also propagate the color changes
21091             to System.Drawing.KnownColors via reflection
21092         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
21093           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
21094           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
21095           use the new, more logical theme color names
21096         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
21097           post-NT colors
21098         * ThemeWin32Classic.cs:
21099           - Removed code to set the old classic Windows colors. Instead it
21100             now relies on the colors returned by System.Drawing.KnownColors
21101             which will be either modern static colors (Unix) or colors
21102             read from the user's configuration (Win32)
21103           - Updated to use the new, more logical theme color names
21104           - Switched DataGrid drawing code to use only Theme colors instead of
21105             a mix of System.Drawing.KnownColors and Theme colors
21106           - DrawFrameControl(): Removed code that fills the button area, the
21107             fill would overwrite any previous fill done by a control. This
21108             fixes bug #75338 
21109           - Added DrawReversibleRectangle() stub
21110         * ScrollableControl.cs: Set visible state to false when scrollbars
21111           are removed (pdn fix)
21112         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
21113           DrawReversibleRectangle() method to allow drawing primitive 
21114           'rubber bands'
21115         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
21116
21117 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21118
21119         * ImageList.cs: Add(Icon): Create handle.
21120
21121 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21122
21123         * ListView.cs:
21124         * ThemeWin32Classic.cs:
21125                 - Fixes detail mode
21126                 - Sets clippings
21127                 - Issues with drawing
21128
21129 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21130
21131         * ImageList.cs: Moved RecreateHandle back to ImageList as event
21132           source has to be the ImageList.
21133
21134 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21135
21136         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
21137
21138 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21139
21140         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
21141
21142 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21143
21144         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
21145
21146 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
21147         * GridItem.cs: Fixed TODOs
21148         * GridItemCollection.cs: Added ICollection interface
21149
21150 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21151
21152         * ImageList.cs: Resize icons when needed.
21153
21154 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
21155
21156         * ListViewItem.cs
21157                 - Fixes GetBounds and returns on screen rects
21158         * ListView.cs:
21159                 - Fixes vertical and horzintal scrolling of items
21160         * ThemeWin32Classic.cs:
21161                 - Fixes drawing
21162                 
21163 2005-09-29  Raja R Harinath  <harinath@gmail.com>
21164
21165         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
21166
21167 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
21168
21169         * ImageList.cs: Added comments about handle creation. Moved Handle,
21170           HandleCreated and OnRecreateHandle implementations to ImageCollection.
21171           Handle is created in Add methods.
21172
21173 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
21174          
21175         * DataGridDrawingLogic.cs: 
21176                 - Takes rows into account on Colum calculations
21177                 - Returns the column when clickig
21178         * DataGrid.cs:
21179                 - Fixes default HitTestInfo values
21180                 - Fixes HitTestInfo.ToString
21181                 - Fixes ResetBackColor          
21182         
21183 2005-09-28  Jackson Harper  <jackson@ximian.com>
21184
21185         * MdiChildContext.cs: Obey rules for fixed sized windows (no
21186         sizing or cursor changes). Also added some temp code to draw the
21187         titlebars text (Makes dev a little easier).
21188
21189 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
21190
21191         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
21192
21193 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
21194          
21195         * ListBox.cs: Fixes bug 76253
21196
21197 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
21198
21199         * ImageList.cs: Added comments about the current implementation. Added
21200           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
21201           Format32bppArgb to preserve transparency and can use Graphics.FromImage
21202           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
21203           with Bitmap.LockBits for better performance. Revised the whole file to
21204           match MS.NET behaviour and provide better performance. Non-public
21205           interface members are calling public members even when they throw
21206           NotSupportedException for better maintainability. Moved ColorDepth,
21207           ImageSize, ImageStream and TransparentColor implementations to
21208           ImageCollection for better performance as these properties are not used
21209           by ImageList.
21210         * ImageListStreamer.cs: Added a new internal constructor that takes an
21211           ImageList.ImageCollection and serializes Images based on
21212           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
21213           match ImageList property name.
21214
21215 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
21216
21217         * ListBox.cs: Fixes IndexFromPoint for last item
21218
21219 2005-09-27  Jackson Harper  <jackson@ximian.com>
21220
21221         * Form.cs: Set the position of new mdi children correctly.
21222
21223 2005-09-27  Jackson Harper  <jackson@ximian.com>
21224
21225         * MdiClient.cs: New mdi children need to be added to the back of
21226         the controls collection so the zorder is set correctly. Also add a
21227         count of all the child windows that have been created.
21228
21229 2005-09-27  Jackson Harper  <jackson@ximian.com>
21230
21231         * Form.cs (CreateParams): Setup MDI forms correctly.
21232
21233 2005-09-27  Jackson Harper  <jackson@ximian.com>
21234
21235         * MdiChildContext.cs:
21236         * MonthCalendar.cs:
21237         * UpDownBase.cs:
21238         * ListBox.cs:
21239         * ListView.cs:
21240         * TextBoxBase.cs:
21241         * TreeView.cs:
21242         * ScrollableControl.cs:
21243         * ComboBox.cs: Add implicit controls using the new implict control
21244         functionality in ControlCollection. Also try to block multiple
21245         control add in a suspend/resume layout to save some cycles.
21246         
21247 2005-09-27  Jackson Harper  <jackson@ximian.com>
21248
21249         * Control.cs: Add functionality to the controls collection to add
21250         'implicit controls' these are controls that are created by the
21251         containing control but should not be exposed to the user. Such as
21252         scrollbars in the treeview.
21253         * Form.cs: The list var of the ControlsCollection is no longer
21254         available because of the potential of implicit controls getting
21255         ignored by someone accessing the list directly.
21256
21257 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
21258
21259         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
21260           loose it's parent. (Fixed bug introduced in r49103 when we added
21261           setting the child parent to null on Remove)
21262
21263 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
21264
21265         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
21266         * Splitter.cs: Added missing attributes for BorderStyle property.
21267         * TextBoxBase.cs: Marked Calculate* methods internal.
21268         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
21269         MS.NET.
21270
21271 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
21272          
21273         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
21274
21275 2005-09-25  Jackson Harper  <jackson@ximian.com>
21276
21277         * TreeView.cs: Update the node bounds correctly regardless of
21278         whether the node is visible.
21279
21280 2005-09-25  Jackson Harper  <jackson@ximian.com>
21281
21282         * ImageList.cs: Don't dispose the image after it is added to the
21283         image list. Only reformat images that need to be resized.
21284
21285 2005-09-25  Jackson Harper  <jackson@ximian.com>
21286
21287         * ImageList.cs: Don't set the format when changing the image.
21288
21289 2005-09-25  Jackson Harper  <jackson@ximian.com>
21290
21291         * TreeView.cs: We can't just assume the node has a font. Use the
21292         treeviews font if no node font is available.
21293
21294 2005-09-25  Jackson Harper  <jackson@ximian.com>
21295
21296         * TreeView.cs: Allow the scrollbars to be reset with negative
21297         values.
21298         - Don't add scrollbars to negative sized windows.
21299
21300 2005-09-23  Jackson Harper  <jackson@ximian.com>
21301
21302         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
21303         old Mono.Posix. Also remove some stray code that shouldn't have
21304         been committed.
21305
21306 2005-09-23  Jackson Harper  <jackson@ximian.com>
21307
21308         * TreeView.cs: Attempt at proper sizing of the horizontal
21309         scrollbar. Also don't resize the scrollbars unless they are
21310         visible.
21311
21312 2005-09-23  Jackson Harper  <jackson@ximian.com>
21313
21314         * TreeView.cs: We don't need to expand the invalid area when the
21315         selection changes, as this is all drawn in the node's bounding
21316         box. The area needs to be expanded (previous typo was contracting
21317         it) when the focus rect moves.
21318
21319 2005-09-23  Jackson Harper  <jackson@ximian.com>
21320
21321         * TreeView.cs: Display the selection box under the correct
21322         circumstances. We were rendering white text with no selection box
21323         before.
21324
21325 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
21326
21327         * TextControl.cs(Split): Now updates selection start/end if it points 
21328           into a line that's being split. Fixes a FIXME and bug #75258
21329
21330 2005-09-23  Jackson Harper  <jackson@ximian.com>
21331
21332         * Binding.cs:
21333         * ListControl.cs: Don't use the path when retrieving binding
21334         managers from the binding context. My bat sense tells me that the
21335         path is only used on insertion.
21336
21337 2005-09-22  Jackson Harper  <jackson@ximian.com>
21338
21339         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
21340
21341 2005-09-22  Jackson Harper  <jackson@ximian.com>
21342
21343         * Splitter.cs: There are special cursors used for splitting.
21344         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
21345
21346 2005-09-22  Jackson Harper  <jackson@ximian.com>
21347
21348         * Splitter.cs: Change the cursor appropriately when the splitter
21349         is moused over, so the user actually knows there is a splitter
21350         there.
21351
21352 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21353
21354        * Label.cs : Fix ToString method to give same output as MS.NET
21355
21356 2005-09-22  Jackson Harper  <jackson@ximian.com>
21357
21358         * TreeView.cs: Create the scrollbars when the handle is created
21359         and add them right away, just make them invisble. Also account for
21360         the window being shrunk vertically to the point that the vert
21361         scrollbar needs to be added.
21362         - Remove some 0.5 adjustments to get around anti aliasing issues.
21363         
21364 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
21365          
21366         * MainMenu.cs: Fixes default value
21367         * MenuItem.cs: Fixes default value
21368
21369 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
21370
21371         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
21372
21373 2005-09-21  Jackson Harper  <jackson@ximian.com>
21374
21375         * Control.cs: Don't try to set the border style on the window if
21376         it hasn't been created. When the window is created the border
21377         style will be used.
21378
21379 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21380
21381         * Control.cs (Update): Don't call XplatUI if we don't have a
21382           window handle yet
21383
21384 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21385
21386         * ContainerControl.cs: Instead of throwing an exception, print
21387           a one-time warning about Validate not being implemented
21388         * XplatUIWin32.cs: Removed debug output
21389
21390 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21391
21392         * Control.cs: Only set XplatUI background if we expect the windowing
21393           system to handle the background. This stops controls that draw their
21394           own background from flickering
21395
21396         * XplatUIX11.cs: Support custom visuals and colormaps for window 
21397           creation. This allows, amongst other things, using MWF X11 windows 
21398           with OpenGL.
21399
21400 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21401
21402         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
21403           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
21404           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
21405           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
21406           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
21407           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
21408           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
21409           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
21410           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
21411           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
21412           GridColumnStylesCollection.cs, 
21413           IDataGridColumnStyleEditingNotificationService.cs,
21414           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
21415           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
21416           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
21417           TreeNodeCollection.cs, AmbientProperties.cs, 
21418           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
21419           DataObject.cs, ErrorProvider.cs, Splitter.cs,
21420           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
21421           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
21422           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
21423           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
21424           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
21425           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
21426           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
21427           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
21428           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
21429           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
21430           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
21431           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
21432           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
21433           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
21434           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
21435           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
21436           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
21437           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
21438           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
21439           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
21440           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
21441           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
21442           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
21443           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
21444           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
21445           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
21446           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
21447           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
21448           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
21449           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
21450           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
21451           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
21452           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
21453           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
21454           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
21455
21456 2005-09-21  Jackson Harper  <jackson@ximian.com>
21457
21458         * TreeNode.cs: Call Before/After Expand not Collapse when
21459         expanding.
21460
21461 2005-09-20  Jackson Harper  <jackson@ximian.com>
21462         
21463         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
21464
21465 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21466          
21467         * ListViewItem.cs:
21468                 - Fixes bug 76120
21469                 - Fixes proper storing of subitems
21470                 - Fixes not updated items
21471
21472 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
21473
21474         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
21475           things if our window handle isn't created yet. Also disabled 
21476           debug for TextBoxBase
21477
21478 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
21479
21480         * MenuAPI.cs: Remove filtering of events to allow menu usage
21481
21482 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21483
21484         * Cursor.cs: Allow null to be passed to Cursor.Current.
21485
21486 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
21487
21488         * ThemeWin32Classic.cs:
21489           - Change some private methods/fields to protected virtual so that 
21490             they can be accessed and overriden in derived classes
21491           - First refactoring of some methods. Derived themes now don't 
21492             need to duplicate the complete code from ThemeWin32Classic
21493         * ThemeNice.cs:
21494           - Added nice StatusBar
21495           - Derive from ThemeWin32Classic and not Theme
21496           - Removed duplicate ThemeWin32Classic code
21497
21498 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21499
21500         * Control.cs (ControlCollection.Add): If the value null is passed
21501         the control is ignored. 
21502
21503         Optimize this loop.
21504
21505 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
21506
21507         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
21508           PostQuitMessage state.
21509         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
21510
21511 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
21512
21513         * Application.cs: Our constructor will never get called, move 
21514           initialization to fields; fixes bug #75933
21515
21516 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21517
21518         * FileDialog.cs :
21519                 - Allow files to be selected properly using file name
21520                 combo box.
21521                 - Add ability to change diretory (absolute / relative)
21522                 using file name combo box.
21523
21524 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21525          
21526         * ListBox.cs: 
21527                 - Fixes Multicolumn listboxes item wrong calculations
21528                 - Allows to click when only one item is in the listbox
21529                 - Fixes crash when no items using keyboard navigation
21530
21531 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
21532
21533         * ComboBox.cs: Reverted almost everything from the latest patch which
21534           broke ComboBox
21535
21536 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
21537         
21538         * ToolTip.cs:
21539                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
21540         * ComboBox.cs:
21541                 - When DropDownStyle is Simple, it does not show scrollbar 
21542                 to the last item of the list.
21543                 - When DropDownStyle is Simple, it crashed when the list was 
21544                 scrolled down with the down cursor key.
21545                 - Fixed a bug that when DropDownStyle is DropDownList, the 
21546                 selected item was not shown.
21547                 - The position of the selected item was not preserved when 
21548                 the next dropdown happened.
21549         * ThemeWin32Classic.cs:
21550                 - Items were wrapped at the right end.
21551         * CheckedListBox.cs:
21552                 - Fixed Add method
21553         * ListBox.cs:
21554                 - Items should be fully shown.
21555                 - When resizing and vertical scrollbar disappeared, the item 
21556                 of index 0 should be on the top of the list.
21557                 - GetItemRectangle should consider the size of ver. scrollbar
21558         * StatusBar.cs:
21559                 - SizingGrip area should not be allocated when it is not 
21560                 displayed.
21561                 - Now it reflects MinWidth of the containing panel and 
21562                 fixed a crash that happens when its width becomes so small.
21563
21564 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21565
21566         * CheckedListBox.cs: Fixes bug 76028
21567         * ListBox.cs: Fixes bug 76028
21568
21569 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21570
21571         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
21572         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
21573
21574 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
21575
21576         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
21577
21578 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21579
21580         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
21581
21582 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21583
21584         * IRootGridEntry.cs: Added
21585         * PropertyGridCommands.cs: Added
21586         * PropertiesTab.cs: Added missing methods and property
21587         * PropertyGridView.cs: Made class internal
21588         * PropertyGridTextBox.cs: Made class internal
21589
21590 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21591
21592         * MimeIcon.cs: Try to check some other environment variables
21593           if "DESKTOP_SESSION" returns "default"
21594
21595 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21596
21597         * ThemeNice.cs: Corrected background colors (e.g. menus)
21598         * ColorDialog.cs: Use correct background colors for controls
21599
21600 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21601
21602         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
21603
21604 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
21605
21606         * RichTextBox.cs: Added initial implementation
21607         * lang.cs: Removed. Was accidentally checked in long time ago
21608         * TODO: Removed. Contents were obsolete
21609
21610 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21611                                                                                 
21612         * PropertiesTab.cs : Added
21613
21614 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21615                                                                                 
21616         * PropertyGrid.cs : Update
21617         * PropertyGridView.cs : Update
21618         * System.Windows.Forms.resx : Added images and strings
21619
21620 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
21621
21622         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
21623  
21624 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
21625
21626         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
21627           a busy loop right after the Ungrab the X11 display is otherwise 
21628           blocked
21629
21630 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
21631
21632         * ThemeWin32Classic.cs: Optimise the use of clipping
21633
21634 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
21635
21636         * DataGrid.cs: fixes recursion bug
21637
21638 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
21639
21640         * ThemeNice.cs: 
21641           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
21642           - Cleanup
21643
21644 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
21645
21646         * ThemeNice.cs: Draw nice ProgressBars
21647
21648 2005-09-01  Miguel de Icaza  <miguel@novell.com>
21649
21650         * VScrollBar.cs: Another buglet found by Aaron's tool. 
21651
21652         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
21653         bug finder.
21654
21655 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
21656
21657         * ThemeNice.cs:
21658           - Added nicer menu drawing
21659           - Updated DrawTab
21660           - some refactoring
21661
21662 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21663
21664         * CreateParams.cs (ToString): Made output match MS
21665         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
21666             handle is already created (to avoid forcing window creation)
21667         * XplatUIX11.cs: Set window text to caption after creating window,
21668           in case Text was set before window was created
21669         * Form.cs: Use this.Text instead of a static string as caption
21670
21671 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21672
21673         * NotifyIcon.cs: Don't set the window to visible; this screws
21674           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
21675           OnPaint without a bitmap)
21676         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
21677           happen very often anyway; we could add the check to the WM_PAINT 
21678           event generation code
21679
21680 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21681
21682         * NotifyIcon.cs: Fill the icon area with a background color, to 
21683           avoid 'residue' when transparent icons are drawn
21684         * XplatUIX11.cs:
21685           - Handle whole_window == client_window when destroying windows
21686           - SystrayAdd(): Set client_window to whole_window value to
21687             get mouse and other events passed to NotifyIcon
21688
21689 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21690
21691         * Form.cs: Set proper default for Opacity property
21692         * NotifyIcon.cs:
21693           - ShowSystray(): Don't bother creating telling the OS
21694             about the systray item if no icon is provided
21695           - Now handles WM_NCPAINT message to deal with whole/client window
21696             split
21697           - Create window as visible to not get caught by Expose optimization
21698         * Hwnd.cs: Removed debug message
21699         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
21700           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
21701             PaintEventStart/End to use new client argument
21702         * TextBoxBase.cs:
21703           - Commented out debug messages
21704           - Switched PaintEventStart/End to use new client argument
21705         * XplatUI.cs: Added client window bool to PaintEventStart()/
21706           PaintEventEnd() calls, to support drawing in non-client areas
21707         * XplatUIDriver.cs: 
21708           - Added client window bool to PaintEventStart()/PaintEventEnd() 
21709             calls, to support drawing in non-client areas
21710           - Added conditional compile to allow using MWF BeginInvoke 
21711             on MS runtime
21712         * XplatUIX11.cs:
21713           - Added some conditional debug output
21714           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
21715             whole/client window split
21716           - Implemented handling of client argument to PaintEventStart()/End()
21717         * Control.cs:
21718           - Throw exception if BeginInvoke() is called and the window handle
21719             or one of the window's parent handles is not created
21720           - Added conditional compile to allow using MWF BeginInvoke on
21721             MS runtime
21722           - get_Parent(): Only sets parent if handle is created. This avoids
21723             forcing window handle creation when parent is set.
21724           - Now fires Layout and Parent changed events in proper order
21725           - Switched to use Handle instead of window.Handle for Z-Order setting,
21726             the get_Parent() patch above causes us to possibly get null for 'window'
21727           - Implemented handling of client argument to PaintEventStart()/End()
21728           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
21729             default handling)
21730           - Now sends a Refresh() to all child windows when Refresh() is called
21731
21732 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
21733
21734         * Form.cs: Added (non-functional) Opacity property
21735         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
21736
21737 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
21738         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
21739           use export MONO_THEME=nice to activate it.
21740           Currently supported controls:
21741           - Button
21742           - ComboBox
21743           - ScrollBar
21744           - TabControl (TabAlignment.Top only, other will follow)
21745         * ThemeEngine.cs: Add theme nice
21746         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
21747           if enabled
21748
21749 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
21750
21751         * Splitter.cs: Resize docked control and its neighbor.
21752
21753 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21754         -- Making Windows with Menus layout correctly --
21755         * Form.cs : The first leg of the fix
21756                 Menu setter - adjust Client Size as needed to make space for the menu
21757                 SetClientSizeCore - doesn't call base version to be able to pass the 
21758                         menu handle to XplatUI.CalculateWindowRect
21759         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
21760         * XplatUIX11.cs: The critical second leg of the fix
21761                 GetWindowPos needs to use a recalculated client_rect
21762                 so that resizing the window doesn't break layout of child controls. 
21763                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
21764                 Lots of \t\n killed
21765
21766 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
21767
21768         * Label.cs: Now properly recalculates width and height on Font and Text
21769           changes if AutoSize is set
21770
21771 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21772         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
21773
21774 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
21775
21776         * ImageList.cs: Makes ToString method compatible with MS
21777
21778 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
21779
21780         * MenuAPI.cs: fixes bug 75716
21781
21782 2005-08-11 Umadevi S <sumadevi@novell.com>
21783         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
21784
21785 2005-08-11 Umadevi S <sumadevi@novell.com>
21786         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
21787
21788 2005-08-10  Umadevi S <sumadevi@novell.com>
21789         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
21790
21791 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
21792
21793         * Menu.cs: fixes bug 75700
21794         * MenuAPI.cs: fixes navigation issues
21795
21796 2005-08-09  Umadevi S <sumadevi@novell.com>
21797         * CheckedListBox.cs - simple fix for GetItemChecked.
21798
21799 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
21800
21801         * ComboBox.cs: Serveral fixes
21802         * ListBox.cs: Serveral fixes
21803
21804 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
21805
21806         * ComboBox.cs: Fixes FindString methods and GetItemHeight
21807         * ListBox.cs: Fixes FindString methods
21808
21809 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
21810
21811         * DataGrid.cs: fixes bugs exposed by new tests
21812
21813 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
21814
21815         * Mime.cs: Compile Mono assembly references only if compiling
21816           with Mono (Allows to build with VS.Net again)
21817
21818 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
21819
21820         * Control.cs (PaintControlBackground): Draw background image
21821         corrrectly.
21822         (CheckForIllegalCrossThreadCalls): Stubbed.
21823         
21824         * Form.cs (OnCreateControl): Center when should be centered.
21825         
21826         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
21827
21828 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
21829
21830         * Binding.cs: Binding to properties should be case unsensitive
21831
21832 2005-07-18 vlindos@nucleusys.com
21833
21834         * DataGrid.cs: fixes setmember order
21835
21836 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
21837
21838         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
21839         * FileDialog.cs: FileDialog is now resizable and uses the new
21840           MimeIconEngine
21841
21842 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
21843
21844         * DataGridTextBoxColumn.cs: default value
21845         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
21846         * GridTableStylesCollection.cs: fixes checking MappingName
21847         * DataGridDrawingLogic.cs: fixes drawing logic issues
21848         * DataSourceHelper.cs: rewritten to make compatible with more data sources
21849         * DataGrid.cs: fixes    
21850
21851 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
21852
21853         * MimeGenerated.cs: Use case sensitive comparer for
21854           NameValueCollections
21855
21856 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
21857
21858         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
21859         * ThemeWin32Classic.cs: bug fixes, code refactoring
21860         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
21861         * DataGrid.cs: bug fixes, code refactoring
21862         * DataGridTextBox.cs: bug fixes, code refactoring
21863         * DataGridColumnStyle.cs:  bug fixes, code refactoring
21864         * Theme.cs:  bug fixes, code refactoring
21865
21866 2005-07-01  Peter Bartok  <pbartok@novell.com> 
21867
21868         * TextControl.cs: Quick fix for the reported crash on ColorDialog
21869           and other text box usage
21870
21871 2005-07-01  Jackson Harper  <jackson@ximian.com>
21872
21873         * TabControl.cs: Make sure the bottom of the tab covers the pages
21874         border.
21875
21876 2005-06-30  Peter Bartok  <pbartok@novell.com> 
21877
21878         * Form.cs (ShowDialog): Assign owner of the dialog
21879         * TextBoxBase.cs: Always refresh caret size when deleting, caret
21880           might have been moved to a tag with different height
21881
21882 2005-06-30  Jackson Harper  <jackson@ximian.com>
21883
21884         * Form.cs: Don't create an infinite loop when setting focus
21885         * MenuItem.cs: Don't dirty the parents if we don't have any
21886
21887 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
21888
21889         * LibSupport.cs: Rename
21890
21891 2005-06-29  Peter Bartok  <pbartok@novell.com>
21892
21893         * TextBoxBase.cs: Re-align caret after deleting a character
21894         * TextControl.cs:
21895           - DeleteChars(): Ensure that tag covers the provided position
21896           - StreamLine(): Drop reference for dropped tag
21897
21898 2005-06-29  Peter Bartok  <pbartok@novell.com> 
21899
21900         * TextControl.cs: 
21901           - Selections now work properly, anchoring at the initial location
21902             and properly extending in either direction (SetSelectionToCaret(),
21903             SetSelectionStart() and SetSelectionEnd())
21904           - No longer redraws the whole control on selection change, now
21905             calculates delta between previous and new selection and only
21906             invalidates/redraws that area
21907           - Fixed FindPos() math off-by-one errors
21908           - Changed DeleteChars() to verify the provided tag covers the
21909             provided position, selections may have a tag that doesn't cover
21910             the position if the selection is at a tag border
21911           - Fixed off-by-one errors in DeleteChars()
21912           - Added missing streamlining check in DeleteChars() to remove
21913             zero-length tags
21914           - Implemented Invalidate() method, now properly calculates exposures
21915             between two given lines/positions
21916           - Implemented SetSelection()
21917           - Obsoleted and removed FixupSelection()
21918           - Improved RecalculateDocument() logic, removing code duplication
21919
21920 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21921
21922         * LibSupport.cs: changes to match different input/output arguments.
21923
21924 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21925
21926         * LibSupport.cs: added libsupport.so init routine.
21927
21928 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
21929         
21930         * ControlBindingsCollection.cs
21931                 - Throws an exception on null datasource when adding
21932                 - Checks for duplicated bindings when adding
21933
21934 2005-06-28  Jackson Harper  <jackson@ximian.com>
21935
21936         * TreeView.cs (OnKeyDown): Support left and right properly
21937         (navigates as well as expanding and collapsing.
21938         - Add support for Multiply, this expands all the selected nodes
21939         children.
21940         - Fix some tabbing.
21941
21942 2005-06-28  Jackson Harper  <jackson@ximian.com>
21943
21944         * TreeView.cs: Implement keyboard navigation, currently supports,
21945         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
21946         support for toggling checkboxes with the space bar.
21947
21948 2005-06-28  Jackson Harper  <jackson@ximian.com>
21949
21950         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
21951         tree.
21952
21953 2005-06-28  Jackson Harper  <jackson@ximian.com>
21954
21955         * TreeView.cs: Add missing event.
21956
21957 2005-06-27  Peter Bartok  <pbartok@novell.com> 
21958
21959         * TextControl.cs:
21960           - Made line ending size configurable (now allows for counting 
21961             lineendings as \n or \r\n)
21962           - Added margin to viewport to keep caret visible on right side
21963           - Fixed translation routines for line/pos to documentpos to consider
21964             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
21965           - Fixed some line-endings to be unix style
21966           - Fixed Document.FormatText to perform it's calculations 1-based
21967           - Added descriptions for a few methods that might otherwise get 
21968             used wrong
21969           - Added NOTE section with some basic conventions to remember at 
21970             the top of the file
21971           - Major fixup for RichTextBox selection drawing:
21972             * Fixed crashes when multiple tags on a single line were selected
21973             * fixed selection box drawing not overlaying text
21974             * fixed bogus offset calculation for tags not starting at index 1
21975             * Switched behaviour from using multiple Substrings of a 
21976               StringBuilder.ToString() to using multiple 
21977               StringBuilder.ToString(start, length) statements, hoping this is
21978               faster (kept original version commented out in the code, in case
21979               original version was faster)
21980         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
21981           alignment != Left
21982         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
21983           call it as well
21984
21985 2005-06-27  Jackson Harper  <jackson@ximian.com>
21986
21987         * TabControl.cs: Move to the left and right with the arrow
21988         keys. These keys don't cycle beyond first and last like
21989         tab. Refresh all the tabs when scrolling them to the left or
21990         right.
21991
21992 2005-06-27  Jackson Harper  <jackson@ximian.com>
21993
21994         * TabControl.cs:
21995           - ToString: Added method
21996           - CreateParams: Remove TODO and comment
21997           - OnKeyDown: Cycle through bounds properly.
21998           - SelectedIndex: Scroll to the right or left if we need to
21999           display the newly selected tab.
22000
22001 2005-06-23  Jackson Harper  <jackson@ximian.com>
22002
22003         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
22004         set.
22005
22006 2005-06-23  Jackson Harper  <jackson@ximian.com>
22007
22008         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
22009         CTRL-SHIFT-TAB, and HOME, END are there any others?
22010
22011 2005-06-23  Jackson Harper  <jackson@ximian.com>
22012
22013         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
22014
22015 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22016         
22017         * DataGridTextBoxColumn.cs: fixes and enhancements
22018         * ThemeWin32Classic.cs: fixes and enhancements
22019         * DataGridBoolColumn.cs:  fixes and enhancements
22020         * DataGridDrawingLogic.cs:  fixes and enhancements
22021         * CurrencyManager.cs: fixes and enhancements
22022         * DataGrid.cs: fixes and enhancements
22023         * DataGridColumnStyle.cs:  fixes and enhancements
22024
22025 2005-06-22  Jackson Harper  <jackson@ximian.com>
22026
22027         * TabControl.cs: Add some missing methods that just call into the
22028         base. Make the TabPageCollection's IList interface behave in the
22029         same manner as the MS implementation.
22030
22031 2005-06-22  Peter Bartok  <pbartok@novell.com> 
22032
22033         * TextControl.cs: Added sanity check
22034         * TextBoxBase.cs: 
22035           - Fixed wrapping behaviour, don't set wrap on single line controls
22036             (this fixes the breakage of colordialog introduced in an earlier
22037              checkin)
22038           - Added rudimentary support for autoscrolling right-aligned controls
22039             (still needs fixing, also, center alignment scroll is missing)
22040
22041 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22042         
22043         * ScrollBar.cs: Fixes thumbpos on Maximum values
22044
22045 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
22046         
22047         * PropertyGridView.cs: Pass context information to UITypeEditors 
22048
22049 2005-06-21  Peter Bartok  <pbartok@novell.com> 
22050
22051         * TextBoxBase.cs:
22052           - Now calling PositionCaret with absolute space coordinates
22053           - Enabled vertical scrolling
22054           - Better tracking of scrollbar changes, tied into WidthChange
22055             event
22056           - Improved cursor tracking
22057           - Removed debug output
22058         * TextControl.cs:
22059           - PositionCaret coordinates are now works in absolute space, not 
22060             the canvas
22061           - Improved tracking of document size
22062           - Added events for width and height changes
22063
22064 2005-06-21  Peter Bartok  <pbartok@novell.com>
22065
22066         * Form.cs: Set focus to active control when form is activated
22067         * TextControl.cs: 
22068           - Added word-wrap functionality to RecalculateLine() 
22069           - Added some short function descriptions for VS.Net to aid in
22070             writing dependent controls
22071           - Added Caret property, returning the current coords of the caret
22072           - Added ViewPortWidth and ViewPortHeight properties
22073           - Added Wrap property
22074           - Added CaretMoved event
22075           - Removed some old debug code
22076           - Split() can now create soft splits
22077           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
22078           - Added method to format existing text
22079           - Fixed size/alignment calculations to use viewport
22080           - RecalculateDocument now can handle changing line-numbers while
22081             calculating lines
22082
22083         * TextBox.cs:
22084           - Added some wrap logic, we don't wrap if alignment is not left
22085           - Added casts for scrollbar var, base class switched types to
22086             also support RichTextBoxA
22087           - Implemented handling of scrollbar visibility flags
22088
22089         * TextBoxBase.cs:
22090           - Switched scrollbars type to RichTextBoxScrollBars to support
22091             RichTextBox
22092           - Added tracking of canvas width/height
22093           - Switched scrollbars to be not selectable (to keep focus on text)
22094           - Added central CalculateDocument() method to handle all redraw
22095             requirements
22096           - Added ReadOnly support
22097           - Added WordWrap support
22098           - Fixed handling of Enter key (we now treat it as a DialogKey)
22099           - Fixed caret positioning when h or v scroll is not zero
22100           - Fixed placing/generation of vertical scrollbar
22101           - Added CalculateScrollBars() method to allow updating scrollbar
22102             limits and visibility
22103           - Fixed handling of horizontal scroll
22104           - Added handling of vertical scroll
22105           - Implemented auto-'jump' when caret moves to close to a left or
22106             right border and there is text to be scrolled into view (currently
22107             there's the potential for a stack overflow, until a bug in
22108             scrollbar is fixed)
22109
22110 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
22111         
22112         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
22113
22114 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
22115
22116         * Mime.cs:
22117         - added inodes.
22118         - return application/x-zerosize for files with size zero
22119           (if no extension pattern matches).
22120         - check matches collection for strings too.
22121         - return only the first mime type if the name value
22122           collection has more than one mime type.
22123
22124 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
22125         
22126         * PropertyGrid.cs: Cleaned up some TODOs
22127         * PropertyGridView.cs: Added support for UITypeEditors
22128
22129 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22130         
22131         * DataGrid.cs: clears cached value
22132
22133 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22134
22135         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
22136         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
22137         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
22138         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
22139         
22140 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
22141
22142         * ThemeWin32Classic.cs: fixes colour
22143
22144 2005-06-15  Peter Bartok  <pbartok@novell.com>
22145
22146         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
22147         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
22148         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
22149         * Control.cs: Added some MWFCategory and MWFDescription attributes
22150         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
22151
22152 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
22153
22154         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
22155         usage
22156
22157 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
22158
22159         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
22160         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
22161         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
22162         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
22163         * DataGrid.cs: default datagrid settings for Default Styles, fixes
22164         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
22165
22166 2005-06-13  Jackson Harper  <jackson@ximian.com>
22167
22168         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
22169         isn't printed when the user enables dropping. (X11 does accept
22170         drops).
22171         
22172 2005-06-13  Jackson Harper  <jackson@ximian.com>
22173
22174         * TreeView.cs: Remove some TODOS.
22175
22176 2005-06-13  Jackson Harper  <jackson@ximian.com>
22177
22178         * Form.cs: Hook into the mdi framework.
22179         * MdiClient.cs: Use the base control collections add method so
22180         parents get setup correctly. Set the default back colour and dock
22181         style.
22182         * MdiChildContext.cs: New class, this bad actor handles an
22183         instance of an MDI window. Right now there is only basic
22184         support. You can drag, close, and resize windows. Minimize and
22185         Maximize are partially implemented.
22186
22187 2005-06-13  Jackson Harper  <jackson@ximian.com>
22188
22189         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
22190         freaky when both vals are negative. NOTE: There are probably other
22191         places in XplatUIX11 that this needs to be done.
22192
22193 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
22194
22195         * DataGrid.cs: implement missing methods, move KeyboardNavigation
22196         * DataGridColumnStyle.cs: fixes signature
22197
22198 2005-06-12  Jackson Harper  <jackson@ximian.com>
22199
22200         * XplatUIX11.cs: Use sizing cursors similar to the ones on
22201         windows.
22202
22203 2005-06-11  Jackson Harper  <jackson@ximian.com>
22204
22205         * StatusBarPanel.cs: Signature cleanups. Implement
22206         BeginInit/EndInit.
22207
22208 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
22209
22210         * DataGridTextBoxColumn.cs: Honors aligment
22211         * GridColumnStylesCollection.cs: Contains is case unsensitive
22212         * GridTableStylesCollection.cs: several fixes
22213         * DataGridTableStyle.cs: default column creation
22214         * DataGridDrawingLogic.cs: fixes
22215         * CurrencyManager.cs: ListName property
22216         * DataGrid.cs: multiple styles support
22217         * DataGridColumnStyle.cs: fixes
22218         
22219
22220 2005-06-10  Peter Bartok  <pbartok@novell.com>
22221
22222         * Control.cs(Select): Moved SetFocus call to avoid potential
22223           loops if controls change the active control when getting focus
22224         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
22225           the up/down buttons
22226
22227 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
22228
22229         * ImageListConverter.cs: Implemented
22230
22231 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22232
22233         * MonthCalendar.cs: Wired in NumericUpDown control for year
22234
22235 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22236
22237         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
22238           DoubleClick events, since they are not meant to be fired.
22239
22240 2005-06-09  Peter Bartok  <pbartok@novell.com>
22241
22242         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
22243           Jonathan's standalone controls into MWF, implemented missing
22244           events, attributes and methods; added xxxAccessible classes
22245         * AccessibleObject.cs: Made fields internal so other classes
22246           can change them if needed
22247
22248 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
22249
22250         * UpDownBase.cs: Complete implementation
22251         * NumericUpDown.cs: Complete implementation
22252         * DomainUpDown.cs: Complete implementation
22253
22254 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
22255
22256         * DataGridTextBoxColumn.cs: drawing fixes
22257         * DataGridCell.cs: fixes ToString method to match MSNet
22258         * DataGridTableStyle.cs: fixes
22259         * DataGridBoolColumn.cs: fixes, drawing
22260         * DataGridDrawingLogic.cs: fixes, new methods
22261         * DataGridTextBox.cs: Keyboard and fixes
22262         * DataGrid.cs:
22263                 - Keyboard navigation
22264                 - Scrolling fixes
22265                 - Row selection (single, multiple, deletion, etc)
22266                 - Lots of fixes
22267         
22268 2005-06-07  Jackson Harper  <jackson@ximian.com>
22269
22270         * ThemeWin32Classic.cs: Clear the background area when drawing
22271         buttons.
22272
22273 2005-06-06  Peter Bartok  <pbartok@novell.com>
22274
22275         * ImageListStreamer.cs: Fixed signature for GetData
22276         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
22277         * ComboBox.cs:
22278           - Added missing ChildAccessibleObject class
22279           - Added missing OnXXXFocus overrides, switched to using those
22280             instead of the event handler
22281         * Control.cs:
22282           - Added Parent property for ControlAccessibleObject
22283           - Fixed signatures
22284           - Fixed attributes
22285           - Added ResetBindings()
22286         * ListBindingConverter.cs: Implemented some methods
22287         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
22288         * ImageList.cs: Implemented basic handle scheme, removed TODOs
22289         * ContainerControl.cs: Fixed signature, now subscribing to the
22290           ControlRemoved event instead of overriding the handler, LAMESPEC
22291         * CurrencyManager.cs: Added missing attribute
22292         * MonthCalendar.cs: Added missing properties
22293
22294 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22295
22296         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
22297         
22298 2005-06-06  Gaurav Vaish and Ankit Jain
22299
22300         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
22301         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
22302         
22303 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22304
22305         * Control.cs: fixes CreateParams Width / Height.
22306
22307 2005-06-05  Peter Bartok  <pbartok@novell.com>
22308
22309         * Win32DnD.cs: Removed compilation warnings
22310
22311 2005-06-05  Peter Bartok  <pbartok@novell.com>
22312
22313         * Control.cs (CreateParams): Since we don't know if one of the
22314           properties we use is overridden, lets make sure if we fail accessing
22315           we continue with a backup plan
22316
22317 2005-06-05  Peter Bartok  <pbartok@novell.com>
22318
22319         * Win32DnD.cs:
22320           - Removed debug output
22321           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
22322             struct
22323           - Plugged resource leak
22324         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
22325           MS size
22326
22327 2005-06-05  Peter Bartok  <pbartok@novell.com>
22328
22329         * XplatUIWin32.cs: Removed DnD code
22330         * Win32DnD.cs: Implemented drop source and drop target functionality
22331
22332 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22333
22334         * UpDownBase.cs: remove duplicate addition of event, enable some code
22335         that was commented out.
22336         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
22337         Validate input when a key is pressed. It works fine now for every
22338         combination of Hexadecimal. Only missing some drawing love when sharing
22339         space with other controls.
22340
22341 2005-06-04  Peter Bartok  <pbartok@novell.com>
22342
22343         * Control.cs:
22344           - We need to pass a window for DragDrop, so enable callback events
22345           - Added DnD callback events when being a DragSource
22346         * XplatUI.cs (StartDrag): Added window handle argument
22347         * XplatUIDriver.cs (StartDrag): Added window handle argument
22348         * QueryContinueDragEventArgs: Made fields internally accessible so
22349           drivers can set them
22350         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
22351           can set them
22352
22353 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
22354
22355         * DataGridTextBoxColumn.cs: column text editing
22356         * DataGridTableStyle.cs: Respect columns styles created by the user
22357         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
22358         * DataGridBoolColumn.cs: bool column editing
22359         * DataGrid.cs: fixes to scrolling, properties, etc
22360         * DataGridTextBox.cs: handle keyboard
22361         * DataGridColumnStyle.cs: fixes
22362
22363 2005-06-02  Jackson Harper  <jackson@ximian.com>
22364
22365         * ImageListStreamer.cs: Somewhat broken implementation of
22366         GetObjectData. The RLE needs some work to match MS properly.
22367
22368 2005-06-02  Jackson Harper  <jackson@ximian.com>
22369
22370         * X11Dnd.cs: Attempting to keep at least one file in MWF
22371         monostyled.
22372
22373 2005-06-02  Peter Bartok  <pbartok@novell.com>
22374
22375         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
22376           that way
22377
22378 2005-06-02  Peter Bartok  <pbartok@novell.com>
22379
22380         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
22381         * XplatUI.cs: Added DoDragDrop() method
22382         * XplatUIDriver.cs: Added DoDragDrop() method
22383
22384 2005-06-02  Jackson Harper  <jackson@ximian.com>
22385
22386         * Splitter.cs: Implement BorderStyle.
22387
22388 2005-06-02  Jackson Harper  <jackson@ximian.com>
22389
22390         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
22391         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
22392         X11 using XDND.
22393
22394 2005-06-02  Peter Bartok  <pbartok@novell.com>
22395
22396         * DataObject.cs:
22397           - Added Data setter
22398           - Fixed broken insertion code for SetData, now also
22399             overwrites any existing entry of the same format name
22400         * Hwnd.cs: Added list of pointers that automatically gets
22401           freed when the window is disposed
22402         * XplatUI.cs: Call driver initialization method when loading
22403           a driver
22404         * Control.cs:
22405           - OnDragLeave takes EventArgs, not DragEventArgs
22406           - Added setting of WS_EX_ACCEPTFILES style when dropping is
22407             supported
22408           - Forces style update when drop state changes
22409         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
22410           not perfect since we cannot (yet) call the IDataObject.GetData()
22411           method, we keep getting 0x80004005 error, dunno why)
22412
22413 2005-06-02  Peter Bartok  <pbartok@novell.com>
22414
22415         * DragEventArgs.cs: Make fields internal so we can cache the
22416           object and re-set the fields from XplatUI
22417
22418 2005-06-02  Jackson Harper  <jackson@ximian.com>
22419
22420         * Control.cs: Add some internal methods so the DnD subsystem can
22421         raise DnD events. Also call into the driver when AllowDrop is set.
22422         * XplatUI.cs:
22423         * XplatUIDriver.cs: New method for setting whether or not a window
22424         is allowed to accept drag and drop messages.
22425                 
22426 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
22427         
22428         * ScrollBar.cs: Make sure that values sent in Scroll events
22429         are always between Maximum and Minimum.
22430
22431 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
22432
22433         * Menu.cs: Call MenuChanged when menuitem visibility has been
22434         changed.
22435         * MenuItem.cs: Rebuild menu when item is (not) visible.
22436         * MainMenu.cs: MainMenu has special MenuChanged.
22437         * Theme.cs: Caption and FrameBorderSize are not fixed.
22438         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
22439         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
22440         * XplatUIX11.cs,
22441         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
22442         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
22443
22444 2005-05-30  Jackson Harper  <jackson@ximian.com>
22445
22446         * DataFormat.cs: We can't statically initialize this stuff because
22447         it calls into the xplatui and could create a loop. So we lazy init
22448         it.
22449
22450 2005-05-28  Jackson Harper  <jackson@ximian.com>
22451
22452         * Control.cs: Proper implementation of Product(Name/Version).
22453
22454 2005-05-27  Jackson Harper  <jackson@ximian.com>
22455
22456         * DataObject.cs: Dont crash if no data is found.
22457
22458 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
22459         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
22460                 as per status page, guessing it should be set to true
22461
22462 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
22463
22464         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
22465         * DataGridTableStyle.cs: set proper formatting text, def header text
22466         * ThemeWin32Classic.cs: new themable paramaters
22467         * DataGridBoolColumn.cs: paint check box, get data, fixes
22468         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
22469         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
22470         * DataGridColumnStyle.cs: fixes
22471         * Theme.cs: new themable paramaters
22472                 
22473 2005-05-26  Peter Bartok  <pbartok@novell.com>
22474
22475         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
22476
22477 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22478         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
22479
22480 2005-05-24  Peter Bartok  <pbartok@novell.com>
22481
22482         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
22483           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
22484           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
22485           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
22486           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
22487           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
22488           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
22489           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
22490           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
22491           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
22492           missing attributes, etc
22493         * DataGridPreferredColumnWidthTypeConverter.cs: Added
22494
22495 2005-05-24  Peter Bartok  <pbartok@novell.com>
22496
22497         * Help.cs: Added, implemented trivial functions, throws up MessageBox
22498           when user tries to get help
22499         * DataObject.cs, DataFormats.cs, LinkArea.cs,
22500           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
22501           to suppress warnings
22502         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
22503           avoid unreachable code warning
22504
22505 2005-05-20  Peter Bartok  <pbartok@novell.com>
22506
22507         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
22508
22509 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22510
22511         * DataGridTextBoxColumn.cs: Basic painting methods
22512         * DataGridTableStyle.cs: Set table style in the column
22513         * ThemeWin32Classic.cs: Use Theme for colors
22514         * DataGridDrawingLogic.cs: Implement more drawing
22515         * DataGrid.cs: drawing, theming, enhacements, fixes
22516         * DataGridColumnStyle.cs: fixes, drawing
22517         * Theme.cs: theming for Datagrid
22518
22519 2005-05-20  Peter Bartok  <pbartok@novell.com>
22520
22521         * Cursor.cs: Implemented GetObjectData() method
22522
22523 2005-05-20  Peter Bartok  <pbartok@novell.com>
22524
22525         * Cursors.cs: Added setting of cursor name
22526         * Cursor.cs:
22527           - Implemented constructors
22528           - Implemented Draw and DrawStretched
22529           - Implemented Current property
22530           - Implemented == and != operators
22531           - Implemented Dispose()
22532           - Implemented ToString
22533           - Added missing attributes
22534         * XplatUIX11.cs:
22535           - Added missing reset for OverrideCursor when DoEvents is called
22536           - Fixed creation of cursor, logic was wrong
22537         * XplatUIWin32.cs:
22538           - Added missing reset for OverrideCursor when DoEvents is called
22539           - Fixed creation of cursor, bit arrays were swapped
22540         * Clipboard.cs: Removed obsolete MonoTODO attribute
22541
22542 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22543
22544         * ComboBox.cs: fixes OnSelectedItemChanged
22545         * ControlBindingsCollection.cs: fixes item range check
22546
22547 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22548
22549         * UpDownBase.cs:
22550                 - Calc preferred height properly
22551                 - Implement missing properties
22552                 
22553         * NumericUpDown.cs: Implement missing events
22554
22555 2005-05-19  Jackson Harper  <jackson@ximian.com>
22556
22557         * TabControl.cs: New method that resizes the tab pages before
22558         redrawing them. This as needed as the control is double buffered
22559         and sizing will not be recalculated unless ResizeTabPages is
22560         called.
22561         * TabPage.cs: Set base.Text instead of Text in the constructor so
22562         that UpdateOwner does not get called. Use the new Redraw method of
22563         TabControl instead of Refresh so the sizing is recalculated.
22564         * ThemeWin32Classic.cs: Draw the text for button tabs.
22565
22566 2005-05-19  Jackson Harper  <jackson@ximian.com>
22567
22568         * Control.cs: Paint control background images. Fix typo where
22569         PaintControlBackground was not getting called correctly.
22570
22571 2005-05-19  Peter Bartok  <pbartok@novell.com>
22572
22573         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
22574           I can investigate, apparently I broke FileDialog
22575
22576 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
22577
22578         * AxHost.cs: Some simple properties.
22579         * Control.cs: window must be accessible after ctor.
22580         * Form.cs: Added TransparencyKey property.
22581         * TextBoxBase.cs: Implemented Clear. Text property can be null.
22582         * XplatUIWin32.cs: SetBorderStyle implemented.
22583
22584 2005-05-18  Peter Bartok  <pbartok@novell.com>
22585
22586         * DataObject.cs: Entries are not global but particular to the
22587           DataObject, now it behaves that way
22588         * XplatUIWin32.cs: Implemented Clipboard methods
22589         * Clipboard.cs: Implemented
22590         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
22591         * XplatUIOSX.cs: Updated to final clipboard prototypes
22592         * XplatUIX11.cs: Implemented Clipboard methods
22593         * XplatUIDriver.cs: Updated to final clipboard prototypes
22594         * XplatUIStructs.cs:
22595           - Added BITMAPINFOHEADER struct
22596           - Added ClipboardFormats enum
22597         * X11Structs.cs:
22598           - Added ClipboardStruct
22599           - Added Atom enum items for clipboard types
22600           - Fixed atom types for Selection event structures
22601         * DataFormats.cs:
22602           - Added internal properties and methods for drivers to enumerate
22603             all known formats
22604           - Switched initialization method to allow drivers to assign their
22605             own IDs even for the MS predefined clipboard IDs
22606         * XplatUI.cs: Updated to final clipboard interface
22607
22608 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22609         * PropertyGridView.cs: Fixed compiler warnings.
22610
22611 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22612         * PropertyGrid.cs: Added some event calls
22613         * PropertyGridView.cs: Change drawing code to use double buffering
22614         * PropertyGridTextBox.cs: Changed Text property name
22615         * GridItem.cs: Added Bounds property.
22616         * GridEntry.cs: Added Bounds property.
22617
22618 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
22619
22620         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
22621         since GetType() may not return the correct type if the object is
22622         a remoting proxy.
22623
22624 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
22625
22626         * TreeNodeCollection.cs: fixes get/set item ranges
22627         
22628 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22629
22630         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
22631                 
22632 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22633
22634         * ComboBox.cs: Fix item range comparation
22635         * ListView.cs: Fix item range comparation
22636
22637 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22638
22639         * FontDialog.cs:
22640           - Clear example panel when OnPaint is called
22641           - Better solution for displaying the example panel text
22642           - Select default indexes in the ListBoxes
22643
22644 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22645
22646         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
22647
22648 2005-05-11  Peter Bartok  <pbartok@novell.com>
22649
22650         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
22651         * SelectionRangeConverter.cs: Implemented
22652         * PropertyGrid.cs: Fixed attribute value
22653         * Control.cs:
22654           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
22655           - Added Sebastien Pouliot's CAS Stack Propagation fixes
22656         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
22657           that's common to all drivers. First methods to go there are
22658           Sebastien Pouliot's CAS Stack Propagation helper methods
22659         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
22660           Sebastien Pouliot for CAS Stack Propagation
22661
22662 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22663
22664         * OSXStructs.cs:
22665           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
22666
22667 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
22668
22669         * DataGridTextBoxColumn.cs: fixed some members
22670         * GridColumnStylesCollection.cs: indexed column is case insensitive
22671         * DataGridTableStyle.cs: fixes
22672         * ThemeWin32Classic.cs: add new theme parameter
22673         * Theme.cs: add new theme parameter
22674         * DataGridDrawingLogic.cs: Datagrid's drawing logic
22675         * DataGrid.cs: fixes, new internal properties, etc.
22676         * DataGridColumnStyle.cs: allows to set grid value
22677         *
22678
22679 2005-05-10  Peter Bartok  <pbartok@novell.com>
22680
22681         * AccessibleObject.cs:
22682           - Removed MonoTODO attribute on help, method is correct
22683           - Fixed Bounds property
22684         * AxHost.cs: Moved MonoTODO
22685         * ButtonBase.cs: Now setting AccessibleObject properties
22686         * RadioButton.cs: Setting proper AccessibleObject role
22687         * CheckBox.cs: Setting proper AccessibleObject role
22688         * ControlBindingsCollection.cs: Added properties, methods and attributes
22689         * DataFormats.cs: Fixed awkward internal API, and changed to enable
22690           userdefined DataFormats.Format items as well
22691         * ListControl.cs: Removed data_member from the public eye
22692         * OpenFileDialog.cs:
22693           - Made class sealed
22694           - Added missing attributes
22695         * SaveFileDialog.cs: Added missing attributes
22696         * ImageListStreamer.cs: Fixed code that caused warnings
22697         * LinkLabel.cs: Removed unreachable code
22698         * TreeView.cs: Fixed code that caused warnings
22699         * PropertyGridView.cs: Fixed code that caused warnings
22700         * GridColumnStylesCollection.cs: Added missing attributes
22701         * GridTableStylesCollection: Added missing attribute
22702         * PropertyManager: Added .ctor
22703         * SecurityIDType: Added
22704         * DataObject.cs: Implemented class
22705         * LinkArea.cs: Added missing attribute
22706
22707 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
22708
22709         * RadioButton.cs: call base method to allow to fire OnClick event
22710         * UpDownBase.cs: OnMouseUp call base method
22711         * CheckedListBox.cs: call base method before returning
22712         * TrackBar.cs: call base method before returning
22713         
22714
22715 2005-05-10  Peter Bartok  <pbartok@novell.com>
22716
22717         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
22718           for messages
22719
22720 2005-05-10  Peter Bartok  <pbartok@novell.com>
22721
22722         * DataFormats.cs: Implemented
22723         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
22724           XplatUIX11.cs: Added Clipboard APIs
22725         * XplatUIWin32.cs: Implemented Clipboard APIs
22726         * FolderBrowserDialog.cs: Added missing event, attributes
22727
22728 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
22729
22730         * CheckBox.cs: call base method to allow to fire OnClick event
22731
22732 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
22733
22734         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
22735
22736 2005-05-06  Peter Bartok  <pbartok@novell.com>
22737
22738         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
22739         * Screen.cs: Implemented
22740         * HelpNavigator.cs: Added
22741         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
22742           property
22743         * HelpProvider.cs: Implemented all we can do until we have a CHM
22744           help library (which means that "What's This" does work now)
22745
22746 2005-05-06  Jackson Harper  <jackson@ximian.com>
22747
22748         * XplatUIX11.cs: Fix waking up the main loop.
22749                 
22750 2005-05-05  Peter Bartok  <pbartok@novell.com>
22751
22752         * XplatUI.cs: Updated revision
22753         * Form.cs: Removed enless loop
22754         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
22755         * Label.cs (OnPaint): Added call to base.OnPaint()
22756         * ToolTip.cs: Made ToolTipWindow reusable for other controls
22757         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
22758         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
22759         * AxHost.cs: Added
22760         * ButtonBase.cs: Moved base.OnPaint() call to end of method
22761         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
22762           to ToolTip.ToolTipWindow for drawing and size methods; this allows
22763           reuse of ToolTipWindow by other controls
22764         * SizeGrip.cs: Moved base.OnPaint() call to end of method
22765         * XplatUIX11.cs: Now clipping drawing area (experimental)
22766         * PictureBox.cs: Moved base.OnPaint() call to end of method
22767         * Theme.cs: Fixed ToolTip abstracts to match new format
22768         * ErrorProvider.cs: Implemented
22769
22770 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
22771
22772         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
22773         * LinkLabel.cs:
22774                 - Adds cursors
22775                 - Handles focus
22776                 - Implements LinkBehavior
22777                 - Fixes many issues
22778
22779 2005-05-03  Jackson Harper  <jackson@ximian.com>
22780
22781         * ListView.cs: Calculate the scrollbar positioning on resize and
22782         paint, so they get put in the correct place.
22783
22784 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22785
22786         * ColorDialogs.cs: The small color panels are now handled by
22787           SmallColorControl. This fixes drawing of the focus rectangle
22788           and adds a 3D border.
22789
22790 2005-05-03  Peter Bartok  <pbartok@novell.com>
22791
22792         * Control.cs: Modified version of Jonathan Chamber's fix for
22793           double-buffering
22794
22795 2005-05-03  Jackson Harper  <jackson@ximian.com>
22796
22797         * ListView.cs: Remove redraw variable. Control now handles whether
22798         or not a redraw needs to be done, and will only raise the paint
22799         event if redrawing is needed.
22800
22801 2005-05-03  Jackson Harper  <jackson@ximian.com>
22802
22803         * Splitter.cs: No decorations for the splitter form. Cache the
22804         hatch brush.
22805
22806 2005-05-03  Jackson Harper  <jackson@ximian.com>
22807
22808         * TreeView.cs: Use dashed lines to connect nodes. Use the
22809         ControlPaint method for drawing the focus rect instead of doing
22810         that in treeview.
22811
22812 2005-05-02  Peter Bartok  <pbartok@novell.com>
22813
22814         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
22815
22816 2005-04-29  Jackson Harper  <jackson@ximian.com>
22817
22818         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
22819         entire image buffer. Just clear the clipping rectangle.
22820
22821 2005-04-29  Jackson Harper  <jackson@ximian.com>
22822
22823         * ThemeWin32Classic.cs: Don't draw list view items that are
22824         outside the clipping rectangle.
22825
22826 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
22827
22828         * ListBox.cs: added horizontal item scroll
22829
22830 2005-04-29  Jackson Harper  <jackson@ximian.com>
22831
22832         * ThemeWin32Classic.cs: Remove some old debug code that was
22833         causing flicker with the new double buffering code.
22834
22835 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
22836
22837         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
22838         behave like combobox and comboboxlist (still not sure if this is
22839         correct though).
22840
22841 2005-04-28  Jackson Harper  <jackson@ximian.com>
22842
22843         * ThemeWin32Classic.cs: Don't fill the middle of progress
22844         bars. This fills areas outside of the clip bounds that don't need
22845         to be filled.
22846
22847 2005-04-28  Jackson Harper  <jackson@ximian.com>
22848
22849         * Control.cs: Don't expose functionality to touch the image buffers.
22850         * ProgressBar.cs:
22851         * ListView.cs: We do not need to (and no longer can) manipulate
22852         the image buffers directly. All of this is handled by Control.
22853
22854 2005-04-28  Peter Bartok  <pbartok@novell.com>
22855
22856         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
22857           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
22858           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
22859
22860 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
22861
22862         * Combobox:
22863                 - Adjust control's height for non-simple comboboxes (bug fix)
22864                 - Remove dead code
22865         * MenuAPI.cs: remove unused var
22866         * ScrollBar.cs: remove unsed var
22867                  
22868         * ListBox.cs: unselect items when clearing
22869
22870 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
22871
22872         * ListControl.cs: honors OnPositionChanged and default Selected Item
22873         * ListBox.cs: unselect items when clearing
22874
22875 2005-04-27  Jackson Harper  <jackson@ximian.com>
22876
22877         * X11Keyboard.cs: Initialize a default keyboard and give a warning
22878         if a "correct" keyboard is not found. This will make us not crash,
22879         but might give some users bad keyboard layouts...seems to be the
22880         same thing rewind does.
22881
22882 2005-04-27  Jackson Harper  <jackson@ximian.com>
22883
22884         * BindingManagerBase.cs: Attach the current/position changed
22885         handlers to their respective events.
22886
22887 2005-04-27  Jackson Harper  <jackson@ximian.com>
22888
22889         * Control.cs: Make sure that the first WM_PAINT does a full draw,
22890         not just a blit.
22891         * ThemeWin32Classic.cs: Don't fill the background for picture
22892         boxes. This could overright user drawing.
22893         * ComboBox.cs: Just fill the clipping rect not the entire client
22894         rect when drawing the background. This prevents pieces of the
22895         image buffer from getting overwritten and is theoretically faster.
22896
22897 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
22898
22899         * ComboBox.cs: Databinding support fixes, fire missing events
22900         * ListControl.cs: implement missing methods and properties, fixes
22901         * ThemeWin32Classic.cs: Databiding support on Drawing
22902         * CheckedListBox.cs: Databinding support fixes, fire missing events
22903         * ListBox.cs: Databinding support fixes, fire missing events
22904         
22905 2005-04-25  Peter Bartok  <pbartok@novell.com>
22906
22907         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
22908
22909 2005-04-25  Jackson Harper  <jackson@ximian.com>
22910
22911         * TreeView.cs: Use the horizontal scrollbars height not width when
22912         determining how much of the client area is available.
22913
22914 2005-04-25  Jackson Harper  <jackson@ximian.com>
22915
22916         * Control.cs: Double buffering is handled differently now. As per
22917         the spec, the extra buffer is created in the WM_PAINT message and
22918         passed down to the control's drawing code.
22919         * GroupBox.cs:
22920         * Label.cs:
22921         * CheckBox.cs:
22922         * ProgressBar.cs:
22923         * RadioButton.cs:
22924         * ColorDialog.cs:
22925         * ComboBox.cs:
22926         * PropertyGridView.cs:
22927         * UpDownBase.cs:
22928         * MessageBox.cs:
22929         * MenuAPI.cs:
22930         * ListView.cs:
22931         * ButtonBase.cs:
22932         * SizeGrip.cs:
22933         * ScrollBar.cs:
22934         * ListBox.cs:
22935         * TrackBar.cs:
22936         * ToolBar.cs:
22937         * PictureBox.cs:
22938         * DateTimePicker.cs:
22939         * StatusBar.cs:
22940         * TreeView.cs: Update to new double buffering system.
22941         * MonthCalendar.cs: Uncomment block, as Capture is now
22942         working. Update to new double buffering
22943         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
22944         * PaintEventArgs.cs: New internal method allows us to set the
22945         graphics object. This is used for double buffering.
22946         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
22947         rectangle. The internal paint_area var has been removed from
22948         StatusBar. The clipping rect should be used instead.
22949         * Theme.cs: Give the PictureBox drawing method a clipping rect.
22950         * TabPage.cs: The RefreshTabs method was removed, so just call the
22951         tab controls Refresh method now.
22952         * TabControl.cs: Update to new double buffering. Make sure the
22953         handle is created before sizing the tab pages, otherwise we will
22954         get stuck in a loop.
22955
22956 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
22957
22958         * LinkLabel.cs: Fix typo, bug #74719; patch
22959           from Borja Sanchez Zamorano
22960
22961 2005-04-22  Jackson Harper  <jackson@ximian.com>
22962
22963         * TreeNode.cs: Implement Handle stuff.
22964         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
22965
22966 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
22967
22968         * DataGridTextBoxColumn.cs: call base constructors, fixes
22969         * GridColumnStylesCollection.cs: missing events, methods, and functionality
22970         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
22971         * DataGridTableStyle.cs: implements create default column styles
22972         * DataGridBoolColumn.cs: which types can handle
22973         * DataGrid.cs: missing methods, fixes, new functionality
22974         * DataGridColumnStyle.cs: fixes
22975
22976 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
22977         * FolderBrowserDialog.cs:
22978         - Use a thread to fill the TreeView
22979         - Adjusted some sizes
22980
22981 2005-04-19  Peter Bartok  <pbartok@novell.com>
22982
22983         * LinkLabel.cs: (Re-)create the pieces when setting the Text
22984           property. Fixes #74360.
22985
22986 2005-04-19  Jackson Harper  <jackson@ximian.com>
22987
22988         * XEventQueue.cs: Lock when getting the lockqueue size.
22989         * PictureBox.cs: Call base OnPaint
22990         
22991 2005-04-19  Peter Bartok  <pbartok@novell.com>
22992
22993         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
22994           messages were no longer being processed (this broke BeginInvoke)
22995
22996           
22997 2005-04-18  Jackson Harper  <jackson@ximian.com>
22998
22999         * TreeView.cs: buglet that caused node images to get drawn
23000         regardless of whether or not they were in the clipping rectangle.
23001
23002 2005-04-18  Jackson Harper  <jackson@ximian.com>
23003
23004         * CurrencyManager.cs: There are four rules for GetItemProperties:
23005         - If the type is an array use the element type of the array
23006         - If the type is a typed list, use the type
23007         - If the list contains an Item property that is not an object, use
23008         that property
23009         - use the first element of the list if there are any elements in
23010         the list.
23011         
23012 2005-04-17  Jackson Harper  <jackson@ximian.oom>
23013
23014         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
23015         click. This handles offsets for scrolling properly and reduces
23016         memory. Also fixed GetNode to not offset now that TopNode works
23017         properly.
23018         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
23019         
23020 2005-04-17  Jackson Harper  <jackson@ximian.com>
23021
23022         * CursorConverter.cs: Initial implementation.
23023
23024 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23025
23026         * ListControl.cs: work towards complex data binding support on ListControl
23027         * CurrencyManager.cs: work towards complex data binding support on ListControl
23028         * ListBox.cs: work towards complex data binding support on ListControl
23029
23030
23031 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23032
23033         * GridTableStylesCollection.cs: fixes name and constructor
23034         * DataGridTableStyle.cs: fixes
23035         * DataGridBoolColumn.cs: fixes names and constructors
23036         * DataGrid.cs: define methods and properties. Some init implementations
23037         * DataGridCell.cs: define methods and properties. Some init implementations
23038         * GridTablesFactory.cs: Define methods and properties
23039
23040 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
23041
23042         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
23043         graphics port changes.  We still want the coordinates in global screen
23044         coordinates.
23045
23046 2005-04-14  Jackson Harper  <jackson@ximian.com>
23047
23048         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
23049         check plus minus or checkbox clicks unless those features are enabled.
23050
23051 2005-04-14  Jackson Harper  <jackson@ximian.com>
23052
23053         * TreeView.cs: Add methods for setting the top and bottom visible
23054         nodes. TreeNode::EnsureVisible uses these methods.
23055         * TreeNode.cs: Implement EnsureVisible
23056
23057 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
23058
23059         * Form.cs: Pospone menu assignation if the window has not been created yet
23060         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
23061         size and position
23062
23063 2005-04-12  Jackson Harper  <jackson@ximian.com>
23064
23065         * TreeView.cs: Set the TopNode properly when scrolling
23066         occurs. This has the added benifit of reducing the amount of
23067         walking that needs to be done when drawing. Also removed an old
23068         misleading TODO.
23069         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
23070         
23071 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
23072
23073         * Timer.cs: fixes interval setting when the timer is already enabled
23074         
23075 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
23076
23077         * FolderBrowserDialog.cs: First approach
23078
23079 2005-04-09  Peter Bartok  <pbartok@novell.com>
23080
23081         * FolderBrowserDialog: Added
23082
23083 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
23084
23085         * LinkLabel.cs: move drawing code into the theme
23086         * ThemeWin32Classic.cs: drawing code and painting background bugfix
23087         * Theme.cs: define DrawLinkLabel method
23088
23089 2005-04-05  Jackson Harper  <jackson@ximian.com>
23090
23091         * BindingContext.cs: Use weak references so these bad actors don't
23092         stay alive longer then they need to.
23093
23094 2005-04-05  Jackson Harper  <jackson@ximian.com>
23095
23096         * ListControl.cs: Basic implementation of complex databinding.
23097         * ComboBox.cs:
23098         * ListBox.cs: Add calls to ListControl databinding methods.
23099
23100 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
23101
23102         * FileDialog.cs:
23103           - Don't change PopupButtonState to Normal when the
23104             PopupButton gets pressed several times.
23105           - Renamed ButtonPanel to PopupButtonPanel
23106
23107 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
23108
23109         * ColorDialog.cs: Use cached objects instead of creating them
23110         * LinkLabel.cs: Use cached objects instead of creating them
23111         * Splitter.cs: Use cached objects instead of creating them
23112         * FontDialog.cs: Use cached objects instead of creating them
23113         * PropertyGridView.cs: Use cached objects instead of creating them
23114         * MessageBox.cs: Use cached objects instead of creating them
23115         * FileDialog.cs: Use cached objects instead of creating them
23116         * ThemeWin32Classic.cs: Use cached objects instead of creating them
23117         * TreeView.cs: Use cached objects instead of creating them
23118         
23119 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
23120
23121         * Control.cs: use Equals to compare the font since no == op
23122         * ScrollBar.cs: use Equals to compare the font since no == op
23123
23124 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
23125
23126         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
23127
23128 2005-04-01  Jackson Harper  <jackson@ximian.com>
23129
23130         * Binding.cs: Implement IsBinding.
23131         * BindingManagerBase.cs:
23132         * PropertyManager.cs:
23133         * CurrencyManager.cs: Add IsSuspended property.
23134
23135 2005-04-01  Jackson Harper  <jackson@ximian.com>
23136
23137         * Binding.cs: Had some IsAssignableFrom calls backwards.
23138
23139 2005-04-01  Jackson Harper  <jackson@ximian.com>
23140
23141         * Binding.cs: Handle null data members when pulling data.
23142         * PropertyManager.cs: Handle the data member being a property that
23143         does not exist.
23144
23145 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
23146
23147         * DataGridTextBoxColumn.cs: fixes signature
23148         * DataGrid.cs: calls right constructor
23149
23150 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
23151
23152         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
23153         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
23154         * GridTableStylesCollection.cs: implements GridTableStylesCollection
23155         * DataGridTableStyle.cs: implements DataGridTableStyle
23156         * DataGridBoolColumn.cs: implements DataGridBoolColumn
23157         * DataGridTextBox.cs: implements DataGridTextBox
23158         * DataGridColumnStyle.cs: implements DataGridColumnStyle
23159
23160 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
23161
23162         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
23163
23164 2005-03-29  Peter Bartok  <pbartok@novell.com>
23165
23166         * Application.cs:
23167           - Properly implemented CompanyName property
23168           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
23169             returns a path that includes CompanyName, ProductName and
23170             Version (fixes bug #70330)
23171
23172 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
23173
23174         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
23175           fixes bug #72588.
23176
23177 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
23178
23179         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
23180         
23181           - Added ReadOnly CheckBox
23182           - Further refactoring: moved some code from Open-/SaveFileDialog
23183             to FileDialog
23184
23185 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
23186
23187         * OpenFileDialog.cs: Fixed CheckFileExists
23188         * FileDialog.cs:
23189           Moved FileView and DirComboBox outside FileDialog class.
23190           They can now be used outside FileDialog
23191
23192 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
23193
23194         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
23195         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
23196
23197 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
23198
23199         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23200           - Added missing CreatePrompt property in SaveDialog
23201           - Overall SaveDialog handling should be better now
23202           - Added non standard ShowHiddenFiles property
23203           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
23204           - Added InitialDirectory and RestoreDirectory support
23205
23206 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
23207
23208         * FileDialog.cs: Made dirComboBox usable
23209
23210 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
23211
23212         * FileDialog.cs: Added Filter support (case sensitiv)
23213
23214 2005-03-24  Jackson Harper  <jackson@ximian.com>
23215
23216         * TabControl.cs: Need a couple more pixels for the lines.
23217
23218 2005-03-23  Jackson Harper  <jackson@ximian.com>
23219
23220         * TabControl.cs: Give the tab page focus when it is selected.
23221
23222 2005-03-23  Jackson Harper  <jackson@ximian.com>
23223
23224         * TabControl.cs: Account for the drawing of tabs borders when
23225         invalidating. If the slider was clicked dont do click detection on
23226         the tabs.
23227
23228 2005-03-23  Jackson Harper  <jackson@ximian.com>
23229
23230         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
23231
23232 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
23233
23234         * CategoryGridEntry.cs: Added
23235         * GridItem.cs: Added helper properties
23236         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
23237         * GridEntry.cs: Updated code for collection
23238         * PropertyGrid.cs: Cleaned up some formatting
23239         * PropertyGridView.cs: Added drop down functionality for enums.
23240         * GridItemCollection.cs: Added enumerator logic
23241         * PropertyGridEntry.cs: Added
23242
23243 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23244
23245         * FileDialog.cs:
23246           - Removed unnecessary commented code
23247           - Fixed handling for entering the filename manually in the combobox
23248
23249 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23250
23251         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
23252
23253 2005-03-18  Peter Bartok  <pbartok@novell.com>
23254
23255         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
23256           them being touching the border
23257
23258 2005-03-18  Peter Bartok  <pbartok@novell.com>
23259
23260         * TextControl.cs: Quick hack to center text better
23261
23262 2005-03-18  Peter Bartok  <pbartok@novell.com>
23263
23264         * ControlPaint.cs:
23265           - Don't throw NotImplemented exceptions, just print a notice once
23266             instead (requested by Miguel). This makes running existing SWF
23267             apps a bit easier
23268         * Control.cs:
23269           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
23270           - Added context menu trigger on right click
23271         * Panel.cs: Trigger invalidate on resize
23272         * StatusBar.cs:
23273           - Removed old double-buffer drawing
23274           - Added ResizeRedraw style to force proper update of statusbar
23275         * ListView.cs:
23276           - Removed debug output
23277         * ThemeWin32Classic.cs:
23278           - Fixed drawing of status bar, now draws Text property if there
23279             are no defined panels
23280
23281 2005-03-18  Jackson Harper  <jackson@ximian.com>
23282
23283         * ImageList.cs: When the image stream is set pull all the images
23284         from it.
23285         * ImageListStreamer.cs: Implement reading image list streams.
23286
23287 2005-03-18  Peter Bartok  <pbartok@novell.com>
23288
23289         * ThemeWin32Classic.cs (DrawPictureBox):
23290           - Fixed calculations for centered drawing
23291           - Fixed drawing for normal mode, not scaling the image on normal
23292
23293 2005-03-18  Peter Bartok  <pbartok@novell.com>
23294
23295         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
23296           textbox
23297         * FileDialog.cs:
23298           - Made Open/Save button the accept button for FileDialog
23299           - Tied the cancel button to the IButtonControl cancel button
23300           - Save/Open now properly builds the pathname
23301           - Now handles user-entered text
23302           - Preventing crash on right-click if no item is selected
23303           - Fixed Text property, now uses contents of textbox
23304           - Fixed SelectedText property, now just returns the text part that
23305             is selected in the text box
23306
23307 2005-03-18  Jackson Harper  <jackson@ximian.com>
23308
23309         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
23310         rect, make sure to de-adjust the interior rect after drawing the
23311         tab text.
23312
23313 2005-03-18  Peter Bartok  <pbartok@novell.com>
23314
23315         * MenuAPI.cs: Remove menu *before* executing selected action to
23316           prevent the menu from 'hanging around'
23317           
23318 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
23319
23320         * XplatUIOSX.cs: Implemented WorkingArea property
23321
23322 2005-03-17  Peter Bartok  <pbartok@novell.com>
23323
23324         * XplatUIX11.cs: Fixed menu coord calculations
23325         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
23326           for calculating offsets
23327
23328 2005-03-17  Peter Bartok  <pbartok@novell.com>
23329
23330         * Hwnd.cs: Do not consider menu presence for default client
23331           rectangle location/size
23332         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
23333           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
23334           translation functions
23335         * FileDialog.cs: Fixed (what I presume is a) typo
23336
23337 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
23338
23339         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
23340           X access (avoids X-Async errors)
23341
23342 2005-03-16  Jackson Harper  <jackson@ximian.com>
23343
23344         * TabControl.cs: Raise the SelectedIndexChanged event.
23345
23346 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
23347
23348         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23349           - Removed vertical ToolBar and replaced it with a custom panel
23350             (desktop and home button already work)
23351           - Added Help button (some controls get resized or relocated then)
23352           - Draw correct text depending on Open or Save.
23353           - Fixed some typos...
23354
23355 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
23356
23357         * ScrollBar.cs:
23358           - Only change Maximum and Minimum when need it (bug fix)
23359
23360 2005-03-15  Peter Bartok  <pbartok@novell.com>
23361
23362         * Form.cs: Use Handle for icon, to trigger creation if
23363           the window does not yet exist
23364         * Control.cs:
23365           - CanSelect: Slight performance improvement
23366           - Focus(): Preventing possible recursion
23367           - Invalidate(): Removed ControlStyle based clear flag setting
23368           - WM_PAINT: fixed logic for calling OnPaintBackground
23369           - WM_ERASEBKGND: Fixed logic, added call to new driver method
23370             EraseWindowBackground if the control doesn't paint background
23371         * XplatUIWin32.cs:
23372           - Moved EraseWindowBackground() method to internal methods
23373           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
23374             is sent via SendMessage on BeginPaint call on Win32
23375         * XplatUIX11.cs:
23376           - Added EraseWindowBackground() method
23377           - No longer sends WM_ERASEBKGND on .Expose, but on call to
23378             PaintEventStart, which more closely matches Win32 behaviour
23379           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
23380           - Fixed SetFocus() to properly deal with client and whole windows
23381         * Hwnd.cs: Added ErasePending property
23382         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
23383         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
23384
23385 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
23386
23387         * XplatUIOSX.cs:
23388           - Fix hard loop when timers exist.
23389           - Fix bugs with middle and right click for 3 button mice.
23390
23391 2005-03-11  Peter Bartok  <pbartok@novell.com>
23392
23393         * XplatUIX11.cs:
23394           - get_WorkingArea: Need to call X directly, GetWindowPos only
23395             returns cached data now
23396           - Added sanity check to GetWindowPos hwnd usage
23397
23398 2005-03-11  Jackson Harper  <jackson@ximian.com>
23399
23400         * BindingManagerBase.cs: This method isn't used anymore as
23401         PullData now updates the data in the control.
23402
23403 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
23404
23405         * Form.cs: fixes menu drawing on X11
23406         * MenuAPI.cs:  fixes menu drawing on X11
23407
23408 2005-03-11  Peter Bartok  <pbartok@novell.com>
23409
23410         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
23411           from Jonathan Gilbert; should fix bug #73606
23412         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
23413           in Screen coordinates. Thanks, Jordi.
23414         * Form.cs: Added missing attribute
23415
23416 2005-03-11  Peter Bartok  <pbartok@novell.com>
23417
23418         * Form.cs:
23419           - Rudimentary Mdi support
23420           - Removed outdated FormParent code
23421           - Implemented lots of missing properties and methods, still missing
23422             transparency support
23423           - Added missing attributes
23424           - Implemented support for MaximumBounds
23425           - Added firing of various events
23426         * XplatUI.cs: Added SetIcon() method
23427         * XplatUIDriver.cs: Added SetIcon() abstract
23428         * XplatUIOSX.cs: Stubbed out SetIcon() method
23429         * XplatUIX11.cs:
23430           - Implemented SetIcon() support
23431           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
23432           - Switched to unix line endings
23433         * XplatUIWin32.cs:
23434           - Made POINT internal so for can access it as part of MINMAX
23435           - Implemented SetIcon() support
23436           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
23437             native Mdi support again, might have to go managed)
23438         * Control.cs: Now fires the StyleChanged event
23439         * MdiClient.cs: Added; still mostly empty
23440
23441 2005-03-10  Peter Bartok  <pbartok@novell.com>
23442
23443         * SaveFileDialog.cs: Added emtpy file
23444
23445 2005-03-08  Peter Bartok  <pbartok@novell.com>
23446
23447         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
23448           in turn triggers OnCreateContro) when creating a handle for the
23449           first time.
23450         * TextControl.cs: Fixed endless loop in certain cases when
23451           replacing the current selection
23452
23453 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
23454
23455         * ScrollBar.cs:
23456           - Honors NewValue changes in Scroll events allowing apps to change it
23457           - Adds First and Last Scroll events
23458           - Fixes Thumb events
23459
23460 2005-03-07  Peter Bartok  <pbartok@novell.com>
23461
23462         * Hwnd.cs: Added DefaultClientRectangle property
23463         * XplatUI.cs: Now using the X11 driver Where() method, which provides
23464           more detailed debug information
23465         * XplatUIX11.cs:
23466           - Fixed size-change feedback loop, where we would pull an old size
23467             off the queue and mistakenly change our window's size to an
23468             earlier value
23469           - Now compressing ConfigureNotify events, to reduce looping and
23470             redraw issues
23471         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
23472           is called
23473
23474 2005-03-07  Jackson Harper  <jackson@ximian.com>
23475
23476         * Binding.cs: Push data pushes from data -> property. Check if the
23477         property is readonly when attempting to set it.
23478
23479 2005-03-07  Jackson Harper  <jackson@ximian.com>
23480
23481         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
23482         instead of IsSubclassOf. Pulling data now sets the value on the
23483         control.
23484         * PropertyManager.cs:
23485         * CurrencyManager.cs: Just need to pull data when updating now,
23486         because PullData will set the value on the control.
23487
23488 2005-03-04  Jackson Harper  <jackson@ximian.com>
23489
23490         * Binding.cs: Implement data type parsing and converting on pulled
23491         data. TODO: Are there more ways the data can be converted?
23492
23493 2005-03-04  Jackson Harper  <jackson@ximian.com>
23494
23495         * Binding.cs: Support <Property>IsNull checks. Also bind to the
23496         controls Validating method so we can repull the data when the
23497         control loses focus.
23498
23499 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
23500
23501         * ColumnHeader.cs:
23502           - Fixes null string format
23503           
23504         * ListView.cs:
23505           - Adds enum type checks
23506           - Fixes redrawing and recalc need after changing some properties
23507           - Fixes on focus_item set after the event
23508           - Fixes adding columns after the control has been created
23509           
23510         * ThemeWin32Classic.cs:
23511           - Fixes CheckBox focus rectangle
23512           - Fixes ColumnHeader drawing
23513
23514
23515 2005-03-03  Jackson Harper  <jackson@ximian.com>
23516
23517         * Binding.cs: Bind to <Property>Changed events so we can detect
23518         when properties are changed and update the data.
23519
23520 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
23521
23522         * ImageList.cs:
23523           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
23524           - Fixes ImageList constructor with ImageList container
23525           - Fixes image scaling (wrong parameters at DrawImage)
23526
23527 2005-02-02  Jackson Harper  <jackson@ximian.com>
23528
23529         * Binding.cs: Make property searches case-insensitive. Eliminate
23530         some duplicated code.
23531
23532 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
23533
23534         * ComboBox.cs:
23535                 - Handle focus event
23536                 - Fix scrollbar events
23537                 - Discard highlighted item if remove it
23538                 - Fixes SelectedItem with strings
23539
23540 2005-03-01  Peter Bartok  <pbartok@novell.com>
23541
23542         * Control.cs:
23543           - Fixed Visible property, now follows (once again) parent chain
23544             to return false if any control in the chain is visible=false
23545           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
23546           - Fixed several places where is_visible instead of Visible was used
23547           - Implemented FIXME related to focus selection when setting focused
23548             control to be invisible
23549
23550         * XplatUIWin32.cs: Now using proper method to find out if window is
23551           visible. Thanks to Jordi for pointing it out
23552
23553 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
23554
23555         * ComboBox.cs: show/hide scrollbar instead of creating it
23556
23557 2005-02-27  Jackson Harper  <jackson@ximian.com>
23558
23559         * CurrencyManager.cs: Add PositionChanged stuff.
23560
23561 2005-02-27  Peter Bartok  <pbartok@novell.com>
23562
23563         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
23564         * XplatUIOSX.cs: Added GetMenuOrigin() stub
23565         * XplatUIWin32.cs: Implemented GetMenuOrigin()
23566         * XplatUIX11.cs:
23567           - Implemented GetMenuDC()
23568           - Implemented GetMenuOrigin()
23569           - Implemented ReleaseMenuDC()
23570           - Implemented generation of WM_NCPAINT message
23571           - Implemented generation and handling of WM_NCCALCSIZE message
23572         * Form.cs: Added debug helper message for Jordi's menu work
23573         * Hwnd.cs:
23574           - Modified ClientRect property; added setter, fixed getter to handle
23575             setting of ClientRect
23576           - Added MenuOrigin property
23577
23578 2005-02-26  Peter Bartok  <pbartok@novell.com>
23579
23580         * XplatUIX11.cs:
23581           - Destroys the caret if a window that's being destroyed contains it
23582           - Ignores expose events coming from the X11 queue for windows that
23583             already are destroyed
23584           - Now uses the proper variable for handling DestroyNotify, before we
23585             marked the wrong window as destroyed
23586           - Improved/added some debug output
23587
23588 2005-02-26  Peter Bartok  <pbartok@novell.com>
23589
23590         * X11Keyboard.cs: Fixes to work on 64bit systems
23591
23592 2005-02-26  Peter Bartok  <pbartok@novell.com>
23593
23594         * Control.cs:
23595           - Now calling OnHandleDestroyed from DestroyHandle()
23596             instead of Dispose()
23597           - Removed bogus call to controls.Remove() from DestroyHandle()
23598
23599 2005-02-26  Peter Bartok  <pbartok@novell.com>
23600
23601         * Control.cs: Properly destroy child windows when our handle is
23602           destroyed
23603
23604 2005-02-25  Peter Bartok  <pbartok@novell.com>
23605
23606         * XplatUI.cs:
23607           - Added 'DriverDebug' define to allow tracing XplatUI API calls
23608           - Alphabetized Static Methods and Subclasses
23609
23610         * XplatUIX11.cs:
23611           - Added XException class to allow custom handling of X11 exceptions
23612           - Created custom X11 error handler, tied into XException class
23613           - Added support for MONO_XEXCEPTIONS env var to allow the user
23614             to either throw an exception on X errors or continue running
23615             after displaying the error
23616           - Added handling of DestroyNotify message
23617           - Added handler for CreateNotify message (still disabled)
23618           - Improved (tried to at least) Where method to provide file and lineno
23619         * X11Structs.cs:
23620           - Added XErrorHandler delegate
23621           - Added XRequest enumeration (to suppor translation of errors)
23622
23623 2005-02-25  Jackson Harper  <jackson@ximian.com>
23624
23625         * PropertyManager.cs: Implement editing features
23626         * CurrencyManager.cs:
23627         * Binding.cs: First attempt at UpdateIsBinding
23628         * BindingManagerBase.cs: Call UpdateIsBinding before
23629         pushing/pulling data.
23630
23631 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
23632
23633         * MenuAPI.cs: Respect disabled items
23634         * ThemeWin32Classic.cs
23635                 - Caches ImageAttributes creation for DrawImageDisabled
23636                 - Fixes vertical menu line drawing
23637                 - Draws disabled arrows in disable menu items
23638
23639 2005-02-24  Peter Bartok  <pbartok@novell.com>
23640
23641         * Hwnd.cs:
23642           - Added UserData property to allow associating arbitrary objects
23643             with the handle
23644           - Fixed leak; now removing Hwnd references from static windows array
23645         * XplatUIWin32.cs:
23646           - Fixed Graphics leak in PaintEventEnd
23647           - Removed usage of HandleData, switched over to Hwnd class
23648         * HandleData.cs: Removed, obsoleted by Hwnd.cs
23649
23650 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23651
23652         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
23653         * ScrollBar.cs: Fixes bug
23654         * TrackBar.cs: removes death code, clipping, mimize refreshes,
23655          keyboard navigation enhancements
23656
23657 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23658
23659         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
23660         * GroupBox.cs: Add control styles
23661         * Label.cs: Add control styles
23662         * UpDownBase.cs: Add control styles
23663         * ListBox.cs: Add control styles
23664         * XplatUIWin32.cs: Fixes wrong parameter order
23665
23666
23667 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
23668
23669         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
23670
23671 2005-02-23  Jackson Harper  <jackson@ximian.com>
23672
23673         * PropertyManager.cs: Implement property binding. This doesn't
23674         seem to work yet though as (I think) there are some bugs in
23675         System.ComponentModel.PropertyDescriptor.
23676         * BindingContext.cs: Use new PropertyManager constructor.
23677
23678 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
23679
23680         * ProgressBar.cs: use clip region in ProgressBar
23681         * ThemeWin32Classic.cs: use clip region in ProgressBar
23682
23683 2004-02-22  Jackson Harper  <jackson@ximian.com>
23684
23685         * BindingsCollection.cs: Remove some debug code.
23686
23687 2005-02-22  Jackson Harper  <jackson@ximian.com>
23688
23689         * BindingContext.cs:
23690         * ControlBindingsCollection.cs:
23691         * CurrencyManager.cs:
23692         * Binding.cs:
23693         * BindingManagerBase.cs: Initial implementation
23694         * BindingsCollection.cs: Add an internal contains method that the
23695         BindingManagerBase uses to ensure bindings aren't added twice to
23696         the collection.
23697         * PropertyManager.cs: Stubbed out.
23698         * Control.cs:
23699         * ContainerControl.cs: Hook up databinding
23700         
23701 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
23702
23703         * XplatUIOSX.cs:
23704           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
23705           Fixed Invalidate/Update chain.
23706           Fixed tons of other minor bugs (this is almost a complete rewrite).
23707
23708 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
23709
23710         * ComboBox.cs: do subcontrol creation when the control is created
23711
23712 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23713
23714         * Label.cs: fixes image drawing (image and imagelist)
23715         * ThemeWin32Classic.cs: cache brushes
23716         
23717 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23718
23719         * Form.cs: Move menu drawing code to Theme class
23720         * ComboBox.cs: Move ComboBox drawing code to Theme class
23721         * MenuItem.cs: Move menu drawing code to Theme class
23722         * MenuAPI.cs: Move menu drawing code to Theme class
23723         * ThemeWin32Classic.cs: New methods
23724         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
23725         * ListBox.cs: Move Listbox drawing code to Theme class
23726         * Theme.cs: New methods
23727
23728 2005-02-20  Peter Bartok  <pbartok@novell.com>
23729
23730         * Control.cs:
23731           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
23732             only process mnemonics on those)
23733           - Fixed event sequence for key handling; first calling
23734             ProcessKeyEventArgs now
23735         * TextBoxBase.cs:
23736           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
23737             for processing non-character keys
23738           - Fixed WM_CHAR to generate proper event sequence before processing
23739         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
23740           generation
23741
23742 2005-02-19  Peter Bartok  <pbartok@novell.com>
23743
23744         * UserControl.cs: Added TextChanged event; added attributes
23745         * SizeGrip.cs: Implemented resizing and optional display of grip
23746         * Form.cs: Fixed attribute
23747         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
23748           Changed meaning of ScrollWindow bool argument; instead of the
23749           clear attribute (which will be true usually anyway), it gives the
23750           option of moving child controls as well.
23751         * XplatUIX11.cs:
23752           - Changed to match new ScrollWindow argument
23753           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
23754             now handles the implicit parent window a WM puts around us
23755         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
23756           to work)
23757         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
23758         * TreeView.cs: Adjusted to new ScrollWindow arguments
23759
23760 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23761
23762         * Form.cs: Menu integration with non-client area
23763         * MenuItem.cs: Menu integration with non-client area
23764         * MenuAPI.cs: Menu integration with non-client area
23765
23766 2005-02-18  Peter Bartok  <pbartok@novell.com>
23767
23768         * MethodInvoker.cs: Added
23769         * MdiLayout.cs: Added
23770         * SendKeys.cs: Started implementation
23771         * ErrorIconAlignment.cs: Added
23772
23773 2005-02-18  Peter Bartok  <pbartok@novell.com>
23774
23775         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
23776         * Form.cs: Added handling for Menu-related Non-client messages
23777
23778 2005-02-17  Peter Bartok  <pbartok@novell.com>
23779
23780         * UpDownBase.cs: Fixed typo, compilation errors
23781         * DomainUpDown.cs: Fixed attribute value
23782
23783 2005-02-16  Miguel de Icaza  <miguel@novell.com>
23784
23785         * UpDownBase.cs: Attach entry events.
23786         Propagate events.
23787         Add ForeColor property, Focused, InterceptArrowKeys (interception
23788         does not work yet).
23789
23790 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
23791
23792         * Form.cs:
23793                 - Redraw non client are on Setmenu
23794                 - Calc proper menu starting point
23795
23796 2005-02-17  Peter Bartok  <pbartok@novell.com>
23797
23798         * Application.cs: Fixed message_filter check
23799
23800 2005-02-17  Peter Bartok  <pbartok@novell.com>
23801
23802         * Application.cs: Now calls registered message filters
23803         * DockStyle.cs: Fixed attribute
23804         * Form.cs: Fixed attribute
23805         * Menu.cs: Fixed attribute
23806         * ToolTip.cs: Fixed attribute
23807         * TreeNode.cs: Added missing attributes and arranged in regions
23808         * PropertyGrid.cs: Fixed signatures
23809         * TreeNodeCollection.cs: Added attributes
23810         * Splitter.cs: Added missing attributes; arranged into regions
23811         * TabPage.cs: Added missing attributes; arranged into regions
23812         * TextBoxBase.cs: Added missing attributes
23813         * TextBox.cs: Added missing attributes
23814         * ArrangeDirection.cs: Added missing attributes
23815         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
23816         * ToolBarButton.cs: Fixed attributes
23817         * AnchorStyles.cs: Fixed attribute
23818         * TrackBar.cs: Fixed attributes
23819         * TabControl.cs: Added missing attributes and arranged into regions
23820         * ToolBar.cs: Fixed attribute
23821         * StatusBar.cs: Fixed signature, organized into regions and added
23822           attributes
23823         * StatusBarPanel.cs: Fixed attributes
23824         * ContentsResizedEventArgs.cs: Implemented
23825         * ContentsResizedEventHandler.cs: Implemented
23826         * DateBoldEventArgs.cs: Implemented
23827         * DateBoldEventHandler.cs: Implemented
23828         * UpDownEventArgs.cs: Implemented
23829         * UpDownEventHandler.cs: Implemented
23830         
23831 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
23832
23833         * Form.cs: first Menu NC refactoring
23834         * MenuAPI.cs: first Menu NC refactoring
23835         
23836 2005-02-16  Peter Bartok  <pbartok@novell.com>
23837
23838         * ImeMode.cs: Added missing attributes
23839         * Menu.cs: Fixed attribute
23840         * GroupBox.cs: Fixed attribute
23841         * Label.cs: Fixed attribute
23842         * ColorDialog.cs (RunDialog): Removed TODO attribute
23843         * ComboBox.cs: Fixed attributes
23844         * ListControl.cs: Added missing attributes
23845         * PropertyGrid.cs: Fixed attributes
23846         * Control.cs: Fixed attributes
23847         * ListViewItem.cs: Added TypeConverter attribute
23848         * NotifyIcon.cs: Fixed attributes
23849         * ListView.cs: Fixed attributes
23850         * ButtonBase.cs: Fixed attribute
23851         * ImageList.cs: Added missing attributes
23852         * ContainerControl.cs: Fixed signature
23853         * CheckedListBox.cs: Fixed attribute; added missing attributes
23854         * Panel.cs: Fixed attributes
23855         * PropertyTabChangedEventArgs.cs: Added missing attribute
23856         * PropertyValueChangedEventArgs.cs: Added missing attribute
23857         * Binding.cs: Fixed attribute
23858         * ListViewItemConverter: Implemented ListViewSubItemConverter class
23859         * ListBox.cs: Fixed attribute; added missing attributes;
23860         * ScrollableControl.cs: Added missing attributes
23861         * PictureBox.cs: Added missing attributes; implemented missing property
23862         * DateTimePicker.cs: Added missing attributes
23863         * Theme.cs (ToolWindowCaptionHeight): Fixed type
23864         * MonthCalendar.cs: Fixed attributes
23865         * StatusBarPanel.cs: Added missing attributes
23866         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
23867
23868 2005-02-16  Peter Bartok  <pbartok@novell.com>
23869
23870         * TextBoxBase.cs: The previous method to enforce height yet remember
23871           the requested high was less than ideal, this is an attempt to do
23872           it better.
23873         * Control.cs: Added comment about possible problem
23874         * Copyright: Updated format
23875         * GridItemType.cs: Fixed swapped values
23876
23877 2005-02-15  Jackson Harper  <jackson@ximian.com>
23878
23879         * BaseCollection.cs: Use property so we never access an
23880         uninitialized list. Also initialize the list in the property.
23881
23882 2005-02-15  Peter Bartok  <pbartok@novell.com>
23883
23884         * GroupBox.cs (ProcessMnemonic): Implemented
23885         * Label.cs (ProcessMnemonic): Implemented
23886         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
23887           hotkeys
23888
23889 2005-02-15  Peter Bartok  <pbartok@novell.com>
23890
23891         * RadioButton.cs (ProcessMnemonic): Implemented
23892         * CheckBox.cs (ProcessMnemonic): Implemented
23893         * Control.cs:
23894           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
23895             handling
23896           - Added internal method to allow calling ProcessMnemonic from other
23897             controls
23898         * ContainerControl.cs:
23899           - Started support for handling validation chain handling
23900           - Implemented ProcessMnemonic support
23901           - Added Select() call to Active, to make sure the active control
23902             receives focus
23903         * Form.cs: Setting toplevel flag for Forms (this was lost in the
23904           FormParent rewrite)
23905         * ThemeWin32Classic.cs:
23906           - DrawCheckBox(): Fixed stringformat to show hotkeys
23907           - DrawRadioButton(): Fixed stringformat to show hotkeys
23908         * CommonDialog.cs: Removed WndProc override, not needed
23909
23910 2005-02-14  Peter Bartok  <pbartok@novell.com>
23911
23912         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
23913           missed those in the rewrite
23914
23915 2005-02-14  Miguel de Icaza  <miguel@novell.com>
23916
23917         * NumericUpDown.cs (Increment, ToString): Add.
23918         (DecimalPlaces): implement.
23919         
23920         Add attributes.
23921         
23922         * UpDownBase.cs: Add the designer attributes.
23923
23924 2005-02-13  Peter Bartok  <pbartok@novell.com>
23925
23926         * Panel.cs: Removed border_style, now in Control
23927         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
23928           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
23929
23930 2005-02-13  Peter Bartok  <pbartok@novell.com>
23931
23932         * MouseButtons.cs: Added missing attributes
23933         * XplatUIStructs.cs: Added enumeration for title styles
23934         * LeftRightAlignment.cs: Added missing attributes
23935         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
23936           it compatible with Graphics.FromHwnd()
23937         * SelectedGridItemChangedEventArgs.cs: Fixed property type
23938         * Keys.cs: Added missing attributes
23939         * SelectionRange.cs: Added missing attributes
23940         * SelectionRangeConverter.cs: Added
23941         * XplatUI.cs:
23942           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
23943             ReleaseMenuDC methods
23944           - Renamed ReleaseWindow to UngrabWindow
23945           - Added proper startup notice to allow version identification
23946         * Form.cs:
23947           - Added missing attributes
23948           - Removed FormParent concept
23949         * Label.cs: Removed border_style field, now in Control
23950         * RadioButton.cs: Now properly selects RadioButton when focus is
23951           received
23952         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
23953         * Control.cs:
23954           - Added missing attributes
23955           - Added borderstyle handling
23956           - Removed FormParent concept support
23957           - Fixed calls to XplatUI to match changed APIs
23958           - Fixed bug that would case us to use disposed Graphics objects
23959           - Removed unneeded internal methods
23960           - PerformLayout(): Fixed to handle DockStyle.Fill properly
23961           - SelectNextControl(): Fixed to properly check common parents
23962         * TextBoxBase.cs: Removed border_style field (now in Control)
23963         * MessageBox.cs:
23964           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
23965             fixed calculations for form size
23966           - Added support for localized strings and icons
23967           - Improved form size calculations, added border
23968         * ListView.cs: Removed border_style field (now in Control)
23969         * X11Structs.cs: Moved several structs from X11 driver here
23970         * X11Keyboard.cs: Changed debug message
23971         * Application.cs: Removed FormParent concept support
23972         * CommonDialog.cs:
23973           - Resetting end_modal flag
23974           - Removed FormParent concept support
23975         * NativeWindow.cs: Removed FormParent concept support
23976         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
23977           Client area and Non-Client whole window to allow support for WM_NC
23978           messages
23979         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
23980           prevent using it until it supports Hwnd as per Geoff Norton's request
23981         * ToolBar.cs: Fixed drawing, was not doing proper drawing
23982         * PictureBox.cs: Removed border_style field, now in Control
23983         * XplatUIWin32.cs: Added new driver methods
23984
23985 2005-02-12  Peter Bartok  <pbartok@novell.com>
23986
23987         * OpacityConverter.cs: Implemented
23988         * Hwnd.cs: Internal class to support drivers that need to emulate
23989           client area/non-client area window behaviour
23990
23991 2005-02-11  Peter Bartok  <pbartok@novell.com>
23992
23993         * KeysConverter.cs: Implemented
23994
23995 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
23996
23997         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
23998         * LinkLabel: Added missing attributes
23999         * MainMenu.cs: fixes ToString
24000         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
24001         * ListBox.cs: fixes event position
24002         * TrackBar.cs: adds missing attributes and events
24003         
24004 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
24005
24006         * MenuItem.cs: Use SystemInformation and bug fixes
24007         * MenuAPI.cs: Use SystemInformation and bug fixes
24008
24009 2005-02-09  Jackson Harper  <jackson@ximian.com>
24010
24011         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
24012         their keystate otherwise things like VK_MENU get stuck "on".
24013
24014 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
24015
24016         * ListBox.cs: Fixes AddRange bug
24017         
24018 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
24019
24020         * ProgressBar.cs
24021                 - Add missing attributes
24022                 - Add missing method
24023                 
24024         * CheckedListBox.cs: Added missing attributes
24025                 - Add missing attributes
24026                 - Remove extra method
24027         
24028         * ComboBox.cs: Added missing attributes
24029         * VScrollBar.cs: Added missing attributes
24030         * ScrollBar.cs:  Added missing attributes
24031         * ListBox.cs: Fixes signature, add missing consts
24032         * LinkArea.cs:   Added missing attributes
24033         
24034
24035 2005-02-08  Peter Bartok  <pbartok@novell.com>
24036
24037         * Menu.cs: Added missing attributes
24038         * MainMenu.cs: Added missing attributes
24039         * GroupBox.cs: Added missing attributes
24040         * Label.cs: Added missing attributes
24041         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
24042         * ColorDialog.cs:
24043           - Added Instance and Options properties
24044           - Added missing attributes
24045         * Cursor.cs: Made Serializable
24046         * NotifyIcon: Added missing attributes
24047         * MenuItem.cs: Added missing attributes
24048         * TextBoxBase.cs: Implemented AppendText() and Select() methods
24049         * Panel.cs: Added Missing attributes
24050         * MonthCalendar.cs: Fixed CreateParams
24051
24052 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24053         
24054         * LinkLabel.cs:
24055                 - Fixes signature
24056                 - Fixes issues with links
24057                 - Adds the class attributes
24058
24059 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24060         
24061         * ComboBox.cs:
24062                 - Fixes button when no items available in dropdown
24063                 - Fixes repainting problems
24064                 - Adds the class attributes
24065                 
24066 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24067
24068         * XplatUIOSX.cs: Detect the menu bar and title bar height from
24069         the current theme.  Cache these on startup.
24070
24071 2005-02-07  Jackson Harper  <jackson@ximian.com>
24072
24073         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
24074         the scrollbar buttons when they are depressed.
24075
24076 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24077
24078         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
24079         Get the display size from the main displayid.  We currently dont
24080         support multiple display configurations.
24081
24082 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24083
24084         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
24085
24086 2005-02-07  Miguel de Icaza  <miguel@novell.com>
24087
24088         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
24089
24090 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
24091
24092         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
24093
24094 2005-02-04  Jackson Harper  <jackson@ximian.com>
24095
24096         * ThemeWin32Classic.cs: Respect the clipping rect when
24097         drawing. Only fill the intersection of clips and rects so there
24098         isn't a lot of large fills.
24099         * ScrollBar.cs: Pass the correct clipping rect to the theme
24100         engine. Remove some debug code.
24101
24102 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
24103         
24104         * DateTimePicker.cs:
24105                 - Fixed crash on DateTime.Parse, use Constructor instead
24106
24107 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24108         
24109         * MenuItem.cs:
24110         * MenuAPI.cs:
24111                 - Owner draw support (MeasureItem and DrawItem)
24112
24113 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24114         
24115         *  Menu.cs:
24116                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
24117                 - Fixes MenuItems.Add range
24118         * MenuItem.cs:
24119                 - MergeMenu and Clone and CloneMenu functions
24120
24121 2005-02-03  Jackson Harper  <jackson@ximian.com>
24122
24123         * ScrollBar.cs: Make abstract
24124         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
24125         is abstract.
24126
24127 2005-02-03  Jackson Harper  <jackson@ximian.com>
24128
24129         * ScrollBar.cs: First part of my scrollbar fixups. This removes
24130         all the unneeded refreshes and uses invalidates with properly
24131         computed rects.
24132
24133 2005-02-03  Peter Bartok  <pbartok@novell.com>
24134
24135         * ComponentModel.cs: Added
24136         * IDataGridEditingService.cs: Added
24137         * Timer.cs: Added missing attributes
24138         * ToolTip.cs: Added missing attributes
24139
24140 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
24141
24142         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
24143
24144 2005-02-03  Peter Bartok  <pbartok@novell.com>
24145
24146         * ListBox.cs: Added missing attributes
24147
24148 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
24149         
24150         * ListBox.cs:
24151                 - Fixes font height after font change
24152                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
24153                 
24154 2005-02-02  Peter Bartok  <pbartok@novell.com>
24155
24156         * HandleData.cs: Introduced static methods to allow class
24157           to be more self-contained and track it's own HandleData objects
24158         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
24159           HandleData to use new static methods
24160
24161 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
24162
24163         * Combobox.cs:
24164                 - Fixes default size and PreferredHeight
24165                 - Missing events
24166                 - ObjectCollection.Insert implementation
24167                 
24168         * ListControl.cs
24169                 - Fixes signature
24170         * ListBox.cs:
24171                 - Several fixes
24172                 - ObjectCollection.Insert implementation
24173                 - No selection after clean
24174                 - Small fixes
24175
24176 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24177
24178         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
24179
24180 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
24181
24182         * Combobox.cs:
24183                 - Caches ItemHeight calculation for OwnerDrawVariable
24184                 - Handles dropdown properly
24185                 - Fixes several minor bugs
24186
24187 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24188
24189         * ListBox.cs:
24190                 - Fixes 71946 and 71950
24191                 - Fixes changing Multicolumn on the fly
24192                 - Fixes keyboard navigation on Multicolumn listboxes
24193
24194 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24195         
24196         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
24197         crash reporter log.
24198
24199 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24200
24201         * XplatUIOSX.cs: Allow applications to actually exit.
24202
24203 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24204
24205         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
24206         their parent at creation time rather than lazily later.  Fixes a major
24207         regression we were experiencing.
24208
24209 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24210
24211         * ThemeWin32Classic.cs: more date time picker painting fixes
24212         * DateTimePicker.cs: more monthcalendar drop down fixes
24213         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
24214
24215 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24216
24217         * ScrollBar.cs:
24218                 - When moving the thumb going outside the control should stop the moving
24219                 - Adds the firing of missing events
24220                 - Fixes no button show if Size is not specified
24221                 - End / Home keys for keyboard navigation
24222
24223 2005-01-30  Peter Bartok  <pbartok@novell.com>
24224
24225         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
24226           sanity check to prevent theoretical loop
24227         * XplatUIWin32.cs (SetVisible): Removed debug output
24228         * XplatUIX11.cs (SystrayChange): Added sanity check
24229         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
24230         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
24231           behaviour, valid until the X11 client window rewrite is done
24232         * TextBox.cs (ctor): Setting proper default foreground and background
24233           colors
24234
24235 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
24236
24237         * Theme: Added DrawDateTimePicker to interface
24238         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
24239         * DateTimePicker.cs: Created (still needs keys and painting code)
24240         * DateTimePickerFormat.cs: added
24241         * MonthCalendar.cs: fixed CreateParams for popup window mode
24242           
24243 2005-01-29  Peter Bartok  <pbartok@novell.com>
24244
24245         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
24246           this should also the calculations for ligher/darker
24247         * Theme.cs: Fixed defaults for ScrollBar widths/heights
24248
24249 2005-01-29  Peter Bartok  <pbartok@novell.com>
24250
24251         * ArrangeDirection.cs: Added
24252         * ArrangeStartingPositon.cs: Added
24253         * SystemInformation.cs: Implemented
24254         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24255           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
24256           used by SystemInformation class
24257         * X11Strucs.cs: Added XSizeHints structure
24258         * MenuAPI.cs:
24259           - Fixed CreateParams to make sure the menu window is always visible
24260           - TrackPopupMenu: Added check to make sure we don't draw the
24261             menu offscreen
24262
24263 2005-01-29  Peter Bartok  <pbartok@novell.com>
24264
24265         * HandleData.cs: Added method for altering invalid area
24266         * TextBoxBase.cs: Implemented TextLength
24267
24268 2005-01-28  Peter Bartok  <pbartok@novell.com>
24269
24270         * XplatUIX11.cs: Improvement over last patch, not sending
24271           the WM_PAINT directly anymore, instead we scroll any pending
24272           exposed areas and let the system pick out the WM_PAINT later
24273
24274 2005-01-28  Peter Bartok  <pbartok@novell.com>
24275
24276         * SWF.csproj: Deleted, no longer used. Instead,
24277           Managed.Windows.Forms/SWF.csproj should be used
24278         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
24279           directly, to avoid a potential race condition with the next
24280           scroll
24281
24282 2005-01-28  Peter Bartok  <pbartok@novell.com>
24283
24284         * XplatUI.cs: Made class internal
24285
24286 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
24287
24288         * CheckedListBox.cs:
24289                 - Draw focus
24290                 - Fixed Drawing
24291                 - Missing methods and events
24292
24293 2005-01-27  Peter Bartok  <pbartok@novell.com>
24294
24295         * Application.cs (Run): Don't use form if we don't have one
24296
24297 2005-01-27  Peter Bartok  <pbartok@novell.com>
24298
24299         * TextBoxBase.cs (get_Lines): Fixed index off by one error
24300
24301 2005-01-27  Peter Bartok  <pbartok@novell.com>
24302
24303         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
24304         * GridItem.cs: Added; Patch by Jonathan S. Chambers
24305         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
24306         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
24307         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
24308         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
24309         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24310         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24311         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24312         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24313         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24314         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24315
24316 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24317
24318         * Combobox.cs:
24319                 - Draw focus on Simple Combobox
24320                 - Fixes drawing issues
24321                 - fixes 71834
24322
24323 2005-01-27  Peter Bartok  <pbartok@novell.com>
24324
24325         * Form.cs:
24326           - Place window in default location, instead of hardcoded 0/0
24327           - Send initial LocationChanged event
24328         * Control.cs:
24329           - UpdateBounds after creation to find out where the WM placed us
24330           - Make sure that if the ParentForm changes location the Form
24331             is notified
24332         * XplatUIX11.cs: XGetGeometry will not return the coords relative
24333             to the root, but to whatever the WM placed around us.
24334             Translate to root coordinates before returning toplevel
24335             coordinates
24336         * XplatUIWin32.cs: Removed debug output
24337         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
24338           flag to GetWindowPos, to allow translation of coordinates on X11
24339
24340 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24341
24342         * ListBox.cs: connect LostFocus Event
24343
24344 2005-01-27  Peter Bartok  <pbartok@novell.com>
24345
24346         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
24347           XplatUIX11.cs: Extended the Systray API
24348         * Form.cs: Removed debug output
24349         * Application.cs: Fixed focus assignment, always need to call
24350           XplatUI.Activate() since Form.Activate() has rules that may
24351           prevent activation
24352         * NotifyIcon.cs: Should be complete now
24353         * ToolTip.cs: Worked around possible timer bug
24354
24355 2005-01-27  Jackson Harper  <jackson@ximian.com>
24356
24357         * TabControl.cs:
24358         - Only invalidate the effected tabs when the
24359         selected index changes. This reduces drawing and gets rid of some
24360         flicker.
24361         - Only refresh if the tabs need to be shifted, otherwise only
24362         invalidate the slider button.
24363         - On windows the tabs are not filled to right if the slider is
24364         visible.
24365         
24366 2005-01-27  Jackson Harper  <jackson@ximian.com>
24367
24368         * TabControl.cs: Only refresh on mouseup if we are showing the
24369         slider. Also only invalidate the button whose state has changed.
24370
24371 2005-01-26  Peter Bartok  <pbartok@novell.com>
24372
24373         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
24374         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
24375           and SystrayRemove() methods
24376         * XplatUIOSX.cs: Stubbed Systray methods
24377         * XplatUIX11.cs:
24378           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
24379             methods
24380           - Fixed broken XChangeProperty calls (marshalling messed up things)
24381         * X11Structs.cs: Added enums and structs required for Size hinting
24382         * NotifyIcon.cs: Added & implemented
24383
24384 2005-01-26  Jackson Harper  <jackson@ximian.com>
24385
24386         * TabControl.cs: Space vertically layed out tabs properly.
24387
24388 2005-01-26  Peter Bartok  <pbartok@novell.com>
24389
24390         * Form.cs (CreateClientParams): Always set the location to 0,0
24391           since we're a child window.
24392
24393         * Control.cs (SetVisibleCore): Always explicitly setting the location
24394           of a toplevel window, apparently X11 doesn't like to move windows
24395           while they're not mapped.
24396
24397 2005-01-26  Jackson Harper  <jackson@ximian.com>
24398
24399         * TabControl.cs: Implement FillToRight size mode with vertically
24400         rendered tabs.
24401
24402 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24403
24404         * ControlPaint.cs, ThemeWin32Classic.cs
24405                 - Fixes DrawFocusRectangle
24406
24407 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24408
24409         * MenuAPI.cs:
24410                 - MenuBar tracking only starts when item is first clicked
24411                 - Fixes menu hidding for multiple subitems
24412                 - Unselect item in MenuBar when item Executed
24413                 - Fixes bug 71495
24414
24415 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
24416
24417         * ListControl.cs:
24418                 - IsInputKey for ListBox
24419         * ListBox.cs:
24420                 - Focus item
24421                 - Shift and Control item selection
24422                 - Implement SelectionMode.MultiExtended
24423                 - Fixes RightToLeft
24424         * ComboBox.cs:
24425                 - IsInputKey implemented
24426                 - Do not generate OnTextChangedEdit on internal txt changes
24427                 
24428 2005-01-23  Peter Bartok  <pbartok@novell.com>
24429
24430         * AccessibleObject.cs: Partially implemented Select()
24431         * MonthCalendar.cs: Added missing attributes and events
24432         * Form.cs: Fixed CreateParams behaviour, now controls derived from
24433           form can properly override CreateParams.
24434         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24435           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
24436           Control performs Invalidate & Update
24437         * NativeWindow (CreateHandle): Added special handling for Form
24438           and Form.FormParent classes to allow overriding of From.CreateParams
24439         * Control.cs:
24440           - ControlNativeWindow: Renamed 'control' variable to more intuitive
24441             name 'owner'
24442           - ControlNativeWindow: Added Owner property
24443           - Removed usage of Refresh() on property changes, changed into
24444             Invalidate(), we need to wait until the queue is processed for
24445             updates, direct calls might cause problems if not all vars for
24446             Paint are initialized
24447           - Added call to UpdateStyles() when creating the window, to set any
24448             styles that CreateWindow might have ignored.
24449           - Added support for Form CreateParent overrides to UpdateStyles()
24450         * MessageBox.cs: Removed no longer needed FormParent override stuff,
24451           CreateParams are now properly overridable
24452         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
24453           CreateParams are now properly overridable
24454
24455 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
24456
24457         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
24458         OnTextBoxChanged.
24459
24460         Capture LostFocus and OnTextBoxChanged.  The later introduces a
24461         recursive invocation that I have not figured out yet.
24462
24463         Reset the timer when not using (it was accumulating).
24464
24465
24466         (OnTextBoxChanged): Set UserEdit to true here to track whether the
24467         user has made changes that require validation.
24468
24469         Reset changing to avoid loops.
24470
24471 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
24472
24473         * NumericUpDown.cs: Display value at startup.
24474
24475         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
24476         ValidateEditText.
24477
24478         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
24479         filled in.  Added some basic parsing of text.
24480
24481         Still missing the OnXXX method overrides, and figuring out the
24482         events that must be emitted.
24483
24484         * UpDownBase.cs: Handle UserEdit on the Text property.
24485         
24486 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
24487
24488         * ComboBox.cs:
24489           - Fixes IntegralHeight
24490           - ToString method
24491
24492 2005-01-21  Jackson Harper  <jackson@ximian.com>
24493
24494         * TabControl.cs: Set the SelectedIndex property when SelectedTab
24495         is set so that the page visibility is updated and the tabs are
24496         sized correctly.
24497
24498 2005-01-21  Jackson Harper  <jackson@ximian.com>
24499
24500         * TabControl.cs: Use cliping rectangle for blitting. Give the
24501         theme the clipping rect so we can do clipping while
24502         drawing. Remove some debug code.
24503
24504 2005-01-21  Jackson Harper  <jackson@ximian.com>
24505
24506         * TabPage.cs: Add a new method so tab pages can force the tab
24507         control to recalculate the tab page sizes.
24508         * TabControl.cs: UpdateOwner needs to make the tab control recalc
24509         sizes.
24510
24511 2005-01-20  Jackson Harper  <jackson@ximian.com>
24512
24513         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
24514
24515 2005-01-20  Jackson Harper  <jackson@ximian.com>
24516
24517         * TreeView.cs: Set the bounds for nodes properly. They were
24518         getting screwed up when checkboxes were not enabled, but images
24519         were.
24520
24521 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
24522
24523         * ListBox.cs:
24524                 - Owner draw support
24525                 - Fixes
24526                 
24527 2005-01-20  Jackson Harper  <jackson@ximian.com>
24528
24529         * XplatUIStructs.cs: More misc keys
24530         * X11Keyboard.cs: Ignore some control keys.
24531
24532 2005-01-20  Jackson Harper  <jackson@ximian.com>
24533
24534         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
24535         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
24536
24537 2005-01-19  Peter Bartok  <pbartok@novell.com>
24538
24539         * Control.cs: Un-selecting the control when it is loosing focus
24540
24541 2005-01-19  Jackson Harper  <jackson@ximian.com>
24542
24543         * TreeView.cs: Hook up to the text controls leave event so we can
24544         end editing when the users clicks outside the text box.
24545         
24546 2005-01-19  Jackson Harper  <jackson@ximian.com>
24547
24548         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
24549         get set in the conversion array.
24550
24551 2005-01-19  Peter Bartok  <pbartok@novell.com>
24552
24553         * Application.cs (ModalRun): Added a call to CreateControl to ensure
24554           focus is properly set
24555         * Button.cs:
24556           - Added missing attributes
24557           - removed styles, those are already set in the base class
24558         * ButtonBase.cs:
24559           - Added missing attributes
24560           - Added clip window styles
24561         * CheckBox.cs: Added missing attributes
24562         * CommonDialog.cs:
24563           - FormParentWindow.CreateParams: Added required clip styles
24564         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
24565           also filters modifier keys
24566         * MessageBox.cs:
24567           - Added assignment of Accept and Cancel button to enable Enter
24568             and Esc keys in MessageBox dialogs
24569           - FormParentWindow.CreateParams: Added required clip styles
24570         * RadioButton.cs: Added missing attributes
24571         * TextControl.cs: No longer draws selection if control does not
24572           have focus
24573         * TextBoxBase.cs:
24574           - Now draws simple rectangle around test area to make it obvious
24575             there's a control. This is a hack until we properly support borders
24576           - A few simple fixes to support selections better, now erases selected
24577             text when typing, and resets selection when using movement keys
24578
24579 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24580
24581         * UpDownBase.cs: Added some new properties.
24582
24583         * DomainUpDown.cs: Implement a lot to get my test working.
24584
24585 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24586
24587         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
24588
24589 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24590
24591         * OSXStructs (WindowAttributes): Fixed csc complaints
24592
24593 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24594
24595         * XplayUIOSX.cs:
24596           OSXStructs.cs: Initial refactor to move enums and consts into
24597           OSXStructs and use them in the driver for greater readability.
24598
24599 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24600
24601         * XplatUIOSX.cs: Initial support for Standard Cursors.
24602         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
24603
24604 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
24605
24606         * ComboBox.cs: ability to change style when the ctrl is already
24607         created, missing methods and events, bug fixes, signature fixes
24608
24609 2005-01-19  Peter Bartok  <pbartok@novell.com>
24610
24611         * Cursors.cs (ctor): Added ctor to fix signature
24612
24613 2005-01-18  Peter Bartok  <pbartok@novell.com>
24614
24615         * Button.cs: Implemented DoubleClick event
24616         * ButtonBase.cs:
24617           - Fixed keyboard handling to behave like MS, where the press of
24618             Spacebar is equivalent to a mousedown, and the key release is
24619             equivalent to mouseup. Now a spacebar push will give the same
24620             visual feedback like a mouse click.
24621           - Added missing attributes
24622           - Added ImeModeChanged event
24623           - Added support for generating DoubleClick event for derived classes
24624         * CheckBox.cs:
24625           - Implemented DoubleClick event
24626           - Added missing attributes
24627         * CommonDialog.cs: Added missing attribute
24628         * ContextMenu.cs: Added missing attributes
24629         * RadioButton.cs:
24630           - AutoChecked buttons do not allow to be unselected when clicked
24631             (otherwise we might end up with no selected buttons in a group)
24632           - Added missing attributes
24633           - Implemented DoubleClickEvent
24634         * ThreadExceptionDialog.cs: Enabled TextBox code
24635
24636 2005-01-18  Peter Bartok  <pbartok@novell.com>
24637
24638         * Form.cs: Removed debug output
24639         * Button.cs: Added support for DoubleClick method
24640
24641 2005-01-18  Peter Bartok  <pbartok@novell.com>
24642
24643         * Form.cs:
24644           - Added method to parent window that allows triggering size
24645             calculations when a menu is added/removed
24646           - set_Menu: Cleaned up mess from early days of Form and Control,
24647             now properly triggers a recalc when a menu is added/removed
24648           - Added case to select form itself as focused form if no child
24649             controls exist
24650           - Added PerformLayout call when showing dialog, to ensure properly
24651             placed controls
24652         * Control.cs:
24653           - Select(): Made internal so Form can access it
24654           - Focus(): Only call Xplat layer if required (avoids loop), and sets
24655             status
24656         * Application.cs (Run): Removed hack and calls PerformLayout instead
24657           to trigger calculation when Form becomes visible
24658
24659 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
24660
24661         * ComboBox.cs: fixes for ownerdraw
24662
24663 2005-01-18  Peter Bartok  <pbartok@novell.com>
24664
24665         * TextControl.cs:
24666           - Sentinel is no longer static, each Document gets it's own, this
24667             avoids locking or alternatively overwrite problems when more
24668             than one text control is used simultaneously.
24669           - Switched to use Hilight and HilightText brushes for text selection
24670
24671         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
24672
24673 2005-01-18  Peter Bartok  <pbartok@novell.com>
24674
24675         * Control.cs:
24676           - Hooked up the following events:
24677                 o ControlAdded
24678                 o ControlRemoved
24679                 o HandleDestroyed
24680                 o ImeModeChanged
24681                 o ParentChanged
24682                 o TabStopChanged
24683                 o Invalidated
24684                 o SystemColorsChanged
24685                 o ParentFontChanged
24686                 o Move
24687           - Removed debug output
24688           - Added a call to the current theme's ResetDefaults when a color change
24689             is detected
24690         * Form.cs: Now setting the proper ImeMode
24691         * Theme.cs: Defined a method to force recreation of cached resources
24692           and rereading of system defaults (ResetDefaults())
24693         * ThemeWin32Classic.cs: Added ResetDefaults() stub
24694
24695 2005-01-17  Peter Bartok  <pbartok@novell.com>
24696
24697         * Control.cs: Added missing attributes
24698
24699 2005-01-17  Jackson Harper  <jackson@ximian.com>
24700
24701         * TreeNode.cs: Implement editing. Add missing properties selected
24702         and visible.
24703         * TreeView.cs: Implement node editing. Also some fixes to use
24704         Invalidate (invalid area) instead of Refresh when selecting.
24705
24706 2005-01-17  Peter Bartok  <pbartok@novell.com>
24707
24708         * Control.cs:
24709           - Implemented InvokeGotFocus() method
24710           - Implemented InvokeLostFocus() method
24711           - Implemented InvokePaint() method
24712           - Implemented InvokePaintBackground() method
24713           - Implemented InvokeClick() method
24714           - Implemented FindForm() method
24715           - Implemented RectangleToClient() method
24716           - Implemented ClientToRectangle() method
24717           - Implemented ResetBackColor() method
24718           - Implemented ResetCursor() method
24719           - Implemented ResetFont() method
24720           - Implemented ResteForeColor() method
24721           - Implemented ResetImeMode() method
24722           - Implemented ResetLeftToRight() method
24723           - Implemented ResetText() method
24724           - Implemented Scale() methods
24725           - Implemented ScaleCore() method
24726           - Implemented Update() method
24727           - Removed unused variables
24728           - Stubbed AccessibilityNotifyClients and
24729             ControlAccessibleObject.NotifyClients() methods (dunno what to do
24730             with those yet)
24731           - Now setting proper default for RightToLeft property
24732           - Fixed bug in SetClientSizeCore that would cause windows to get
24733             really big
24734           - Now sending Click/DoubleClick events
24735           - Now selecting controls when left mouse button is clicked on
24736             selectable control
24737         * AccessibleEvents.cs: Added
24738         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
24739         * XplatUIOSX.cs: Stubbed UpdateWindow() method
24740         * XplatUIWin32.cs: Implemented UpdateWindow() method
24741         * XplatUIX11.cs: Implemented UpdateWindow() method
24742         * Form.cs: Removed stray semicolon causing CS0162 warning
24743         * ThemeWin32Classic.cs: Fixed unused variable warnings
24744         * ScrollableControl.cs: Now calls base method for ScaleCore
24745         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
24746           style to avoid interference with internal click handler (which is
24747           different than standard Control click handling)
24748         * RadioButton.cs:
24749           - Now unchecks all sibling radio buttons when control is
24750             selected (Fixes #68756)
24751           - Removed internal tabstop variable, using the one inherited from
24752             Control
24753
24754 2005-01-17  Jackson Harper  <jackson@ximian.com>
24755
24756         * NavigateEventArgs.cs: Fix base type.
24757         * LinkLabel.cs: Sig fix
24758         
24759 2005-01-17  Jackson Harper  <jackson@ximian.com>
24760
24761         * TreeView.cs: Only invalidate the effected nodes bounds when
24762         selecting nodes.
24763
24764 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24765
24766         * XplatUIWin32.cs: fixes Win32 marshaling
24767         * XplatUIX11.cs: fixes method signature
24768
24769 2005-01-17  Peter Bartok  <pbartok@novell.com>
24770
24771         * XplatUIX11.cs: Clean up resources when we no longer need them
24772
24773 2005-01-17  Peter Bartok  <pbartok@novell.com>
24774
24775         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
24776           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
24777           and DestroyCursor() methods.
24778         * Cursor.cs: Partially implemented, now supports standard cursors;
24779           still contains some debug code
24780         * Cursors.cs: Implemented class
24781         * Control.cs:
24782           - WndProc(): Added handling of WM_SETCURSOR message, setting the
24783             appropriate cursor
24784           - Implemented Cursor property
24785           - Replaced break; with return; more straightforwar and possibly
24786             faster
24787           - Now properly setting the result for WM_HELP
24788         * X11Structs.cs: Added CursorFontShape enum
24789         * XplatUIStructs.cs:
24790           - Added StdCursor enum (to support DefineStdCursor() method)
24791           - Added HitTest enum (to support sending WM_SETCURSOR message)
24792         * XplatUIX11.cs:
24793           - Now sends the WM_SETCURSOR message
24794           - Implemented new cursor methods
24795         * XplatUIOSX.cs: Stubbed new cursor methods
24796         * XplatUIWin32.cs:
24797           - Implemented new cursor methods
24798           - Added GetSystemMetrics function and associated enumeration
24799
24800 2005-01-15  Peter Bartok  <pbartok@novell.com>
24801
24802         * Control.cs:
24803           - WndProc(): Now handles EnableNotifyMessage
24804           - SelectNextControl(): Fixed bug where if no child or sibling
24805             controls exist we looped endlessly
24806
24807 2005-01-14  Jackson Harper  <jackson@ximian.com>
24808
24809         * TreeView.cs: Recalculate the tab pages when a new one is added
24810         so that the proper bounding rects are created.
24811
24812 2005-01-14  Jackson Harper  <jackson@ximian.com>
24813
24814         * TreeView.cs: Draw a gray box instead of a grip in the lower
24815         right hand corner when there are both horizontal and vertical
24816         scroll bars.
24817
24818 2005-01-14  Jackson Harper  <jackson@ximian.com>
24819
24820         * Control.cs: When erasing backgrounds use FromHwnd instead of
24821         FromHdc when there is a NULL wparam. This occurs on the X driver.
24822         * XplatUIX11.cs: Set the wparam to NULL.
24823
24824 2005-01-13  Jackson Harper  <jackson@ximian.com>
24825
24826         * PictureBox.cs: Implement missing methods (except ToString, need
24827         to test that on windows) and events. When visibility is changed we
24828         need to redraw the image because the buffers are killed. When size
24829         is changed refresh if the sizemode needs it.
24830
24831 2005-01-13  Peter Bartok  <pbartok@novell.com>
24832
24833         * Control.cs (SelectNextControl): Was using wrong method to select
24834           a control
24835
24836 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24837
24838         * ComboBox.cs: fixes dropstyle
24839
24840 2005-01-13  Peter Bartok  <pbartok@novell.com>
24841
24842         * Form.cs:
24843           - Implemented Select() override
24844           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
24845           - Now sets keyboard focus on startup
24846         * Control.cs (SelectNextControl): Now properly handles directed=true
24847         * TextBoxBase.cs:
24848           - WndProc: Now passes tab key on to base if AcceptTabChar=false
24849           - Added (really bad) focus rectangle (mostly for testing)
24850         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
24851           to enforce redraw on focus changes
24852         * ContainerControl.cs:
24853           - Fixed detection of Shift-Tab key presses
24854           - Fixed traversal with arrow keys
24855         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
24856           gonna keep this or if it's complete yet
24857         
24858 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24859
24860         * ComboBox.cs: missing properties, fixes
24861
24862 2005-01-13  Peter Bartok  <pbartok@novell.com>
24863
24864         * Panel.cs (ctor): Setting Selectable window style to off
24865         * Splitter.cs (ctor): Setting Selectable window style to off
24866         * GroupBox.cs (ctor): Setting Selectable window style to off
24867         * Label.cs (ctor): Setting Selectable window style to off
24868
24869 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
24870
24871         * UpDownBase.cs (InitTimer): If the timer has been already
24872         created, enable it.
24873
24874         Use a TextBox instead of a Label.
24875
24876 2005-01-12  Jackson Harper  <jackson@ximian.com>
24877
24878         * TreeView.cs: Refresh the tree after sorting the nodes. Always
24879         draw the connecting node lines (when ShowLines is true).
24880         * TreeNode.cs: The nodes index can now be updated. This is used
24881         when a node collection is sorted.
24882         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
24883         insert or an existing unsorted node collection can be sorted.
24884         
24885 2005-01-12  Peter Bartok  <pbartok@novell.com>
24886
24887         * ContainerControl.cs: Implemented ProcessDialogKeys()
24888
24889 2005-01-12  Peter Bartok  <pbartok@novell.com>
24890
24891         * Control.cs:
24892           - Implemented SelectNextControl() method
24893           - Several focus related bug fixes
24894           - Fixed Docking calculations to match MS documentation and
24895             behaviour
24896
24897 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
24898
24899         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
24900         bug fixes
24901
24902 2005-01-12  Peter Bartok  <pbartok@novell.com>
24903
24904         * Control.cs:
24905           - Fixed broken Contains() method
24906           - Implemented GetNextControl() method. Finally. This is the pre-
24907             requisite for focus handling.
24908
24909 2005-01-12  Peter Bartok  <pbartok@novell.com>
24910
24911         * OSXStrucs.cs: Added
24912
24913 2005-01-12  Peter Bartok  <pbartok@novell.com>
24914
24915         * XplatUIWin32.cs:
24916           - Removed PeekMessageFlags
24917           - Implemented SetWindowStyle() method
24918         * XplatUIStructs.cs: Added PeekMessageFlags
24919         * X11Structs: Added missing border_width field to XWindowChanges struct
24920         * XplatUIX11.cs:
24921           - PeekMessage: Now throws exception if flags which are not yet
24922             supported are passed
24923           - Implemented SetWindowStyle() method
24924           - Fixed SetZOrder to handle AfterHwnd properly
24925         * XplatUI.cs: Added SetWindowStyle() method
24926         * XplatUIDriver.cs: Added SetWindowStyle() abstract
24927         * Control.cs:
24928           - Implemented UpdateStyles() method
24929           - Implemented UpdateZOrder() method
24930         * XplatUIOSX.cs: Added SetWindowStyle() stub
24931
24932 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
24933
24934         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
24935         button mouse).
24936
24937
24938 2005-01-11  Jackson Harper  <jackson@ximian.com>
24939
24940         * TreeView.cs: Still need to draw lines to siblings even if out of
24941         the current node is out of the clip.
24942
24943 2005-01-11  Jackson Harper  <jackson@ximian.com>
24944
24945         * TreeView.cs: When setting the hbar/vbar/grip position use
24946         SetBounds so that perform layout is only called once. Also suspend
24947         and resume layout so layout is only done once for all controls.
24948         - Removed some debug fluff
24949         * SizeGrip.cs: Call base implmentation in overriding methods.
24950         - When visibility is changed the drawing buffers are killed so we
24951         need to redraw.
24952
24953 2005-01-11  Jackson Harper  <jackson@ximian.com>
24954
24955         * TreeView.cs: Calculate the open node count while drawing. This
24956         saves us an entire tree traversal for every paint operation. Use
24957         a member var for the open node count so less vars are passed around.
24958
24959 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
24960
24961         * MonthCalendar.cs:
24962         - fixed selection to use mousemove, not mouse polling on timer
24963         * ThemeWin32Classic.cs
24964         - removed redundant unused variable "no_more_content"
24965         
24966 2005-01-11  Peter Bartok  <pbartok@novell.com>
24967
24968         * XplatUIX11.cs (DoEvents): Needs to return when no more events
24969           are pending, so it now calls PeekMessage instead of GetMessage;
24970           implemented a incomplete version of PeekMessage
24971         
24972 2005-01-11  Peter Bartok  <pbartok@novell.com>
24973
24974         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
24975           I18n issues
24976         * TextBoxBase.cs: Added sending of TextChanged event
24977
24978 2005-01-10  Jackson Harper  <jackson@ximian.com>
24979
24980         * TreeView.cs: Try not to draw outside the clipping rectangle on
24981         each node element.
24982
24983 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
24984
24985         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
24986
24987 2005-01-10  Jackson Harper  <jackson@ximian.com>
24988
24989         * TreeView.cs:
24990         - Implement fast scrolling. Now only the newly
24991         exposed nodes are drawn and the old image is moved using the
24992         XplatUI::ScrollWindow method.
24993         - Factor in height of nodes when calculating whether or not the
24994         node is in the clipping rect.
24995
24996 2005-01-10  Jackson Harper  <jackson@ximian.com>
24997
24998         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
24999
25000 2005-01-10  Peter Bartok  <pbartok@novell.com>
25001
25002         * Application.cs: Added temporary hack to resolve all our resize
25003           required issues on startup. This will get fixed properly at
25004           some point in the future
25005
25006 2005-01-10  Jackson Harper  <jackson@ximian.com>
25007
25008         * SizeGrip.cs: New internal class that is used as a sizing
25009         grip control...hence the name.
25010
25011 2005-01-10  Peter Bartok  <pbartok@novell.com>
25012
25013         * Control.cs: Implemented proper TabIndex handling, now assigning
25014           a tabindex when a control is added to a container
25015         * GroupBox.cs (ctor): Now sets the Container style bit, required
25016           for Control.GetNextControl()
25017
25018 2005-01-09  Jackson Harper  <jackson@ximian.com>
25019
25020         * TextBoxBase.cs: Clear window when scrolling (fixes build).
25021
25022 2005-01-09  Peter Bartok <pbartok@novell.com>
25023
25024         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25025           XplatUIX11.cs: Added ability to control ScrollWindow expose and
25026           an overload for ScrollWindow to allow only scrolling a rectangle
25027
25028 2005-01-09  Peter Bartok <pbartok@novell.com>
25029
25030         * Form.cs:
25031           - Implemented SetDesktopBounds method
25032           - Implemented SetDesktopLocation method
25033
25034 2005-01-08  Jackson Harper  <jackson@ximian.com>
25035
25036         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
25037         the node count has changed, this removes to VScroll::Refresh calls
25038         when drawing.
25039
25040 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
25041
25042         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
25043
25044 2005-01-07  Jackson Harper  <jackson@ximian.com>
25045
25046         * TreeNode.cs: Just update the single node when it is
25047         checked. Don't refresh after toggling, the Expand/Collapse already
25048         handles this.
25049         * TreeView.cs: Respect clipping a little more when drawing. Try
25050         not to redraw things that don't need to be redrawn. Just hide the
25051         scrollbars when they are no longer needed instead of removing
25052         them, so they don't have to be created again and again.
25053         
25054 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
25055
25056         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
25057         coordinates to window space to place the caret properly, FIXED.
25058         Implement GetWindowState & SetWindowState
25059
25060 2005-01-06  Peter Bartok <pbartok@novell.com>
25061
25062         * Form.cs:
25063           - Implemented ClientSize property
25064           - Implemented DesktopBounds property
25065           - Implemented DesktopLocation property
25066           - Implemented IsRestrictedWindow property
25067           - Implemented Size property
25068           - Implemented TopLevel property
25069           - Implemented FormWindowState property
25070         * Control.cs:
25071           - Implemented GetTopLevel() method
25072           - Implemented SetTopLevel() method
25073         * X11Structs.cs (Atom):
25074           - Added AnyPropertyType definition
25075           - Added MapState definiton and updated XWindowAttribute struct
25076         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
25077         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
25078         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
25079         * XplatUIWin32.cs:
25080           - Implemented GetWindowState() and SetWindowState() methods
25081           - Fixed Win32GetWindowLong return type
25082         * XplatUIX11.cs:
25083           - Introduced central function for sending NET_WM messages
25084           - Implemented GetWindowState() and SetWindowState() methods
25085         * TextBoxBase.cs (set_Lines):
25086           - Now uses Foreground color for text added via Text property (Duh!)
25087           - Added code to remember programmatically requested size (fixes
25088             behaviour when Multiline is set after Size)
25089           - Added AutoSize logic
25090
25091 2005-01-06  Jackson Harper  <jackson@ximian.com>
25092
25093         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
25094
25095 2005-01-06  Jackson Harper  <jackson@ximian.com>
25096
25097         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
25098         set to less then 0.
25099
25100 2005-01-06  Jackson Harper  <jackson@ximian.com>
25101
25102         * ScrollableControl.cs: Lazy init the scrollbars.
25103         
25104 2005-01-06  Jackson Harper  <jackson@ximian.com>
25105
25106         * Theme.cs: Speed up getting pens and solid brushes, by using
25107         their ARGB as a hash instead of tostring and not calling Contains.
25108
25109 2005-01-06  Peter Bartok <pbartok@novell.com>
25110
25111         * Form.cs:
25112           - Implemented OnActivated and OnDeactivate event trigger
25113           - Implemented Activate() method
25114           - Fixed ShowDialog() to activate the form that was active before
25115             the dialog was shown
25116         * XplatUIX11.cs:
25117           - Added global active_window var that tracks the currently active
25118             X11 window
25119           - Now always grabs Property changes from the root window to always
25120             catch changes on the active window property
25121           - Added code to PropertyNotify handler to send Active/Inactive
25122             messages when state changes. This puts X11 and Win32 en par on
25123             WM_ACTIVATE notifications (except for double notifications when
25124             the user clicks away from our modal window to another one of our
25125             windows)
25126
25127 2005-01-05  Jackson Harper  <jackson@ximian.com>
25128
25129         * ImageList.cs: Implment ctor
25130
25131 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25132
25133         * XplatUIOSX.cs: Implement Activate/SetTopmost
25134
25135 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25136
25137         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
25138
25139 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25140
25141         * XplatUIOSX.cs: Implement GetActive/SetFocus.
25142
25143 2005-01-05  Peter Bartok <pbartok@novell.com>
25144
25145         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
25146           XplatUIOSX.cs: Added GetActive method to return the currently
25147           active window for the application (or null, if none is active)
25148         * Form.cs:
25149           - Implemented ActiveForm
25150           - Commented out owner assignment for modal dialogs (causes problems
25151             on Win32, since the owner will be disabled)
25152           - Reworked some Active/Focus handling (still incomplete)
25153         * CommonDialog.cs: Commented out owner assignment for modal dialogs
25154           (causes problems on Win32, since the owner will be disabled)
25155         * IWin32Window: Added ComVisible attribute
25156
25157 2005-01-05  Peter Bartok <pbartok@novell.com>
25158
25159         * ToolTip.cs (WndProc): Enable setting focus now that we have the
25160           required XplatUI functions.
25161
25162 2005-01-05  Peter Bartok <pbartok@novell.com>
25163
25164         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
25165           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
25166           to implement focus and activation handling; still incomplete and
25167           with debug output
25168
25169 2005-01-04  Peter Bartok <pbartok@novell.com>
25170
25171         * TextBoxBase.cs: Changed access level for Document property to
25172           match switch to internal for TextControl
25173
25174 2005-01-04  Peter Bartok <pbartok@novell.com>
25175
25176         * AccessibleObject: Added ComVisible attribute
25177
25178 2005-01-04  Jackson Harper  <jackson@ximian.com>
25179
25180         * X11Keyboard.cs: Remove unneeded var.
25181
25182 2005-01-04  Jackson Harper  <jackson@ximian.com>
25183
25184         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
25185         but PAINT.
25186         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
25187         ClientMessage. This makes apps exit cleanly (more often).
25188         
25189 2005-01-04  Jackson Harper  <jackson@ximian.com>
25190
25191         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
25192         handling focus, return correct colors and fonts,
25193         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
25194         handle selection, horizontal scrolling, and mouse interaction.
25195
25196 2005-01-04  Peter Bartok <pbartok@novell.com>
25197
25198         * ICommandExecutor.cs: Added
25199         * IDataGridColumnStyleEditingNotificationService.cs: Added
25200         * IFeatureSupport.cs: Added
25201         * IFileReaderService.cs: Added
25202         * IDataObject.cs: Added ComVisible attribute
25203         * AmbientProperties.cs: Added
25204         * BaseCollection.cs: Added missing attributes
25205         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
25206         * BaseCollection.cs: Added missing attributes
25207         * Binding.cs: Added TypeConverter attribute
25208         * BindingContext.cs: Added DefaultEvent attribute
25209         * BindingsCollection.cs: Added DefaultEvent attribute
25210         * Button.cs: Added DefaultValue attribute
25211         * DragEventArgs.cs: Added ComVisible attribute
25212         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
25213         * KeyEventArgs.cs: Added ComVisible attribute
25214         * KeyPressEventArgs.cs: Added ComVisible attribute
25215         * MouseEventArgs.cs: Added ComVisible attribute
25216         * NavigateEventArgs.cs: Added
25217         * NavigateEventHandler.cs: Added
25218         * FeatureSupport.cs: Added
25219         * OSFeature.cs: Added
25220         * Theme.cs: Added abstract Version property to support OSFeature
25221         * ThemeWin32Classic.cs: Added Version property to
25222           support OSFeature.Themes
25223         * ProgressBar.cs: Removed OnPaintBackground override, not required since
25224           the proper styles to avoid background drawing are set, also doesn't
25225           match MS signature
25226         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
25227         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
25228         * ScrollEventArgs.cs: Added ComVisible attribute
25229         * SplitterEventArgs.cs: Added ComVisible attribute
25230         * AccessibleSelection.cs: Added Flags attribute
25231         * Appearance.cs: Added ComVisible attribute
25232         * Border3DSide.cs: Added ComVisible attribute
25233         * Border3DStyle.cs: Added ComVisible attribute
25234         * BorderStyle.cs: Added ComVisible attribute
25235         * DragAction.cs: Added ComVisible attribute
25236         * ErrorBlinkStyle.cs: Added
25237         * ScrollEventType.cs: Added ComVisible attribute
25238         * AnchorStyles.cs: Added Editor attribute
25239         * DockStyle.cs: Added Editor attribute
25240         * HorizontalAlignment.cs: Added ComVisible attribute
25241         * HelpEventArgs.cs: Added ComVisible attribute
25242         * PaintEventArgs.cs: Added IDisposable
25243
25244 2005-01-04  Peter Bartok <pbartok@novell.com>
25245
25246         * TextControl.cs: Switched Line, LineTag and Document classes to
25247           internal
25248
25249 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25250
25251         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
25252         Simple mode, fixes, IntegralHeight, etc.
25253
25254 2005-01-04  Peter Bartok <pbartok@novell.com>
25255
25256         * TextBoxBase.cs: Using proper font variable now
25257
25258 2005-01-04  Peter Bartok <pbartok@novell.com>
25259
25260         * Form.cs (ShowDialog): Set parent to owner, if provided
25261         * GroupBox.cs: Removed unused vars
25262         * TextControl.cs:
25263           - Added GetHashCode() for Document and LineTag classes
25264           - Removed unused variables
25265           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
25266             to allow translation between continuous char position and line/pos
25267         * CheckBox.cs: Removed vars that are provided by base class
25268         * RadioButton.cs: Removed vars that are provided by base class, added
25269           new keyword where required
25270         * LinkLabel.cs: Added new keyword where required
25271         * Control.cs (WndProc): Removed unused variable
25272         * TextBoxBase.cs:
25273           - Finished SelectionLength property
25274           - Implemented SelectionStart property
25275           - Implemented Text property
25276           - Removed unused vars
25277         * MessageBox.cs: Added new keyword where required
25278         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
25279           WndProc signature
25280         * MenuAPI.cs: Added new keyword where required
25281         * ButtonBase.cs: Removed vars that are provided by base class, added
25282           new keyword where required
25283         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
25284           argument to double, to allow compiling with csc 2.0 (Atsushi ran
25285           into this)
25286         * Application.cs (Run): Now triggers the ThreadExit event
25287         * CommonDialog.cs: Added new keyword where required; now properly sets
25288           parent (owner) for dialog
25289         * XplatUIX11.cs: Commented out unused vars
25290         * StatusBar.cs: Fixed signature for Text property
25291         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
25292
25293 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25294
25295         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
25296         TrackBar.cs, MonthCalendar.cs: remove unused vars
25297
25298 2005-01-03  Jackson Harper  <jackson@ximian.com>
25299
25300         * ThemeWin32Classic.cs:
25301         * X11Keyboard.cs: Remove unused vars.
25302
25303 2005-01-03  Peter Bartok  <pbartok@novell.com>
25304
25305         * TextBox.cs:
25306           - set_Text: Tied into TextControl
25307           - set_TextAlignment: Tied into TextControl
25308         * TextControl.cs:
25309           - Added alignment properties and implemented alignment handling
25310             and drawing (still has a bug, not generating proper expose events)
25311           - Added new Line() constructor to allow passing the line alignment
25312           - Fixed selection setting, properly handling end<start now
25313           - Added aligment considerations to RecalculateDocument()
25314         * TextBoxBase.cs:
25315           - Now properly enforces control height for single line controls
25316           - Added support for CharacterCasing
25317           - Added IsInputKey override
25318           - Fixed Keys.Enter logic
25319           - Added SetBoundsCore override
25320           - Fixed mouse selection handling
25321
25322 2005-01-03  Jackson Harper  <jackson@ximian.com>
25323
25324         * TreeView.cs:
25325           - Collapse and uncheck all nodes when CheckBoxes is disabled.
25326           - Checkboxes are always aligned to the bottom of the node,
25327           regardless of item height.
25328           - Use the node bounds to draw the text so we can center it when
25329           the item height is greater then the font height.
25330           - Node::Bounds are only the text part of the node.
25331         * TreeNode.cs: New method to combine collapsing and unchecking all
25332           nodes recursively.
25333
25334 2005-01-02  Jackson Harper  <jackson@ximian.com>
25335
25336         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
25337         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
25338         tree when a check is changed. TODO: Only refresh the checked node.
25339
25340 2004-12-30  Jackson Harper  <jackson@ximian.com>
25341
25342         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
25343         * TreeNode.cs: When collapsing make sure to never collapse the
25344         root node.
25345
25346 2004-12-29  Jackson Harper  <jackson@ximian.com>
25347
25348         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
25349         
25350 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
25351
25352         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
25353
25354 2004-12-28  Peter Bartok  <pbartok@novell.com>
25355
25356         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
25357           not yet assigned
25358
25359 2004-12-28  Peter Bartok  <pbartok@novell.com>
25360
25361         * Control.cs (WndProc): Added WM_HELP handler, now generates
25362           HelpRequested event
25363         * Form.cs: Added HelpButton property and required support code
25364         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
25365
25366 2004-12-28  Peter Bartok  <pbartok@novell.com>
25367
25368         * CommonDialog.cs:
25369           - Made DialogForm.owner variable internal
25370           - Added check to ensure owner form is set before setting
25371             owner properties in CreateParams
25372
25373 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
25374
25375         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
25376           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
25377           GetCursorPos.  Fix major visibility issues.  Rework the windowing
25378           system to support borderless/titleless windows (implements menus).
25379           Fix GetWindowPos.  Implement initial background color support for
25380           views.
25381
25382 2004-12-28  Peter Bartok  <pbartok@novell.com>
25383
25384         * Form.cs (get_CreateParams): Make sure we have an owner before using
25385           the owner variable. Implement proper default if no owner exists
25386
25387 2004-12-28  Peter Bartok  <pbartok@novell.com>
25388
25389         * In preparation for making Managed.Windows.Forms the default build target
25390           for System.Windows.Forms, the following stubbed files were added.
25391           Dialogs are currently being implemented by contributors and are only
25392           short-term place holders.
25393         * ColorDialog.cs: Initial check-in (minmal stub)
25394         * DataGrid.cs: Initial check-in (minimal stub)
25395         * DataGridLineStyle.cs: Initial check-in (minimal stub)
25396         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
25397         * DataGridTableStyle.cs: Initial check-in (minimal stub)
25398         * FontDialog.cs: Initial check-in (minimal stub)
25399         * FileDialog.cs: Initial check-in (minimal stub)
25400         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
25401         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
25402         * OpenFileDialog: Initial check-in (minimal stub)
25403         * IComponentEditorPageSite.cs: Initial check-in
25404         * Splitter.cs: Initial check-in (for Jackson)
25405         * SplitterEventArgs.cs: Initial check-in (for Jackson)
25406         * SplitterEventHandler.cs: Initial check-in (for Jackson)
25407         * TextBox.cs: Initial check-in; still needs some wiring to
25408           TextControl backend
25409         * Form.cs: Implemented ControlBox property
25410         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
25411         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
25412         * TextControl.cs: Added selection functionality; added todo header
25413         * TextBoxBase.cs:
25414           - Implemented Lines property
25415           - Implemented TextHeight property
25416           - Implemented SelectedText property
25417           - Implemented SelectionLength property
25418           - Implemented SelectAll method
25419           - Implemented ToString method
25420           - Removed and cleaned up some debug code
25421           - Implemented (still buggy) mouse text selection
25422
25423 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
25424
25425         * ComboBox.cs: Complete DropDownList implementation, fixes.
25426
25427 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
25428
25429         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
25430         * ComboBoxStyle.cs: ComboBoxStyle enum
25431         * ComboBox.cs: Initial work on ComboBox control
25432
25433 2004-12-21  Peter Bartok  <pbartok@novell.com>
25434
25435         * Control.cs (ctor, CreateParams): Moved setting of is_visible
25436           forward so that anything that creates a window gets the default,
25437           also no longer uses Visible property in CreateParams to avoid
25438           walking up the parent chain and possibly get the wrong visible
25439           status. Fixed IsVisible to no longer walk up to the parent.
25440
25441 2004-12-21  Peter Bartok  <pbartok@novell.com>
25442
25443         * Form.cs (ShowDialog): Unset modality for the proper window
25444  
25445 2004-12-20  Peter Bartok  <pbartok@novell.com>
25446
25447         * CommonDialog.cs: Initial check-in
25448
25449 2004-12-20  Peter Bartok  <pbartok@novell.com>
25450
25451         * Control.cs (Visible): Now uses the parent window instead of the
25452           client area window for the property
25453
25454         * Form.cs
25455           - ShowDialog(): Now uses the proper window for modality
25456           - The default visibility state for the form parent is now false. This
25457             will prevent the user from seeing all the changes to the form and
25458             its controls before the application hits Application.Run()
25459           - Removed some stale commented out code
25460
25461         * NativeWindow.cs:
25462           - Added FindWindow() method to have a method to check for existence
25463             of a window handle
25464           - Added ability to override default exception handling (for example
25465             when debugging with VS.Net; to do this the ExternalExceptionHandler
25466             define must be set
25467           - Removed some useless debug output
25468
25469         * XplatUIX11.cs:
25470           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
25471             not working as expected
25472           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
25473             property to allow switching back to the modal window if focus is
25474             given to another one of our windows (Application Modal)
25475           - Now only sets override_redirect if we create a window
25476             without WS_CAPTION
25477           - Moved EventMask selection before mapping of newly created window
25478             so we can catch the map event as well
25479           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
25480           - Added various Atom related DllImports
25481           - Implemented Exit() method
25482           - .ctor() : No longer shows window if WS_VISIBLE is not defined
25483             in the CreateParams
25484
25485         * MessageBox.cs: Now properly deals with the FormParent window by
25486           providing an override the FormParent CreateParams property to
25487           set as POPUP instead of OVERLAPPED window.
25488
25489 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25490
25491         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
25492         Minor code cleanup.
25493
25494 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25495         
25496         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
25497
25498 2004-12-18  Peter Bartok  <pbartok@novell.com>
25499
25500         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
25501           implementing SetModal() method
25502
25503 2004-12-18  Peter Bartok  <pbartok@novell.com>
25504
25505         * X11Structs.cs (XGCValues): Fixed type of function element
25506         * XplatUI.cs: Added ScrollWindow() method
25507         * XplatUIDriver.cs: Added ScrollWindow() abstract
25508         * XplatUIWin32.cs: Implemented ScrollWindow() method
25509         * XplatUIX11.cs: Implemented ScrollWindow() method
25510         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
25511
25512 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25513
25514         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
25515         Some more keyboard support (INCOMPLETE)
25516
25517 2004-12-17  Peter Bartok  <pbartok@novell.com>
25518
25519         * TextControl.cs:
25520         - Added color attribute to line tags.
25521         - Added color argument to all functions dealing with tags
25522         - Added color argument support to various functions
25523         - Fixed miss-calculation of baseline/shift in certain circumstances
25524
25525         * TextBoxBase.cs: Added new color option to test code
25526
25527 2004-12-17  Jackson Harper  <jackson@ximian.com>
25528
25529         * TreeNode.cs:
25530         * MonthCalendar.cs: Signature fixes
25531
25532 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25533
25534         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
25535         keyboard event moved it.  Create a new graphics context for each paint resolves this
25536
25537 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25538
25539         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
25540         Make caret exist and go blink blink.  Initial keyboard support.
25541         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
25542         works.
25543
25544 2004-12-17  Jackson Harper  <jackson@ximian.com>
25545
25546         * XplatUIStructs.cs: Updated set of virtual keycodes.
25547         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
25548
25549 2004-12-17  Jackson Harper  <jackson@ximian.com>
25550
25551         * XplatUIX11.cs: Prune old keyboard code.
25552
25553 2004-12-17  Jackson Harper  <jackson@ximian.com>
25554
25555         * XplatUIX11.cs: When generating mouse wparams get the modifier
25556         keys from the ModifierKeys property.
25557
25558 2004-12-17  Jackson Harper  <jackson@ximian.com>
25559
25560         * X11Keyboard.cs: Send up/down input when generating
25561         messages. Remove some unused vars.
25562
25563 2004-12-17  Jackson Harper  <jackson@ximian.com>
25564
25565         * TabControl.cs:
25566         * TreeView.cs: get rid of warnings.
25567
25568 2004-12-17  Jackson Harper  <jackson@ximian.com>
25569
25570         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
25571
25572 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
25573
25574         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
25575           CheckedListBox.cs: Implementation
25576
25577 2004-12-17  Peter Bartok  <pbartok@novell.com>
25578
25579         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
25580
25581 2004-12-16  Peter Bartok  <pbartok@novell.com>
25582
25583         * TextControl.cs:
25584           - InsertCharAtCaret(): Fixed start pos fixup
25585           - CaretLine_get: No longer derives the line from the tag, the tag
25586             could be stale if lines in the document have been added or deleted
25587           - RebalanceAfterDelete(): Fixed bug in balancing code
25588           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
25589           - Line.Streamline(): Now can also elminate leading empty tags
25590           - DumpTree(): Added a few more tests and prevented exception on
25591             uninitialized data
25592           - Added Debug section for Combining lines
25593           - Delete(): Now copies all remaining properties of a line
25594           
25595         * TextBoxBase.cs:
25596           - Left mousebutton now sets the caret (and middle button still acts
25597             as formatting tester, which must go away soon)
25598           - Added Debug section for Deleting/Combining lines
25599           - Fixed calculations for UpdateView after Combining lines
25600
25601 2004-12-16  Peter Bartok  <pbartok@novell.com>
25602
25603         * TextControl.cs: Now properly aligns text on a baseline, using the
25604           new XplatUI.GetFontMetrics() method. Simplified several calculations
25605         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
25606           defined
25607
25608 2004-12-16  Peter Bartok  <pbartok@novell.com>
25609
25610         * XplatUI.cs: Added GetFontMetrics() method
25611         * XplatUIDriver.cs: Added GetFontMetrics() abstract
25612         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
25613           into libgdiplus, our private GetFontMetrics function
25614         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
25615         * XplatUIWin32.cs: Implemented GetFontMetrics() method
25616
25617 2004-12-16  Jackson Harper  <jackson@ximain.com>
25618
25619         * XplatUIStruct.cs: Add enum for dead keys
25620         * X11Keyboard.cs: Map and unmap dead keys.
25621
25622 2004-12-16  Jackson Harper  <jackson@ximian.com>
25623
25624         * X11Keyboard.cs: Detect and use the num lock mask.
25625
25626 2004-12-16  Peter Bartok  <pbartok@novell.com>
25627
25628         * Control.cs (CreateGraphics): Added check to make sure the
25629           handle of the window exists before calling Graphics.FromHwnd()
25630
25631 2004-12-16  Peter Bartok  <pbartok@novell.com>
25632
25633         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
25634           contains a lot of code that's not supposed to be there for the
25635           real thing, but required for developing/testing the textbox
25636           backend.
25637
25638 2004-12-16  Peter Bartok  <pbartok@novell.com>
25639
25640         * TextControl.cs:
25641         - Fixed Streamline method
25642         - Added FindTag method to Line
25643         - Added DumpTree method for debugging
25644         - Added DecrementLines() method for deleting lines
25645         - Fixed UpdateView to update the cursor to end-of-line on single-line
25646           updates
25647         - Added PositionCaret() method
25648         - Fixed MoveCaret(LineDown) to move into the last line, too
25649         - Added InsertChar overload
25650         - Fixed InsertChar tag offset calculations
25651         - Added DeleteChar() method
25652         - Added Combine() method for folding lines
25653         - Fixed Delete() method, no longer allocates wasted Line object and
25654           now copies all properties when swapping nodes
25655         - Delete() method now updates document line counter
25656
25657 2004-12-15  Jackson Harper  <jackson@ximian.com>
25658
25659         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
25660         * X11Keyboard.cs: Expose the currently selected modifier keys
25661         through a property.
25662
25663 2004-12-15  Peter Bartok  <pbartok@novell.com>
25664
25665         * TextControl.cs: Initial check-in. Still incomplete
25666
25667 2004-12-15  Jackson Harper  <jackson@ximian.com>
25668
25669         * TreeNode.cs:
25670         * TreeView.cs: Fix build on csc (second time today ;-))
25671
25672 2004-12-15  Jackson Harper  <jackson@ximian.com>
25673
25674         * TreeView.cs: Store the treenodes plus/minus box bounds when it
25675         is calculated and use this for click testing.
25676         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
25677
25678 2004-12-15  Jackson Harper  <jackson@ximian.com>
25679
25680         * TreeView.cs: Pass the nodes image index to the image list when
25681         drawing that image.
25682
25683 2004-12-15  Jackson Harper  <jackson@ximian.com>
25684
25685         * X11Keyboard.cs: Set messages hwnd.
25686         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
25687         post_message calls.
25688
25689 2004-12-15  Jackson Harper  <jackson@ximian.com>
25690
25691         * X11Keyboard.cs: Fix to compile with csc.
25692         
25693 2004-12-15  Jackson Harper  <jackson@ximian.com>
25694
25695         * X11Structs.cs: Add key mask values
25696         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
25697         * X11Keyboard.cs: New file - Extrapolates and interpolates key
25698         down/up foo into WM_CHAR foo
25699         * KeyboardLayouts.cs: Common keyboard layouts
25700         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
25701         post messages into the main queue.
25702
25703 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
25704
25705         * Button.cs: implement ProcessMnemonic
25706         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
25707           brushes everytime
25708         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
25709         * ButtonBase.cs: Show HotkeyPrefix (not the &)
25710
25711 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
25712         
25713         * MonthCalendar.cs: Implemented click-hold for next/previous month
25714           and date selection
25715           
25716 2004-12-11  Peter Bartok  <pbartok@novell.com>
25717
25718         * X11Structs.cs:
25719           - Added XKeyboardState (moved from XplatUIX11.cs)
25720           - Added XCreateGC related enums and structures
25721           - Added GXFunction for XSetFunction
25722
25723         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
25724
25725         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
25726           CaretVisible() calls
25727
25728         * ToolTip.cs: Added code to prevent stealing focus from app windows
25729
25730         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
25731           DestroyCaret, SetCaretPos and CaretVisible)
25732
25733         * XplatUIX11.cs:
25734           - Added implementation for caret functions
25735           - Moved hover variables into a struct, to make it a bit easier
25736             on the eyes and to debug
25737           - Removed XKeyboardState (moved to XplatUIX11.cs)
25738           - Moved Keyboard properties into the properties region
25739
25740         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
25741           call to get a graphics context for our control
25742
25743         * XplatUIOSX.cs: Added empty overrides for the new caret functions
25744
25745         * TreeView.cs: Fixed bug. No matter what color was set it would always
25746           return SystemColors.Window
25747
25748         * XplatUIWin32.cs: Implemented caret overrides
25749
25750 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
25751
25752         * ListBox.cs: fire events, implement missing methods and properties,
25753         sorting.
25754
25755 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
25756
25757         * MonthCalendar.cs: invalidation bug fixing
25758         * ThemeWin32Classic.cs: paint fixing
25759
25760 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
25761
25762         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
25763         prepare the CGContextRef there now.
25764
25765 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
25766
25767         * MonthCalendar.cs:
25768           - optimisationL only invalidate areas that have changed
25769         * ThemeWin32Classic.cs:
25770           - only paint parts that intersect with clip_area
25771
25772 2004-12-09  Peter Bartok  <pbartok@novell.com>
25773
25774         * Application.cs: Undid changes from r37004 which cause problems
25775         on X11
25776
25777 2004-12-09  Ravindra  <rkumar@novell.com>
25778
25779         * ToolBar.cs: Added support for displaying ContextMenu
25780         attached to a button on ToolBar.
25781         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
25782         property.
25783
25784 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25785
25786         * Label.cs: autosize works in text change and removes unnecessary
25787         invalidate
25788
25789 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25790
25791         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25792         remove warnings
25793
25794 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
25795
25796         * XplatUIOSX.cs: Added mouse move/click/grab support
25797         Remove some debugging WriteLines not needed anymore.
25798         Add window resizing/positioning.
25799         Fix visibility on reparenting.
25800
25801 2004-12-08  Peter Bartok  <pbartok@novell.com>
25802
25803         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
25804
25805 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
25806
25807         * XplatUIOSX.cs: Initial checkin
25808         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
25809
25810 2004-12-03  Ravindra <rkumar@novell.com>
25811
25812         * ListView.cs: Added some keybindings and fixed scrolling.
25813         ScrollBars listen to ValueChanged event instead of Scroll
25814         Event. This would let us take care of all changes being
25815         done in the scrollbars' values programmatically or manually.
25816         * ListView.cs (CanMultiselect): Added a check for shift key.
25817         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
25818         * ListViewItem.cs (Clone): Fixed. We need to make a copy
25819         of ListViewSubItemCollection as well.
25820
25821 2004-12-06  Peter Bartok <pbartok@novell.com>
25822
25823         * Control.cs (Parent): Added check and exception to prevent
25824         circular parenting
25825
25826 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
25827
25828         * ListBox.cs: implemented clipping, selection single and multiple,
25829         bug fixing
25830
25831 2004-12-03  Ravindra <rkumar@novell.com>
25832
25833         * ListView.cs (ListView_KeyDown):
25834         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
25835         when CTRL key is pressed.
25836         * ListViewItem.cs (Selected): Fixed setting the property.
25837
25838 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
25839
25840         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
25841
25842         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
25843         MinimizeBox, ShowInTaskbar, TopMost properties.
25844
25845         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
25846         will be implemented).
25847
25848 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
25849
25850         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
25851
25852         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
25853         tests.
25854         
25855         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
25856         
25857         * TreeView.cs: BackColor is Colors.Window.
25858
25859 2004-12-01  Jackson Harper  <jackson@ximian.com>
25860
25861         * TreeView.cs: When resizing the tree if the user is making it
25862         smaller we don't get expose events, so we need to handle adding
25863         the horizontal scrollbar in the size changed handler as well as
25864         the expose handler.
25865
25866 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
25867
25868         * DrawItemState.cs: fixes wrong enum values
25869
25870 2004-12-01  Jackson Harper  <jackson@ximian.com>
25871
25872         * TreeView.cs: Resize the hbar as well as the vbar on resize.
25873
25874 2004-12-01  Jackson Harper  <jackson@ximian.com>
25875
25876         * NodeLabelEditEventArgs.cs:
25877         * NodeLabelEditEventHandler.cs:
25878         * OpenTreeNodeEnumerator.cs:
25879         * TreeNode.cs:
25880         * TreeNodeCollection.cs:
25881         * TreeView.cs:
25882         * TreeViewAction.cs:
25883         * TreeViewCancelEventArgs.cs:
25884         * TreeViewCancelEventHandler.cs:
25885         * TreeViewEventArgs.cs:
25886         * TreeViewEventHandler.cs: Initial implementation.
25887
25888 2004-12-01  Ravindra <rkumar@novell.com>
25889
25890         * ListView.cs (CalculateListView): Fixed scrolling related
25891         calculations. Also, removed some debug statements from other
25892         places.
25893         * ListViewItem.cs: Changed access to 'selected' instance variable
25894         from private to internal.
25895         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
25896
25897 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
25898
25899         * ThemeWin32Classic.cs: remove cache of brush and pens for
25900         specific controls and use the global system, fixes scrollbutton
25901         bugs (for small sizes, disabled, etc)
25902         
25903         * ScrollBar.cs: does not show the thumb for very small controls
25904         (as MS) and allow smaller buttons that the regular size
25905
25906 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
25907
25908         * UpDownBase.cs: Add abstract methods for the interface.
25909         Add new virtual methods (need to be hooked up to TextEntry when it
25910         exists).
25911         Add override methods for most features.
25912         Computes the size, forces the height of the text entry.
25913
25914         * NumericUpDown.cs: Put here the current testing code.
25915
25916         * Set eol-style property on all files that do not have mixed line
25917         endings, to minimize the future problems.  There are still a few
25918         files with mixed endings, and someone should choose whether they
25919         want to move it or not.
25920
25921 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
25922
25923         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
25924         System.Colors
25925         
25926 2004-11-30  Ravindra <rkumar@novell.com>
25927
25928         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
25929         drawing and replaced use of SystemColors by theme colors.
25930         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
25931         * ListView.cs (ListViewItemCollection.Add): Throw exception when
25932         same ListViewItem is being added more than once.
25933
25934 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
25935
25936         * MonthCalendar.cs:
25937           - ControlStyles love to make the control not flicker
25938           
25939 2004-11-30  Peter Bartok  <pbartok@novell.com>
25940
25941         * CharacterCasing.cs: Added
25942
25943 2004-11-29  Peter Bartok  <pbartok@novell.com>
25944
25945         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
25946           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
25947           I am removing these files as they conflict with already completed
25948           work. While it is fantastic to get contributions to MWF, I
25949           respectfully ask that everyone please coordinate their contributions
25950           through mono-winforms-list or #mono-winforms at this time. We're
25951           explicitly avoiding stubbing and don't want controls that don't have
25952           their basic functionality implemented in svn. Please also see
25953           http://www.mono-project.com/contributing/winforms.html
25954
25955
25956 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
25957
25958         * Application.cs (ModalRun): Don't hang after exit.
25959
25960         * Theme.cs: New TreeViewDefaultSize property.
25961
25962         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
25963         with less hardcoded SystemColors constant.
25964         Implemented TreeViewDefaultSize.
25965
25966         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
25967         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
25968
25969
25970 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
25971
25972         * MonthCalendar.cs:
25973           - Fix NextMonthDate and PrevMonthDate click moving calendar
25974
25975 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
25976
25977         * MonthCalendar.cs:
25978           - Fix usage of ScrollChange Property when scrolling months
25979
25980 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
25981
25982         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
25983          - Fixes menu destroying
25984          - Support adding and removing items on already created menus
25985
25986 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
25987
25988         * MonthCalendar.cs:
25989           - Re-worked all bolded dates handling to match win32
25990         * ThemeWin32Classic.cs:
25991           - Fixed rendering with bolded dates
25992
25993 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
25994
25995         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
25996         - Horizontal scroolbar
25997         - Multicolumn
25998         - Fixes
25999
26000
26001 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
26002
26003         * MonthCalendar.cs:
26004           - Fix Usage of MaxSelectionCount from SelectionRange
26005           - Fixed Shift + Cursor Selection
26006           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
26007           - Fixed normal cursor selection to be compat with win32
26008           - Fixed Shift + Mouse Click selection
26009
26010 2004-11-24  Peter Bartok <pbartok@novell.com>
26011
26012         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
26013         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
26014         * XplatUIX11.cs:
26015           - CreatedKeyBoardMsg now updates keystate with Alt key
26016           - Added workaround for timer crash to CheckTimers, Jackson will
26017             develop a proper fix and check in later
26018           - Implemented DispatchMessage
26019           - Removed calling the native window proc from GetMessage (call
26020             now moved to DispatchMessage)
26021
26022         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
26023           the keydata (Fixes bug #69831)
26024
26025         * XplatUIWin32.cs:
26026           - (DispatchMessage): Switched to return IntPtr
26027           - Added DllImport for SetFocus
26028
26029 2004-11-24  Ravindra <rkumar@novell.com>
26030
26031         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
26032         background drawing.
26033         * ListViewItem.cs: Fixed various properties, calculations
26034         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
26035         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
26036         and some internal properties. Fixed MouseDown handler and Paint
26037         method.
26038
26039 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26040
26041         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
26042
26043 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26044
26045         * ContainerControl.cs: correct accidental check in of local changes
26046
26047 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26048
26049         * ThemeWin32Classic.cs:
26050                 - Fixed Drawing Last month in grid (sometimes not showing)
26051         * MonthCalendar.cs:
26052                 - Fixed title width calculation bug (makeing title small)
26053
26054 2004-11-23  Peter Bartok <pbartok@novell.com>
26055
26056         * XplatUIX11.cs:
26057           - Added generation of WM_MOUSEHOVER event
26058           - Added missing assignment of async_method atom
26059           - Fixed WM_ERASEBKGND; now only redraws the exposed area
26060
26061 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26062
26063         * ThemeWin32Classic.cs:
26064                 - Fixed Drawing of today circle when showtodaycircle not set
26065                 - fixed drawing of first and last month in the grid (gay dates)
26066         * MonthCalendar.cs:
26067                 - Fixed Drawing of today circle
26068                 - Fixed drawing of grady dates
26069                 - Fixed HitTest for today link when ShowToday set to false
26070                 - Fixed DefaultSize to obey ShowToday
26071
26072 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26073
26074         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
26075         * System.Windows.Forms/Theme.cs
26076         * MonthCalendar.cs: added for MonthCalendar
26077         * SelectionRange.cs: added for MonthCalendar
26078         * Day.cs: added for MonthCalendar: added for MonthCalendar
26079         * DateRangeEventArgs.cs: added for MonthCalendar
26080         * DateRangeEventHandler.cs: added for MonthCalendar
26081
26082 2004-11-22  Ravindra <rkumar@novell.com>
26083
26084         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
26085         property.
26086
26087 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
26088
26089         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
26090         event handler.
26091         
26092         * NumericUpDown.cs: Added new implementation.
26093         * UpDownBase.cs: Added new implementation.
26094
26095         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
26096         implementations.
26097         
26098         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
26099         implementations.
26100
26101         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
26102         methods.
26103
26104 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
26105
26106         * Timer.cs  (Dispose): Should call the base dispose when
26107         overriding.
26108
26109 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26110
26111         * ScrollBar.cs: updates thumb position when max, min or increment
26112         is changed
26113
26114 2004-11-21  Ravindra <rkumar@novell.com>
26115
26116         * ListView.cs: Implemented item selection, activation and
26117         column header style. Fixed properties to do a redraw, if
26118         required. Added support for MouseHover, DoubleClick, KeyDown
26119         and KeyUp event handling and some minor fixes.
26120         * ListViewItem.cs: Fixed constructor.
26121         * ThemeWin32Classic.cs: Improved drawing for ListView.
26122
26123 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26124
26125         * ThemeWin32Classic.cs: initial listbox drawing code
26126         * DrawMode.cs: new enumerator
26127         * ListControl.cs: stubbed class
26128         * ListBox.cs: initial implementation
26129         * Theme.cs: new methods definitions
26130         * SelectionMode.cs: new enumerator
26131
26132 2004-11-17  Peter Bartok  <pbartok@novell.com>
26133
26134         * XplatUIWin32.cs: Added double-click events to the class style
26135         * Control.cs (WndProc):
26136           - Added handling of click-count to MouseDown/ MouseUp events.
26137           - Added handling of middle and right mouse buttons
26138           - Removed old debug code
26139
26140 2004-11-17  Jackson Harper  <jackson@ximian.com>
26141
26142         * XplatUIX11.cs: Use the new Mono.Unix namespace.
26143
26144 2004-11-17  Ravindra <rkumar@novell.com>
26145
26146         * ListView.cs: Added event handling for MouseMove/Up/Down.
26147         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
26148         * ThemeWin32Classic.cs: We need to clear the graphics context and
26149         draw column header in a proper state.
26150
26151
26152 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
26153
26154         *  Menu.cs: fixes signature
26155
26156 2004-11-16  Peter Bartok  <pbartok@novell.com>
26157
26158         * XplatUIX11.cs (GetMessage): Implemented generation of
26159           double click mouse messages
26160
26161 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
26162
26163         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
26164         not by menu
26165
26166 2004-11-11  Peter Bartok  <pbartok@novell.com>
26167
26168         * HandleData.cs: Added Visible property
26169         * XplatUIX11.cs (IsVisible): Now uses Visible property from
26170           HandleData
26171         * XplatUIX11.cs: Removed old debug leftovers
26172         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
26173         * Control.cs (WndProc): Removed old debug leftovers,
26174           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
26175           needed WM_SIZE handling
26176
26177 2004-11-11  Jackson Harper  <jackson@ximian.com>
26178
26179         * OwnerDrawPropertyBag.cs:
26180         * TreeViewImageIndexConverter.cs: Initial implementation
26181
26182 2004-11-10  Jackson Harper  <jackson@ximian.com>
26183
26184         * ThemeWin32Classic.cs:
26185         * TabControl.cs: instead of moving tabs by the slider pos just
26186         start drawing at the tab that is offset by the slider. This way
26187         scrolling always moves by exactly one tab.
26188
26189 2004-11-10  Jackson Harper  <jackson@ximian.com>
26190
26191         * TabControl.cs: You can only scroll left when the slider has
26192         already ben moved right.
26193         
26194 2004-11-10  Jackson Harper  <jackson@ximian.com>
26195
26196         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
26197         the clip area.
26198         
26199 2004-11-10  Jackson Harper  <jackson@ximian.com>
26200
26201         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
26202         clip area.
26203         
26204 2004-11-09  Jackson Harper  <jackson@ximian.com>
26205
26206         * TabControl.cs (CalcXPos): New helper method so we can determine
26207         the proper place to start drawing vertical tabs.
26208         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
26209         
26210 2004-11-09  Jackson Harper  <jackson@ximian.com>
26211
26212         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
26213         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
26214         and Bottom, left and right are illegal values for this and
26215         multiline is enabled when the alignment is set to left or right.
26216         (DrawTab): Each alignment block should draw the text itself now
26217         because Left requires special love. Also add rendering for Left
26218         aligned tabs.
26219         
26220 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
26221
26222         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
26223         does not destroy the windows, removes debugging messages
26224
26225 2004-11-09  jba  <jba-mono@optusnet.com.au>
26226
26227         * ThemeWin32Classic.cs
26228         (DrawButtonBase): Fix verticle text rect clipping in windows
26229         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26230         rendering and incorrect text rect clipping
26231         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26232         rendering and incorrect text rect clipping
26233         
26234 2004-11-08  Jackson Harper  <jackson@ximian.com>
26235
26236         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
26237         bottom when they are bottom aligned so the bottoms of the tabs get
26238         displayed.
26239         * TabControl.cs (DropRow): Move rows up instead of down when the
26240         tab control is bottom aligned.
26241
26242 2004-11-08 13:59  pbartok
26243
26244         * XplatUIX11.cs:
26245           - Added handling for various window styles
26246           - Added handling for popup windows
26247           - Added SetTopmost handling
26248
26249 2004-11-08 13:55  pbartok
26250
26251         * XplatUIWin32.cs:
26252           - Added argument to SetTopmost method
26253           - Fixed broken ClientToScreen function
26254
26255 2004-11-08 13:53  pbartok
26256
26257         * XplatUIStructs.cs:
26258           - Added missing WS_EX styles
26259
26260 2004-11-08 13:53  pbartok
26261
26262         * XplatUI.cs, XplatUIDriver.cs:
26263           - Added argument to SetTopmost
26264
26265 2004-11-08 13:52  pbartok
26266
26267         * X11Structs.cs:
26268           - Added XSetWindowAttributes structure
26269           - Improved XWindowAttributes structure
26270           - Added SetWindowValuemask enum
26271           - Added window creation arguments enum
26272           - Added gravity enum
26273           - Added Motif hints structure
26274           - Added various Motif flags and enums
26275           - Added PropertyMode enum for property functions
26276
26277 2004-11-08 13:50  pbartok
26278
26279         * Form.cs:
26280           - Fixed arguments for updated SetTopmost method
26281
26282 2004-11-08 13:49  pbartok
26283
26284         * ToolTip.cs:
26285           - Fixed arguments for updated SetTopmost function
26286           - Fixed usage of PointToClient
26287
26288 2004-11-08 13:44  pbartok
26289
26290         * MenuAPI.cs:
26291           - Added Clipping of children and siblings
26292
26293 2004-11-08 13:41  pbartok
26294
26295         * MainMenu.cs:
26296           - Removed SetMenuBarWindow call. We do this in Form.cs
26297
26298 2004-11-08 13:40  jackson
26299
26300         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
26301           scrolling jimmi in the correct location with bottom aligned tabs
26302
26303 2004-11-08 13:36  pbartok
26304
26305         * ContainerControl.cs:
26306           - Implemented BindingContext
26307           - Implemented ParentForm
26308
26309 2004-11-08 12:46  jackson
26310
26311         * TabControl.cs: Put bottom rendered tabs in the right location
26312
26313 2004-11-08 07:15  jordi
26314
26315         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
26316           removes dead code
26317
26318 2004-11-05 17:30  jackson
26319
26320         * TabControl.cs: When selected tabs are expanded make sure they
26321           don't go beyond the edges of the tab control
26322
26323 2004-11-05 14:57  jackson
26324
26325         * TabControl.cs: Reset show_slider so if the control is resized to
26326           a size where it is no longer needed it's not displayed anymore
26327
26328 2004-11-05 13:16  jackson
26329
26330         * TabControl.cs: Make tab pages non visible when added to the
26331           control
26332
26333 2004-11-05 12:42  jackson
26334
26335         * TabControl.cs: Implement SizeMode.FillToRight
26336
26337 2004-11-05 12:16  jackson
26338
26339         * Control.cs: Do not call CreateHandle if the handle is already
26340           created
26341
26342 2004-11-05 11:46  jackson
26343
26344         * TabControl.cs: Remove superflous call to CalcTabRows
26345
26346 2004-11-05 09:07  jackson
26347
26348         * XplatUIX11.cs: Update for Mono.Posix changes
26349
26350 2004-11-05 07:00  ravindra
26351
26352         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
26353           scrolling.
26354
26355 2004-11-04 22:47  jba
26356
26357         * ThemeWin32Classic.cs:
26358           - Fix Button rendering for FlatStyle = Flat or Popup
26359           - Fix RadioButton and CheckBox rendering when Appearance = Button
26360             (normal and flatstyle).
26361           - Correct outer rectangle color when drawing focus rectangle
26362           - Adjust button bounds to be 1 px smaller when focused
26363           - Make button not draw sunken 3d border when pushed (windows compat)
26364           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
26365           - Offset the text in RadioButton and Checkbox when being rendered as
26366           a button.
26367           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
26368           radiobuttons
26369           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
26370           - Fixed disabled text rendering for normally rendered radiobuttons
26371
26372 2004-11-04 10:26  jackson
26373
26374         * TabControl.cs: Recalculate tab rows when resizing
26375
26376 2004-11-04 07:47  jordi
26377
26378         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
26379           collection completion, drawing issues, missing features
26380
26381 2004-11-04 05:03  ravindra
26382
26383         * ScrollBar.cs:
26384                 - We need to recalculate the Thumb area when
26385                 LargeChange/maximum/minimum values are changed.
26386           - We set the 'pos' in UpdatePos() method to minimum, if it's less
26387                 than minimum. This is required to handle the case if large_change is
26388                 more than max, and use LargeChange property instead of large_change
26389                 variable.
26390           - We return max+1 when large_change is more than max, like MS does.
26391
26392 2004-11-04 04:29  ravindra
26393
26394         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
26395                 - Changed default value signatures (prefixed all with ListView).
26396                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
26397                 ListView.
26398           - Fixed calculations for ListViewItem and implemented Clone()
26399           method.
26400
26401 2004-11-04 04:26  ravindra
26402
26403         * Theme.cs, ThemeWin32Classic.cs:
26404                 - Changed default ListView values signatures (prefixed all with
26405                 ListView).
26406           - Fixed default size values for VScrollBar and HScrollBar.
26407                 - Fixed DrawListViewItem method.
26408
26409 2004-11-04 04:05  ravindra
26410
26411         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
26412
26413 2004-11-04 04:04  ravindra
26414
26415         * ImageList.cs: Implemented the missing overload for Draw method.
26416
26417 2004-11-03 19:29  jackson
26418
26419         * TabControl.cs: Handle dropping rows on selection properly
26420
26421 2004-11-03 11:59  jackson
26422
26423         * TabControl.cs: remove debug code
26424
26425 2004-11-03 11:52  jackson
26426
26427         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
26428           the scrolly widgerywoo
26429
26430 2004-11-02 13:52  jackson
26431
26432         * TabControl.cs: Resize the tab pages and tabs when the tab control
26433           is resized
26434
26435 2004-11-02 13:40  jackson
26436
26437         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
26438           selected tab to the bottom
26439
26440 2004-11-02 13:39  jackson
26441
26442         * TabPage.cs: Store the tab pages row
26443
26444 2004-11-02 12:33  jordi
26445
26446         * MenuItem.cs: fixes handle creation
26447
26448 2004-11-02 11:42  jackson
26449
26450         * TabControl.cs: signature fix
26451
26452 2004-11-02 08:56  jackson
26453
26454         * TabControl.cs: Calculate whether the tab is on an edge properly.
26455           Remove top secret debugging code
26456
26457 2004-11-01 19:57  jackson
26458
26459         * TabControl.cs: Add click handling, and proper sizing
26460
26461 2004-11-01 19:47  jackson
26462
26463         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
26464           tab controls
26465
26466 2004-11-01 19:39  jackson
26467
26468         * TabPage.cs: add internal property to store the bounds of a tab
26469           page
26470
26471 2004-10-30 04:23  ravindra
26472
26473         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
26474           values.
26475
26476 2004-10-30 04:21  ravindra
26477
26478         * ListView.cs, ListViewItem.cs: Added support for scrolling and
26479           fixed calculations.
26480
26481 2004-10-30 03:06  pbartok
26482
26483         * XplatUIX11.cs:
26484           - Removed extension of DllImported libs
26485
26486 2004-10-29 09:55  jordi
26487
26488         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
26489           navigation, itemcollection completion, menu fixes
26490
26491 2004-10-27 22:58  pbartok
26492
26493         * XplatUIX11.cs:
26494           - Now throws a nice error message when no X display could be opened
26495
26496 2004-10-26 13:51  jordi
26497
26498         * ListView.cs: removes warning
26499
26500 2004-10-26 03:55  ravindra
26501
26502         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
26503           ThemeWin32Classic.cs: Some formatting for my last checkins.
26504
26505 2004-10-26 03:36  ravindra
26506
26507         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
26508           control and default values.
26509
26510 2004-10-26 03:35  ravindra
26511
26512         * Theme.cs: Added some default values for ListView control.
26513
26514 2004-10-26 03:33  ravindra
26515
26516         * ToolBar.cs: ToolBar should use the user specified button size, if
26517           there is any. Added a size_specified flag for the same.
26518
26519 2004-10-26 03:33  ravindra
26520
26521         * ColumnHeader.cs: Added some internal members and calculations for
26522           ColumnHeader.
26523
26524 2004-10-26 03:32  ravindra
26525
26526         * ListViewItem.cs: Calculations for ListViewItem.
26527
26528 2004-10-26 03:31  ravindra
26529
26530         * ListView.cs: Added some internal members and calculations for
26531           ListView.
26532
26533 2004-10-22 13:31  jordi
26534
26535         * MenuAPI.cs: speedup menus drawing
26536
26537 2004-10-22 13:16  jackson
26538
26539         * XplatUIX11.cs: Make sure to update exposed regions when adding an
26540           expose event
26541
26542 2004-10-22 11:49  jackson
26543
26544         * Control.cs: oops
26545
26546 2004-10-22 11:41  jackson
26547
26548         * Control.cs: Check to see if the window should have its background
26549           repainted by X when drawing.
26550
26551 2004-10-22 11:31  jackson
26552
26553         * XplatUIX11.cs: When invalidating areas only use XClearArea if
26554           clear is true, this way we do not get flicker from X repainting the
26555           background
26556
26557 2004-10-22 11:28  jackson
26558
26559         * XEventQueue.cs: Queue properly
26560
26561 2004-10-21 09:38  jackson
26562
26563         * XEventQueue.cs: Fix access modifier
26564
26565 2004-10-21 09:36  jackson
26566
26567         * XEventQueue.cs: Don't loose messages
26568
26569 2004-10-21 09:22  jackson
26570
26571         * XEventQueue.cs: Don't loose messages
26572
26573 2004-10-20 04:15  jordi
26574
26575         * BootMode.cs: enum need it by SystemInfo
26576
26577 2004-10-19 21:58  pbartok
26578
26579         * XplatUIWin32.cs:
26580           - Small sanity check
26581
26582 2004-10-19 21:56  pbartok
26583
26584         * Form.cs:
26585           - Added private FormParentWindow class which acts as the container
26586             for our form and as the non-client area where menus are drawn
26587           - Added/Moved required tie-ins to Jordi's menus
26588           - Fixed/Implemented the FormStartPosition functionality
26589
26590 2004-10-19 21:52  pbartok
26591
26592         * Control.cs:
26593           - Removed unneeded locals
26594           - Added code to all size and location properties to understand and
26595             deal with the parent container of Form
26596
26597 2004-10-19 21:33  pbartok
26598
26599         * Application.cs:
26600           - Fixed to deal with new Form subclasses for menus
26601
26602 2004-10-19 17:48  jackson
26603
26604         * XEventQueue.cs: commit correct version of file
26605
26606 2004-10-19 16:50  jackson
26607
26608         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
26609
26610 2004-10-19 16:15  jordi
26611
26612         * MenuAPI.cs: MenuBarCalcSize returns the height
26613
26614 2004-10-19 08:31  pbartok
26615
26616         * Control.cs:
26617           - Added missing call to PreProcessMessage before calling OnXXXKey
26618           methods
26619
26620 2004-10-19 00:04  ravindra
26621
26622         * ToolTip.cs: Fixed constructor.
26623
26624 2004-10-18 09:31  jordi
26625
26626         * MenuAPI.cs: menuitems in menubars do not have shortcuts
26627
26628 2004-10-18 09:26  jordi
26629
26630         * MenuItem.cs: fixes MenuItem class signature
26631
26632 2004-10-18 08:56  jordi
26633
26634         * MenuAPI.cs: prevents windows from showing in the taskbar
26635
26636 2004-10-18 00:28  ravindra
26637
26638         * ToolTip.cs: Suppressed a warning message.
26639
26640 2004-10-18 00:27  ravindra
26641
26642         * Control.cs: Default value of visible property must be true.
26643
26644 2004-10-17 23:19  pbartok
26645
26646         * ToolTip.cs:
26647           - Complete implementation
26648
26649 2004-10-17 23:19  pbartok
26650
26651         * XplatUIX11.cs:
26652           - Added EnableWindow method
26653           - Added SetModal stub
26654           - Added generation of WM_ACTIVATE message (still needs testing)
26655           - Added SetTopMost stub
26656           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
26657
26658 2004-10-17 23:17  pbartok
26659
26660         * XplatUIWin32.cs:
26661           - Removed VirtualKeys to XplatUIStructs
26662           - Implemented SetTopMost method
26663           - Implemented EnableWindow method
26664           - Bugfix in ScreenToClient()
26665           - Bugfixes in ClientToScreen()
26666
26667 2004-10-17 22:51  pbartok
26668
26669         * XplatUIStructs.cs:
26670           - Added WS_EX styles to WindowStyles enumeration
26671
26672 2004-10-17 22:50  pbartok
26673
26674         * XplatUI.cs, XplatUIDriver.cs:
26675           - Added method for enabling/disabling windows
26676           - Added method for setting window modality
26677           - Added method for setting topmost window
26678
26679 2004-10-17 22:49  pbartok
26680
26681         * ThemeWin32Classic.cs:
26682           - Added ToolTip drawing code
26683
26684 2004-10-17 22:49  pbartok
26685
26686         * Theme.cs:
26687           - Added ToolTip abstracts
26688
26689 2004-10-17 22:47  pbartok
26690
26691         * Form.cs:
26692           - Fixed Form.ControlCollection to handle owner relations
26693           - Added Owner/OwnedForms handling
26694           - Implemented Z-Ordering for owned forms
26695           - Removed unneeded private overload of ShowDialog
26696           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
26697             so I hope)
26698           - Fixed Close(), had wrong default
26699           - Added firing of OnLoad event
26700           - Added some commented out debug code for Ownership handling
26701
26702 2004-10-17 22:16  pbartok
26703
26704         * Control.cs:
26705           - Fixed/implemented flat list of controls
26706
26707 2004-10-17 22:14  pbartok
26708
26709         * Application.cs:
26710           - Added code to simulate modal dialogs on Win32
26711
26712 2004-10-17 16:11  jordi
26713
26714         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
26715           mouse event
26716
26717 2004-10-17 13:39  jordi
26718
26719         * MenuAPI.cs: menu drawing fixes
26720
26721 2004-10-15 09:10  ravindra
26722
26723         * StructFormat.cs: General Enum.
26724
26725 2004-10-15 09:09  ravindra
26726
26727         * SizeGripStyle.cs: Enum for Form.
26728
26729 2004-10-15 09:08  ravindra
26730
26731         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
26732           in Theme for ListView.
26733
26734 2004-10-15 09:06  ravindra
26735
26736         * ColumnHeader.cs: Flushing some formatting changes.
26737
26738 2004-10-15 09:05  ravindra
26739
26740         * ListViewItem.cs: Implemented GetBounds method and fixed coding
26741           style.
26742
26743 2004-10-15 09:03  ravindra
26744
26745         * ListView.cs: Implemented Paint method and fixed coding style.
26746
26747 2004-10-15 07:34  jordi
26748
26749         * MenuAPI.cs: fix for X11
26750
26751 2004-10-15 07:32  ravindra
26752
26753         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
26754                 - Renamed Paint() method to Draw() for clarity. Also, moved
26755                 DrawImage() to OnPaint().
26756
26757 2004-10-15 07:25  ravindra
26758
26759         * CheckBox.cs, RadioButton.cs:
26760                 - Removed Redraw (), we get it from ButtonBase.
26761                 - Implemented Paint (), to do class specific painting.
26762
26763 2004-10-15 07:16  ravindra
26764
26765         * ButtonBase.cs:
26766                 - Redraw () is not virtual now.
26767                 - Added an internal virtual method Paint (), so that
26768                 derived classes can do their painting on their own.
26769                 - Modified OnPaint () to call Paint ().
26770
26771 2004-10-15 06:43  jordi
26772
26773         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
26774           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
26775
26776 2004-10-15 00:30  ravindra
26777
26778         * MessageBox.cs:
26779                 - MessageBox on windows does not have min/max buttons.
26780                 This change in CreateParams fixes this on Windows. We
26781                 still need to implement this windowstyle behavior in
26782                 our X11 driver.
26783
26784 2004-10-14 05:14  ravindra
26785
26786         * ToolBar.cs:
26787                 - Changed Redraw () to do a Refresh () always.
26788                 - Fixed the MouseMove event handling when mouse is pressed,
26789                 ie drag event handling.
26790                 - Replaced the usage of ToolBarButton.Pressed property to
26791                 ToolBarButton.pressed internal variable.
26792
26793 2004-10-14 05:10  ravindra
26794
26795         * ToolBarButton.cs:
26796                 - Added an internal member 'inside' to handle mouse move
26797                 with mouse pressed ie mouse drag event.
26798                 - Changed 'Pressed' property to return true only when
26799                 'inside' and 'pressed' are both true.
26800                 - Some coding style love.
26801
26802 2004-10-14 00:17  ravindra
26803
26804         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
26805           public method.
26806
26807 2004-10-14 00:15  ravindra
26808
26809         * ButtonBase.cs: Redraw () related improvements.
26810
26811 2004-10-14 00:14  ravindra
26812
26813         * MessageBox.cs: Moved InitFormSize () out of Paint method and
26814           removed unnecessary calls to Button.Show () method.
26815
26816 2004-10-13 17:50  pbartok
26817
26818         * XplatUIX11.cs:
26819           - Formatting fix
26820           - Removed destroying of window until we solve the problem of X
26821             destroying the window before us on shutdown
26822
26823 2004-10-13 16:32  pbartok
26824
26825         * ButtonBase.cs:
26826           - Now Redraws on MouseUp for FlatStyle Flat and Popup
26827
26828 2004-10-13 14:18  pbartok
26829
26830         * XplatUIX11.cs:
26831           - Added code to destroy the X window
26832
26833 2004-10-13 14:18  pbartok
26834
26835         * XplatUIWin32.cs:
26836           - Added code to destroy a window
26837
26838 2004-10-13 14:12  pbartok
26839
26840         * ButtonBase.cs:
26841           - Added the Redraw on Resize that got dropped in the last rev
26842
26843 2004-10-13 09:06  pbartok
26844
26845         * ThemeWin32Classic.cs:
26846           - Path from John BouAntoun:
26847             * Fix check rendering (centre correctly for normal style, offset
26848               correctly for FlatStyle).
26849             * Fix border color usage (use backcolor) for FlatStyle.Popup
26850             * Use checkbox.Capture instead of checkbox.is_pressed when
26851               rendering flatstyle states.
26852
26853 2004-10-12 21:48  pbartok
26854
26855         * ThemeWin32Classic.cs:
26856           - Removed all occurences of SystemColors and replaced them with the
26857             matching theme color
26858
26859 2004-10-12 21:41  pbartok
26860
26861         * ThemeWin32Classic.cs:
26862           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
26863             him using the function for flatstyle drawing
26864           - Changed functions to use the new version of CPDrawBorder3D
26865
26866 2004-10-12 21:15  pbartok
26867
26868         * ControlPaint.cs:
26869           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
26870             match MS documentation. They need to return defined colors if the
26871             passed color matches the configured control color. Thanks to John
26872             BouAntoun for pointing this out.
26873
26874 2004-10-12 20:57  pbartok
26875
26876         * Control.cs:
26877           - Fix from John BouAntoun: Raise ForeColorChanged event when text
26878             color is changed
26879
26880 2004-10-12 20:46  pbartok
26881
26882         * CheckBox.cs:
26883           - Fix from John BouAntoun: Now properly sets the Appearance property
26884
26885 2004-10-12 20:45  pbartok
26886
26887         * ThemeWin32Classic.cs:
26888           - Fixes from John BouAntoun: now handles forecolors and backcolors
26889             for flatstyle rendered controls much better; It also fixes normal
26890             checkbox rendering when pushed or disabled.
26891
26892 2004-10-08 02:50  jordi
26893
26894         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
26895           work
26896
26897 2004-10-07 08:56  jordi
26898
26899         * ThemeWin32Classic.cs: Removes deletion of cached brushes
26900
26901 2004-10-06 03:59  jordi
26902
26903         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
26904           XplatUIWin32.cs: removes warnings from compilation
26905
26906 2004-10-05 12:23  jackson
26907
26908         * RadioButton.cs: Fix ctor
26909
26910 2004-10-05 11:10  pbartok
26911
26912         * MessageBox.cs:
26913           - Partial implementation by Benjamin Dasnois
26914
26915 2004-10-05 10:15  jackson
26916
26917         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
26918           by John BouAntoun
26919
26920 2004-10-05 03:07  ravindra
26921
26922         * ToolBar.cs:
26923                 - Removed a private method, Draw ().
26924                 - Fixed the ButtonDropDown event handling.
26925                 - Fixed MouseMove event handling.
26926
26927 2004-10-05 03:04  ravindra
26928
26929         * ThemeWin32Classic.cs:
26930                 - Added DrawListView method and ListViewDefaultSize property.
26931                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
26932                 - Changed DOS style CRLF to Unix format (dos2unix).
26933
26934 2004-10-05 03:03  ravindra
26935
26936         * Theme.cs:
26937                 - Added DrawListView method and ListViewDefaultSize property.
26938
26939 2004-10-05 02:42  ravindra
26940
26941         * ToolBarButton.cs: Added an internal member dd_pressed to handle
26942           clicks on DropDown arrow.
26943
26944 2004-10-04 22:56  jackson
26945
26946         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
26947           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
26948           Control handle the buffers, derived classes should not have to
26949           CreateBuffers themselves.
26950
26951 2004-10-04 21:20  jackson
26952
26953         * StatusBar.cs: The control handles resizing the buffers now.
26954
26955 2004-10-04 21:18  jackson
26956
26957         * Control.cs: When resizing the buffers should be invalidated. This
26958           should be handled in Control not in derived classes.
26959
26960 2004-10-04 14:45  jackson
26961
26962         * TabPage.cs: oops
26963
26964 2004-10-04 02:14  pbartok
26965
26966         * LeftRightAlignment.cs:
26967           - Initial check-in
26968
26969 2004-10-04 01:09  jordi
26970
26971         * ThemeWin32Classic.cs: fixes right button position causing right
26972           button not showing on horizontal scrollbars
26973
26974 2004-10-02 13:12  pbartok
26975
26976         * XplatUIX11.cs:
26977           - Simplified the Invalidate method by using an X call instead of
26978             generating the expose ourselves
26979           - Added an expose when the window background is changed
26980           - Implemented ClientToScreen method
26981
26982 2004-10-02 13:08  pbartok
26983
26984         * XplatUIWin32.cs:
26985           - Added Win32EnableWindow method (test for implementing modal
26986           dialogs)
26987           - Added ClientToScreen method and imports
26988
26989 2004-10-02 13:07  pbartok
26990
26991         * XplatUI.cs, XplatUIDriver.cs:
26992           - Added ClientToScreen coordinate translation method
26993
26994 2004-10-02 13:06  pbartok
26995
26996         * KeyPressEventArgs.cs:
26997           - Fixed access level for constructor
26998
26999 2004-10-02 13:06  pbartok
27000
27001         * NativeWindow.cs:
27002           - Changed access level for the window_collection hash table
27003
27004 2004-10-02 13:05  pbartok
27005
27006         * Form.cs:
27007           - Added KeyPreview property
27008           - Added Menu property (still incomplete, pending Jordi's menu work)
27009           - Implemented ProcessCmdKey
27010           - Implemented ProcessDialogKey
27011           - Implemented ProcessKeyPreview
27012
27013 2004-10-02 13:02  pbartok
27014
27015         * Control.cs:
27016           - Added private method to get the Control object from the window
27017           handle
27018           - Implemented ContextMenu property
27019           - Implemented PointToScreen
27020           - Implemented PreProcessMessage
27021           - Implemented IsInputChar
27022           - Implemented IsInputKey
27023           - Implemented ProcessCmdKey
27024           - Completed ProcessKeyEventArgs
27025           - Fixed message loop to call the proper chain of functions on key
27026           events
27027           - Implemented ProcessDialogChar
27028           - Implemented ProcessDialogKey
27029           - Implemented ProcessKeyMessage
27030           - Implemented ProcessKeyPreview
27031           - Added RaiseDragEvent stub (MS internal method)
27032           - Added RaiseKeyEvent stub (MS internal method)
27033           - Added RaiseMouseEvent stub (MS Internal method)
27034           - Added RaisePaintEvent stub (MS Internal method)
27035           - Added ResetMouseEventArgs stub (MS Internal method)
27036           - Implemented RtlTranslateAlignment
27037           - Implemented RtlTranslateContent
27038           - Implemented RtlTranslateHorizontal
27039           - Implemented RtlTranslateLeftRight
27040           - Added generation of KeyPress event
27041
27042 2004-10-02 05:57  ravindra
27043
27044         * ListViewItem.cs: Added attributes.
27045
27046 2004-10-02 05:32  ravindra
27047
27048         * ListView.cs: Added attributes.
27049
27050 2004-10-01 11:53  jackson
27051
27052         * Form.cs: Implement the Close method so work on MessageBox can
27053           continue.
27054
27055 2004-09-30 14:06  pbartok
27056
27057         * XplatUIX11.cs:
27058           - Bug fixes
27059
27060 2004-09-30 11:34  jackson
27061
27062         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
27063
27064 2004-09-30 07:26  ravindra
27065
27066         * ListViewItemConverter.cs: Converter for ListViewItem.
27067
27068 2004-09-30 07:26  ravindra
27069
27070         * SortOrder.cs: Enum for ListView control.
27071
27072 2004-09-30 07:25  ravindra
27073
27074         * ColumnHeader.cs: Supporting class for ListView control.
27075
27076 2004-09-30 07:24  ravindra
27077
27078         * ListView.cs, ListViewItem.cs: Initial implementation.
27079
27080 2004-09-30 07:20  ravindra
27081
27082         * ItemActivation.cs: Enum for ListView Control.
27083
27084 2004-09-29 20:29  pbartok
27085
27086         * XplatUIX11.cs:
27087           - Added lookup of pixel value for background color; tries to get a
27088             color 'close' to the requested color, it avoids having to create a
27089             colormap.  Depending on the display this could mean the used color
27090             is slightly off the desired color. Might have to change it to a more
27091             resource intensive colormap approach, but it will work as a
27092           workaround to avoid red screens.
27093
27094 2004-09-29 14:27  jackson
27095
27096         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
27097
27098 2004-09-28 12:44  pbartok
27099
27100         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
27101           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
27102           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
27103           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
27104           TrackBar.cs, VScrollBar.cs:
27105           - Streamlined Theme interfaces:
27106             * Each DrawXXX method for a control now is passed the object for
27107               the control to be drawn in order to allow accessing any state the
27108               theme might require
27109
27110             * ControlPaint methods for the theme now have a CP prefix to avoid
27111               name clashes with the Draw methods for controls
27112
27113             * Every control now retrieves it's DefaultSize from the current
27114             theme
27115
27116 2004-09-28 12:17  jackson
27117
27118         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
27119           drawing
27120
27121 2004-09-24 14:57  jackson
27122
27123         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
27124           Gives us a nice little performance boost.
27125
27126 2004-09-24 12:02  jackson
27127
27128         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
27129           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
27130           Control and supporting classes. Initial checkin
27131
27132 2004-09-23 13:08  jackson
27133
27134         * Form.cs: Temp build fixage
27135
27136 2004-09-23 01:39  ravindra
27137
27138         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
27139           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
27140           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
27141           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
27142           EventHandlers needed by ListView Control.
27143
27144 2004-09-22 14:12  pbartok
27145
27146         * ScrollableControl.cs:
27147           - Implemented DockPadding property
27148           - Implemented AutoScroll property
27149           - Implemented AutoScrollMargin property
27150           - Implemented AutoScrollMinSize property
27151           - Implemented AutoScrollPosition property
27152           - Implemented DisplayRectangle property (still incomplete)
27153           - Implemented CreateParams property
27154           - Implemented HScroll property
27155           - Implemented VScroll property
27156           - Implemented OnVisibleChanged property
27157
27158 2004-09-22 14:09  pbartok
27159
27160         * Form.cs:
27161           - Added Form.ControllCollection class
27162           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
27163             RemoveOwnedForm (still incomplete, missing on-top and common
27164             minimize/maximize behaviour)
27165           - Added StartPosition property (still incomplete, does not use when
27166             creating the form)
27167           - Added ShowDialog() methods (still incomplete, missing forcing the
27168             dialog modal)
27169
27170 2004-09-22 14:05  pbartok
27171
27172         * Application.cs:
27173           - Added message loop for modal dialogs
27174
27175 2004-09-22 14:02  pbartok
27176
27177         * GroupBox.cs:
27178           - Fixed wrong types for events
27179
27180 2004-09-22 14:00  pbartok
27181
27182         * Shortcut.cs, FormWindowState.cs:
27183           - Fixed wrong values
27184
27185 2004-09-22 12:01  jackson
27186
27187         * Control.cs: Text is never null
27188
27189 2004-09-20 22:14  pbartok
27190
27191         * XplatUIWin32.cs:
27192           - Fixed accessibility level for Idle handler
27193
27194 2004-09-20 18:54  jackson
27195
27196         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27197           XplatUIX11.cs: New message loop that uses poll so we don't get a
27198           busy loop
27199
27200 2004-09-17 10:43  pbartok
27201
27202         * ScrollBar.cs:
27203           - Fixed behaviour of arrow buttons. Now properly behaves like
27204             Buttons (and like Microsoft's scrollbar arrow buttons)
27205
27206 2004-09-17 10:14  pbartok
27207
27208         * ScrollBar.cs:
27209           - Added missing release of keyboard/mouse capture
27210
27211 2004-09-17 06:18  jordi
27212
27213         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
27214           Theme.cs: Very early menu support
27215
27216 2004-09-16 17:45  pbartok
27217
27218         * XplatUIWin32.cs:
27219           - Fixed sending a window to the front
27220           - Added overload for SetWindowPos to avoid casting
27221
27222 2004-09-16 17:44  pbartok
27223
27224         * Control.cs:
27225           - Added SendToBack and BringToFront methods
27226
27227 2004-09-16 07:00  ravindra
27228
27229         * Copyright: Added Novell URL.
27230
27231 2004-09-16 07:00  ravindra
27232
27233         * ToolBar.cs: Invalidate should be done before redrawing.
27234
27235 2004-09-15 21:19  ravindra
27236
27237         * ColumnHeaderStyle.cs: Enum for ListView Control.
27238
27239 2004-09-15 21:18  ravindra
27240
27241         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
27242           ListView Control.
27243
27244 2004-09-13 18:26  jackson
27245
27246         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
27247           properly
27248
27249 2004-09-13 18:13  jackson
27250
27251         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
27252           a second thread and post messages into the main threads message
27253           queue. This makes timing much more consistent. Both win2K and XP
27254           have a minimum timer value of 15 milliseconds, so we now do this
27255           too.
27256
27257 2004-09-13 15:18  pbartok
27258
27259         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27260           XplatUIX11.cs:
27261           - Added Z-Ordering methods
27262
27263 2004-09-13 10:56  pbartok
27264
27265         * Form.cs:
27266           - Fixed #region names
27267           - Moved properties and methods into their proper #regions
27268
27269 2004-09-13 10:51  pbartok
27270
27271         * Form.cs:
27272           - Added Accept and CancelButton properties
27273           - Added ProcessDialogKey() method
27274
27275 2004-09-13 08:18  pbartok
27276
27277         * IWindowTarget.cs:
27278           - Initial check-in
27279
27280 2004-09-10 21:50  pbartok
27281
27282         * Control.cs:
27283           - Added DoDragDrop() [incomplete]
27284           - Properly implemented 'Visible' handling
27285           - Added SetVisibleCore()
27286           - Implemented FindChildAtPoint()
27287           - Implemented GetContainerControl()
27288           - Implemented Hide()
27289
27290 2004-09-10 19:28  pbartok
27291
27292         * Control.cs:
27293           - Moved methods into their appropriate #regions
27294           - Reordered methods within regions alphabetically
27295
27296 2004-09-10 18:57  pbartok
27297
27298         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27299           - Added method to retrieve text from window
27300
27301 2004-09-10 18:56  pbartok
27302
27303         * Control.cs:
27304           - Moved some internal functions into the internal region
27305           - Implemented FontHeight
27306           - Implemented RenderRightToLeft
27307           - Implemented ResizeRedraw
27308           - Implemented ShowFocusCues
27309           - Implemented ShowKeyboardCues
27310           - Implemented FromChildHandle
27311           - Implemented FromHandle
27312           - Implemented IsMnemonic
27313           - Implemented ReflectMessage
27314           - All public and protected Static Methods are now complete
27315
27316 2004-09-10 16:54  pbartok
27317
27318         * Control.cs:
27319           - Implemented remaining missing public instance properties
27320           - Alphabetized some out of order properties
27321
27322 2004-09-10 05:51  ravindra
27323
27324         * PictureBox.cs: Added a check for null image.
27325
27326 2004-09-10 00:59  jordi
27327
27328         * GroupBox.cs: remove cvs tag
27329
27330 2004-09-09 05:25  ravindra
27331
27332         * ToolBar.cs: Make redraw accessible from ToolBarButton.
27333
27334 2004-09-09 05:23  ravindra
27335
27336         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
27337           parent redraw.
27338
27339 2004-09-09 02:28  pbartok
27340
27341         * ThemeWin32Classic.cs:
27342           - Improve disabled string look
27343
27344 2004-09-09 01:15  jordi
27345
27346         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
27347           args and handler
27348
27349 2004-09-08 23:56  ravindra
27350
27351         * ItemBoundsPortion.cs: It's enum, not a class!
27352
27353 2004-09-08 23:47  ravindra
27354
27355         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
27356           Enums for Form.
27357
27358 2004-09-08 21:13  ravindra
27359
27360         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
27361           ListView control.
27362
27363 2004-09-08 21:03  ravindra
27364
27365         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
27366           avoid crash.
27367
27368 2004-09-08 21:01  ravindra
27369
27370         * ScrollableControl.cs: Removed unreachable code.
27371
27372 2004-09-08 06:45  jordi
27373
27374         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
27375
27376 2004-09-08 01:00  jackson
27377
27378         * XplatUIX11.cs: Only run the timers when updating the message
27379           queue. This effectively gives X messages a higher priority then
27380           timer messages. Timers still need love though
27381
27382 2004-09-07 14:01  jackson
27383
27384         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
27385           this for us and the handle is no longer valid.
27386
27387 2004-09-07 13:59  jackson
27388
27389         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
27390           loop that manages to not crash. TODO: Add poll and cleanup timers
27391
27392 2004-09-07 11:12  jordi
27393
27394         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
27395
27396 2004-09-07 03:40  jordi
27397
27398         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
27399           fixes, methods, multiple links
27400
27401 2004-09-06 06:55  jordi
27402
27403         * Control.cs: Caches ClientRectangle rectangle value
27404
27405 2004-09-05 02:03  jordi
27406
27407         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
27408           certain situations
27409
27410 2004-09-04 11:10  jordi
27411
27412         * Label.cs: Refresh when font changed
27413
27414 2004-09-02 16:24  pbartok
27415
27416         * Control.cs:
27417           - Added sanity check to creation of double buffer bitmap
27418
27419 2004-09-02 16:24  pbartok
27420
27421         * ButtonBase.cs:
27422           - Fixed selection of text color
27423           - Fixed handling of resize event; now properly recreates double
27424             buffering bitmap
27425           - Added missing assignment of TextAlignment
27426           - Added proper default for TextAlignment
27427
27428 2004-09-02 14:26  pbartok
27429
27430         * RadioButton.cs:
27431           - Added missing RadioButton.RadioButtonAccessibleObject class
27432
27433 2004-09-02 14:26  pbartok
27434
27435         * Control.cs:
27436           - Added missing Control.ControlAccessibleObject class
27437           - Started to implement Select()ion mechanisms, still very incomplete
27438
27439 2004-09-02 14:25  pbartok
27440
27441         * AccessibleObject.cs:
27442           - Added missing methods
27443
27444 2004-09-02 14:23  pbartok
27445
27446         * AccessibleNavigation.cs, AccessibleSelection.cs:
27447           - Initial check-in
27448
27449 2004-09-02 10:32  jordi
27450
27451         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
27452           pool for pens, brushes, and hatchbruses
27453
27454 2004-09-01 15:30  jackson
27455
27456         * StatusBar.cs: Fix typo
27457
27458 2004-09-01 14:44  pbartok
27459
27460         * RadioButton.cs:
27461           - Fixed state
27462
27463 2004-09-01 14:39  pbartok
27464
27465         * Button.cs, RadioButton.cs:
27466           - Functional initial check-in
27467
27468 2004-09-01 14:01  pbartok
27469
27470         * CheckBox.cs:
27471           - Added missing default
27472           - Added missing region mark
27473
27474 2004-09-01 09:10  jordi
27475
27476         * Label.cs: fixes method signatures, new methods, events, fixes
27477           autosize
27478
27479 2004-09-01 07:19  jordi
27480
27481         * Control.cs: Init string variables with an empty object
27482
27483 2004-09-01 04:20  jordi
27484
27485         * Control.cs: fires OnFontChanged event
27486
27487 2004-08-31 20:07  pbartok
27488
27489         * ButtonBase.cs:
27490           - Enabled display of strings
27491
27492 2004-08-31 20:05  pbartok
27493
27494         * Form.cs:
27495           - Added (partial) implementation of DialogResult; rest needs to be
27496             implemented when the modal loop code is done
27497
27498 2004-08-31 19:55  pbartok
27499
27500         * CheckBox.cs:
27501           - Fixed to match the removal of the needs_redraw concept
27502
27503 2004-08-31 19:55  pbartok
27504
27505         * ButtonBase.cs:
27506           - Removed the rather odd split between 'needs redraw' and redrawing
27507           - Now handles the events that require regeneration (ambient
27508             properties and size)
27509
27510 2004-08-31 19:41  pbartok
27511
27512         * Control.cs:
27513           - Added firing of BackColorChanged event
27514           - Added TopLevelControl property
27515           - Fixed handling of WM_ERASEBKGRND message
27516
27517 2004-08-31 12:49  pbartok
27518
27519         * ButtonBase.cs:
27520           - Removed debug
27521           - Minor fixes
27522
27523 2004-08-31 12:48  pbartok
27524
27525         * CheckBox.cs:
27526           - Finished (famous last words)
27527
27528 2004-08-31 04:35  jordi
27529
27530         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
27531           scrolling bugs, adds new methods
27532
27533 2004-08-30 14:42  pbartok
27534
27535         * CheckBox.cs:
27536           - Implemented CheckBox drawing code
27537
27538 2004-08-30 14:42  pbartok
27539
27540         * ButtonBase.cs:
27541           - Made Redraw() and CheckRedraw() virtual
27542           - Improved mouse up/down/move logic to properly track buttons
27543
27544 2004-08-30 09:44  pbartok
27545
27546         * CheckBox.cs:
27547           - Updated to fix broken build. Not complete yet.
27548
27549 2004-08-30 09:28  pbartok
27550
27551         * CheckState.cs:
27552           - Initial checkin
27553
27554 2004-08-30 09:17  pbartok
27555
27556         * Appearance.cs:
27557           - Initial check-in
27558
27559 2004-08-27 16:12  ravindra
27560
27561         * ToolBarButton.cs: Added TypeConverter attribute.
27562
27563 2004-08-27 16:07  ravindra
27564
27565         * ImageIndexConverter.cs: Implemented.
27566
27567 2004-08-27 14:17  pbartok
27568
27569         * Control.cs:
27570           - Removed unneeded stack vars
27571           - First attempt to fix sizing issues when layout is suspended
27572
27573 2004-08-25 15:35  jordi
27574
27575         * ScrollBar.cs: more fixes to scrollbar
27576
27577 2004-08-25 14:04  ravindra
27578
27579         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
27580           Added the missing divider code and grip for ToolBar Control.
27581
27582 2004-08-25 13:20  pbartok
27583
27584         * Control.cs:
27585           - Control now properly passes the ambient background color to child
27586             controls
27587
27588 2004-08-25 13:20  jordi
27589
27590         * ScrollBar.cs: small bug fix regarding bar position
27591
27592 2004-08-25 12:33  pbartok
27593
27594         * Timer.cs:
27595           - Now only calls SetTimer or KillTimer if the enabled state has
27596           changed
27597
27598 2004-08-25 12:33  pbartok
27599
27600         * XplatUIWin32.cs:
27601           - Fixed timer handling, now seems to work
27602           - Improved error message for window creation
27603
27604 2004-08-25 12:32  pbartok
27605
27606         * Control.cs:
27607           - Fixed generation of MouseUp message
27608
27609 2004-08-25 12:29  jordi
27610
27611         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
27612           and fixes for progressbar
27613
27614 2004-08-24 18:43  ravindra
27615
27616         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
27617           in ToolBar control.
27618
27619 2004-08-24 17:15  pbartok
27620
27621         * Panel.cs:
27622           - Added #region
27623           - Added missing events
27624           - Alphabetized
27625
27626 2004-08-24 17:14  pbartok
27627
27628         * StatusBar.cs, PictureBox.cs:
27629           - Now uses Control's CreateParams
27630
27631 2004-08-24 16:36  pbartok
27632
27633         * XplatUIX11.cs:
27634           - Fixed background color handling
27635           - Fixed sending of enter/leave events on a grab
27636
27637 2004-08-24 16:35  pbartok
27638
27639         * X11Structs.cs:
27640           - Refined definitions for CrossingEvent
27641
27642 2004-08-24 12:37  jordi
27643
27644         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
27645           formmating, methods signature, and adds missing events
27646
27647 2004-08-24 12:24  jordi
27648
27649         * Control.cs: fire OnEnabledChanged event
27650
27651 2004-08-24 11:17  pbartok
27652
27653         * XplatUIWin32.cs:
27654           - Implemented SetTimer() and KillTimer()
27655
27656 2004-08-24 11:16  pbartok
27657
27658         * XplatUIX11.cs:
27659           - Now uses Remove instead of Add to kill the timer
27660
27661 2004-08-24 10:16  jackson
27662
27663         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
27664           picture boxes in the theme now. Draw picture box borders and obey
27665           sizing modes
27666
27667 2004-08-24 05:49  jackson
27668
27669         * Timer.cs: Remove top secret debugging code
27670
27671 2004-08-24 05:34  jackson
27672
27673         * PictureBox.cs: Temp hack to make picture boxes draw their full
27674           image
27675
27676 2004-08-24 05:29  jackson
27677
27678         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27679           XplatUIX11.cs: Move timers to the driver level. On X they are
27680           queued by the driver and checked on idle.
27681
27682 2004-08-24 01:07  jackson
27683
27684         * XplatUIX11.cs: Use a queue for async messages instead of passing
27685           them as ClientMessages since that was totally broken. Also simply
27686           check for events and return an idle message if none are found. This
27687           gives us an idle handler, and prevents deadlocking when no messages
27688           are in the queue.
27689
27690 2004-08-23 18:19  ravindra
27691
27692         * XplatUIWin32.cs: Removed the unwanted destructor.
27693
27694 2004-08-23 17:27  pbartok
27695
27696         * ButtonBase.cs:
27697           - Finishing touches. Works now, just needs some optimizations.
27698
27699 2004-08-23 16:53  jordi
27700
27701         * ScrollBar.cs: small fix
27702
27703 2004-08-23 16:45  pbartok
27704
27705         * Application.cs:
27706           - Removed debug output
27707           - Simplifications
27708
27709 2004-08-23 16:43  jordi
27710
27711         * ScrollBar.cs: [no log message]
27712
27713 2004-08-23 16:10  pbartok
27714
27715         * Form.cs:
27716           - Fixed handling of WM_CLOSE message
27717           - Removed debug output
27718
27719 2004-08-23 16:09  pbartok
27720
27721         * Application.cs:
27722           - Added handling of Idle event
27723           - Added handling of form closing
27724           - Fixed reporting of MessageLoop property
27725           - Removed some unneeded code, should provide a bit of a speedup
27726
27727 2004-08-23 15:22  pbartok
27728
27729         * Control.cs:
27730           - Added InitLayout() method
27731           - Added code to properly perform layout when Anchor or Dock property
27732             is changed
27733           - Changed 'interpretation' of ResumeLayout. MS seems to have a
27734             LAMESPEC, tried to do it in a way that makes sense
27735
27736 2004-08-23 14:10  jordi
27737
27738         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
27739           properties and methods
27740
27741 2004-08-23 13:55  pbartok
27742
27743         * Control.cs:
27744           - Properly fixed Jordi's last fix
27745           - Now uses Cursor's Position property instead of calling XplatUI
27746           directly
27747
27748 2004-08-23 13:44  jordi
27749
27750         * PaintEventHandler.cs: Adding missing attribute
27751
27752 2004-08-23 13:39  pbartok
27753
27754         * Cursor.cs:
27755           - Implemented Position property
27756
27757 2004-08-23 13:39  pbartok
27758
27759         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27760           - Added method to move mouse cursor
27761
27762 2004-08-23 13:39  pbartok
27763
27764         * XplatUIX11.cs:
27765           - Fixed setting of background color
27766           - Added method to move mouse cursor
27767
27768 2004-08-23 13:16  jordi
27769
27770         * Control.cs: avoids null exception
27771
27772 2004-08-22 17:46  jackson
27773
27774         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
27775           PictureBox
27776
27777 2004-08-22 17:40  jackson
27778
27779         * XplatUIX11.cs: Add some missing locks
27780
27781 2004-08-22 15:10  pbartok
27782
27783         * Control.cs, Form.cs:
27784           - Removed OverlappedWindow style from Control, instead it's default
27785             now is child
27786           - Made form windows OverlappedWindow by default
27787
27788 2004-08-22 13:34  jackson
27789
27790         * ScrollBar.cs: Update the position through the Value property so
27791           the OnValueChanged event is raised.
27792
27793 2004-08-22 12:04  pbartok
27794
27795         * SWF.csproj:
27796           - Added Cursor.cs and UserControl.cs
27797
27798 2004-08-22 12:03  pbartok
27799
27800         * Cursor.cs:
27801           - Started implementation, not usable yet
27802
27803 2004-08-22 12:00  pbartok
27804
27805         * UserControl.cs:
27806           - Implemented UserControl (complete)
27807
27808 2004-08-21 19:20  ravindra
27809
27810         * ToolBar.cs: Correcting the formatting mess of VS.NET.
27811
27812 2004-08-21 18:49  ravindra
27813
27814         * ToolBar.cs: Probably this completes the missing attributes in
27815           toolbar control.
27816
27817 2004-08-21 18:03  ravindra
27818
27819         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
27820           Fixed toolbar control signatures.
27821
27822 2004-08-21 16:32  pbartok
27823
27824         * LinkLabel.cs:
27825           - Signature Fixes
27826
27827 2004-08-21 16:30  pbartok
27828
27829         * Label.cs:
27830           - Signature fixes
27831
27832 2004-08-21 16:19  pbartok
27833
27834         * Control.cs, Label.cs:
27835           - Signature fixes
27836
27837 2004-08-21 15:57  pbartok
27838
27839         * ButtonBase.cs:
27840           - Added loads of debug output for development
27841           - Fixed typo in method name
27842
27843 2004-08-21 15:52  pbartok
27844
27845         * ToolBarButtonClickEventArgs.cs:
27846           - Added missing base class
27847
27848 2004-08-21 14:53  pbartok
27849
27850         * Control.cs:
27851           - Updated to match new GrabWindow signature
27852
27853 2004-08-21 14:51  pbartok
27854
27855         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
27856           - Added method to get default display size
27857
27858 2004-08-21 14:23  pbartok
27859
27860         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
27861           - Added method to query current grab state
27862           - Added argument to allow confining a grab to a window
27863
27864 2004-08-21 14:22  pbartok
27865
27866         * Keys.cs:
27867           - Added [Flags] attribute so that modifiers can be used in bitwise
27868           ops
27869
27870 2004-08-21 14:21  pbartok
27871
27872         * TrackBar.cs, ScrollBar.cs:
27873           - Replaced direct XplatUI calls with their Control counterpart
27874
27875 2004-08-21 13:32  pbartok
27876
27877         * Control.cs:
27878           - Implemented Created property
27879
27880 2004-08-21 13:28  pbartok
27881
27882         * Control.cs:
27883           - Implemented ContainsFocus
27884
27885 2004-08-21 13:26  pbartok
27886
27887         * Control.cs:
27888           - Implemented CausesValidation
27889
27890 2004-08-21 13:21  pbartok
27891
27892         * Control.cs:
27893           - Implemented CanFocus
27894           - Implemented CanSelect
27895           - Implemented Capture
27896
27897 2004-08-21 12:35  pbartok
27898
27899         * XplatUIWin32.cs:
27900           - Fixed bug with Async message handling
27901           - Implemented getting the ModifierKeys
27902
27903 2004-08-21 12:32  jackson
27904
27905         * AsyncMethodResult.cs: Make sure we have the mutex before we
27906           release it. Fixes BeginInvoke on windows
27907
27908 2004-08-21 11:31  pbartok
27909
27910         * XplatUIWin32.cs, XplatUIX11.cs:
27911           - Drivers now return proper mouse state
27912
27913 2004-08-21 10:54  jackson
27914
27915         * Control.cs: Implement EndInvoke
27916
27917 2004-08-21 10:48  jackson
27918
27919         * Timer.cs: Remove unneeded finalizer
27920
27921 2004-08-20 19:52  ravindra
27922
27923         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
27924           in mouse event handling in the ToolBar control.
27925
27926 2004-08-20 19:50  ravindra
27927
27928         * ImageList.cs: Changed draw method to use the arguments passed in
27929           to draw the image.
27930
27931 2004-08-20 18:58  pbartok
27932
27933         * XplatUIStructs.cs:
27934           - Added private message for async communication
27935
27936 2004-08-20 17:38  ravindra
27937
27938         * Control.cs: Made RightToLeft property virtual and removed a
27939           Console.WriteLine.
27940
27941 2004-08-20 14:39  jordi
27942
27943         * ThemeGtk.cs: use style_attach
27944
27945 2004-08-20 14:39  pbartok
27946
27947         * XplatUIWin32.cs:
27948           - Added jackson's Async code from X11 to Win32
27949
27950 2004-08-20 14:09  pbartok
27951
27952         * SWF.csproj:
27953           - Added all new files
27954
27955 2004-08-20 14:09  pbartok
27956
27957         * Control.cs:
27958           - Added call to set window background color
27959
27960 2004-08-20 14:03  pbartok
27961
27962         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
27963           - Added method for setting the window background
27964
27965 2004-08-20 14:02  pbartok
27966
27967         * XplatUIWin32.cs:
27968           - Added method for setting the background color
27969           - Added handling for erasing the window background
27970
27971 2004-08-20 13:45  jordi
27972
27973         * TrackBar.cs: fixes timer, new properties and methods
27974
27975 2004-08-20 13:34  jackson
27976
27977         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
27978           correct thread
27979
27980 2004-08-20 13:22  jackson
27981
27982         * Timer.cs: Timer Tick events are now handed through Controls Async
27983           mechanism so the callbacks are executed in the same thread as X
27984
27985 2004-08-20 13:19  jackson
27986
27987         * XplatUIDriver.cs: Expose functionality to send async messages
27988           through the driver
27989
27990 2004-08-20 13:18  jackson
27991
27992         * Control.cs: Implement Begininvoke
27993
27994 2004-08-20 13:14  jackson
27995
27996         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
27997           messages through the driver
27998
27999 2004-08-20 13:12  jackson
28000
28001         * XplatUIX11.cs: Lock before all X operations. Also added Async
28002           method functionality through XSendEvent
28003
28004 2004-08-20 13:11  jackson
28005
28006         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
28007           This will screw up on 64 bit systems)
28008
28009 2004-08-20 13:10  jackson
28010
28011         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
28012           Async messages through X/Win32
28013
28014 2004-08-19 19:39  pbartok
28015
28016         * XplatUIX11.cs:
28017           - Updated code to match new HandleData.DeviceContext type
28018
28019 2004-08-19 19:38  pbartok
28020
28021         * HandleData.cs:
28022           - Made DeviceContext a generic object to allow usage from various
28023           drivers
28024           - Added support for queueing Windows messages
28025
28026 2004-08-19 19:37  pbartok
28027
28028         * XplatUIWin32.cs:
28029           - Added generation of MouseEnter, MouseLeave and MouseHover events
28030           - Added cleanup on EndPaint
28031
28032 2004-08-19 19:17  pbartok
28033
28034         * Control.cs:
28035           - Added handling of WM_MOUSEHOVER
28036           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
28037           code
28038
28039 2004-08-19 18:55  jordi
28040
28041         * ThemeGtk.cs: fixes button order
28042
28043 2004-08-19 18:12  jordi
28044
28045         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
28046
28047 2004-08-19 17:09  pbartok
28048
28049         * Control.cs:
28050           - Added Right property
28051           - Added RightToLeft property
28052
28053 2004-08-19 16:27  jordi
28054
28055         * ThemeGtk.cs: experimental GTK theme support
28056
28057 2004-08-19 16:26  jordi
28058
28059         * ITheme.cs, Theme.cs: move themes from an interface to a class
28060
28061 2004-08-19 16:25  jordi
28062
28063         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
28064           theme enhancaments
28065
28066 2004-08-19 16:04  pbartok
28067
28068         * XplatUIX11.cs:
28069           - Added colormap basics
28070           - Added a way to re-initialize with a different display handle
28071           - Fixed setting of the window background color
28072           - Added various X11 imports related to colors and colormaps
28073
28074 2004-08-19 15:51  pbartok
28075
28076         * X11Structs.cs:
28077           - Removed packing hints (Paolo suggested this a while back)
28078           - fixed colormap type
28079           - Added default Atom types
28080           - Added Screen and color structs and enums
28081
28082 2004-08-19 15:39  pbartok
28083
28084         * ImageList.cs:
28085           - Added missing Draw() method
28086           - Added missing RecreateHandle event
28087
28088 2004-08-19 15:30  pbartok
28089
28090         * Form.cs:
28091           - Added handling of WM_CLOSE
28092
28093 2004-08-18 13:16  jordi
28094
28095         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
28096           a table
28097
28098 2004-08-18 09:56  jordi
28099
28100         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
28101
28102 2004-08-17 15:31  ravindra
28103
28104         * SWF.csproj: Updated project.
28105
28106 2004-08-17 15:25  pbartok
28107
28108         * Control.cs:
28109           - Drawing improvement; don't call UpdateBounds if we are not visible
28110             (or have been minimized)
28111
28112 2004-08-17 15:24  pbartok
28113
28114         * XplatUIWin32.cs:
28115           - Finished IsVisible
28116           - Added Win32GetWindowPlacement
28117
28118 2004-08-17 15:08  jackson
28119
28120         * Panel.cs: Initial checkin of the Panel
28121
28122 2004-08-17 14:25  pbartok
28123
28124         * Control.cs:
28125           - Fixed broken handling of default window sizes
28126
28127 2004-08-17 13:29  jackson
28128
28129         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
28130           has a large startup time.
28131
28132 2004-08-17 10:25  jackson
28133
28134         * HandleData.cs: union areas properly
28135
28136 2004-08-17 10:12  jackson
28137
28138         * HandleData.cs: union areas properly
28139
28140 2004-08-16 20:00  ravindra
28141
28142         * ToolBar.cs, ToolBarButton.cs: Added attributes.
28143
28144 2004-08-16 18:48  ravindra
28145
28146         * ToolBar.cs: Added attributes.
28147
28148 2004-08-16 17:17  ravindra
28149
28150         * SWF.csproj: Updated project.
28151
28152 2004-08-16 17:16  jackson
28153
28154         * XplatUIX11.cs: Check for more expose events before sending a
28155           WM_PAINT so they can all be grouped together. This makes dragging a
28156           window across another window redraw in a sane way.
28157
28158 2004-08-16 15:47  pbartok
28159
28160         * Control.cs:
28161           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
28162             support OnMouseEnter/Leave()
28163           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
28164             exposure handling
28165
28166 2004-08-16 15:46  pbartok
28167
28168         * XplatUIStructs.cs, XplatUIX11.cs:
28169           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
28170           OnMouseEnter/Leave()
28171
28172 2004-08-16 15:34  jackson
28173
28174         * XplatUIX11.cs: Group multiple expose events in HandleData, make
28175           sure messages get the message field set to WM_NULL if they are not
28176           handled.
28177
28178 2004-08-16 15:24  jackson
28179
28180         * HandleData.cs: HandleData is used for storing message information
28181           for window handles
28182
28183 2004-08-15 17:23  ravindra
28184
28185         * ColorDepth.cs: Added attribute.
28186
28187 2004-08-15 17:23  ravindra
28188
28189         * SWF.csproj: Updated project for ToolBar Control.
28190
28191 2004-08-15 17:20  ravindra
28192
28193         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
28194           control and also dos2unix format.
28195
28196 2004-08-15 17:13  ravindra
28197
28198         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
28199           ToolBarButtonClickEventArgs.cs,
28200           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
28201           ToolBarTextAlign.cs: First Implementation of ToolBar control.
28202
28203 2004-08-15 15:31  pbartok
28204
28205         * ButtonBase.cs:
28206           - First (mostly) working version
28207
28208 2004-08-13 16:15  pbartok
28209
28210         * Control.cs:
28211           - Fixed Anchor default
28212
28213 2004-08-13 15:43  pbartok
28214
28215         * Control.cs:
28216           - Changed GetCursorPos signature
28217
28218 2004-08-13 15:42  pbartok
28219
28220         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28221           - Changed signature for GetCursorPos
28222
28223 2004-08-13 15:25  pbartok
28224
28225         * XplatUIX11.cs:
28226           - Cleanup
28227           - Fixed resizing/exposure handling
28228
28229 2004-08-13 15:22  jordi
28230
28231         * ThemeWin32Classic.cs: removes redundant code and fixes issues
28232           with tickposition
28233
28234 2004-08-13 14:55  jordi
28235
28236         * TrackBar.cs: change from wndproc to events
28237
28238 2004-08-13 13:00  jordi
28239
28240         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28241           XplatUIX11.cs: implements PointToClient (ScreenToClient)
28242
28243 2004-08-13 12:53  pbartok
28244
28245         * XplatUIWin32.cs:
28246           - Changed GetWindowPos to also provide client area size
28247           - Fixed broken prototypes for several win32 functions
28248
28249 2004-08-13 12:53  pbartok
28250
28251         * XplatUI.cs, XplatUIDriver.cs:
28252           - Changed GetWindowPos to also provide client area size
28253
28254 2004-08-13 12:52  pbartok
28255
28256         * XplatUIX11.cs:
28257           - Added generation of WM_POSCHANGED
28258           - Changed GetWindowPos to also provide client area size
28259
28260 2004-08-13 12:52  pbartok
28261
28262         * Control.cs:
28263           - Added Dispose() and destructor
28264           - Fixed resizing and bounds calculation
28265           - Fixed Layout
28266           - Added memory savings for invisible windows
28267
28268 2004-08-13 12:46  jordi
28269
28270         * TrackBar.cs: adds timer and grap window
28271
28272 2004-08-13 10:25  jackson
28273
28274         * Timer.cs: SWF Timer
28275
28276 2004-08-12 16:59  pbartok
28277
28278         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28279           - Implemented method to get current mouse position
28280
28281 2004-08-12 14:29  jordi
28282
28283         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
28284           enhancement, fix mouse problems, highli thumb, etc
28285
28286 2004-08-12 13:31  pbartok
28287
28288         * Control.cs:
28289           - Fixed Anchoring bugs
28290
28291 2004-08-12 13:01  jackson
28292
28293         * StatusBar.cs: Don't forget things
28294
28295 2004-08-12 12:54  jackson
28296
28297         * ThemeWin32Classic.cs: Handle owner draw status bars
28298
28299 2004-08-12 12:54  jackson
28300
28301         * StatusBar.cs: Implement missing properties, events, and methods.
28302           Handle mouse clicking
28303
28304 2004-08-12 10:19  jackson
28305
28306         * StatusBarPanelClickEventArgs.cs,
28307           StatusBarPanelClickEventHandler.cs: Classes for handling status
28308           bar panel click events
28309
28310 2004-08-12 10:10  jackson
28311
28312         * Control.cs: Add missing properties
28313
28314 2004-08-12 09:46  pbartok
28315
28316         * BindingsManagerBase.cs:
28317           - Name changed to BindingManagerBase.cs
28318
28319 2004-08-12 09:25  jordi
28320
28321         * ScrollableControl.cs: calls ctrlbase instead of exeception
28322
28323 2004-08-11 16:28  pbartok
28324
28325         * InputLanguageChangingEventArgs.cs:
28326           - Never check in before compiling. Fixes the last check-in
28327
28328 2004-08-11 16:26  pbartok
28329
28330         * InputLanguageChangingEventArgs.cs:
28331           - More signature fixes
28332
28333 2004-08-11 16:20  pbartok
28334
28335         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
28336           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
28337           ImageListStreamer.cs, InputLanguage.cs,
28338           InputLanguageChangedEventArgs.cs,
28339           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
28340           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
28341           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
28342           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28343           - Signature fixes
28344
28345 2004-08-11 16:16  pbartok
28346
28347         * Application.cs:
28348           - Fixed Signature
28349           - Added .Net 1.1 method
28350
28351 2004-08-11 15:25  pbartok
28352
28353         * SWF.csproj:
28354           - Fixed BindingManagerBase.cs filename
28355
28356 2004-08-11 15:22  pbartok
28357
28358         * BindingManagerBase.cs:
28359           - Was checked in with wrong filename
28360
28361 2004-08-11 14:50  pbartok
28362
28363         * SWF.csproj:
28364           - Updated
28365
28366 2004-08-11 13:41  jordi
28367
28368         * XplatUIWin32.cs: Fixes ClientRect
28369
28370 2004-08-11 13:19  pbartok
28371
28372         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28373           XplatUIX11.cs:
28374           - We had SetWindowPos and MoveWindow to set window positions and
28375             size, removed MoveWindow. We have GetWindowPos, so it made sense to
28376             keep SetWindowPos as matching counterpart
28377           - Added some X11 sanity checking
28378
28379 2004-08-11 12:59  pbartok
28380
28381         * Control.cs:
28382           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
28383             (It seems that SetBounds is just a front for SetBoundsCore and
28384              SetBoundsCore updates the underlying window system and
28385              UpdateBounds is responsible for updating the variables associated
28386              with the Control and sending the events)
28387           - Major cleanup of Size handling; we now have two sizes, client_size
28388             and bounds. Bounds defines the window with decorations, client_size
28389             without them.
28390
28391 2004-08-11 12:55  pbartok
28392
28393         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28394           - Added method to calculate difference between decorated window and
28395             raw client area
28396
28397 2004-08-11 12:54  pbartok
28398
28399         * Label.cs:
28400           - Forcing redraw on resize
28401
28402 2004-08-11 11:43  pbartok
28403
28404         * ImageList.cs:
28405           - Removed disposing of the actual images when the list is disposed
28406
28407 2004-08-11 09:13  pbartok
28408
28409         * Control.cs:
28410           - Now properly reparents windows
28411
28412 2004-08-11 08:37  pbartok
28413
28414         * Control.cs:
28415           - Duh!
28416
28417 2004-08-11 07:47  pbartok
28418
28419         * Control.cs:
28420           - Rewrote the collection stuff. Might not be as fast now, not
28421             keeping the number of children around and accessible directly, but
28422             it's more straightforward
28423
28424 2004-08-11 07:44  pbartok
28425
28426         * AccessibleObject.cs:
28427           - Fixed to match ControlCollection rewrite
28428
28429 2004-08-11 07:43  pbartok
28430
28431         * ImageList.cs:
28432           - Added missing creation of the collection list
28433
28434 2004-08-10 20:08  jackson
28435
28436         * StatusBar.cs: Get the paint message from WndProc
28437
28438 2004-08-10 19:31  jackson
28439
28440         * ThemeWin32Classic.cs: Create Brushes as little as possible
28441
28442 2004-08-10 19:20  jackson
28443
28444         * UICues.cs: Add Flags attribute
28445
28446 2004-08-10 19:19  jackson
28447
28448         * StatusBarPanel.cs: Signature cleanup
28449
28450 2004-08-10 19:10  jackson
28451
28452         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
28453           Initial implementation of status bar item drawing
28454
28455 2004-08-10 17:27  jordi
28456
28457         * TrackBar.cs: add missing methods, properties, and restructure to
28458           hide extra ones
28459
28460 2004-08-10 16:24  jackson
28461
28462         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
28463           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
28464           attribute
28465
28466 2004-08-10 13:21  jordi
28467
28468         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
28469           enhancements and standarize on win colors defaults
28470
28471 2004-08-10 12:52  jackson
28472
28473         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
28474           ThemeWin32Classic.cs: Implement DrawItem functionality
28475
28476 2004-08-10 12:47  jordi
28477
28478         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
28479
28480 2004-08-10 12:32  jordi
28481
28482         * Control.cs: throw ontextchange event
28483
28484 2004-08-10 11:43  pbartok
28485
28486         * Control.cs:
28487           - Added more to the still unfinished Dock/Anchor layout code
28488
28489 2004-08-10 11:39  pbartok
28490
28491         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28492           - Added GetWindowPos method
28493
28494 2004-08-10 11:36  pbartok
28495
28496         * XplatUIWin32.cs:
28497           - Implemented several methods
28498
28499 2004-08-10 09:47  jackson
28500
28501         * TrackBar.cs: Allow control to handle buffering
28502
28503 2004-08-10 09:41  jackson
28504
28505         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
28506
28507 2004-08-10 09:24  jackson
28508
28509         * Label.cs, LinkLabel.cs: Let Control handle buffering.
28510
28511 2004-08-10 09:09  jackson
28512
28513         * StatusBar.cs: Let Control handle all the buffering.
28514
28515 2004-08-10 09:08  jackson
28516
28517         * Control.cs: Control will now handle the buffering code, so each
28518           control does not have to implement this.
28519
28520 2004-08-10 08:34  jackson
28521
28522         * XplatUIDriver.cs: Use default colors from the theme
28523
28524 2004-08-09 17:12  pbartok
28525
28526         * ImageList.cs:
28527           - Fixed several bugs Ravindra pointed out
28528
28529 2004-08-09 16:11  pbartok
28530
28531         * Control.cs:
28532           - Added incomplete dock layout code
28533           - Added support for mouse wheel
28534
28535 2004-08-09 16:09  pbartok
28536
28537         * XplatUIX11.cs:
28538           - Added handling for middle and right mousebutton
28539           - Added handling for mouse wheel
28540           - Added handling for key state and mouse state and position
28541           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
28542           messages
28543
28544 2004-08-09 15:40  jackson
28545
28546         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
28547           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
28548           checkin
28549
28550 2004-08-09 15:37  jackson
28551
28552         * StatusBar.cs: Initial implementation of StatusBar
28553
28554 2004-08-09 15:36  jackson
28555
28556         * ITheme.cs: Add support for drawing status bar and getting status
28557           bar item sizes
28558
28559 2004-08-09 15:35  pbartok
28560
28561         * MouseButtons.cs:
28562           - Fixed values
28563
28564 2004-08-09 15:34  jackson
28565
28566         * ThemeWin32Classic.cs: Add support for drawing status bar and get
28567           status bar item sizes
28568
28569 2004-08-09 15:21  jackson
28570
28571         * ThemeWin32Classic.cs: Use known colors for default control
28572           colours
28573
28574 2004-08-09 15:12  jackson
28575
28576         * ThemeWin32Classic.cs: Make the default font static, it is static
28577           in control so this doesn't change functionality and creating fonts
28578           is sloooooow.
28579
28580 2004-08-09 14:56  pbartok
28581
28582         * X11Structs.cs:
28583           - Added GrabMode enum
28584
28585 2004-08-09 14:55  pbartok
28586
28587         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28588           - Removed Run method, was only required for initial development
28589
28590 2004-08-09 14:51  pbartok
28591
28592         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28593           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
28594           capture
28595
28596 2004-08-09 13:48  pbartok
28597
28598         * XplatUIX11.cs:
28599           - Fixed default sizing for child windows
28600
28601 2004-08-09 12:56  pbartok
28602
28603         * XplatUIX11.cs:
28604           - Added generation of WM_DESTROY message
28605           - Added handling of window manager induced shutdown
28606
28607 2004-08-09 11:31  jackson
28608
28609         * ThemeWin32Classic.cs: New names for control properties
28610
28611 2004-08-09 11:25  jackson
28612
28613         * Control.cs: Use new color names
28614
28615 2004-08-09 11:02  jackson
28616
28617         * XplatUI.cs: Get default window properties from the theme
28618
28619 2004-08-09 11:01  jackson
28620
28621         * ITheme.cs: The theme engine now controls default window
28622           properties
28623
28624 2004-08-09 11:00  jackson
28625
28626         * ThemeWin32Classic.cs: Add default window color properties
28627
28628 2004-08-09 10:17  jackson
28629
28630         * ThemeWin32Classic.cs: Use correct default back color
28631
28632 2004-08-09 10:05  jackson
28633
28634         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
28635           the theme now.
28636
28637 2004-08-09 09:56  jackson
28638
28639         * XplatUI.cs: Remove defaults, these are handled by the theme now.
28640
28641 2004-08-09 09:54  jackson
28642
28643         * Control.cs: Get default properties from the theme.
28644
28645 2004-08-09 09:53  jackson
28646
28647         * ITheme.cs: Themes now handle default control properties
28648
28649 2004-08-09 09:53  jackson
28650
28651         * ThemeWin32Classic.cs: Themes now handle default control
28652           properties so coloring will be consistent
28653
28654 2004-08-08 16:54  jordi
28655
28656         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
28657
28658 2004-08-08 15:08  jordi
28659
28660         * XplatUIX11.cs: fixes keyboard crash
28661
28662 2004-08-08 13:47  jordi
28663
28664         * Label.cs: add cvs header info
28665
28666 2004-08-08 12:09  jackson
28667
28668         * ThemeWin32Classic.cs: Add pen_buttonface
28669
28670 2004-08-08 11:52  jordi
28671
28672         * Label.cs, LinkLabel.cs: [no log message]
28673
28674 2004-08-08 11:34  jordi
28675
28676         * ThemeWin32Classic.cs: Use Windows Standard Colours
28677
28678 2004-08-07 17:32  jordi
28679
28680         * TrackBar.cs: throw exceptions of invalid enums values
28681
28682 2004-08-07 17:31  jordi
28683
28684         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
28685           draw method name
28686
28687 2004-08-07 16:56  jackson
28688
28689         * HorizontalAlignment.cs: Initial checkin
28690
28691 2004-08-07 13:16  jordi
28692
28693         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
28694           methods
28695
28696 2004-08-07 13:05  jordi
28697
28698         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
28699           GetSysColor defines
28700
28701 2004-08-06 18:01  pbartok
28702
28703         * ThemeWin32Classic.cs:
28704           - Fixed some rounding issues with float/int
28705
28706 2004-08-06 18:00  jackson
28707
28708         * DockStyle.cs, AnchorStyles.cs:
28709
28710                   Add flags and serializable attributes.
28711
28712 2004-08-06 17:46  pbartok
28713
28714         * XplatUIX11.cs:
28715           - Implemented GetParent
28716
28717 2004-08-06 17:18  pbartok
28718
28719         * TrackBar.cs:
28720           - Fixed some rounding issues with float/int
28721
28722 2004-08-06 17:17  pbartok
28723
28724         * X11Structs.cs, XplatUIX11.cs:
28725           - Fixed Refresh and Invalidate
28726
28727 2004-08-06 15:30  pbartok
28728
28729         * Control.cs, X11Structs.cs, XplatUIX11.cs:
28730           - Fixed recursive loop when resizing
28731           - Improved/fixed redrawing on expose messages
28732
28733 2004-08-06 09:53  jordi
28734
28735         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
28736           keyboard navigation
28737
28738 2004-08-06 08:02  pbartok
28739
28740         * X11Structs.cs, XplatUIX11.cs:
28741           - Fixed reparenting
28742           - Fixed window border creation
28743
28744 2004-08-05 15:38  pbartok
28745
28746         * XplatUIX11.cs:
28747           - Attempted fix for reparenting problems
28748
28749 2004-08-04 15:14  pbartok
28750
28751         * Control.cs:
28752           - Fixed Invalidation bug (calculated wrong client area)
28753           - Added ClientSize setter
28754
28755 2004-08-04 15:13  pbartok
28756
28757         * Form.cs:
28758           - Added AutoScale properties
28759
28760 2004-08-04 15:13  pbartok
28761
28762         * SWF.csproj:
28763           - Added latest files
28764
28765 2004-08-04 14:11  pbartok
28766
28767         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28768           XplatUIX11.cs:
28769           - Added Invalidate handling
28770
28771 2004-08-03 17:09  jordi
28772
28773         * XplatUIDriver.cs: fixes spelling mistake
28774
28775 2004-07-27 09:53  jordi
28776
28777         * TrackBar.cs: fixes trackbar events, def classname, methods
28778           signature
28779
28780 2004-07-27 09:29  jordi
28781
28782         * ScrollBar.cs: fixes scrollbar events
28783
28784 2004-07-27 04:38  jordi
28785
28786         * Control.cs: changes to be able to run winforms samples
28787
28788 2004-07-26 11:42  jordi
28789
28790         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
28791           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
28792
28793 2004-07-26 05:41  jordi
28794
28795         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
28796           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
28797           implementation
28798
28799 2004-07-22 09:22  jordi
28800
28801         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
28802           check link overlapping, implement events, and fixes
28803
28804 2004-07-21 10:28  jordi
28805
28806         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
28807
28808 2004-07-21 10:19  jordi
28809
28810         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
28811           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
28812           LinkLabelLinkClickedEventArgs.cs,
28813           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
28814           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
28815           implementation
28816
28817 2004-07-19 13:09  jordi
28818
28819         * Control.cs, Label.cs: label control re-written: added missing
28820           functionlity, events, and properties
28821
28822 2004-07-19 10:49  jordi
28823
28824         * Control.cs: fixes SetBounds logic
28825
28826 2004-07-19 01:29  jordi
28827
28828         * Control.cs: Call RefreshWindow only if the window has created
28829
28830 2004-07-15 14:05  pbartok
28831
28832         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
28833           - Implemented ImageList and ImageList.ImageCollection classes
28834           - Added ColorDepth enumeration
28835           - Updated SWF VS.Net project
28836
28837 2004-07-15 11:06  jordi
28838
28839         * XplatUIStructs.cs: added MsgButons enum
28840
28841 2004-07-15 11:03  jordi
28842
28843         * Control.cs: added basic mouse handeling events
28844
28845 2004-07-15 03:38  jordi
28846
28847         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
28848           Vertical TrackBar control implementation
28849
28850 2004-07-13 09:33  jordi
28851
28852         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
28853
28854 2004-07-13 09:31  jordi
28855
28856         * Control.cs, Form.cs: commit: new properties and fixes form size
28857           problems
28858
28859 2004-07-09 14:13  miguel
28860
28861         * ProgressBar.cs: Spelling
28862
28863 2004-07-09 11:25  pbartok
28864
28865         * ProgressBar.cs:
28866           - Removed usage of Rectangle for drawing. Miguel pointed out it's
28867           faster
28868
28869 2004-07-09 11:17  miguel
28870
28871         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
28872
28873                 * ProgressBar.cs: Fixed spelling for `block'
28874
28875                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
28876                 style guidelines.
28877
28878                 Avoid using the += on rect.X, that exposed a bug in the compiler.
28879
28880 2004-07-08 23:21  pbartok
28881
28882         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
28883           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
28884           BaseCollection.cs, Binding.cs, BindingContext.cs,
28885           BindingMemberInfo.cs, BindingsCollection.cs,
28886           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
28887           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
28888           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
28889           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
28890           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
28891           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
28892           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
28893           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
28894           FrameStyle.cs, GiveFeedbackEventArgs.cs,
28895           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
28896           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
28897           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
28898           InputLanguageChangedEventArgs.cs,
28899           InputLanguageChangedEventHandler.cs,
28900           InputLanguageChangingEventArgs.cs,
28901           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
28902           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
28903           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
28904           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
28905           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
28906           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
28907           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
28908           QueryAccessibilityHelpEventArgs.cs,
28909           QueryAccessibilityHelpEventHandler.cs,
28910           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
28911           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
28912           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
28913           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
28914           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
28915           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
28916           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
28917           XplatUIX11.cs, lang.cs:
28918           - Initial check-in
28919
28920