2007-02-23 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2
3         This is a first set of changes to make the Virtual mode works,
4         by avoiding the retrieval of ListViewItem instances until
5         draw time.
6
7         * ListView.cs: Store item position in the ListView instead of the
8         ListViewItem, this way we don't request the Bounds property of
9         ListViewItem inside the ListView calculations, as well as cache the item
10         size in item_size field. Store indexes instead of ListViewItem
11         instances in the matrix used by icon view. Add a ItemMatrixLocation
12         struct to hold the row and col info of the matrix info.
13
14         * ListViewItem.cs: Don't store the location anymore, and only cache
15         the rectangles for GetBounds. Use the ListView.GetItemLocation
16         method to retrieve the actual location.
17
18 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
19
20         * TextRenderer.cs: Add clipping support, thanks to George.
21         [Fixes bug #80949]
22
23 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
24
25         * ListViewItem.cs: Cancel label edit when item is removed from 
26         ListView.
27         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
28         event before the edit textbox is displayed.  Added CancelEdit method
29         which is used end to editing while ignoring the value set by the
30         user. In EndEdit, set focus to ListView to avoid losing focus to
31         other controls. In ListViewItemCollection.Clear, cancel editing of
32         any of the items.  In Remove, cancel editing of item being removed.
33         Avoid udplicate code by modifing RemoveAt to invoke Remove.
34
35 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
36
37         * FileDialog.cs: Update FSEntry when move is successful. Fixes
38         bug #80948.  
39
40 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
41
42         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
43         compatible with non X11 systems. Fixes #80901.
44
45 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
46
47         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
48         whether the item should be unselected and reselect. We do no want this
49         when we're starting to edit the label. Do not fire the 
50         SelectedIndexChanged event from ListView when its already been fired
51         by modifying ListViewItem.Selected. Fixes bug #80943.
52
53 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
54
55         * TextRenderer.cs: Previos commit logic was backwards.
56
57 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
58
59         * TextRenderer.cs: Don't add padding on MeasureText if we were
60         sent the NoPadding flag.
61
62 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
63
64         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
65         after DrawButton. To prevent image overlaps button borders SetClip and 
66         ResetClip added before and after draw image. Fixes #79129.
67
68 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
69
70         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
71         window size, it fix problem when you run under win32 that theres
72         Size diferent than ClientSize. Also fix controls size and positions
73         to mimic Win32. Fixes #80837.
74
75 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
76
77         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
78         menu area to fix some problems for non X11 systems. Fixes #80613.
79
80 2007-02-22  Jackson Harper  <jackson@ximian.com>
81
82         * TreeNode.cs: When a node is expanded, set its is_expanded flag
83         even if it doesn't have any children.
84
85 2007-02-22  Jackson Harper  <jackson@ximian.com>
86
87         * TreeView.cs: Calculate the top node 'on the fly', this
88         eliminates issues where you need to click on the tree before
89         scrolling it to get the top node computed correctly.
90         * TreeNodeCollection.cs: We don't need to mess with the top node
91         anymore.
92
93 2007-02-22  Jackson Harper  <jackson@ximian.com>
94
95         * DataGridViewRow.cs: Fix typo so height can actually be set.
96         Patch by Peter Grimm.
97
98 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
99
100         * FileDialog.cs: Fixed support for renaming files and directories.
101         * ListView.cs: Do not lose focus when edit is canceled. Process
102         Escape as regular key (to prevent closing of dialogs).
103
104 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
105
106         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
107         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
108
109 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
110
111         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
112         did not modify label.
113         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
114         modified the text. Reset Label when user presses Escape in edit mode.
115         Move focus to ListView after having cancelled or finished editing the
116         label.
117
118 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
119
120         * ComboBox.cs: Removed unnecessary initializations. Marked items field
121         private. Clear textbox when Text is set to null and SelectedIndex is
122         already -1.
123         * FileDialog.cs: Removed unnecessary initializations. Removed 
124         workarounds for ComboBox bugs that are now fixed. Modified
125         DefaultExt, InitialDirectory and Title property to change null to
126         zero-length string in getters. Avoid directly accessing fields.
127
128 2007-02-20  Jackson Harper  <jackson@ximian.com>
129
130         * TextControl.cs: Remove RecalAlignments call, that was some
131         debugging leftovers.
132         - Don't use the line indent when we shouldn't.
133         * RichTextBox.cs: Add support for paragraph left indents.
134
135 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
136
137         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
138         Seems like the class status pages doesn't catch params differences.
139
140 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
141
142         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
143
144 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
145
146         * ComboBox.cs: Setting Text should have no effect if item text of
147         selected item exactly matches value. First lookup text using
148         case-sensitive comparison, and fallback to case-insensitive comparison.
149         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
150         allow startIndex to be last index. Changed ArgumentOutOfRangeException
151         paramname to match MS. Restart from first item if string is not found
152         after startIndex. Fixed paramname of ArgumentNullException that is
153         thrown for null value in ObjectCollection.Contains.
154
155 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
156
157         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
158
159 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
160
161         * ListControl.cs: In SelectedValue use value.Equals to compare for
162         equality instead of ==, otherwise it will fail for strings.
163         Fixes #80794.
164
165 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
166         
167         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
168         since the caret won't show up unless ShowSelection is true. 
169         Fixes #80795.
170
171 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
172
173         * Application.cs: When disabling all forms but the main form, do not
174           disable any descendants of the main form (such as mdi children or
175           other parented forms). Fixes #80822 on Windows.
176         * Form.cs: If we have a parent, set the WS_CHILD style.
177         * Control.cs: Update the window styles if the control whose parent has
178           changed is a form (the WS_CHILD style has to be switched).
179
180 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
181
182         * XplatUIStructs.cs: MsgUIState structure added.
183
184 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
185
186         * FileDialog.cs: Removed need for separate fileName field. On 2.0
187         profile, do not check filename(s) for illegal character if filename(s)
188         were set non-interactively but always check on 1.0 profile. Fixed NRE
189          in DefaultExt and only strip off first leading dot. Improve exception
190         message when invalid Filter is set. Do not ignore InitialDirectory if
191         it does no exist. Store specified Title, and if empty use default
192         title (depending on type of dialog). Added an internal DialogTitle 
193         property for retrieving dialog title. Fixed logic of displayed dir to
194         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
195         string as its buggy.
196         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
197         FileName is a zero-length string (it can never be null). Override 
198         DialogTitle property to set default title of dialog box.
199         * SaveFileDialog.cs: Override DialogTitle property to set default
200         title of dialog box.
201
202 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
203
204         * FileDialog.cs: Modify default text of filename and filetype labels
205         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
206         after we've updated the SelectedIndex. Fixes part of bug #80887.
207         * SaveFileDialog.cs: Set text of filetype label.
208
209 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
210
211         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
212         label field. Needed by latest Jackson's fixes for ListView.
213
214 2007-02-16  Andreia Gaita  <avidigal@novell.com>
215
216         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
217         print preview images.
218
219 2007-02-16  Jackson Harper  <jackson@ximian.com>
220
221         * ListView.cs: Make AfterLabelEdit work correctly.
222         * FileDialog.cs: After changing the name of the folder, we have to
223         make sure that it is created, or that we pop up an error because
224         it already exists.
225
226 2007-02-16  Jackson Harper  <jackson@ximian.com>
227
228         * X11Dnd.cs: Implement aliases on mime handlers, so things like
229         System.String are mapped to text.
230         - Handle dataobjects, getting all the possible formats out of them
231         - We dont need the drag event args before we give feedback. This
232         allows feedback cursors to be immediate before selections have
233         been converted.
234
235 2007-02-16  Jackson Harper  <jackson@ximian.com>
236
237         * TextBoxBase.cs: Modified the method for inserting images to
238         taking a line and position instead of tag and position.
239         * RichTextBox.cs: Handle PngBlip data by inserting the png image
240         into the RTF file.
241         * TextControl.cs: Allow images to be inserted as the first tag of
242         a line.
243         - Fix some off by one issues when we assume the first tag is a
244         text tag, not an image tag.
245
246 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
247
248         * ListView.cs: Set focus to ListView when ItemControl gets a
249         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
250         Fixes part of #80467.
251
252 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
253
254         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
255           validate Text input (if null or empty string reset Value to default
256           value). Fixes #80830.
257
258 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
259
260         * ListView.cs: Set owner as null for columns and items when
261         Dispose is invoked. Fixes #80607.
262
263 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
264
265         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
266         showing DropDowns, don't show a Grip when doing Flow layout.
267         [This fixes the toolbox in PDN 2.72.]
268         * ToolStripItem.cs: Add Anchor property and some internal properties to
269         reduces needed changes to FlowLayout.
270         * ToolStripOverflow.cs: Remove unused variable.
271         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
272         use it in the layout calculations.
273
274 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
275
276         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
277         reported in #79640.
278         
279         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
280         size calculation.
281
282 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
283
284         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
285         MeasureString format, it can make button very large in some cases, it is
286         strange but is what win32 do.
287
288 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
289
290         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
291         size calculation.
292
293         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
294         rendering, the value is based on MenuAccessKeysUnderlined.
295
296 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
297
298         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
299         for most themes.
300         
301         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
302         
303         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
304         and use MenuAccessKeysUnderlined instead.
305
306 2007-02-13  Andreia Gaita  <avidigal@novell.com>
307
308         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
309         A selected control would not get a Focus call if:
310                 - the default active control of the container is the same as
311                   the one that was selected
312                 - we are switching from one container to another
313         Under these conditions, the container being selected already has
314         an active_control, which is the same as the one being activated, 
315         so set_ActiveControl would always return and not send the Focus
316         call. Fix to check if the currently active control of the container
317         is actually focused.
318
319 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
320
321         * StatusStrip.cs: Implement the spring layout.
322         * ToolStripControlHost.cs: Make sure the hosted control's visibility
323         always matches the host.
324         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
325         and TextAfterImage.
326
327 2007-02-13  Andreia Gaita  <avidigal@novell.com>
328
329         * Control.cs: Code reorganization only.
330           - Reorganize the WndProc cases so that each case has it's own handling method, 
331           to help with the no-line-numbering stack traces.
332           - Formatting changes (it's vstudio's fault, really :p)
333
334 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
335
336         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
337           Thread.CurrentUICulture to match DateTimePicker's (and MS)
338           behaviour.
339
340 2007-02-12  Jackson Harper  <jackson@ximian.com>
341
342         * RichTextBox.cs:
343         * TextBox.cs: By default we have a non multiline document
344         - use the multiline property instead of the internal variable
345         * TextBoxBase.cs: Treat multiline and non multiline the same in
346         most places.
347         - Use the documents multiline flag instead of tracking it ourself
348         * TextControl.cs: Attempt at getting multiline to match MS
349         behavior.  Lines now track an offset, which is either their X or Y
350         offset depending on whether or not we are in multiline mode.
351         - Update all the methods to understand that lines have an X value.
352         - Fix crash in Undo::Duplicate when empty lines are deleted.
353
354 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
355
356         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
357         code moved to properties PreferredHeight and PreferredWidth. It solve the
358         all problems when preferred sizes must be recalculated. Fixes #80801.
359
360 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
361
362         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
363         font height when compatible_text_rendering is false. Partially fix #80801.
364
365 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
366
367         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
368
369 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
370
371         * Form.cs: Improved exception messages in ShowDialog.
372
373 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
374
375         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
376         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
377         if not set. Fixes bug #80764. Avoid accessing current_settings field
378         directly.
379
380 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
381
382         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
383         false.
384
385         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
386         public in 2.0 and for easy maintenance and dont break compatibility it is 
387         internal in 1.1.
388         
389 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
390
391         * ToolStripItem.cs: Implement using images from ImageList.
392
393 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
394
395         * DateTimePicker.cs: Change default date-formatting culture from
396           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
397           seems to be the way MS does it.
398
399 2007-02-08  Andreia Gaita  <avidigal@novell.com>
400
401         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
402         (the 6 was cut off on the right side)
403
404 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
405
406         * Form.cs: Tell MenuStrips to close when the form is clicked.
407         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
408         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
409         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
410         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
411         support for Overflow, where items that do not fit are automatically
412         reparented to a drop down menu.
413         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
414         Also: fixes bug #80747.
415
416 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
417
418         * ComboBox.cs: Remove warning (unused code).
419         * ScrollableControl.cs: Remove warning for 1.1 profile.
420
421 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
422
423         * Form.cs: Remove a warning.
424
425 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
426
427         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
428           'g' specifier, not documented anywhere, but seems to always show up
429           as a single space (might have something to do with the DateTime 'g'
430           specifier, which is the era format, but since DateTimePicker can't
431           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
432           won't crash if the format has an unmatched quote. Now shows
433           single-character formats correctly. Fixes #80744.
434
435 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
436
437         * StatusStrip.cs: Stretch property needs to call base.Stretch,
438         not this.Stretch to fix stack overflow. [Fixes bug #80760]
439
440 2007-02-07  Chris Toshok  <toshok@ximian.com>
441
442         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
443         background color.  it overwrites the background image we've
444         already painted.  Fixes #80599.
445
446 2007-02-07  Chris Toshok  <toshok@ximian.com>
447
448         * DataGrid.cs: return immediately from Edit() when there are no
449         columns.  Fixes #80662.
450
451 2007-02-07  Chris Toshok  <toshok@ximian.com>
452
453         * MessageBox.cs: fix #80625.  don't always show the Help button in
454         2.0.  use the displayHelpButton parameter to determine if we
455         should show it. Also, make the internal show_help field private.
456
457 2007-02-07  Chris Toshok  <toshok@ximian.com>
458
459         * Control.cs (SetVisibleCore): check in the proposed patch for
460         80604, and set is_visible before calling CreateControl.
461
462 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
463
464         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
465         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
466         on it.
467
468 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
469
470         * MenuAPI.cs: hotkey_active internal field added, it is required because
471         we need to know when hotkeys must be draw, before this change a keystate
472         Navigating was used but we can have menu in navigating state without
473         hotkeys. Fixes #80694.
474         
475         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
476
477 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
478
479         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
480           corresponding events and methods to be internal for 1.1 profile and
481           public for 2.0 profile (required by SizeGrip).
482         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
483           implicit control list). Don't set the size nor the location of the
484           SizeGrip anymore as it's not needed.
485         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
486           draw directly on the captured control (fixes #80656). Removed
487           ShowGrip (it wasn't used anywhere), redraw (always true), added
488           GetDefaultSize and GetDefaultRectangle to calculate defaults.
489         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
490           be called from SizeGrip.
491
492 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
493
494         * Timer.cs: Throw ArgumentException if Interval <= 0.
495
496 2007-02-05  Jackson Harper  <jackson@ximian.com>
497
498         * TreeView.cs: We need to check scrollbar visibility when window
499         visibility is updated, because non visible trees don't ever add
500         scrollbars.
501         * Cursor.cs: We want the override cursor to be reset to NULL when
502         we set current cursor to the default cursor.
503
504 2007-02-05  Jackson Harper  <jackson@ximian.com>
505
506         * TextControl.cs: Don't have crlfs when we are non multiline.
507         - Consolidate the line position.
508
509 2007-02-05  Jackson Harper  <jackson@ximian.com>
510
511         * X11Keyboard.cs: BACK+CTRL gets a special char code.
512
513 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
514
515         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
516           handling LeaveNotify->NotifyUngrab in order to send
517           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
518           after calling XUngrabPointer, so we call WindowUngrabbed directly
519           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
520         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
521           MouseCaptureChanged correctly. Also create handles if changing
522           Capture (matches MS behaviour).
523
524 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
525
526         * SizeGrip.cs: Make the last change 2.0 only.
527
528 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
529
530         * SizeGrip.cs: If resizing and the capture is lost, revert any size
531           changes to initial size (fixes #80597).
532
533 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
534
535         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
536
537 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
538
539         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
540           background) and only allow dragging if enabled. This way the
541           sizegrip can be used to fill the open square that otherwise would
542           have been shown in the bottom right corner of ScrollableControl
543           when ScrollableControl is not suppose to support sizing.
544         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
545           sizegrip is shown and enabled, and hook up with necessary events.
546
547 2007-02-01  Chris Toshok  <toshok@ximian.com>
548
549         * DataGridTextBoxColumn.cs: clean up the
550         GetFormattedString/GetColumnValueAtRow combination of functions.
551         Also fix UpdateUI, and the initial state of
552         IsInEditOrNavigateMode.
553
554         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
555         aren't supposed to scroll the textbox here, we're supposed to
556         scroll the datagrid.
557
558 2007-02-01  Chris Toshok  <toshok@ximian.com>
559
560         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
561         setting the position.
562
563 2007-02-01  Chris Toshok  <toshok@ximian.com>
564
565         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
566         here, since the most recent focus fixes keep us from generating
567         the Leave event when our textbox gets focus.
568         (Edit): we should be passing null for the column style's
569         instantText parameter.
570         
571 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
572
573         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
574         raised.  Fixes menu text/icons not showing up in PDN.
575
576 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
577
578         * Control.cs: Remove code in constructor that makes every
579         control with WS_CHILD set have initial location -1, -1.
580
581 2007-01-31  Jackson Harper  <jackson@ximian.com>
582
583         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
584         XplatUIX11.
585         * XplatUIX11.cs: Give teh keyboard to teh dnd.
586
587 2007-01-31  Jackson Harper  <jackson@ximian.com>
588
589         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
590         - Remove some debug code.
591
592 2007-01-31  Jackson Harper  <jackson@ximian.com>
593
594         * XplatUIX11.cs: If you set the override cursor during a grab, it
595         should actually override the grab cursor.  This comes into play
596         when you are setting custom cursors in a DND feedback method.
597
598 2007-01-31  Jackson Harper  <jackson@ximian.com>
599
600         * X11Dnd.cs: Add support for handling the QueryContinue and
601         GiveFeedback events.
602         - Cancel drag and drop actions when the escape key is clicked.
603         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
604         can handle the ESCAPE key.
605         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
606         done when dnd events are continued after the button is released.
607         - Add a new helper method so that dnd can translate key events.
608
609 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
610
611         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
612         make it more obvious what is happening.
613
614 2007-01-30  Jackson Harper  <jackson@ximian.com>
615
616         * XplatUIX11.cs: Don't break when handling button release in drag
617         and drop operations. We need that BUTTONUP message to get through
618         so capture is released.
619         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
620         this is handled automatically when the mouse is down.
621
622 2007-01-30  Jackson Harper  <jackson@ximian.com>
623
624         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
625         is closed, so we need to make sure that we aren't changing the
626         dialog result when the OK (Open or Save) button has been clicked
627         and we are closing the window ourselves.  Note we don't need to
628         worry about the cache being written in this case, because it was
629         already done in the previous FilOk call.
630
631 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
632         
633         * DateTimePicker.cs: Remove a warning.
634         * ComboBox.cs: Remove a couple of warnings.
635
636 2007-01-29  Chris Toshok  <toshok@ximian.com>
637
638         * XplatUIX11.cs: don't crash, and remove the icon if the user has
639         set one, if SetIcon is passed a null icon.
640
641 2007-01-29  Andreia Gaita  <avidigal@novell.com>
642
643         * TextBox.cs: Redraw when the password characters changes
644         * TextControl.cs: Check if textbox has a password char and draw 
645         a line of password chars instead of the text in the line. LineTag gets 
646         an extra Draw() method which allows document.Draw to override the text 
647         that will be drawn. Removes 1024 char limitation on length of passworded 
648         lines.
649
650 2007-01-29  Jackson Harper  <jackson@ximian.com>
651
652         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
653         single chars is not.
654
655 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
656
657         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
658         one pixel.  Fix a StackOverflowException caused by an overload wrongly
659         calling itself.
660
661 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
662
663         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
664         also remove ProcessArrowKey and put the code inside ProcessKeys.
665
666 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
667
668         * PaddingConverter.cs: Added.
669
670 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
671         
672         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
673         ShowPanels is false (fixes #80600). Only draw up to 127 characters
674         of text (fixes #80601). For panels clip the text to draw to the
675         panel (fixes #80603).
676
677 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
678
679         * ComboBox.cs: Fixed implementation of ResetText.
680
681 2007-01-25  Jackson Harper  <jackson@ximian.com>
682
683         * TextControl.cs: For the last char of a line we need to use the
684         line size, not that chars width, since it won't actually be
685         computed since the right side of a char is based on the start of
686         the left side of the next char, and the next char does not exist.
687
688 2007-01-25  Chris Toshok  <toshok@ximian.com>
689
690         * Splitter.cs: fix the new unit tests, and reindent some switch
691         statements.
692
693 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
694
695         * ComboBox.cs: Implemented 2.0 methods and events.
696         * TextBoxBase.cs: Added OnTextUpdate, so that
697         ComboBox.ComboTextBox can inform ComboBox of it.
698
699 2007-01-25  Jackson Harper  <jackson@ximian.com>
700
701         * TextControl.cs: Respect ShowSelection when deciding whether or
702         not to display the caret, this allows comboboxes to have carets
703         when the combotextbox does not have focus.
704
705 2007-01-25  Jackson Harper  <jackson@ximian.com>
706
707         * TextControl.cs: Add a Suspend/Resume for updating, basically the
708         same as the Suspend/Resume for recalc, except this will do actual
709         Invalidates.
710         - New Undo manager, works much like the MS version.
711         - Implemented Redo
712         * TextBoxBase.cs: The Cut operation is undoable.
713
714 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
715         
716         * TextBoxBase.cs: Don't antialias text. Makes it look way better
717         on Windows (no difference on Linux).    
718
719 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
720
721         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
722         we don't want to activate any windows. Fixes #79433.
723
724 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
725
726         - ButtonBase.cs: Fix capitalization of parameter: disposing.
727         [Fixes bug #80609]
728
729 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
730
731         * FileDialog.cs:
732         - Move to using System.ComponentModel.EventHandlerList
733         - Replace Refresh with Invalidate
734         - Clear the mime filecache on closing
735         - Some other memory reducing work. After beeing closed FD now uses
736           only about 300 KB for the fdo mime stuff plus the memory of the
737           cached icons.
738         * Mime.cs: Changed coding style and removed unnecessary commented
739         code. Some more memory memory reducing work.
740
741 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
742
743         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
744         a few other missing 2.0 properties.
745         * Theme.cs: Added DrawFlatStyleComboBox.
746         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
747
748 2007-01-24  Chris Toshok  <toshok@ximian.com>
749
750         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
751         wake_waiting flag, not just when there's data to be read.  if we
752         don't, then future wakeup's won't reach us and we'll be doomed to
753         wait for the entire 1 second timeout forever (unless there are X
754         events to be had).
755
756 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
757
758         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
759         until you pass Items.Count, not Items.Count - 1 like 1.1.
760
761 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
762
763         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
764
765 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
766
767         * ToolStripContainer.cs: The recent Dock fix exposed that I was
768         adding the panels in the wrong order.
769
770 2007-01-24  Jackson Harper  <jackson@ximian.com>
771
772         * TextBoxBase.cs: When we move the caret we also need to move the
773         selection, this fixes some random crashing after doing select
774         text, unselect, delete a char, paste.
775
776 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
777
778         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
779
780 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
781
782         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
783         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
784         * ToolBar.cs: Force redraw in BackgroundImageChanged.
785
786 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
787
788         * ToolBar.cs:
789         - Implement support for vertical toolbars. Fixes #80539;
790         - Call LayoutToolBar when resize, it fix some other problems in layout.
791         - Rename requested_height to requested_size, as we can have width on it
792         when toolbar is vertical.
793         - Create a private property "Vertical" that uses Dock to verify when 
794         toolbar is vertical or not.
795         - Set ControlStyles when change Dock property.
796         - Refactory in LayoutToolBar to have better variables names and to support
797         vertical toolbars.
798         - Fixes default value for ButtonSize when button count is equal zero, size
799         must be (39, 36) test case writed.
800
801 2007-01-23  Chris Toshok  <toshok@ximian.com>
802
803         * Control.cs: fix the checks so that they work correctly for mdi
804         parents/children.
805
806 2007-01-23  Chris Toshok  <toshok@ximian.com>
807
808         * Control.cs: ControlCollection seems to have super-secret
809         abstraction breaking knowledge of Mdi containers.  allow MdiClient
810         to add toplevel controls.
811
812 2007-01-23  Chris Toshok  <toshok@ximian.com>
813
814         * Control.cs: throw an ArgumentException if a toplevel control is
815         added to our control collection from ControlCollection.Add, as
816         well as from ControlCollection.IList.Add.  This fixes the
817         ControlSetTopLevelTest.TestTopLevelAdd unit test.
818
819         Also, in ControlCollection.IList.Add, don't through an
820         ArgumentNullException, throw an ArgumentException, when value ==
821         null.  This matches MS.
822
823 2007-01-23  Chris Toshok  <toshok@ximian.com>
824
825         * BindingSource.cs: initial, incomplete, implementation of
826         BindingSource.
827
828 2007-01-23  Jackson Harper  <jackson@ximian.com>
829
830         * TextControl.cs:
831         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
832         that I can fix a broken unit test (TextBoxTest::ClearUndo)
833         
834 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
835
836         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
837
838 2007-01-23  Andreia Gaita  <avidigal@novell.com>
839
840         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
841         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
842         IndexOfKey() for 2.0
843
844 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
845
846         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
847         to prevent it from changing z-order.
848         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
849         leave UI updates in MdiWindowManager.
850         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
851         1 sized (NC handling goes weird on Linux otherwise).
852         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
853         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
854         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
855         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
856         and SetWindowState(s) to allow for changing the size of an activated child
857         before activating it (reduces a lot of flicker).
858
859 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
860
861         * Form.cs: Changing FormBorderStyle has different semantics based
862         on whether the Form is visible or not.  If not visible, don't change
863         the Size.  But InvalidateNC needs to be called to force the window
864         to pick up the changes and redraw itself.  [Fixes bug #80574]
865
866 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
867
868         [Moma work]
869         * ContainerControl.cs: ProcessCmdKey.
870         * ErrorProvider.cs: new constructor.
871         * Form.cs: fix AutoValidateEvent compiler warning.
872         * Label.cs: fix OnAutoSizeChanged compiler warning.
873         * MenuStrip.cs: fix CanOverflow compiler warning.
874         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
875         * TextBox.cs: Dispose.
876         * ToolStrip.cs: CanOverflow, re-enable double buffering.
877         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
878         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
879         * ToolStripItem.cs: Overflow, RightToLeft properties.
880
881 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
882
883         * Form.cs: Move the layout of the main form to MdiWindowManager.
884         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
885         do a layout of the main window to update MdiClient's client area to
886         the right area. Fixes #80533. Remove the calculation of nc size, 
887         it was just wrong and the correct one is the same as for 
888         InternalWindowManager. 
889
890 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
891
892         * Control.cs: Setting Anchor or Dock needs to reset the other
893         to its default.  [Fixes bug #80556]
894
895 2007-01-20  Chris Toshok  <toshok@ximian.com>
896
897         * CheckedListBox.cs: class status changes.
898
899         * ScrollableControl.cs: same.
900
901         * RichTextBox.cs: same.
902
903         * ContainerControl.cs: same.
904
905         * ListView.cs: same.
906
907         * NotifyIcon.cs: same.
908
909         * MenuStrip.cs: same.
910
911         * RadioButton.cs: same.
912
913         * CheckBox.cs: same.
914
915         * PrintPreviewDialog.cs: same.
916
917         * Form.cs: same.
918
919 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
920
921         * TreeNode.cs: Apply Alan's patch for Name property.
922
923 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
924         
925         * Form.cs: Implemented SizeGripStyle.
926         * SizeGrip.cs: Check for minimum and maximum size for the
927         control being resized and only resize if size has actually
928         changed.
929
930 2007-01-19  Chris Toshok  <toshok@ximian.com>
931
932         * DataGridColumnStyle.cs: stop setting _readonly in the
933         PropertyDescriptor setter.  fixes a unit test failure.
934
935         also, rename ParentReadOnly to TableStyleReadOnly, and have it
936         just consult our table style (if we have one).  We don't need to
937         consult the datagrid readonly attribute because that's passed in
938         as the _ro arg to Edit.  this simplifies things a little.
939         
940         * DataGrid.cs: use CurrentColumn instead of
941         current_cell.ColumnNumber just to simplify some of the code.
942
943         switch the order of some things in the CurrentCell setter to keep
944         the previous cell from getting a textbox again -
945         EnsureCellVisibility causes scrolling to happen, which calls Edit.
946         So we need to set the new cell before calling it.
947         
948         call Edit in OnEnter, as does Microsoft.
949         
950         also, make sure the current table style isn't the one we create
951         initially when checking to see if it's different than the one
952         we're setting it to in BindColumns (this fixes #80421).
953
954         * GridTableStylesCollection.cs: table styles can have "" for a
955         mapping name.  part of the fix for #80421.
956
957         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
958         Edit significantly.
959
960 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
961
962         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
963         and less GDI object leaky-er.
964
965 2007-01-18  Andreia Gaita  <avidigal@novell.com>
966
967         * LinkLabel.cs: Add opaque control style
968
969 2007-01-18  Jackson Harper  <jackson@ximian.com>
970
971         * TextControl.cs: Calculate width properly.
972         - Don't store the tag's X offset, this can be figured out very
973         easily.
974         - When getting the caret tag make sure to get the last empty tag.
975
976 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
977
978         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
979         [Fixes bug #79959]
980
981         * Control.cs: Color.Empty shouldn't count for previous transparent
982         redraw changes.
983
984 2007-01-18  Jackson Harper  <jackson@ximian.com>
985
986         * TextBox.cs:
987         * RichTextBox.cs:
988         * TextControl.cs: Starting to merge in some pieces of my older
989         undo work.  Basically just some slight cleanup of the undo API.
990
991 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
992
993         * TrackBar.cs: Fix signature of RightToLeftLayout.
994         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
995         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
996         * Application.cs: Implemented UseWaitCursor.
997
998 2007-01-18  Jackson Harper  <jackson@ximian.com>
999
1000         * TextControl.cs: We can't skip tags if any part of the tag is
1001         visible.
1002
1003 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1004
1005         * ContainerControl.cs: Override OnLayout.
1006
1007 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1008
1009         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
1010
1011         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
1012         everything else.
1013
1014 2007-01-18  Chris Toshok  <toshok@ximian.com>
1015
1016         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
1017         (leftover from the container_selected days, I'd wager).  fixes bug
1018         #80546.
1019
1020 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1021
1022         * Control.cs: Apply patch from George to fix the new testcase on
1023         bug #80451.  We can't just check for Color.Transparent, we need 
1024         to check if the back color's alpha channel is < 255.
1025
1026 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1027
1028         * Form.cs: Move setting show_icon = true to before the constructor
1029         so that the base constructor has that information when it calculates
1030         the form's size.  Was causing forms to be (6, 6) bigger than they
1031         were supposed to be.  Thanks for catching this Rolf!
1032
1033 2007-01-18  Jackson Harper  <jackson@ximian.com>
1034
1035         * TextControl.cs: When replacing a selection we need to invalidate
1036         from the initial selection start, because selection start is moved
1037         to the end of the replacement.
1038
1039 2007-01-18  Andreia Gaita  <avidigal@novell.com>
1040
1041         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
1042
1043 2007-01-18  Chris Toshok  <toshok@ximian.com>
1044
1045         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
1046         I just added.
1047
1048 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
1049
1050         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
1051         layout methods and properties from ToolBarButton must be available
1052         into ToolBarButtonInfo.
1053
1054 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1055
1056         * Control.cs: If the control has a transparent background, we
1057         need to refresh it when it moves and when it's parent's background
1058         image changes.  [Fixes bug #80451]
1059
1060 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1061
1062         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
1063
1064 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1065
1066         * XplatUIWin32.cs: Implement proper double buffering for Windows.
1067         [Fixes bug #80447, and probably speeds up things as well]
1068
1069 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1070
1071         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
1072         * XplatUIWin32.cs: We need to recalculate NC size after changing 
1073         window style to toolwindow (otherwise the client rectangle will be
1074         3 pixels to small for some reason).
1075         * MdiWindowManager.cs: Revert NC size calculations to match how
1076         they are calculated only based on window styles (to match
1077         Win32AdjustWindowRectEx, since otherwise when setting size or 
1078         location, Control will call Win32AdjustWindowRectEx to update client 
1079         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
1080         calculate a different value of client size causing another paint 
1081         (and flickering))
1082         * InternalWindowManager.cs: When moving or resizing a window only
1083         update size or location if they actually changed.
1084         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
1085         (seems to match Windows behaviour better). Cleaned up 
1086         ManagedWindowDecorations to draw what's needed and nothing else
1087         (was drawing borders and lines where they shouldn't be)
1088         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
1089         (style = 0xFFFF) and takes into account caption height when 
1090         calculating window rectangle.   
1091
1092 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
1093
1094         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
1095         can be added to toolbar multiple times, we need to maintain a list of 
1096         button information for each positions.
1097
1098 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
1099
1100         * ToolBar.cs: Some small stetic changes.
1101
1102 2007-01-16  Jackson Harper  <jackson@ximian.com>
1103
1104         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
1105         that allow us to have nested recalc = false blocks.
1106         - Add paste support for images in the RichTextBox
1107         * RichTextBox.cs: flush the text after the color is changed, so
1108         the change takes effect.
1109         - Use SuspendRecalc
1110         - Some extra debugging info
1111         * TextControl.cs: Tags no longer track their length, it is just
1112         computed from the next tags length, this makes things a little
1113         simpler and reduces places that we have to track length changes.
1114         - Refactored the linetag class a little so we could make it
1115         a base class for different kinds of tags
1116         - Created a image tag, a tag that can have a single image inserted
1117         into it
1118         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
1119         that we can call suspend multiple times.
1120         - Add some debugging methods
1121
1122 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1123
1124         * MdiClient.cs: Add ActivatePreviousChild for 
1125         mdi child window navigation.
1126         * Form.cs: Use MdiClient.ActivateNextChild/
1127         ActivatePreviousChild instead of Form.SelectNextControl
1128         to select the next/previous child since 
1129         SelectNextControl doesn't do it in the same order
1130         as mdi children should do it.
1131
1132 2007-01-16  Chris Toshok  <toshok@ximian.com>
1133
1134         * Control.cs: remove container_selected field.
1135
1136 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1137
1138         * MdiClient.cs: Update main form's ActiveChild when
1139         updating keyboard focus for the mdi child.
1140
1141 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
1142
1143         * Control.cs: PreferredSize fix.
1144
1145         * Form.cs: Add several 2.0 events, properties, and methods.
1146
1147 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
1148
1149         * Form.cs: Provide meaningful message when MdiParent is assigned a
1150         Form that is not an MdiContainer.
1151
1152 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1153
1154         * MdiClient.cs: Update main form's ActiveChild when
1155         activating a mdi child.
1156
1157 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1158
1159         * MdiWindowManager.cs: Fix NRE when merging menus and main form
1160         doesn't have a menu.
1161
1162         * Form.cs: Request NCRecalc after creating a mdi child window.
1163         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
1164         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
1165         
1166         * MdiClient.cs: Add new method SendFocusToActiveChild that either
1167         sends keyboard focus to the active child, or to the MdiClient
1168         if there are no child forms.
1169         
1170 2007-01-15  Chris Toshok  <toshok@ximian.com>
1171
1172         * ListView.cs: drop the *Internal overrides, just do our work in
1173         ItemControl's WndProc instead.
1174
1175         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
1176         of the various controls, and forward the events properly (in the
1177         same manner as MS) from the textbox to the UpDown.  Also the
1178         ActiveControl of the UpDownBase gets set properly now.  Finally,
1179         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
1180
1181         * NumericUpDown.cs: set Text in the ctor.
1182
1183         * DomainUpDown.cs: call UpdateEditText in the ctor.
1184         
1185         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
1186         so even a Selectable = false textbox can be focused if you click
1187         in it.  Go figure.
1188
1189         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
1190         just add their handling in their respective WndProc's.  Also add
1191         an explicit FocusInternal method that doesn't consult CanFocus
1192         before calling Select(this).
1193
1194         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
1195         do our work in WndProc instead.
1196
1197         * TabControl.cs: same.
1198
1199         * ComboBox.cs: same.
1200
1201 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
1202
1203         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
1204         Fixes #80006.
1205
1206 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1207
1208         * ListViewItem.cs:
1209         * ThemeWin32Classic.cs: Don't draw the item text outside
1210         item bounds in Details view, as well as use trimming.
1211         Fixes bug #80376.
1212
1213 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
1214
1215         * Form.cs: Implement Form.ShowIcon.
1216         
1217         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
1218         null, which when combined with the DlgModalFrame window style removes
1219         the icon from the title bar.
1220
1221 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
1222
1223         * Control.cs: Call OnMouseClick after OnClick. (2.0)
1224
1225 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
1226
1227         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
1228         menu when mdi child windows theres a menu, uses insert to get icon
1229         at first position. Partially fix #80006.
1230
1231 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
1232
1233         * Clipboard.cs: Implement 2.0 methods.
1234
1235 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
1236
1237         * Menu.cs: Implement Insert method of MenuItemCollection class
1238         to fix MenuMerge.
1239
1240 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1241
1242         * ListView.cs: Implement 2.0 FindItemWithText method.
1243
1244 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
1245
1246         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
1247         to calculate menu bar size. Fixes #80290.
1248
1249 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
1250
1251         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
1252
1253 2007-01-11  Chris Toshok  <toshok@ximian.com>
1254
1255         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
1256         initial form.
1257
1258 2007-01-11  Chris Toshok  <toshok@ximian.com>
1259
1260         * LinkLabel.cs: make sure to call base.Select in our Select method
1261         if it turns out we're going to be selected (i.e. if we have a link
1262         that is going to receive focus).  That way our container's
1263         ActiveControl is updated properly.
1264
1265 2007-01-11  Chris Toshok  <toshok@ximian.com>
1266
1267         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
1268         they have 1 or more links.  this fixes the crash gert reported.
1269
1270 2007-01-11  Andreia Gaita  <avidigal@novell.com>
1271
1272         * ContainerControl.cs: Remove ContainerSelected flag, not needed
1273         anymore.
1274
1275         * Control.cs (Controls.Add): Check if control to be added to the collection
1276         is a top level control, and throw an ArgumentException if it is.
1277         Remove ContainerSelectedFlag, not needed anymore.
1278
1279         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
1280         top most control doesn't activate the form. This fixes a problem in the
1281         MessageBox, where the default button wouldn't get focus because the form
1282         was activated before being Loaded - when the Owner is set, SetTopMost is
1283         called, and it would activate it.
1284
1285 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
1286
1287         * Button.cs: When clicked and setting the parent form's DialogResult,
1288         use FindForm instead of Parent, since parent could be a container
1289         control and not the Form.  Fixes bug #80495.
1290
1291 2007-01-10  Chris Toshok  <toshok@ximian.com>
1292
1293         * Form.cs: move the call to SendControlFocus into the same
1294         is_loaded check.
1295
1296 2007-01-10  Chris Toshok  <toshok@ximian.com>
1297
1298         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
1299         It breaks in the face of the new ActiveControl stuff, and should
1300         be unnecessary.
1301
1302         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
1303         activecontrol's focus if it's not already set, after we set
1304         ActiveControl, but before we call OnActivated.  Re-fixes #79667
1305         after the previous focus/active control fixes regressed it.
1306
1307         * Control.cs: reindent some code.
1308         
1309 2007-01-10  Chris Toshok  <toshok@ximian.com>
1310
1311         * Splitter.cs: clearing some outstanding changes from my tree.
1312         Replace all accesses (not writes) to the internal dock_style field
1313         with the Dock property.
1314
1315 2007-01-10  Chris Toshok  <toshok@ximian.com>
1316
1317         * Control.cs: make FireEnter, FireLeave, FireValidating, and
1318         FireValidated virtual.
1319
1320         * Form.cs: override and don't chain up calls to FireEnter and
1321         FireLeave.
1322
1323 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1324
1325         * ListView.cs: Add more text padding space when using
1326         auto resize for columns (the previous value didn't work fine).
1327
1328         * ThemeWin32Classic.cs: Update text position inside columns,
1329         to match the appeareance of .Net.
1330
1331         * ColumnHeader.cs: When using auto resize, only the Width should
1332         depend on the sub items, not the Height. Also, set width after
1333         auto resizing (the value of Width should never remain as -1 or -2).
1334
1335 2007-01-10  Chris Toshok  <toshok@ximian.com>
1336
1337         * Application.cs: fix compilation errors when debug is enabled.
1338
1339 2007-01-10  Chris Toshok  <toshok@ximian.com>
1340
1341         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
1342         add some nice ascii art pictures and explanation of the process).
1343         (GetMostDeeplyNestedActiveControl): new utility function we need
1344         because our ActiveControl can refer to a child container with its
1345         own ActiveControl.
1346
1347         * Form.cs (OnActivated): remove the call to SelectActiveControl
1348         from here, since you can override this method and not chain up,
1349         and winforms still sets the active control.
1350         (OnCreateControl): also remove the unnecessary SelectActiveControl
1351         call from here.
1352         (WndProc): it's actually called from the WM_ACTIVATE block, just
1353         before calling OnActivated.
1354
1355         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
1356         inside the else.  the ActiveControl setter will end up setting
1357         focus on @control.  This keeps us from setting it again (and
1358         generating an extra LostFocus/GotFocus pair).
1359         (Select (bool, bool)): reindent.
1360
1361 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
1362
1363         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
1364         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
1365         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
1366         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
1367         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
1368         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
1369         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
1370         ToolStripTextBox.cs: Another wave of corcompare work.
1371
1372 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1373
1374         * ColumnHeader.cs: Implement 2.0 AutoResize method using
1375         the Width property.
1376
1377         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
1378         methods by callling Column.AutoResize method on columns.
1379
1380 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
1381
1382         * Control.cs: Provide proper implementations of PreferredSize
1383         and GetPreferredSize (2.0).
1384
1385 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
1386
1387         * Form.cs: Remove one character (!) to make my previous OnClosing
1388         stuff work for modal windows like MessageBox.
1389
1390 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1391
1392         * ListView.cs:
1393         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
1394         ListView.Columns to get the last displayed column. Fixes #80452.
1395
1396 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
1397
1398         * Label.cs, LinkLabel.cs: Source code identation fixes.
1399
1400 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
1401
1402         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
1403         we dont need to invalidate only borders because when we invalidate four
1404         border lines the invalidate's generates a complete redraw of button, 
1405         because it now invalidate a complete rect some other redraws operations
1406         are fixed. Fixes #80196.
1407         
1408         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
1409         Remove ToolBarInvalidateEntireButton as it is not used.
1410
1411 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
1412         
1413         * Form.cs: Make sure that both OnClosing and OnFormClosing are
1414         called for 2.0 profile.
1415         * CloseReason.cs: Make class internal for 1.1.
1416
1417 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
1418
1419         * ToolStripManager.cs: Implement FindToolStrip functionality.
1420         * ToolStrip.cs: Register and unregister with ToolStripManager.
1421
1422 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
1423
1424         * Control.cs: This was messy.  2.0 moves much of ControlCollection
1425         to ArrangedElementCollection.  Implemented this with as few #if's as 
1426         possible (which is still too many).
1427
1428 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
1429
1430         * Control.cs: Implement SizeFromClientSize() [2.0].
1431
1432 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
1433
1434         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
1435         use Theme.BorderSize to calculate area instead of static value 1, 
1436         by the way use new BorderStaticSize instead     Border3DSize when 
1437         border_static is true. Fixes #79537.
1438         
1439         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
1440         
1441         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
1442         it is not needed.
1443
1444 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
1445
1446         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
1447
1448 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
1449
1450         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
1451         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
1452         
1453         * Hwnd.cs: 
1454         - border_static field added, it will used to define when a control 
1455         theres 3D border but it must be static (thin).
1456         - In GetWindowRectangle use Theme.BorderSize to calculate area 
1457         instead of static value 1, by the way use new BorderStaticSize instead
1458         Border3DSize when border_static is true.
1459
1460         * XplatUIX11.cs, XplatUIOSX.cs: 
1461         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
1462         
1463         * Theme.cs: BorderStaticSize field added.
1464
1465 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
1466
1467         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
1468
1469 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
1470
1471         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
1472         mimic same behavior than win32 that set border only in CreateParams,
1473         it fix problems under CreateParams overrides. Fix #79442 and partial
1474         fix #79537.
1475         
1476         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
1477         of thi control you must call recreate handle. 
1478         
1479         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
1480         need to do anything as RecreateHangle will take care about borders.
1481
1482 2007-01-05  Mike Kestner  <mkestner@novell.com>
1483
1484         * ListView.cs: hack to eliminate Lost/Got focus notifications on
1485         cycles between the ItemControl and parent.  Fixes #80388.
1486
1487 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
1488
1489         * Control.cs: Lazy init layout engine. Do not directly use 
1490         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
1491
1492 2007-01-05  Chris Toshok  <toshok@ximian.com>
1493
1494         * DataGrid.cs: don't forceably rebind columns in SetDataSource
1495         unless our list manager has changed (i.e. unless we have reason to
1496         believe our columns have changed).  Fixes #80422.
1497         
1498         also, disable the call do BindColumns in
1499         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
1500         1.1 the event isn't raised in response to a column addition on a
1501         table.)
1502
1503 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
1504
1505         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
1506         that inheritors can not call it if they choose.  Fixes bug #80456.
1507
1508 2007-01-05  Andreia Gaita  <avidigal@novell.com>
1509
1510         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
1511         doesn't blow up with a null exception on marshalling.
1512         
1513 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
1514
1515         * Control.cs: Implement several 2.0 protected properties and methods.
1516         Ensure that all necessary events are being called when properties
1517         are set.
1518
1519 2007-01-05  Mike Kestner  <mkestner@novell.com>
1520
1521         * ListView.cs: implement PgUp/PgDn for Details view.  Also
1522         fixes First/LastVisibleIndex to use the item_control.ClientRect 
1523         instead of the parent control.  Fixes #80378.
1524
1525 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
1526
1527         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
1528           determine whether to use yard-pound or not (bug #78399).
1529
1530 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
1531
1532         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
1533         problems. So it is time to bring back the old popupbutton colors.
1534
1535 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1536
1537         * ColumnHeader.cs:
1538         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
1539         property by using the internal information of the
1540         columns order in ListView.
1541
1542 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
1543
1544         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
1545         Add 2.0 Tag properties.
1546
1547         * LinkArea.cs: Add 2.0 ToString method.
1548
1549 2007-01-03  Chris Toshok  <toshok@ximian.com>
1550
1551         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
1552         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
1553         when we're editing, which fixes #80047.
1554
1555 2007-01-03  Chris Toshok  <toshok@ximian.com>
1556
1557         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
1558         #80404.
1559
1560 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
1561
1562         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
1563         property and implementation.
1564
1565         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
1566         for MdiWindowListItem property.
1567
1568         * ToolStripDropDown.cs: Don't consider hidden menu items while
1569         laying out the menu.
1570
1571 2007-01-03  Andreia Gaita  <avidigal@novell.com>
1572
1573         * SendKeys.cs: window handle is not needed in win32, so just
1574         get the active window for X after parsing keys and don't use
1575         it when building the message; it is passed by parameter to the 
1576         Xplat method and used there to build the message instead. Also,
1577         wait for events to be processed on SendWait, as opposed to Send,
1578         which doesn't wait :) Playing with threads and Send() completely 
1579         hangs on ms.net, only SendWait() works.
1580         
1581         XplatUIX11.cs
1582         X11Display.cs: Check for valid window handle.
1583
1584 2007-01-03  Jackson Harper  <jackson@ximian.com>
1585
1586         * TextControl.cs: Need to prevent wrap calculations when replacing
1587         text (this was there before i removed it accidently).
1588         - Don't update the cursor during the positioning, just set it to
1589         selection_start at the end of the operaion.
1590
1591 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1592
1593         * Control.cs:
1594         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
1595         
1596 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1597
1598         * MonthCalendar.cs: Added Click and DoubleClick events again,
1599         but this time they only hide Control's Click and DoubleClick.
1600         
1601 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
1602
1603         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
1604         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
1605
1606 2007-01-02  Jackson Harper  <jackson@ximian.com>
1607
1608         * TextBoxBase.cs: We move the caret with the split now, so we
1609         don't need to explicitly move the caret after splitting.  This
1610         fixes the caret bumping down an extra line on Enter.
1611
1612 2007-01-02  Miguel de Icaza  <miguel@novell.com>
1613
1614         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
1615         2.72). 
1616
1617         * ScrollableControl.cs: Add Scroll event.
1618
1619 2007-01-02  Mike Kestner  <mkestner@novell.com>
1620
1621         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
1622         to fix all hdr height padding codepaths.  Fixes #80207.
1623
1624 2007-01-02  Chris Toshok  <toshok@ximian.com>
1625
1626         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
1627         setting it to the Control defaults anyway, and it being after the
1628         Dock set was screwing up layout.
1629         (set_Dock): don't short circuit out of setting base.Dock.  Also,
1630         no need to call UpdateStatusBar here, as it'll be re-layed out if
1631         it needs to be.
1632
1633 2007-01-02  Mike Kestner  <mkestner@novell.com>
1634
1635         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
1636         to header height for width == -1. Fixes the rest of #80207.
1637
1638 2007-01-02  Mike Kestner  <mkestner@novell.com>
1639
1640         * ListView.cs: rework the mouse event forwarding everaldo added
1641         to translate the coordinates to the parent control not
1642         raise the parent events until after we've done our work. Hover
1643         needs more work, in the case where HoverSelection is on, because
1644         the item control receives more than one MouseHover per Enter
1645         event, so we need to ensure only the "first" hover gets forwarded.
1646         Opening a minor bug for that.
1647
1648 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
1649
1650         * CheckedListBox.cs: Fixed SelectionMode to match MS.
1651         * ListControl.cs: Implemented AllowSelection property. Removed extra
1652         tabs.
1653         * ListBox.cs: Implemented AllowSelection property.
1654
1655 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1656
1657         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
1658         SelectedItem, it prevent for errors when you must disable item
1659         before perform click. Fixes #80409.
1660
1661 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1662
1663         * MenuAPI.cs: Prevent second level and beyond submenus to close
1664         until first level when move out side of popup.
1665         
1666 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1667
1668         * MenuAPI.cs:
1669         - Down submenu positin in three pixels.
1670         - Closes sub menu when mouse leaves from menu. Fixes #80402.
1671
1672 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1673
1674         * ThemeWin32Classic.cs:
1675         - Fix popup menu size adding one pixel on the top.
1676         - Down menu item border from two to one to mimic Win32.
1677         - Some source identation fixes. 
1678
1679 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
1680
1681         * ThemeWin32Classic.cs: Use float numbers to calculate size and
1682         position of menu arrows, it fix wrong arrow size.
1683
1684 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
1685
1686         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
1687         instead of line, it simplify draw operation and fix it using 3D
1688         borders to mimic Win32.
1689
1690 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
1691
1692         * StatusStrip.cs: Add implementation of the sizing grip.
1693
1694         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
1695         StatusStrip rendering.
1696
1697 2006-12-31  Chris Toshok  <toshok@ximian.com>
1698
1699         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
1700         override the layout style (anchor/dock) of the control.  assign to
1701         Dock instead.  Fixes bug #80416.
1702
1703         * ToolStrip.cs: same.
1704
1705 2006-12-31  Andreia Gaita  <avidigal@novell.com>
1706
1707         * ContainerControl.cs: Use ContainerSelected flag to check if 
1708         a Container is directly selected, or if Select is called on a 
1709         non-container. If a container is directly selected, focus events 
1710         should not be raised.
1711         Apply #80411 patch to throw exception on set_ActiveControl if 
1712         control is the same as the current one.
1713         
1714         * Control.cs: Use ContainerSelected flag (see above).
1715         Add invalidation check to raise event but not invalidate if 
1716         dimensions are 0.       
1717         Apply #80411 patch.
1718         
1719
1720 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
1721
1722         * MenuAPI.cs: After click, dont close popup menu when menu is
1723         ContextMenu. Fixes #80399.
1724
1725 2006-12-30  Chris Toshok  <toshok@ximian.com>
1726
1727         * ContainerControl.cs: make sure we throw the exception if the
1728         container control doesn't contain the control we're setting
1729         ActiveControl to.
1730
1731 2006-12-30  Chris Toshok  <toshok@ximian.com>
1732
1733         * Control.cs (SetTopLevel): fix the exception raised by
1734         SetTopLevel for child controls.
1735         (set_Anchor): call UpdateDistances when setting the anchor type.
1736         This fixes bug #80336.
1737
1738 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1739
1740         * Theme.cs: For now, revert back to 8pt font.
1741
1742 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
1743
1744         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
1745         Fixes #80395.
1746
1747 2006-12-29  Chris Toshok  <toshok@ximian.com>
1748
1749         * Control.cs: reorder the code in OnResize to give the same event
1750         ordering as MS.
1751
1752 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1753
1754         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
1755         TileHorizontally and TileVertically.
1756         
1757 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
1758
1759         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
1760         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
1761         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
1762         Corrected copyright and email adress.
1763
1764 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1765
1766         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
1767         of Exception in FullPath property if no TreeView is associated with
1768         the TreeNode.
1769
1770 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1771
1772         * Theme.cs: Marked default_font as private, and initialize it in ctor
1773         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
1774         on 2.0 profile.
1775         * ThemeGtk.cs: Removed default_font intialization.
1776         * ThemeWin32Classic.cs: Removed default_font initialization.
1777
1778 2006-12-28  Chris Toshok  <toshok@ximian.com>
1779
1780         * Control.cs: fix a couple of place where we were creating handles
1781         more aggressively than we should be.  Fixes ControlRefresh unit
1782         tests.
1783
1784 2006-12-28  Chris Toshok  <toshok@ximian.com>
1785
1786         * Control.cs: contrary to what the comment said, Control.Dock does
1787         not supercede Control.Anchor - the last one you assign to decides
1788         the layout behavior.  so we need to keep track of which was the
1789         last set.  Also, fix some of the affected property arguments in
1790         PerformLayout calls, and remove an redundant parent.PerformLayout
1791         call in OnResized.
1792
1793         Add a VisibleInternal property, which returns is_visible.  We
1794         can/should get rid of all the usage of this field elsewhere.
1795
1796 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1797         
1798         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
1799         control style, not DoubleBuffer. Added UseDoubleBuffering property
1800         that indicates whether doublebuffering is enabled and supported.
1801         (comment from and code based on Gert Driesen's patch in #80324).
1802         Fixes #80324.
1803
1804 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1805         
1806         * Control.cs: Fixed a NRE.
1807
1808 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1809
1810         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
1811         for 2.0.
1812
1813 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1814
1815         * Control.cs: Rewrote double buffering, now a seperate
1816         class handles all the buffering, no Graphics is disposed of
1817         until the painting is finished (earlier implementation 
1818         would crash if the control was resized in the OnPaint, 
1819         since it would cause the double buffer to be recreated
1820         and the old one disposed), a separate Graphics is 
1821         created for every paint (MS behaviour and anyways the state
1822         of the Graphics would have to be saved and restored otherwise)
1823         
1824         * XplatUIDriver.cs: 
1825         * XplatUIX11.cs:
1826         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
1827         so that we can get the graphics for the back buffer without
1828         having to create a new one and remove the offscreen_dc parameter
1829         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
1830         
1831 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1832
1833         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
1834         Also make virtual all the key-related methods.
1835
1836         * ListViewItem.cs: Make virtual the key related methods for
1837         ListViewSubItemCollection.
1838
1839 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1840
1841         * ListView.cs:
1842         * ListViewItem.cs:
1843         * ThemeWin32Classic.cs:
1844         * Theme.cs: Initial support for Tile view in ListView,
1845         as well as the implementation of the required bits for it (Item
1846         and Subitem).
1847
1848 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1849
1850         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
1851         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
1852         Provide useful exception messages.
1853
1854 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1855
1856         * TrackBar.cs: Remove a warning.
1857         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
1858         when used by DateTimePicker, fixes #80287. This also requires that 
1859         MonthCalendar implements it's own drawing for the yearly updown control,
1860         otherwise the Capture tracking would be too complicated. Removed the Click 
1861         and DoubleClick events (according to comments they were hiding the base class
1862         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
1863         raise these events, not that they cannot be raised. It is possible to raise 
1864         them by calling OnClick and OnDoubleClick). Added two internal fields in 
1865         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
1866         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
1867         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
1868         event, no longer needed.
1869         
1870 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1871
1872         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
1873         true if new value differs from current value.
1874
1875 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1876
1877         * Control.cs: ControlCollection.Count must be public. Fixed build of
1878         unit tests.
1879
1880 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1881
1882         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
1883
1884 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1885
1886         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
1887
1888 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
1889
1890         * Control.cs: Invalidates control including when Width and Height is 
1891         equal zero or is not visible, only Paint event must be care about 
1892         this. Fixes #79913.
1893
1894 2006-12-26  Chris Toshok  <toshok@ximian.com>
1895
1896         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
1897         more corcompare work.
1898
1899         * DataGridView.cs: fix compiler warning.
1900
1901         * ColumnHeader.cs: some corcompare work, and also take the
1902         opportunity to make the internal fields private.
1903
1904         * ListView.cs: fix the fallout from the above field change.
1905
1906 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
1907
1908         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
1909         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
1910         ToolStripTextBox.cs: Fixes to events and corcompare.
1911
1912 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
1913
1914         * ListView.cs: Call owner.OnMousexx event to propagate events from
1915         item to ListView. Fixes #80367.
1916
1917 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1918
1919         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
1920         if value is less than one. ItemHeight should not be set to a value
1921         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
1922         Removed extra tabs.
1923
1924 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
1925
1926         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
1927         * ToolStripStatusLabel.cs: Add Spring for Moma.
1928
1929 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1930
1931         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
1932         Fixed code formatting. Removed debug code.
1933         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
1934
1935 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1936
1937         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
1938         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
1939         ArgumentOutOfRangeException if ColumnCount is negative. In 
1940         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
1941         less than 4 or higher than 32768.
1942         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
1943         Fixed FormatProvider to return CurrentCulture unless explicitly set.
1944         Fixed IsFormatProviderDefault to return true if FormatProvider has
1945         not been explicitly set.
1946
1947 2006-12-25  Chris Toshok  <toshok@ximian.com>
1948
1949         * Application.cs: add a couple of 2.0 events.
1950
1951 2006-12-25  Chris Toshok  <toshok@ximian.com>
1952
1953         * Control.cs: fix compiler warning.
1954
1955         * AxHost.cs: corcompare fixes.
1956
1957         * ApplicationContext.cs: corcompare fixes.
1958
1959 2006-12-25  Chris Toshok  <toshok@ximian.com>
1960
1961         * Control.cs: only update dist_right/dist_bottom if the
1962         width/height is > 0.  this fixes anchored controls being resized
1963         smaller until they disappear and then resized larger again.
1964
1965 2006-12-25  Chris Toshok  <toshok@ximian.com>
1966
1967         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
1968         since they're nothing more than X/Left and Y/Top, respectively.
1969
1970         Also, move back to a per-control Bitmap/Graphics for
1971         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
1972         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
1973         Height.
1974
1975 2006-12-25  Miguel de Icaza  <miguel@novell.com>
1976
1977         * MessageBox.cs: Implemented overload that takes a new "bool
1978         displayHelpButton" by adding a new internal field "show_help".
1979         When clicked this will raise the HelpRequested on the owner or the
1980         main form. 
1981
1982         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
1983         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
1984
1985         * ListView.cs: Add support ColumnWidthChanged and
1986         ColumnWidthChanging. 
1987
1988         Add support for ColumnReordered event.
1989         (ReorderColumn): Add NET_2_0 specific support for cancelling the
1990         reorder.
1991
1992         Very nice codebase!
1993
1994         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
1995
1996         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
1997
1998 2006-12-24  Chris Toshok  <toshok@ximian.com>
1999
2000         * GridTablesFactory.cs: 2.0 corcompare work.
2001
2002         * ToolStripContainer.cs: add "override" to
2003         ContextMenuStripChanged, and remove the local event object.
2004
2005         * ToolStripDropDown.cs: same with a couple properties.
2006
2007         * ToolStripPanel.cs: same with AutoSizeChanged event.
2008
2009         * TextBoxBase.cs: add "override" to AutoSizeChanged.
2010
2011         * Form.cs: add the remaining 2.0 events, and do some corcompare
2012         attribute work.
2013
2014         * DateTimePicker.cs: add "new" to padding.
2015
2016         * ButtonBase.cs: use Control's use_compatible_text_rendering.
2017
2018         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
2019
2020         * DataGridView.cs: PaddingChanged is overridden.
2021
2022 2006-12-24  Chris Toshok  <toshok@ximian.com>
2023
2024         * Control.cs: corecompare work here too.
2025
2026         * DataGridViewElement.cs, DataGridView.cs,
2027         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
2028         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
2029         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
2030         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
2031         work.
2032
2033 2006-12-24  Miguel de Icaza  <miguel@novell.com>
2034
2035         * Control.cs: Switched the error message on the console for a
2036         todo.  A review of the code will have to cope with this anyways
2037         (since its a large feature, it is in our radar) and it was
2038         producing too much output when running PDN.
2039
2040         * ToolStripComboBox.cs: Set the text when the SelectedIndex
2041         changes.  Applications depend on this (PDN 2.72)
2042
2043 2006-12-23  Chris Toshok  <toshok@ximian.com>
2044
2045         * TableLayoutSettings.cs: finish up the corcompare work for this
2046         class.
2047
2048 2006-12-23  Chris Toshok  <toshok@ximian.com>
2049
2050         * Control.cs: make SetImplicitBounds internal, do some futzing
2051         with LayoutEngine so that it's available in 1.1, and remove the
2052         entire duplicated code mess from PerformLayout.  Use
2053         System.Windows.Forms.Layout.DefaultLayout instead.
2054
2055         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
2056
2057 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
2058
2059         * Form.cs: Add MainMenuStrip property.
2060
2061 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
2062
2063         * Control.cs: Add ContextMenuStrip property and implementation.
2064         Fix ContextMenu implementation to show menu centered on control when
2065         activated using the keyboard instead of showing at screen (0,0).
2066
2067         * ToolStripDropDown.cs: Fix needed overload of Show ().
2068
2069 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2070
2071         * Menu.cs: Name property added for 2.0 profile.
2072         
2073 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2074
2075         * Menu.cs: Update information about FindMenuItem, method to be
2076         implemented soon.
2077
2078 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2079
2080         * MenuAPI.cs: When deselect items deselect also selected subitems.
2081         
2082 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2083
2084         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
2085         FindSubItemByCoord to found itens that is not active, also an
2086         cheking added to FindSubItemByCoord to search for items only 
2087         in visible popup windows. Fixes #80274.
2088
2089 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
2090
2091         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
2092         internal property, it be care about change ExStyle. 
2093
2094 2006-12-22  Andreia Gaita  <avidigal@novell.com>
2095
2096         * ContainerControl.cs: set activeControl for parent forms up the 
2097         tree when the new activecontrol is a container.
2098         When validating the active control, if it is a container, also
2099         raise up the validation for it's active control. Fixes #80280
2100         
2101         * Control.cs: Add internal property flag and check to prevent
2102         Focus events from getting raised when Select() is called for
2103         a ContainerControl. There are still too many focus events being
2104         raised at the moment though.
2105         Cleaned up the code a bit.
2106
2107 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2108
2109         * Control.cs: Added all missing 2.0 events.and
2110         fixed a couple of corcompare issues.
2111         * TrackBar.cs: Implemented missing 2.0 bits.
2112         * MonthCalendar.cs, 
2113         * DateTimePicker.cs, 
2114         * MdiClient.cs: Fixed some corcompare issues.
2115
2116 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2117
2118         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
2119         SplitterPanel.cs: corecompare work.
2120
2121 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2122
2123         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
2124         Clean up warnings for BackgroundImageChanged and PaddingChanged
2125         events now that they are implemented in Control.cs.
2126
2127 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2128
2129         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
2130         
2131         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
2132         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
2133         of TableLayoutPanel and supporting cast.
2134
2135 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2136
2137         * XplatUIWin32.cs: 
2138         - GrabWindow now confines the mouse pointer to the confine window.
2139         - Added Win32ClipCursor and Win32GetClipCursor.
2140
2141         * Control.cs: 
2142         - Added CaptureWithConfine to be able to capture and confine 
2143         mouse pointer.
2144         
2145         * InternalWindowManager.cs: 
2146         - Call CaptureWithConfine instead of Capture if we're an
2147         MdiChild (fixes #79982).
2148
2149 2006-12-21  Chris Toshok  <toshok@ximian.com>
2150
2151         * DataGrid.cs: guard against the initial state of selection, where
2152         selection_start == -1.  make sure we only select from index >= 0.
2153         Fixes bug #80291.
2154
2155 2006-12-21  Chris Toshok  <toshok@ximian.com>
2156
2157         * Control.cs: we don't need to be so draconian with
2158         UpdateDistances, and we thusly don't need to call it before
2159         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
2160
2161 2006-12-21  Daniel Nauck  <dna@mono-project.de>
2162
2163         * ComboBox.cs,
2164         TextBox.cs: Implemented AutoComplete properties.
2165
2166 2006-12-20  Chris Toshok  <toshok@ximian.com>
2167
2168         * DataGridView*.cs: some corecompare work.
2169
2170 2006-12-20  Jackson Harper  <jackson@ximian.com>
2171
2172         * XplatUIX11.cs: We need to hide the caret when deleting it,
2173         otherwise you get carets left lying around everywhere.
2174         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
2175         prevents getting some weird half drawn caret tracers when
2176         scrolling.
2177         * TextControl.cs: Attempt to reduce the number of times we need to
2178         recreate the caret.
2179
2180 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
2181
2182         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
2183
2184 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2185
2186         * DateTimePicker.cs:
2187         - Implemented missing 2.0 bits.
2188         - Changed some default values to match MS.
2189         
2190 2006-12-20  Jackson Harper  <jackson@ximian.com>
2191
2192         * TextBoxBase.cs: When changing the font across the document we
2193         can't recalculate after changing each line, since that will cahnge
2194         the line count.
2195         - PreferredHeight is a little different than i thought.
2196         - When backspacing, move the caret before we do the actual char
2197         delete, because when that delete crosses a wrap boundary the
2198         positional information will change.
2199
2200 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2201
2202         * Control.cs: Added some missing 2.0 bits: 
2203         BackgroundImageLayout, BackgroundImageLayoutChanged, 
2204         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
2205         add IBindableComponent and IDropTarget implementation.
2206         
2207         * MonthCalendar.cs: 
2208         - Added all missing 2.0 features:
2209         BackgroundImageLayout, RightToLeftLayout, 
2210         OnHandleDestroyed, RightToLeftLayoutChanged, 
2211         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
2212         PaddingChanged.
2213         - Rewrote all the BoldDate code, it was completely broken.
2214         - Fixed all the tests (the tests can now be re-enabled, the
2215         problems were not with the tests, but with the control, it was
2216         mostly broken).
2217         
2218         * DateTimePicker.cs: Changed the location where the 
2219         MonthCalendar is shown.
2220         
2221 2006-12-19  Chris Toshok  <toshok@ximian.com>
2222
2223         * DataGridView.cs: add IDropTarget implementation.
2224
2225         * ToolStripPanel.cs: add IDropTarget implementation.
2226
2227 2006-12-19  Jackson Harper  <jackson@ximian.com>
2228
2229         * TextControl.cs: soft now means something different than what it
2230         used to mean, we want to move the caret regardless of whether or
2231         not this break was soft (would we really have wanted the caret
2232         to not move with the break in the old context?)
2233         * TreeView.cs: Make sure we factor in the vert scrollbar when
2234         calculating the horizontal scrollbar's maximum.
2235
2236 2006-12-19  Andreia Gaita  <avidigal@novell.org>
2237
2238         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
2239         check for keywords in alternate casing, close bug #80049.
2240
2241 2006-12-19  Chris Toshok  <toshok@ximian.com>
2242
2243         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
2244         methods (which all do nothing).
2245
2246         * IDropTarget.cs: add the 4 missing methods.
2247
2248 2006-12-19  Chris Toshok  <toshok@ximian.com>
2249
2250         * TableLayoutRowStyleCollection.cs: corcompare work.
2251         
2252         * TableLayoutSettings.cs: same.
2253
2254         * TableLayoutStyle.cs: same.
2255
2256         * TableLayoutColumnStyleCollection.cs: same.
2257
2258 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
2259
2260         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
2261         TableLayoutPanel I've had in my local tree for way too long.
2262
2263 2006-12-19  Miguel de Icaza  <miguel@novell.com>
2264
2265         * TableLayoutSettings.cs: Finish the public API (still needs all
2266         the logic to update on changes). 
2267
2268         * TableLayoutPanelCellPosition.cs: new file.
2269         
2270         * TableLayoutRowStyleCollection.cs,
2271         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
2272         TableLayoutSettings.cs: Track the final 2.0 table api.
2273
2274 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2275
2276         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
2277         and Image List 2.0 members for ColummnHeader.
2278         * ListView.cs: Add key-related 2.0 methods for
2279         ColumnHeaderCollection.
2280
2281 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
2282
2283         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
2284         ArgumentNullException if items argument is null. Ignore null item in
2285         arrays. Removed extra tabs.
2286
2287 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
2288
2289         * MonthCalendar.cs: Fixed InvalidCastException.
2290
2291 2006-12-19  Jackson Harper  <jackson@ximian.com>
2292
2293         * TextControl.cs: Don't increment the position here.
2294         - When calculating char positions only add in the line break size
2295         for hard line breaks.
2296
2297 2006-12-19  Andreia Gaita  <avidigal@novell.org>
2298
2299         * SendKeys.cs: Changed some things to match ms.net behaviour
2300         when parsing shifted capital letters.
2301         
2302         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
2303         Add window handle as parameter to SendInput. X11 needs the 
2304         window handle, and the handle being passed      to it in the keys 
2305         queue is the active control handle (which windows needs), not 
2306         the window handle.
2307         
2308         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
2309         to support SendKeys on X.       
2310         
2311         * X11Keyboard: Implement helper method to lookup a linux keycode
2312         given the virtual keycode. Added table of keycode-2-virtualkey
2313         values to support this.
2314
2315 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2316
2317         * ListView.cs: Add support for SelectedIndexCollection
2318         and SelectedItemCollection 2.0 methods. Implement support
2319         for ImageKey too.
2320         * ListViewItem.cs: Add support for ListViewSubItemCollection
2321         2.0 methods. Also, fix an incorrect behavior of AddRange method
2322         (it shouldn't call Clear).
2323         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
2324
2325 2006-12-19  Jackson Harper  <jackson@ximian.com>
2326
2327         * RichTextBox.cs: 
2328         * TextBoxBase.cs: New args for FormatText
2329         * TextControl.cs: Rewrote the main drawing method, this version
2330         feels a little easier to understand and debug to me.  Hopefully it
2331         does to others also
2332         - Fix FormatText to OR in the new formating values.  Added
2333         FormatSpecified param, basically this works in the same way as
2334         BoundsSpecified in Control.
2335         - Set the caret properties when the caret is positioned.
2336         - When wrapping text make sure that we calculate the width of the
2337         last character
2338         - when calculating alignments we might have wrapped down to the
2339         next line, so don't search for an individual tag, search for the
2340         end of the line
2341         - We need to invalidate the selection area when we replace the
2342         selection.
2343         
2344 2006-12-19  Daniel Nauck  <dna@mono-project.de>
2345
2346         * Application.cs: add Restart () 2.0 support
2347
2348 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
2349
2350         * MenuItem.cs: Invalidate menu item rectangle after change Enable
2351         property. Fixes #80268.
2352         
2353 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
2354
2355         * MenuAPI.cs: Dont trigger select event when closes top menu
2356         item. Fixes #80270.
2357
2358 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
2359
2360         * MenuAPI.cs: When you click on menuitem only trigger onselect
2361         event for top menu itens. Fixes #80271.
2362         
2363 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2364
2365         * MdiWindowManager.cs: Make IconicBounds depend on
2366         the bottom of MdiClient, not the top (fixes #80267)
2367         
2368 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2369
2370         * MdiClient.cs: Added missing 2.0 attribute
2371
2372 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2373
2374         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
2375         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
2376
2377 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
2378
2379         * MenuAPI.cs: Fix click when menuitem is not popup,
2380         this regression was caused by last commit (#80272).
2381
2382 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
2383
2384         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
2385         fire click event or close menu. Fixes #80272.
2386
2387 2006-12-17  Daniel Nauck  <dna@mono-project.de>
2388
2389         * ListViewHitTestInfo.cs: add
2390
2391 2006-12-17  Daniel Nauck  <dna@mono-project.de>
2392
2393         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
2394         * FlatButtonAppearance.cs: add
2395         * DockingAttribute.cs: add
2396
2397 2006-12-17  Chris Toshok  <toshok@ximian.com>
2398
2399         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
2400         and rebind our columns when it does - this way, if you make
2401         changes to the DataTable (or set the Table attribute on a DataView
2402         after setting it as the DataGrid's DataSource, the changes are
2403         made visible.)  Fixes bug #80107.
2404
2405 2006-12-17  Daniel Nauck  <dna@mono-project.de>
2406
2407         * ListViewGroup.cs: add internal Location property for layouting.
2408         * Theme.cs: add abstract ListViewGroupHeight function.
2409         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
2410
2411 2006-12-16  Andreia Gaita  <avidigal@novell.com>
2412
2413         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
2414         Added reset of selected index to 0 when adding first tab page.
2415         Fixes #80264
2416         
2417         * NumericUpDown.cs: Fix NET_2_0 check
2418
2419 2006-12-16  Daniel Nauck  <dna@mono-project.de>
2420
2421         * ListViewGroup.cs: fixed DefaultValueAttribute value
2422
2423 2006-12-16  Daniel Nauck  <dna@mono-project.de>
2424
2425         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
2426
2427 2006-12-15  Miguel de Icaza  <miguel@novell.com>
2428
2429         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
2430         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
2431         ScrollableControl.cs: Add a handful of methods that are
2432         overwritten in 2.0 
2433
2434 2006-12-15  Chris Toshok  <toshok@ximian.com>
2435
2436         * XplatUIWin32.cs: initial implementation of the Reversible
2437         drawing functions.  there are some problems.  DrawReversibleFrame
2438         doesn't seem to work at all for Dashed FrameStyle, and in the
2439         Thick case there are drawing errors at the corners (we probably
2440         need to bind Rectangle instead of doing moveto/lineto's.)
2441
2442 2006-12-16  Andreia Gaita  <avidigal@novell.com>
2443         
2444         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
2445         to send blocks of key messages. Send accumulates keys to send with Flush, 
2446         while SendWait sends all keys immediately.
2447                 
2448         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
2449         XplatUIX11.cs,  XplatUIX11-new.cs:
2450         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
2451         to Win32 SendInput.
2452         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
2453         
2454         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
2455         testing for ms.net on this class is very tricky, as the tests run too fast 
2456         to allow the hook to release, essentially freezing the keyboard and the 
2457         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
2458         category :p
2459
2460 2006-12-16  Daniel Nauck  <dna@mono-project.de>
2461
2462         * Padding.cs: fixed serialization compability to MS ("_var" field names),
2463                         added missing attributes.
2464  
2465 2006-12-15  Daniel Nauck  <dna@mono-project.de>
2466
2467         * ListViewGroup.cs: Added missing attributes.
2468         * ListViewGroupCollection.cs: Added missing attributes.
2469
2470 2006-12-15  Daniel Nauck  <dna@mono-project.de>
2471
2472         * ListViewItem.cs: fixed ListViewSubItem text property.
2473
2474 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2475         
2476         * Control.cs: Added missing 2.0 attributes
2477         
2478 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2479         
2480         * MdiClient.cs: Added missing 2.0 attribute.
2481         * MonthCalendar.cs: Added some missing 2.0 attributes 
2482         and properties.
2483         
2484 2006-12-15  Daniel Nauck  <dna@mono-project.de>
2485
2486         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
2487
2488 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
2489
2490         * MainMenu.cs: Add the new 2.0 constructor to help out people
2491         using the MainMenu in VS2005.
2492
2493 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2494         
2495         * MdiChildContext.cs: Removed it, no longer used.
2496         * MdiClient.cs: Added missing 2.0 attributes.
2497         
2498 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2499         
2500         * InternalWindowManager.cs: Fix a NullRef with previous 
2501         changes for toolwindows.
2502         
2503 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2504
2505         * Control.cs: 
2506         - Added AfterTopMostControl to allow for certain controls 
2507         to always stay on top when normal controls are brought to 
2508         front.
2509         
2510         * XplatUIWin32.cs: 
2511         - (DrawInversibleRectangle): Get window rectangle from Win32 
2512         in stead of from control, since Win32 doesn't calculate
2513         screen coords correctly from control's Location if it 
2514         have docked siblings.
2515         
2516         * MdiWindowManager.cs:
2517         - Correct the control menu popup location when clicked on
2518         the maximized form icon. (fixes #80223.1)
2519         - Don't show moving rectangle if mouse hasn't moved from
2520         the original clicked point.
2521         - Removed FormGotFocus handler (not used).
2522         - Calculate the control buttons location from the main
2523         window's size and not client size (fixes #79770).
2524         - Form is now closed when the form icon is double-clicked
2525         (fixes #79775). 
2526         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
2527         
2528         * InternalWindowManager.cs:
2529         - Moved some MDI-only methods to MdiWindowManager.
2530         - Removed unused properties and methods.
2531         - Unified method naming for methods handling wm messages.
2532         - Moved all message handling to seperate methods for
2533         each message.
2534         
2535         * ThemeWin32Classic.cs:
2536         - DrawManagedWindowDecorations now draws the title bar 
2537         with a gradient brush.
2538         - Add a CPDrawButtonInternal that allows us to specify
2539         light, normal and dark colors for the buttons (control 
2540         buttons for MDI children were drawn with the same light
2541         color as the background, therefore loosing the 3D effect).
2542         
2543         * SizeGrip.cs:
2544         - Add a CapturedControl property that is used to 
2545         determine the control to resize (defaults to parent). 
2546         Needed for MdiClient, since its SizeGrip's parent is
2547         MdiClient, but the control to resize is the main form.
2548         
2549         * MdiClient.cs:
2550         - Set SizeGrip's CapturedControl to the main form in order
2551         to resize the main form and not the MdiClient.
2552         - Override AfterTopMostControl to leave the scrollbars 
2553         always on top.
2554
2555 2006-12-15  Daniel Nauck  <dna@mono-project.de>
2556
2557         * ListView.cs: fixed ListViewItemCollection AddRange and
2558                         implemented ListViewItemCollection AddRange 2.0 support.
2559
2560 2006-12-15  Daniel Nauck  <dna@mono-project.de>
2561
2562         * ListViewGroup.cs: Add.
2563         * ListViewGroupCollection.cs: Add
2564         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
2565         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
2566                                 stub for ImageKey 2.0 support.
2567
2568 2006-12-14  Mike Kestner  <mkestner@novell.com>
2569
2570         * ListView.cs: add text padding to the autocalculation for columns
2571         of width -2.  Fixes #80207.
2572  
2573 2006-12-14  Mike Kestner  <mkestner@novell.com>
2574
2575         * ListView.cs: add some index guarding for partial row navigation 
2576         logic.  Fixes #80250.
2577
2578 2006-12-14  Mike Kestner  <mkestner@novell.com>
2579
2580         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
2581         are added or inserted to the collection.  Fixes #81099.
2582
2583 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
2584
2585         * MenuAPI.cs: Closes menu when right click out side of popup
2586         it fix problem in ContextMenu and MainMenu. Fixes #80252.
2587
2588 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2589
2590         * ListViewItem.cs: Fix dumb error.
2591
2592         * ListView.cs: Add Find and ContainsKey methods in 
2593         ListViewItemCollection, and also return true for IsReadOnly
2594         and IsFixedSize (changes for 2.0). 
2595
2596 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
2597
2598         * Control.cs: Allow Region to be set to null.
2599
2600 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2601
2602         * MdiWindowManager.cs: Remove unused (commented out) code.
2603         * Form.cs: When the MdiChild is maximized, the form needs 
2604         WM_NCMOUSELEAVE, so request it.
2605         * InternalWindowManager.cs: 
2606         - Added tooltips to control buttons.
2607         - Removed duplicated control button handling code.
2608         - Removed unused (commented out) code.
2609         
2610 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
2611
2612         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
2613         was used because we must set cursor without trigger ChangeCursor event
2614         and without change Cursor control property. Fixes #79963.
2615
2616 2006-12-12  Andreia Gaita  <avidigal@novell.com>
2617         
2618         * Control.cs: Check if Region setter value is null, and ignore
2619
2620 2006-12-12  Jackson Harper  <jackson@ximian.com>
2621
2622         * TextControl.cs: We were almost always drawing one more line then
2623         needed, since the GetLineByPixel will return the last line found
2624         at that pixel. In most cases though, we were invalidating up to
2625         the junction between two lines.
2626         - Improve debug code.
2627
2628 2006-12-12  Chris Toshok  <toshok@ximian.com>
2629
2630         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
2631         and FillReversibleRectangle.
2632
2633         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
2634         and FillReversibleRectangle.
2635
2636         * XplatUIWin32.cs: add stubs which do nothing for
2637         DrawReversibleFrame, DrawReversibleLine, and
2638         FillReversibleRectangle.
2639
2640         * XplatUIOSX.cs: add stubs which raise NIE for
2641         DrawReversibleFrame, DrawReversibleLine, and
2642         FillReversibleRectangle.
2643
2644         * XplatUIX11.cs: add working implementation for
2645         DrawReversibleFrame, DrawReversibleLine, and
2646         FillReversibleRectangle.
2647         
2648         * ControlPaint.cs: implement DrawReversibleFrame,
2649         DrawReversibleLine, and FillReversibleRectangle, by calling into
2650         the appropriate XplatUI method.
2651
2652 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2653
2654         * Form.cs: Make MdiClient have the focus even if it's
2655         not selectable, since it should receive WM_KEY* and WM_MOUSE 
2656         messages. Fixes #79907.
2657         
2658 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2659
2660         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
2661         queried after the window is created.
2662         
2663         * XplatUIX11.cs: Added SendParentNotify to implement 
2664         WM_PARENTNOTIFY logic. Fixes #79965.
2665         
2666         * Control.cs: Added MakeParam.
2667         
2668 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2669
2670         * MdiClient.cs: Resume Layout before setting window
2671         states (fixes #80201).
2672
2673 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2674
2675         * MenuAPI.cs: Deselect a menu item after performing
2676         the click (fixes #80197).
2677
2678 2006-12-11  Jackson Harper  <jackson@ximian.com>
2679
2680         * TextBoxBase.cs: We need to cap this value, since Maximum -
2681         ViewPortHeight can be less than zero.
2682         - Only do selection with the left mouse button.
2683         * TextBox.cs: Don't tell the world that we have a context menu.
2684         * Control.cs: New method so that we can control whether or not the
2685         context menu is visible outside MWF.
2686
2687 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
2688
2689         * ToolBarButton.cs: Fix text positon. 
2690
2691 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2692
2693         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
2694
2695         * Control.cs (DoubleBuffered): Add implementation.
2696
2697         * Application.cs (OpenForms): Add.
2698
2699 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
2700
2701         * Form.cs: Use opacity instead of Opactiy to determine if we need
2702         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
2703
2704 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
2705
2706         * Control.cs: Fix NRE if Control.Site was set to null.
2707
2708 2006-12-11  Chris Toshok  <toshok@ximian.com>
2709
2710         * Control.cs: ControlCollection.Remove should return if the arg is
2711         null, and ControlCollection.SetChildIndex should raise a ANE.
2712
2713 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
2714
2715         * Control.cs: Verify value set for Dock property. Code formatting
2716         updates.
2717
2718 2006-12-11  Jackson Harper  <jackson@ximian.com>
2719
2720         * TextControl.cs: Draw the caret and the selection when a flag is
2721         set on the owner.
2722         * TextBoxBase.cs: We want to draw the caret and the selection for
2723         TextBox but not for TextBoxBase.
2724         - If the window is resized and scrolling is no longer needed (the
2725         whole doc is visible) set the scroll position to zero.
2726         - The default SelectWord (the one TextBox uses) should move the
2727         caret to the end of the word.
2728         - SelectAll moves the caret to the end of the selection.
2729         * TextBox.cs: We don't selectall on focus, we just do it when the
2730         control is created.
2731         
2732 2006-12-11  Mike Kestner  <mkestner@novell.com>
2733
2734         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
2735
2736 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2737
2738         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
2739         2.0 support.
2740         * ListViewItem.cs: Add Name 2.0 property.
2741
2742 2006-12-11  Andreia Gaita  <avidigal@novell.com>
2743
2744         * TabControl.cs: Set visibility on selected or default tab 
2745         when tabcontrol handle is created, so that it's contents
2746         actually show up (duh). Fixes #80193
2747         Don't redraw the control if there is no handle created, as
2748         the selected index might be completely invalid. Added some tests
2749         to check for this.
2750
2751 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
2752
2753         * ToolBar.cs: Uses maximun width and height of all buttons as 
2754         button rectangle when ButtonSize specified, it looks strange but
2755         is what happens in Win32. Fixes #80189.
2756
2757 2006-12-11  Jackson Harper  <jackson@ximian.com>
2758
2759         * TextControl.cs: Need to track undo levels ourself, since
2760         compound actions will mess them up.
2761
2762 2006-12-10  Andreia Gaita  <avidigal@novell.com>
2763
2764         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
2765         SelectedIndex value is changed (even if it's not valid).
2766         Reset SelectedIndex to 0 when the handle is created and if
2767         the current index is invalid.
2768         Fixes SelectdeIndex unit tests and #80128
2769
2770 2006-12-08  Chris Toshok  <toshok@ximian.com>
2771
2772         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
2773         calls EndEdit, it needs to be called before we set current_cell to
2774         its new value.  Otherwise, we end up committing the value in the
2775         textbox to the new cell as well.  Fixes bug #80160.
2776
2777 2006-12-08  Chris Toshok  <toshok@ximian.com>
2778
2779         * Form.cs (set_CancelButton): if the button's DialogResult is
2780         None, set it to Cancel.  Fixes bug 80180.
2781
2782 2006-12-08  Jackson Harper  <jackson@ximian.com>
2783
2784         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
2785         to watch ourselves when setting the canvas size and setting the
2786         scrollbar values.
2787
2788 2006-12-08  Chris Toshok  <toshok@ximian.com>
2789
2790         * DataGrid.cs: comment out the two MakeTransparent calls for the
2791         time being so people using trunk (and not 1.2.2) on windows can
2792         actually use the datagrid.  This deals with bug #80151.
2793
2794 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
2795
2796         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
2797         Graphics.DrawImage (image, int, int, int, int) overload instead
2798         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
2799         the dpi difference and was blurring images it drew.
2800         [Fixes bug #79960]
2801
2802 2006-12-08  Chris Toshok  <toshok@ximian.com>
2803
2804         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
2805         rowcnt is 0 (such as with an empty datasource), and make sure we
2806         initialize not_usedarea.Y to cells.Y, so we don't draw over the
2807         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
2808
2809 2006-12-08  Chris Toshok  <toshok@ximian.com>
2810
2811         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
2812         grid.
2813
2814 2006-12-08  Chris Toshok  <toshok@ximian.com>
2815
2816         [ Fixes bug #80167 ]
2817         
2818         * ThemeWin32Classic.cs: don't draw the image if the button's flat
2819         style is FlatStyle.System.
2820
2821         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
2822         ButtonBase.flat_style private, and switch uses of it to the public
2823         property.
2824         
2825 2006-12-08  Chris Toshok  <toshok@ximian.com>
2826
2827         [ Fixes bug #80121 ]
2828         
2829         * ThemeWin32Classic.cs: center the caption text in the datagrid
2830         when we draw it.
2831
2832         * DataGrid.cs: lessen the amount we add to the caption height from
2833         6 to 2.  6 was making it huge.
2834
2835 2006-12-08  Andreia Gaita  <avidigal@novell.com>
2836
2837         * UpDownBase: Handle MouseWheel call directly instead of capturing
2838         the inner textbox's OnMouseWheel. Fixes #80166
2839
2840 2006-12-08  Jackson Harper  <jackson@ximian.com>
2841
2842         * TextControl.cs: We need to invalidate the textbox when we empty
2843         it (how had this not been discovered before?)
2844
2845 2006-12-08  Jackson Harper  <jackson@ximian.com>
2846
2847         * TextBoxBase.cs: Reworked the mouse down code so I could get it
2848         to behave like MS, we now ignore the eventargs.Click and just
2849         track state ourself, which we were already doing anyways.
2850         - Constrain the double click handler to the double click size.
2851         
2852 2006-12-08  Chris Toshok  <toshok@ximian.com>
2853
2854         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
2855         direction if that scrollbar isn't shown.  fixes bug #80158.
2856
2857 2006-12-08  Andreia Gaita  <avidigal@novell.com>
2858
2859         * NumericUpDown.cs: Update value on getter. Fixes #79950
2860
2861 2006-12-08  Chris Toshok  <toshok@ximian.com>
2862
2863         * MenuItem.cs: add back in the event cloning code.  I didn't know
2864         how to do it in the face of the EventHandlerList work i'd done
2865         last week.  Fixes bug #80183.
2866
2867 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
2868
2869         * Control.cs: Add an invalidate to the BackgroundImage setter.
2870         [Fixes 80184]
2871
2872 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
2873
2874         * ToolStrip*: Add some small properties reported by MoMA, fix event
2875         firing and default properties based off of unit tests, and add some
2876         attributes based off of the class status page.
2877
2878 2006-12-07  Jackson Harper  <jackson@ximian.com>
2879
2880         * TextBoxBase.cs: Take HideSelection into account when determining
2881         whether or not to show the selection.
2882         * RichTextBox.cs: After inserting the RTF into the document move
2883         the cursor to the beginning of the document.
2884
2885 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
2886
2887         * Control.cs: Remove static ArrayList "controls" which maintained
2888         a reference to every control created.
2889         * Application.cs: Create a static FormCollection to maintain a reference
2890         to every form created.  Use it in places that formerly enumerated through
2891         the controls one looking for forms.
2892         * Form.cs: Add and remove self from above FormCollection.
2893
2894 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
2895
2896         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
2897           not libgdk (though it makes me wonder why I didn't have any
2898           problems)
2899
2900 2006-12-07  Chris Toshok  <toshok@ximian.com>
2901
2902         [ you had to know this was coming after that last commit...]
2903         
2904         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
2905         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
2906         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
2907         XCopyArea).
2908
2909 2006-12-07  Chris Toshok  <toshok@ximian.com>
2910
2911         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
2912         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
2913         all the behavior we need for double buffering.
2914
2915         * XplatUIDriver.cs: implement the 3 double buffer methods using a
2916         client side Bitmap, just like the old Control-based double buffer
2917         code did.  The methods are virtual, so each XplatUI driver
2918         subclass can replace the implementation to use a faster, platform
2919         specific approach.
2920
2921         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
2922         double buffer code, and clean things up a bit in the process.
2923
2924 2006-12-06  Chris Toshok  <toshok@ximian.com>
2925
2926         * Control.cs: reindent WndProc.
2927
2928 2006-12-06  Chris Toshok  <toshok@ximian.com>
2929
2930         [ I wanna be like BenM when I grow up ]
2931         
2932         * Hwnd.cs: create a single static Graphics object on the static
2933         Bitmap we create.  use this for our text measurements.
2934
2935         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
2936         This was causing us to allocate a backbuffer for every control,
2937         even when it wasn't flagged as double buffered.  Instead use the
2938         single graphics instance.  This might have implications for
2939         multithreaded applications.  If we run into problems we can switch
2940         to creating 1 Graphics per control, on the static Hwnd bitmap.
2941
2942         this change nets us a 7M savings in private dirty mappings when
2943         running FormsTest.exe.
2944
2945 2006-12-06  Chris Toshok  <toshok@ximian.com>
2946
2947         * ListView.cs: the BackgroundImage override is just to set
2948         attributes.  chain up to base.BackgroundImage.
2949
2950         * RichTextBox.cs: same.
2951
2952         * ToolBar.cs: same, but we need to also redraw the toolbar when it
2953         changes, so instead a handler for BackgroundImageChanged.
2954         
2955         * Control.cs: make background_image private.
2956
2957 2006-12-06  Chris Toshok  <toshok@ximian.com>
2958
2959         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
2960         sure we even need this assignment, but roll with it for now.
2961
2962         * Control.cs: make the cursor field private.
2963
2964 2006-12-06  Chris Toshok  <toshok@ximian.com>
2965
2966         * Form.cs: we don't need to explicitly set ImeMode to
2967         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
2968         behavior in the face of ImeMode.Inherit.
2969
2970         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
2971         change the ctor's assignment to use ImeMode instead of ime_mode.
2972
2973         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
2974         ImeModeInherit.  Only check for the parent's imemode (and return
2975         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
2976         This fixes the button unit test, which sets both ImeMode and
2977         DefaultImeMode to ImeMode.Disable.
2978
2979         also make the ime_mode field private.
2980
2981 2006-12-06  Chris Toshok  <toshok@ximian.com>
2982
2983         * Control.cs: make control_style private.
2984
2985         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
2986         setting the styles to true, then setting them to false instead of
2987         reverting to their previous values.
2988
2989         also, call SetStyle on the scrollbars instead of using
2990         control_style directly.
2991
2992 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
2993
2994         * FormCollection.cs: Implement. [2.0]
2995
2996 2006-12-06  Chris Toshok  <toshok@ximian.com>
2997
2998         * Control.cs: make tab_stop private.
2999
3000         * Label.cs: set TabStop, not tab_stop.  reformat some event
3001         add/remove methods to make them more compact.
3002
3003 2006-12-06  Chris Toshok  <toshok@ximian.com>
3004
3005         * RadioButton.cs: fix TabStop handling.
3006
3007 2006-12-06  Chris Toshok  <toshok@ximian.com>
3008
3009         * TextBox.cs: remove the explicit assignments to has_focus.
3010         Control does that.
3011
3012         * ButtonBase.cs: remove the assignment to has_focus.  Control will
3013         manage that.
3014         
3015 2006-12-06  Chris Toshok  <toshok@ximian.com>
3016
3017         * ButtonBase.cs: remove all uses of is_enabled from this code.
3018         it's always true when any of the code containing the checks is
3019         executed.
3020
3021 2006-12-06  Chris Toshok  <toshok@ximian.com>
3022
3023         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
3024         with different semantics (some are present in both 1.1 and 2.0
3025         profiles) so that we match MS's behavior in our unit tests.
3026
3027 2006-12-06  Jackson Harper  <jackson@ximian.com>
3028
3029         * TextControl.cs: Make this operation undoable.
3030         * TextBoxBase.cs: Factor the border width into the preferred
3031         height.
3032         - implement Modified as per the spec.
3033
3034 2006-12-06  Chris Toshok  <toshok@ximian.com>
3035
3036         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
3037
3038 2006-12-06  Chris Toshok  <toshok@ximian.com>
3039
3040         * Control.cs: make right_to_left and context_menu fields private.
3041
3042 2006-12-06  Chris Toshok  <toshok@ximian.com>
3043
3044         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
3045         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
3046         Control.child_controls private.  switch all uses over to
3047         Control.Controls.
3048
3049 2006-12-06  Chris Toshok  <toshok@ximian.com>
3050
3051         * System.Windows.Forms/GroupBox.cs,
3052         System.Windows.Forms/AccessibleObject.cs,
3053         System.Windows.Forms/ErrorProvider.cs,
3054         System.Windows.Forms/Control.cs,
3055         System.Windows.Forms/UpDownBase.cs,
3056         System.Windows.Forms/ScrollBar.cs,
3057         System.Windows.Forms/DateTimePicker.cs,
3058         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
3059         System.Windows.Forms/ToolTip.cs,
3060         System.Windows.Forms/RadioButton.cs,
3061         System.Windows.Forms/LinkLabel.cs,
3062         System.Windows.Forms/Splitter.cs,
3063         System.Windows.Forms/TextBoxBase.cs,
3064         System.Windows.Forms/ToolStripTextBox.cs,
3065         System.Windows.Forms/ContainerControl.cs,
3066         System.Windows.Forms/ThemeWin32Classic.cs,
3067         System.Windows.Forms/SizeGrip.cs,
3068         System.Windows.Forms/ToolStripDropDown.cs,
3069         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
3070         private.  switch all uses over to Control.Parent.
3071
3072 2006-12-06  Chris Toshok  <toshok@ximian.com>
3073
3074         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
3075         Control does this before calling emitting these events.
3076
3077         * TabControl.cs: same.
3078
3079         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
3080         Control.client_rect.
3081
3082         * ButtonBase.cs: use the ClientSize property instead of the
3083         client_size field.
3084
3085         * ScrollableControl.cs: same.
3086
3087         * Control.cs: another pass at making properties private.  also,
3088         move the initialization of tab_stop to the ctor.
3089
3090 2006-12-05  Andreia Gaita <avidigal@novell.com>
3091
3092         * TabControl.cs: Let the selected index be set freely if the 
3093         control handle is not yet created.
3094
3095 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
3096
3097         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
3098         internal until I can rewrite DefaultLayout.
3099         * ToolStrip.cs: Fix build error and some general cleaning.
3100         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
3101         Fix build errors caused by making some of Control's fields private.
3102
3103 2006-12-05  Jackson Harper  <jackson@ximian.com>
3104
3105         * TextControl.cs: Redo Insert a little so that it use IndexOf
3106         instead of Split, this prevents it from messing up on things like
3107         \n\n\n. Also more effecient since the split array doesn't need to
3108         be created.
3109         * TextBoxBase.cs: AppendText doesnt handle multiline and non
3110         multiline text differently, this is the first of many fixes that
3111         will make multiline/non-multiline the same thing as far as the
3112         TextBoxBase is concerned.
3113         - Don't split the text and insert lines, this can lose some line
3114         endings (like is the last line a soft or hard break). Instead use
3115         the new Insert.
3116         - Fix an off by one when combining all the lines in the Text
3117         getter.
3118         - Remove separate multiline handling from the Text getter/setter.
3119
3120 2006-12-05  Chris Toshok  <toshok@ximian.com>
3121
3122         * ButtonBase.cs: a few changes:
3123
3124         - don't reinitialize internal Control fields in the ctor when they
3125         have the same values as Control sets them.
3126
3127         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
3128         this before calling those methods.
3129
3130         - we don't need to call Refresh for anything.  use Invalidate
3131         instead.
3132
3133         - OnEnabledChanged doesn't need to redraw at all - Control.cs
3134         calls Refresh in its OnEnabledChanged.
3135         
3136         - several of the events we were registered for in the ctor to
3137         redraw ourselves already include calls to Invalidate in the
3138         property setters that raise the events.  remove the extra
3139         invalidation.
3140
3141         - reformat a switch statement that was 83274658 columns wide.
3142         
3143 2006-12-05  Mike Kestner  <mkestner@novell.com>
3144
3145         * ComboBox.cs: fix a unit test regression from a TextBox
3146         SelectionLength return of -1 when there's no selection.  
3147
3148 2006-12-05  Chris Toshok  <toshok@ximian.com>
3149
3150         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
3151         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
3152         cleaning up some of the internal Control fields being used by
3153         subclasses.
3154
3155 2006-12-05  Mike Kestner  <mkestner@novell.com>
3156
3157         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
3158         listbox after AddImplicit calls since it defaults to hidden. Add a 
3159         hack to preserve requested heights across DropDownStyle changes.
3160
3161 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
3162
3163         * PropertyGrid.cs: Hide FindFirstItem method from public API.
3164
3165 2006-12-05  Chris Toshok  <toshok@ximian.com>
3166
3167         * DataGridView.cs: fix compiler warnings.
3168
3169         * PrintControllerWithStatusDialog.cs: same.
3170
3171         * ToolBar.cs: same.
3172
3173         * FolderBrowserDialog.cs: same.
3174
3175         * Splitter.cs: same.
3176
3177         * DataGridViewComboBoxCell.cs: same.
3178
3179         * XplatUIWin32.cs: same.
3180
3181         * PictureBox.cs: same.
3182
3183         * Win32DnD.cs: same.
3184
3185         * PageSetupDialog.cs: same.
3186
3187         * FileDialog.cs: same.
3188
3189         * PrintDialog.cs: same.
3190
3191         * DataGridTextBoxColumn.cs: same.
3192
3193         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
3194
3195 2006-12-05  Chris Toshok  <toshok@ximian.com>
3196
3197         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
3198         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
3199         System.ComponentModel.EventHandlerList work.
3200
3201 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
3202
3203         * DrawTreeNodeEventArgs.cs: Added.
3204
3205 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3206         
3207         * InternalWindowManager.cs: Remove an unused field.
3208         
3209 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3210
3211         * InternalWindowManager.cs:
3212         - Save the point where the title bar is clicked.
3213         
3214         * MdiWindowManager.cs:
3215         - Only allow moving of the window as long as the 
3216         clicked point on the title bar does not get out of
3217         MdiClient's rectangle. Fixes #79982.
3218         
3219         * MdiClient.cs:
3220         - Added Horizontal/VerticalScrollbarVisible.
3221         - Simplified the scrollbar sizing algorithm.
3222         - Cache the difference in scrolled value in
3223         H/VBarValueChanged and move the calculation out
3224         of the for loop.
3225
3226 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3227
3228         * Control.cs: Make the Console.WriteLine in WndProc 
3229         write more info.
3230
3231 2006-12-05  Chris Toshok  <toshok@ximian.com>
3232
3233         * ToolStripManager.cs, ToolStripButton.cs,
3234         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
3235         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
3236         ToolStripSplitButton.cs, ToolStripSeparator.cs,
3237         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
3238         ToolStripProgressBar.cs, ToolStripContainer.cs,
3239         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
3240         to using System.ComponentModel.EventHandlerList.
3241
3242 2006-12-04  Chris Toshok  <toshok@ximian.com>
3243
3244         * LinkLabel.cs: fix up compiler warnings.
3245
3246         * TableLayoutSettings.cs: same.
3247
3248         * TreeView.cs: same.
3249
3250         * ToolBar.cs: same.
3251
3252         * TabControl.cs: same.
3253
3254         * RichTextBox.cs: same.
3255
3256         * ListViewItem.cs: same.
3257
3258         * PropertyGrid.cs: same.
3259
3260         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
3261
3262         * ToolTip.cs same.
3263
3264         * TextRenderer.cs: fix up compiler warnings.
3265
3266         * Label.cs: same.
3267
3268         * Form.cs: corcompare fixes.
3269
3270         * PictureBox.cs: fix up compiler warnings.
3271
3272         * ImageListStreamer.cs: same.
3273
3274         * TrackBar.cs: corcompare fix.
3275
3276         * Control.cs: fix up compiler warnings.
3277
3278         * SplitterPanel.cs: same.
3279
3280         * NumericTextBox.cs: same.
3281
3282         * ImageList.cs: same.
3283
3284         * StatusStrip.cs: same.
3285
3286         * ProgressBar.cs: corcompare fix.
3287
3288         * ToolStripButton.cs: fix up compiler warnings.
3289
3290         * ToolStripStatusLabel.cs: same.
3291
3292         * ToolStripSplitButton.cs: same.
3293
3294         * ToolStripSeparator.cs: same.
3295
3296         * ToolStripProgressBar.cs: same.
3297
3298         * ToolStripDropDownMenu.cs: same
3299
3300         * ToolStripDropDown.cs: same.
3301
3302         * ToolStripDropDownButton.cs: same.
3303
3304         * ToolStrip.cs: same.
3305
3306         * ToolStripControlHost.cs: same.
3307
3308         * ToolStripContentPanel.cs: same.
3309
3310         * ToolStripDropDown.cs: same.
3311
3312         * ToolStripContainer.cs: same.
3313
3314         * ToolStripPanel.cs: same, and add "new" where we need it to work
3315         with the new ArrangedElementCollection.
3316
3317         * ToolStripItemCollection.cs: add "new" where we need it to work
3318         with the new ArrangedElementCollection.
3319
3320 2006-12-04  Andreia Gaita <avidigal@novell.com>
3321
3322         * TabControl.cs: Fix default tab selection to after TabControl
3323         gets focus and not before. Fixes #80128
3324
3325 2006-12-04  Chris Toshok  <toshok@ximian.com>
3326
3327         * DataGridTableStyle.cs: remove the gross calling of
3328         datagrid.Refresh from here.  It's a broken idea and it doesn't
3329         work anyway.
3330
3331         * DataGrid.cs: instead, just register/unregister from the
3332         DataGridTableStyle events in CurrentTableStyle.  we play it
3333         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
3334         even though some would most likely not require it.  Fixes bug
3335         #80115 (and one portion of #80117 as a side effect).
3336
3337 2006-12-04  Chris Toshok  <toshok@ximian.com>
3338
3339         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
3340         so the textbox (if any) goes away.  Fixes bug #80117.
3341
3342 2006-12-04  Chris Toshok  <toshok@ximian.com>
3343
3344         * DataGridColumnStyle.cs: set the column's readonly property
3345         initially based on the property descriptor's IsReadOnly.  Fixes
3346         bug #80044.
3347
3348 2006-12-04  Chris Toshok  <toshok@ximian.com>
3349
3350         * ComboBox.cs: wrap the dropdown style changing work in
3351         SuspendLayout/ResumeLayout.  Fixes bug #79968.
3352
3353 2006-12-04  Jackson Harper  <jackson@ximian.com>
3354
3355         * TextBoxBase.cs: Fix off by one, since these are one-based.
3356         * TextBox.cs: Select all the text when we get focus.  The TextBox
3357         does this but the RTB does not.
3358
3359 2006-12-04  Chris Toshok  <toshok@ximian.com>
3360
3361         * DataGridTextBoxColumn.cs: remove some spew.
3362
3363         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
3364         but some part of me is saying "it shouldn't be here.."  At any
3365         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
3366         setting the value.
3367
3368 2006-12-04  Chris Toshok  <toshok@ximian.com>
3369
3370         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
3371         to reassign the propertydescriptor.
3372
3373 2006-12-04  Jackson Harper  <jackson@ximian.com>
3374
3375         * TextBoxBase.cs:
3376         * TextControl.cs: Remove some unused variables.  Maybe this will
3377         patch things up between mike and I.
3378         - don't split lines less then one char wide, if the viewport is
3379         that small text won't be visible anyways.
3380         
3381 2006-12-04  Jackson Harper  <jackson@ximian.com>
3382
3383         * TextBoxBase.cs: Default selection length is -1, need to do some
3384         more testing on windows to see when this is used for the property.
3385         - Redid the Lines [] property to that we properly remove soft line
3386         breaks
3387         - added support for preserving carriage returns
3388         -  CanUndo is not a variable like 'is undo enabled' it just returns
3389         true if there is undo operations available.
3390         - AppendText doesn't need to grab the last tag itself anymore,
3391         this happens automatically when we move the cursor.
3392         * TextControl.cs: Add CompoundActions to the undo class. This
3393         allows combining the other operations into one big option.  ie a
3394         paste will combine { delete old, insert new, move cursor }
3395         - Add InsertString undo operation
3396         - New method for deleting multiline text
3397         - Add carriage returns to lines. So we can preserve carriage
3398         returns when text is 'roundtripped'
3399
3400 2006-12-04  Chris Toshok  <toshok@ximian.com>
3401
3402         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
3403         minimum 0.  Fixes the scrollbar exception in bug #80136.
3404
3405 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3406
3407         * MdiClient.cs: 
3408         * MdiWindowManager: Removed unused fields and methods.
3409         
3410 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3411         
3412         * StatusBar.cs: Update all panels when a AutoSize=Contents
3413         panel needs updating.
3414         
3415         * StatusBarPanel.cs: Remove twidth and only use initialize.
3416         Fixes #80031.
3417                 
3418 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3419
3420         * Form.cs: When a form's MdiParent is set add it directly
3421         on top of the z-order in stead of relying on MdiClient's
3422         ActivateChild to do it. Fixes #80135.
3423         
3424         * MdiClient.cs: 
3425         - Remove original_order, mdi_child_list is already doing
3426         the same thing.
3427         - Create mdi_child_list on construction in
3428         stead of first use (avoids a few null checks).
3429
3430         * MenuItem.cs: Use an already existing list of mdi children
3431         to get the correct order of children and remove the other
3432         redundant list.
3433
3434 2006-12-04  Chris Toshok  <toshok@ximian.com>
3435
3436         * PropertyGridView.cs: cached_splitter_location is only used in
3437         !DOUBLEBUFFER code.
3438
3439         * PropertyGrid.cs: implement the ComComponentNameChanged event
3440         using Events, hoping that would fix the warning.  Looks like a
3441         compiler bug instead (#80144).
3442
3443         * PropertyManager.cs: remove unused method.
3444
3445 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
3446
3447         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
3448         include parentesis to fix expression evaluation. Fixes #79634.
3449
3450 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3451         
3452         * MenuAPI.cs:
3453         - Changes to fix behavior in Menu control, some reported in #80097
3454         and other detected during behavior refactory like a select event
3455         problems.
3456         - Remove unneded "if's" conditions.
3457         - Created an internal to flag when popup is active in control, we need 
3458         it because in .NET you can have menu active but without popup active
3459         when you active menu using popup without visible items.
3460         - Mimic win32 behavior for Select and Popup events.  
3461         - Dont open popup menu when you dont have visible subitems.
3462         - Do nothing when click on disabled menu item.
3463         - Some small changes to follow the coding style guidelines.
3464         - Unselect menu only when another control gives focus. Fixes #80097.
3465         - Remove unused code.
3466         
3467         * MenuItem.cs: internal VisibleItems method to check if menu
3468         theres visible subitems, it will be usefull to fix some 
3469         behavior in Menu control.
3470         
3471 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
3472         
3473         * Timer.cs: Tag property for 2.0 profile.
3474         
3475 2006-12-01  Chris Toshok  <toshok@ximian.com>
3476
3477         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
3478         
3479         * Win32DnD.cs: comment out some unused fields.
3480
3481         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
3482         some unused properties/methods.
3483
3484         * XplatUIX11.cs: fix MousePosition so we override the base class's
3485         property instead of conflicting with it.
3486
3487         * PictureBox.cs: comment out some unused fields
3488
3489         * OSXStructs.cs: make some struct fields public.
3490
3491         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
3492         MousePosition so we override the base class's property instead of
3493         conflicting with it.
3494
3495         * X11Dnd.cs: comment out some unused fields
3496
3497         * X11DesktopColors.cs: fix some struct field visibility to quiet
3498         the compiler.
3499
3500         * X11Dnd.cs: remove some debug code.
3501
3502         * ThemeClearlooks.cs: comment out unused field.
3503
3504         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
3505
3506         * ThemeGtk.cs: comment out some unused pinvokes.
3507
3508         * Timer.cs: remove some unused fields.
3509
3510         * ThemeClearlooks.cs: comment out unused field.
3511
3512         * UpDownBase.cs: comment out unused field.
3513
3514         * DataObject.cs: comment out unused field.
3515
3516         * DataGridBoolColumn.cs: reomve unused field.
3517
3518         * DataGrid.cs: remove unused field.
3519
3520         * Cursor.cs: remove old ToBitmap code.
3521
3522         * ControlPaint.cs: remove unused method.
3523
3524         * ScrollBar.cs: remove unused fields.
3525
3526         * ComboBox.cs: remove unused field, and chain up to
3527         AccessibleObject ctor.
3528
3529         * ListBox.cs: remove unused field.
3530
3531         * ButtonBase.cs: wrap a couple fields in NET_2_0.
3532
3533         * GridEntry.cs: remove unused fields.
3534
3535         * Binding.cs: remove unused fields.
3536
3537         * AxHost.cs: remove unused method.
3538
3539         * ContainerControl.cs: remove unused field.
3540
3541         * ScrollableControl.cs: remove unused fields.
3542
3543 2006-12-01  Chris Toshok  <toshok@ximian.com>
3544
3545         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
3546         the Where/WhereString stuff.  it's easy enough to CWL
3547         Environment.StackTrace.
3548
3549         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
3550         unused private fields.
3551
3552 2006-12-01  Jackson Harper  <jackson@ximian.com>
3553
3554         * TextControl.cs: Do not update the view while inserting multiline
3555         text. If we update the view we might wrap lines, before entering
3556         the new lines, which causes the new line insertion calculations to
3557         be totally fubared.
3558         - Remove an old TODO
3559         - Make debug output a little nicer
3560         
3561 2006-12-01  Chris Toshok  <toshok@ximian.com>
3562
3563         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
3564
3565 2006-12-01  Chris Toshok  <toshok@ximian.com>
3566
3567         [ fix the majority of the CS0108 warnings we've been suppressing ]
3568         
3569         * TreeView.cs: mark BackgroundImageChanged as 'new'.
3570
3571         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
3572         to "LayoutToolBar" to quiet mcs.
3573         
3574         * TabControl.cs: mark our ControlCollection class as 'new'.
3575
3576         * TextBoxBase.cs: mark some events as 'new'.
3577
3578         * Splitter.cs: TabStop is 'new'.
3579
3580         * ControlBindingsCollection.cs: mark a few methods as new since
3581         they change the visibility from protected to public.
3582
3583         * RadioButton.cs: DoubleClick -> base class, and remove unused
3584         HaveDoubleClick.
3585
3586         * MonthCalendar.cs: ImeMode property -> base class, and mark many
3587         events as new.
3588
3589         * NumericUpDown.cs: TextChanged -> base class.
3590
3591         * CheckedListBox.cs: mark our ObjectCollection class as new to
3592         quiet mcs.
3593
3594         * FolderBrowserDialog.cs: make HelpRequest event new and have it
3595         muck with the base class.
3596
3597         * StatusBar.cs: fix some mcs warnings about Update being the same
3598         name as a base class method.
3599
3600         * RichTextBox.cs: mark some events as new, and make them do things
3601         to the base class impl.
3602
3603         * UserControl.cs: mark TextChanged as new, and have it manipulate
3604         base.TextChanged.
3605
3606         * UpDownBase.cs: mark some things new.
3607
3608         * CheckBox.cs: mark DoubleClick "new", and add some text about
3609         what we need to look at.
3610
3611         * Panel.cs: make the events "new", and manipulate the base
3612         version.  these are just here for attributes.
3613
3614         * AccessibleObject.cs: make owner private.
3615
3616         * Control.cs: deal with AccessibleObject.owner being private.
3617         cache our own copy if we need it.
3618
3619         * Button.cs: add "new" to the DoubleClickEvent.
3620
3621         * ListBox.cs: no need to track our own has_focus here.  let
3622         Control.has_focus do it for us.  Also some other work to clear up
3623         warnings about not overriding base class methods of the same name.
3624         
3625         * ComboBox.cs: clear up some warnings about not override base
3626         class methods of the same name.
3627
3628 2006-12-01  Chris Toshok  <toshok@ximian.com>
3629
3630         * Form.cs: flag a few things as "new" to quiet some of the mcs
3631         warnings.
3632
3633         * AxHost.cs: same.
3634
3635         * PrintPreviewDialog.cs: same.
3636
3637         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
3638         now DGV isn't so horrible on the class status page.  also, move
3639         all events to using System.ComponentModel.EventHandlerList.  my
3640         wrists hurt.
3641
3642 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3643
3644         * MdiWindowManager.cs:
3645         - Set form to active mdi child if shown,
3646         and update the active mdi child to the next 
3647         remaining child in the z-order if the form is hidden.
3648
3649         * Form.cs: 
3650         - Track if the form has been visible and if its 
3651         visibility is beeing changed, so that the MdiClient
3652         can properly decide the ActiveMdiChild. The MdiClient 
3653         cannot track this since the form can change visibility 
3654         before MdiClient is created.
3655
3656         * MdiClient.cs:
3657         - Don't activate anything of the parent form is changing
3658         its visibility.
3659         - Rework ActiveMdiChild to only return visible mdi 
3660         children and take into account several other corner 
3661         cases.
3662
3663 2006-12-01  Chris Toshok  <toshok@ximian.com>
3664
3665         * IBindableComponent.cs: new 2.0 interface.
3666
3667 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
3668
3669         * DataGrid.cs: Font for caption area is bold by default.
3670
3671 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
3672
3673         * Menu.cs: Tag property for 2.0.
3674         
3675 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
3676
3677         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
3678         
3679 2006-12-01  Chris Toshok  <toshok@ximian.com>
3680
3681         * TreeView.cs: doh, the Begin* events should be
3682         TreeViewCancelEventHandler.
3683
3684 2006-12-01  Chris Toshok  <toshok@ximian.com>
3685
3686         * Form.cs: Form.ControlCollection already stores off the
3687         form_owner field.  don't access the base class's internal "owner"
3688         field.
3689
3690         * Control.cs: make all the fields in Control.ControlCollection
3691         private.  there's no need for any internal fields here.
3692
3693 2006-12-01  Chris Toshok  <toshok@ximian.com>
3694
3695         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
3696         OnHandleCreated.  Fixes bug #80109.
3697
3698 2006-12-01  Chris Toshok  <toshok@ximian.com>
3699
3700         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
3701         SplitContainer.cs, Control.cs, StatusStrip.cs,
3702         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
3703         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
3704         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
3705         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
3706         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
3707         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
3708         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
3709         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
3710         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
3711         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
3712
3713         do most of the work to convert our code over to use
3714         System.ComponentModel.Component.Events for
3715         adding/removing/dispatching events.
3716
3717
3718 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
3719
3720         * DataGridView.cs: Fix an ArgumentNullException reported 
3721         twice today in IRC.
3722
3723 2006-11-30  Mike Kestner  <mkestner@novell.com>
3724
3725         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
3726         grabbed listbox.  Fixes #80036 and #80101.
3727
3728 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
3729
3730         * Message.cs: Changed ToString() to match MS.
3731         
3732 2006-11-30  Jackson Harper  <jackson@ximian.com>
3733
3734         * TextBoxBase.cs: You can still change the selected text on a read
3735         only textbox.
3736         * TextControl.cs: Lower magic number for wrap calculations. This
3737         lets text get closer to the right (far) edge.
3738
3739 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
3740
3741         * Control.cs: Tweak 2.0 layout properties.
3742         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
3743         * TextRenderer.cs: Add a new overload.
3744         * ToolStrip*: Huge amount of changes and new features.
3745
3746 2006-11-30  Mike Kestner  <mkestner@novell.com>
3747
3748         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
3749         scroll range correct.  Fixes #79994.
3750
3751 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
3752
3753         * MdiWindowManager.cs: Update main form's text when
3754         a form is closed. (fixes #80038)
3755         
3756 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
3757
3758         * ToolBar.cs:
3759         - Fix an regression in ButtonSize.
3760         - Get ImeMode default value change to "Disable".
3761         - Get ShowTooltips default value change to true, default value is 
3762         "false" but after make a test in .NET we get "true" result as default.
3763         
3764 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
3765
3766         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
3767
3768 2006-11-29  Chris Toshok  <toshok@ximian.com>
3769
3770         * XplatUIWin32.cs (GetWindowTransparency): check return value of
3771         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
3772         SetWindowTransparency hasn't been called.
3773
3774 2006-11-29  Chris Toshok  <toshok@ximian.com>
3775
3776         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
3777         if it's supported.
3778         (set_AllowTransparency): reorder things a little so that the
3779         WS_EX_LAYERED style is removed properly.
3780
3781 2006-11-29  Chris Toshok  <toshok@ximian.com>
3782
3783         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
3784         
3785         * Form.cs: only call the XplatUI transparency method (get/set) if
3786         SupportsTransparency says it's supported. Otherwise fallback to
3787         doing nothing (in the set case) or returning the instance field we
3788         cache (in the get case).
3789
3790         * XplatUIStructs.cs: add TransparencySupport flag enum.
3791         
3792         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
3793         change to SupportsTransparency.
3794
3795         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
3796         TransparencySupport.None from SupportsTransparency.
3797
3798         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
3799         TransparencySupport.Set from SupportsTransparency.
3800
3801         * XplatUIWin32.cs: implement GetWindowTransparency calling
3802         GetLayeredWindowAttributes, and implement SupportsTransparency by
3803         checking whether or not both
3804         GetWindowTransparency/SetWindowTransparency are available
3805         entrypoints.  We need to do this since SetWindowTransparency is
3806         available as of win2k, but GetWindowTransparency requires winxp.
3807         yay win32 api.
3808
3809         * XplatUI.cs: Add GetWindowTransparency, and change
3810         SupportsTransparency to allow for either/both Get/Set.
3811
3812 2006-11-29  Chris Toshok  <toshok@ximian.com>
3813
3814         * DataGrid.cs: keep from going into an infinite loop redrawing a
3815         datagrid that has no datasource.  Fixes bug #80033.
3816
3817 2006-11-29  Chris Toshok  <toshok@ximian.com>
3818
3819         * MenuItem.cs: fix the NRE when we assign text (and therefore call
3820         Invalidate) before the mainmenu has been assigned to a control.
3821
3822 2006-11-29  Chris Toshok  <toshok@ximian.com>
3823
3824         * DataGrid.cs: detect when we should be double the double click
3825         row/column autosize stuff, although that codepath has yet to be
3826         written.  part of the work for bug #79891.
3827
3828 2006-11-29  Chris Toshok  <toshok@ximian.com>
3829
3830         * Binding.cs (SetControl): fix unit test.
3831
3832 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3833
3834         * PageSetupDialog.cs: Validate the margins and set them in
3835         PageSettings. 
3836         * NumericTextBox.cs: New class to mimic the behavior of the
3837         textboxes used in the printing dialogs.
3838
3839 2006-11-29  Andreia Gaita  <avidigal@novell.com>
3840         
3841         * Form.cs: Revert previous change (remove call UpdateBounds
3842         from form constructor), because it messes with the handle creation
3843         order, and that one needs lots and lots of love.
3844         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
3845         for valid printer and throw InvalidPrinterException if document
3846         is set but printer not valid), adding a MonoTODO. Once 
3847         handle creation is done properly, we can put this back in.
3848
3849 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3850
3851         * MenuItem.cs: Create a invalidate method for menu item, to be
3852         calling from set text, it make text changes to imadiate update
3853         on screen. Fixes #80013. 
3854         
3855 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3856
3857         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
3858         fixes bug #80070 and some other problem on toolbar buttons
3859         layout.
3860
3861 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3862
3863         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
3864         with dotted brush.      Fixes #79564
3865         
3866 2006-11-28  Andreia Gaita  <avidigal@novell.com>
3867
3868         * Form.cs: Removed call to UpdateBounds on Form
3869         constructor, it was causing a call to CreateHandle
3870         before it was supposed to.
3871         * PrintControllerWithStatusDialog: Applied patch
3872         by Chris Toshok to hide controller when there are
3873         no printers available.
3874         PrintDialog.cs: initialize printer settings to 
3875         null - correct DefaultValues test #5
3876         * PrintPreviewControl.cs: Move PrintController
3877         initialization to GeneratePreview
3878         * PrintPreviewDialog.cs: 
3879         - Remove Preview generation     from Document_set(). It is 
3880         called on OnPaint
3881         - Throw InvalidPrinterException on CreateHandle if
3882         a Document is set but there are no printers or 
3883         printer is not valid.
3884         * ThemeWin32Classic: don't paint PrintPreviewControl
3885         if there is nothing to paint    
3886
3887 2006-11-28  Miguel de Icaza  <miguel@novell.com>
3888
3889         * Form.cs: Add another popular method.
3890
3891         * TabPage.cs: ditto.
3892
3893 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3894
3895         * MenuItem.cs: Fixed a warning.
3896         * InternalWindowManager: Fixed a warning.
3897
3898 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3899
3900         * MenuItem.cs:
3901         - When cloning a menu also clone MdiList and clone the 
3902           window menu items properly (as the forms and menuitems
3903           are kept in an internal hashtable, these need updating 
3904           as well)
3905         - Rewrote the window menu code, menu items are added in the
3906           order the forms were added to their parent, and they are
3907           updated every time the window menu is shown (before the
3908           list was only generated once, in the current order of the
3909           forms, and would never be updated). A checkmark is shown
3910           next to the item corresponding to the active mdi child.
3911
3912 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3913
3914         * XplatUIStructs.cs: 
3915         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
3916         
3917         * XplatUIWin32.cs: 
3918         - Added TME_NONCLIENT to TMEFlags.
3919         - Handles WM_NCMOUSEMOVE in GetMessage to 
3920           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
3921
3922         * MdiWindowManager:
3923         - Now merges mdi child menu to parent menu when maximized.
3924         - Recalculate NC areas of both mdi child and mdi parent. 
3925           Fixes #79757 (4).
3926           on window state and size changes.Fixes #79844 (3).
3927         - Handle WM_NCCALCSIZE to properly calculate borders.
3928
3929         * Form.cs:
3930         - Add/remove to the mdi containers list of mdi children 
3931           in the order they are added.
3932         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
3933           to the maximized mdi child.
3934         
3935         * InternalWindowManager.cs:
3936         - Only execute a click on the control buttons on the mouse up,
3937           not on the mouse down. Show the state of the button 
3938           (was only showing Normal state, never Pressed state). The
3939           pressed button now follows the mouse (if you click the Close 
3940           button and move the mouse over the Maximize button, the 
3941           Maximize button will be shown as pressed). Since Win32 does
3942           not generate WM_NCLBUTTONUP if you release the button outside
3943           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
3944           it as a mouse up.
3945         
3946         * ThemeWin32Classic.cs:
3947         - Draw a missing border around mdi child forms. Fixes #79844 (2).
3948
3949         * MdiClient.cs:
3950         - Added a list of forms which contains the order the forms are
3951           added to the mdi parent.
3952         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
3953         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
3954         - If the active form changes set the scrollbars to the top
3955           of the Z order, otherwise the form could hide them.
3956         - Scrollbars are now sized according to ClientSize, not 
3957           to Size, and they take into account the other scrollbar
3958           to determine maximum.
3959         
3960 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
3961         
3962         * XplatUI.cs:
3963         * XplatUIDriver.cs:
3964         * XplatUIX11.cs:
3965         * XplatUIWin32.cs:
3966         * XplatUIOSX.cs:
3967         - Added RequestAdditionalWM_NCMessages for windows to 
3968           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
3969           Currently only implemented in XplatUIWin32.
3970
3971 2006-11-27  Chris Toshok  <toshok@ximian.com>
3972
3973         * Hwnd.cs: only add the hwnd to the windows hash in
3974         set_WholeWindow and set_ClientWindow if whole_window/client_window
3975         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
3976
3977 2006-11-27  Mike Kestner  <mkestner@novell.com>
3978
3979         * ComboBox.cs: remove redundant OnDropDown call.  It is called
3980         from the ComboListBox.ShowWindow code. Fixes #79969.
3981
3982 2006-11-27  Chris Toshok  <toshok@ximian.com>
3983
3984         * Hwnd.cs: remove the setters for ExposePending and
3985         NCExposePending - noone uses them.
3986
3987 2006-11-27  Jackson Harper  <jackson@ximian.com>
3988
3989         * TextControl.cs: new param for ReplaceSelection which determines
3990         whether we select the new selection, or set the cursor to the end
3991         of the new selection.
3992         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
3993         pasting, select the new text.
3994         * RichTextBox.cs: Use new param for ReplaceSelection.
3995
3996 2006-11-27  Jackson Harper  <jackson@ximian.com>
3997
3998         * TextBoxBase.cs: Set the selection to the caret after the caret
3999         is moved, otherwise they get out of sync.
4000
4001 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
4002
4003         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
4004         it fixes #80015
4005
4006 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
4007
4008         * ThemeWin32Classic.cs: 
4009         - Fix toolbar drop down arrow position.
4010         - Fix drop down appearance when ToolBar.Appearance is normal,
4011         it fixes #80018.
4012         
4013 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
4014
4015         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
4016         * Control.cs: Same.
4017         * UpDownBase.cs: Same.
4018         * ButtonBase.cs: Same.
4019         * ScrollBar.cs: Same.
4020         * TrackBar.cs: Same.
4021         * PictureBox.cs: Same.
4022         * UserControl.cs: Same.
4023         * Label.cs: Same.
4024         * ListControl.cs: Same.
4025         * TextBoxBase.cs: Same.
4026         * ListView.cs: Same.
4027         * RichTextBox.cs: Same.
4028         * TreeView.cs: Same.
4029
4030 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
4031
4032         * PrintDialog.cs:
4033         - Text label for where 
4034         - Text label comment was not shown
4035
4036 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
4037
4038         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
4039
4040 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4041
4042         * InternalWindowManager.cs: 
4043         - Handle WM_PARENTNOTIFY to activate the form
4044         if any child control is clicked.
4045         - The form is only sizable if not minimized.
4046
4047         * MdiWindowManager.cs:
4048         - Save the IconicBounds if the form is moved.
4049         - Rework SetWindowState, now the window bounds 
4050         are stored only if the old window state is Normal.
4051         
4052         * MdiClient.cs:
4053         - In SetWindowStates store the old window state if 
4054         the window is maximized and restore window state if
4055         the window looses focus.
4056         - Don't handle any scrollbar value changes if 
4057         initializing the scroll bars. Fixes #79771.
4058         - Reworked ArrangeIconicWindows. Current algorithm
4059         tests bounds agains all other minimized windows, if
4060         any intersections create new bounds (going left to 
4061         right, bottom to top) and then test again. When 
4062         successful the bounds are saved and never computed
4063         again. Fixes #79774.
4064
4065 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4066
4067         * InternalWindowManager.cs: Added HandleTitleBarUp.
4068
4069 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4070
4071         * NumericUpDown.cs: In .NET 1.1, user entered text is still
4072         hexadecimal in ParseUserEdit.
4073
4074         
4075 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4076
4077         * MdiWindowManager.cs: 
4078         - Handle a click on the form's icon to show the 
4079         system menu (when maximized). Fixes #79775.
4080         - Change the existing click handler for the form's
4081         icon when not maximized to show on MouseUp.
4082         Fixes #79776.
4083
4084         * Form.cs: In OnResize only layout the mdi child's
4085         parent if it actually has a parent. Might not if
4086         the window is closing.
4087
4088
4089 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4090
4091         * MdiClient.cs: Ignore active MDI client for text of parent, if
4092         child has no text set.
4093
4094 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4095
4096         * ToolBar.cs: Fixed ToString to match MS.
4097
4098 2006-11-22  Andreia Gaita  <avidigal@novell.com>
4099
4100         * NumericUpDown: 
4101         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
4102         update inner values on set. Fixes #79966.
4103         - Override OnLostFocus to update value on NET 2. Fixes #79950.
4104         - Fix hexadecimal parsing.
4105         
4106         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
4107         parent. Fixes #79957
4108
4109 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4110
4111         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
4112         the actual size has to be queried, since if height /
4113         width is negative Win32 changes it to 0. 
4114         Fixes #79999 on Windows.
4115         
4116         * XplatUIX11.cs: Set height / width to 0 if negative
4117         in SetWindowPos. Fixes #79999 on Linux.
4118         
4119 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
4120
4121         * ThemeWin32Classic.cs: Fix text redenring when button is
4122         pressed.
4123
4124 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
4125
4126         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
4127         and later navigate by mouse. Fixes #79528.
4128
4129 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
4130
4131         * ToolBar.cs: Set default value for TabStop to false in
4132         constructor, it fixes remaining behavior of bug #79863.
4133
4134 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4135
4136         * MdiWindowManager.cs:
4137         * InternalWindowManager.cs:
4138         - Moved a few methods specific to Mdi from 
4139         InternalWindowManager to MdiWindowManager.
4140         Fixes #79996.
4141         
4142 2006-11-21  Chris Toshok  <toshok@ximian.com>
4143
4144         * XplatUIOSX.cs: stub out InvalidateNC.
4145
4146         * XplatUIWin32.cs: implement InvalidateNC using the call I found
4147         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
4148
4149         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
4150
4151         * XplatUIDriver.cs: add InvalidateNC abstract method.
4152
4153         * XplatUI.cs: add InvalidateNC.
4154
4155 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
4156
4157         * ToolBar.cs: Invalidate complete button area when pressed status 
4158         was changed.
4159         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
4160         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
4161         by 1 when button is pressed.
4162
4163 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
4164
4165         * ToolButton.cs: Invalidate middle of DropDown button when
4166         ToolBar theres DropDownArrows.
4167         * ThemeWin32Classic.cs: Change position of DropDown arrow and
4168         fix DropDown drawing operations.
4169
4170 2006-11-20  Chris Toshok  <toshok@ximian.com>
4171
4172         * NativeWindow.cs: fix the formatting of functions ('{' on the
4173         following line), and enable the thread exception dialog.
4174
4175         * Application.cs: remove the duplicate exception catching from
4176         here.
4177
4178 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
4179
4180         * Toolbar.cs: Triggers button click event when click on icon
4181         of dropdown ToolBarButton. Fixes #79912.
4182         
4183 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4184
4185         * Theme.cs:
4186         * ThemeWin32Classic.cs:
4187         - Added a property WindowBorderFont to enable themeing
4188           of mdi child windows' Text.
4189           
4190 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4191
4192         * InternalWindowManager.cs:
4193         * Form.cs:
4194         * MdiClient.cs:
4195         * MdiWindowManager.cs: 
4196         - If mdi child is maximized, set mdi parent's
4197           text to "Parent - [Child]". Fixes #79770.
4198         - If there is any maximized mdi child windows, only the active 
4199           window (and any new windows) is maximized, the rest are normal.
4200         - On a WindowState change only save mdi child's window bounds 
4201           if the old window state was normal. Fixes #79774.
4202         - The scroll bars are now calculated on hopefully all
4203           necessary events. Fixed #79771 / #79844->6 / #79906.
4204         - MdiClient.SizeScrollBars() now takes into account docked 
4205           controls in the parent when calculating available space.
4206         - InternalWindowManager now always repaints the entire title
4207           area. Fixes #79844->1/4/5.
4208         - Added RequestNCRecalc on mdi child windowstate changes.
4209           Fixes #79772.
4210
4211 2006-11-20  Mike Kestner  <mkestner@novell.com>
4212
4213         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
4214         in the MouseUp handler of the listbox and move the return handling
4215         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
4216
4217 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
4218
4219         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
4220
4221 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
4222
4223         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
4224           working in 1.2.x anymore. So, updated.
4225
4226 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
4227
4228         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
4229         NumberGroupSeparator of current culture instead of assuming en-US.
4230         Fixed bug #79967.
4231
4232 2006-11-17  Mike Kestner  <mkestner@novell.com>
4233
4234         * Control.cs: Add the concept of implicit bounds setting so that
4235         dock/undock round trips preserve explicitly set size/locations.
4236         Fixes #79313.
4237
4238 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
4239
4240         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
4241           can't handle those filters. (Fixes bug #79961)
4242
4243 2006-11-17  Chris Toshok  <toshok@ximian.com>
4244
4245         [ fixes the exit/crashes associated with #79835.  it's clearly
4246         suboptimal though, we need to figure out a better way to solve
4247         this. ]
4248         
4249         * PrintPreviewControl.cs: deal with the new invalid printer
4250         exceptions.
4251
4252         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
4253         and return false (so CommonDialog.ShowDialog doesn't actually show
4254         the form.)
4255
4256         * PrintDialog.cs: enable/disable the Ok button depending on
4257         whether or not the printer is valid.
4258
4259         * CommonDialog.cs (ShowDialog): only actually show the form if
4260         RunDialog returns true.
4261
4262 2006-11-17  Jackson Harper  <jackson@ximian.com>
4263
4264         * TextControl.cs: When soft splitting a line, mark it as a soft
4265         split line. Also carry over the current line break to the next
4266         line.
4267
4268 2006-11-17  Chris Toshok  <toshok@ximian.com>
4269
4270         * XplatUIX11.cs: when scrolling a window with an invalid area, we
4271         only want to shift the part of the invalid area that overlaps the
4272         area we're scrolling.  we also don't want to clear the invalid
4273         area unless the invalid area was entirely contained within the
4274         scrolling area.
4275
4276 2006-11-16  Chris Toshok  <toshok@ximian.com>
4277
4278         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
4279         also make sure to free the memory returned by XGetWindowProperty
4280         in GetText().
4281
4282         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
4283
4284 2006-11-16  Chris Toshok  <toshok@ximian.com>
4285
4286         * XplatUI.cs: add a new super secret way to get at the totally
4287         unsupported X11 backend.
4288
4289 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
4290
4291         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
4292
4293 2006-11-16  Jackson Harper  <jackson@ximian.com>
4294
4295         * TreeView.cs: Allow more explicit setting of top node position
4296         for scrollbars. Slower algo, but more accurate.
4297         - CollapseAll should maintain the current top node.
4298         * TextBoxBase.cs: When positioning the caret, use the line, pos
4299         method, since the x, y method does not grab the correct tag, and
4300         the caret height never gets set correctly. (Maybe I should just do
4301         away with the caret having its own height, and always use the
4302         carets current tag for height).
4303
4304 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
4305
4306         [Fixes 79778, 79923]
4307
4308         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
4309         Parent to the FosterParent instead.
4310
4311 2006-11-16  Jackson Harper  <jackson@ximian.com>
4312
4313         * TreeView.cs: Need to recalc the topnode when we expand or
4314         collapse. The scrolling methods can't handle this on their own,
4315         since they use differences between the last scroll position, and
4316         those difference get completely messed up since we are expanding
4317         nodes.  This problem should probably be fixed in the scrolling
4318         methods, so they can figure out exactly where they are, but this
4319         will slow things down a little.
4320         * ThemeWin32Classic.cs: Special case for groupboxes with empty
4321         strings, makes nunit-gui look a lot nicer.
4322
4323 2006-11-16  Chris Toshok  <toshok@ximian.com>
4324
4325         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
4326         the broken multithreaded event handling we have in here.  File
4327         this entry under "Why we should move to the new X11 backend".
4328
4329         Any thread can make it into UpdateMessageQueue, which gets events
4330         from the X socket - some of which could belong to hwnds being
4331         managed by a different thread.  We can also have multiple threads
4332         in UpdateMessageQueue at the same time, with each one reading from
4333         the X socket.  This leads to many problems, with the following
4334         solutions:
4335
4336         We can't use hwnd.Queue.Enqueue anywhere in here and must use
4337         EnqueueLocked.
4338
4339         The MotionNotify compression we do can't work across threads
4340         (without locking the entire queue, perhaps) since we call
4341         hwnd.Queue.Peek, so we just punt and don't compress motion events
4342         unless the owning thread is the one which got the X event.
4343
4344         ConfigureNotify is another fun one, since it modifies the hwnd's
4345         bounds and then enqueues the event.  We add a lock to Hwnd which
4346         is held when setting configure_pending to true (and enqueuing the
4347         event).
4348
4349         There is a race wrt the wake socket.  we need to make sure that
4350         only 1 thread is waiting on that socket, or else a thread could
4351         sleep waiting for data that never comes.  It's difficult (but not
4352         impossible) to make happen, because it seems to require something
4353         like the following:
4354
4355             1. Thread 1 polls on wake_receive
4356         
4357             2. poll returns saying there's data to be read on
4358                wake_receive.
4359         
4360             3. Thread 2 polls on wake_receive and immediately returns
4361                saying there's data to be read.
4362
4363             4. Thread 2 reads the wakeup byte from wake_receive
4364
4365             5. Thread 1 attempts to read the wakeup byte from
4366                wake_receive.
4367
4368             6. Thread 2 exits (due to a form closing, perhaps).
4369
4370             7. Thread 1 blocks forever.
4371         
4372         Fun, eh?
4373
4374         Fixing the Expose handling isn't done yet, and the races inherent
4375         in that piece of code are responsible for the drawing mistakes you
4376         see when generating expose events in a MT app (like NPlot).  This
4377         one is the likely to be the hardest to bandaid, and it doesn't
4378         appear to cause anything but drawing problems.  The other issues
4379         caused apps to exit or hang.
4380
4381         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
4382         called from a different thread than the one that should be calling
4383         these functions.
4384
4385         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
4386
4387 2006-11-15  Chris Toshok  <toshok@ximian.com>
4388
4389         * Application.cs: null out the context's MainForm when we exit
4390         RunLoop.  Fixes a newly checked in unit test as well as the last
4391         ODE from bug #79933.
4392
4393 2006-11-15  Chris Toshok  <toshok@ximian.com>
4394
4395         * Form.cs (set_Owner): allow a null value so we can clear the
4396         form's owner.
4397         (Dispose): set all our owned_form's Owner properties to null, and
4398         clear the owned_forms collection.
4399         (WM_CLOSE): clean up this a little bit.. still not right though.
4400
4401         * ApplicationContext.cs: OnMainFormClosed should only call
4402         ExitThreadCore if the main form isn't recreating.  Fixes unit
4403         test.
4404
4405 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
4406
4407         [Fixes 78346]
4408
4409         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
4410
4411 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
4412
4413         [Fixes 79433]
4414
4415         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
4416         keep popup window types from stealing focus from the main form
4417         on Windows.
4418
4419         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
4420
4421         * MenuAPI.cs: Set above flag to true.
4422
4423 2006-11-15  Chris Toshok  <toshok@ximian.com>
4424
4425         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
4426         the button being released is not in wParam.
4427
4428 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
4429
4430         * Form.cs: Add the released button to MouseEventArgs.Button
4431         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
4432         on Win32.
4433
4434 2006-11-15  Chris Toshok  <toshok@ximian.com>
4435
4436         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
4437         GetText().  untested because it's unused in our implementation.
4438         Control.Text always caches the text, even if
4439         ControlStyles.CacheText is not set.
4440
4441         fixes bug #79939.
4442
4443 2006-11-15  Chris Toshok  <toshok@ximian.com>
4444
4445         [ fixes #79933 ]
4446         
4447         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
4448         message.  no hiding, no disposing.
4449
4450         in the WM_CLOSE handler, hide the form if it's modal.
4451
4452 2006-11-15  Chris Toshok  <toshok@ximian.com>
4453
4454         * XplatUIX11.cs: use AddExpose instead of sending a message.
4455         fixes textbox border drawing.
4456
4457 2006-11-15  Chris Toshok  <toshok@ximian.com>
4458
4459         * PropertyGridView.cs: keep from crashing on mouse move/down when
4460         the property grid is empty.
4461
4462 2006-11-14  Jackson Harper  <jackson@ximian.com>
4463
4464         * TextControl.cs: Make PageUp and PageDown more like the MS
4465         versions.
4466         * TextBoxBase.cs: When we set the text property position the
4467         cursor at the beginning of the document.
4468
4469 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4470
4471         * Form.cs: if a mdi child's WindowState has changed
4472         before it's creation, it would display wrong control
4473         buttons.
4474         
4475 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
4476
4477         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
4478           (Fixes bug #79927)
4479
4480 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4481
4482         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
4483         the window gets to paint its borders even if the window is
4484         getting smaller.
4485         
4486         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
4487         otherwise the old control buttons would still be painted 
4488         if the window gets bigger.
4489         
4490         * PaintEventArgs.cs: add an internal method so that the clip 
4491         rectangle can be changed.
4492         
4493 2006-11-13  Chris Toshok  <toshok@ximian.com>
4494
4495         [ fixes bug #79745 ]
4496         
4497         * NotifyIcon.cs: lots of cleanup.
4498
4499         * X11Structs.cs: add an enum for XEMBED messages.
4500
4501         * XplatUIX11.cs: reindent one of the giant switch statements, it
4502         was taking up an additional tab stop, and this file is already way
4503         too wide for my laptop's screen.
4504
4505         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
4506         we get it, resize the hwnd to the WMNormalHints max_width/height.
4507
4508 2006-11-13  Jackson Harper  <jackson@ximian.com>
4509
4510         * TextBoxBase.cs: Compute the value changes for the mouse wheel
4511         teh simple way.
4512
4513 2006-11-13  Chris Toshok  <toshok@ximian.com>
4514
4515         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
4516         #79898.  force a reference to the Region to stick around so the
4517         unmanaged object isn't collected (rendering our handle in the MSG
4518         stale).
4519
4520 2006-11-13  Chris Toshok  <toshok@ximian.com>
4521
4522         * XplatUIX11.cs: fix #79917 for window managers which support
4523
4524         using XStoreName on the raw utf8, and we need to convert to
4525         COMPOUND_TEXT if it's non-latin1.
4526
4527 2006-11-13  Chris Toshok  <toshok@ximian.com>
4528
4529         * Form.cs (set_DialogResult): we need to set closing to false if
4530         we're setting our result to None.  fixes bug #79908.
4531
4532 2006-11-13  Jackson Harper  <jackson@ximian.com>
4533
4534         * TextControl.cs: When formatting text, compute the adjusted tag
4535         lengths correctly, using FindTag for the end tag instead of trying
4536         to figure it out outselves.
4537         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
4538         the item, ItemHeight doesn't work, because trees with large
4539         imagelists use those for their height
4540         * TreeView.cs: ActualItemHeight factors in the image height
4541         - compute left edge of checkboxes correctly
4542         - when expanding/collapsing move the bottom down one pixel, so we
4543         aren't moving part of the node
4544
4545 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4546
4547         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
4548         stack in PaintEventStart so that it won't get disposed by the gc
4549         before reaching PaintEventEnd.
4550
4551 2006-11-13  Jackson Harper  <jackson@ximian.com>
4552
4553         * TextBoxBase.cs: Don't select the word if we are on a line with
4554         no text.
4555         - We don't need to position the caret on mouse up, since the mouse
4556         move handler should be doing this
4557         - When double clicking a blank line, the caret is advanced to the
4558         next line.
4559
4560 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
4561
4562         * TreeNodeCollection.cs: Avoid duplicating indexer code.
4563
4564 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
4565
4566         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
4567         Fixes part of bug #79910.
4568
4569 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
4570
4571         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
4572           (bug #79903). Some minor string updates to match ms.
4573
4574 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
4575
4576         * FileDialog.cs: Don't add an extension if the filename
4577           already ends with that extension.
4578
4579 2006-11-10  Jackson Harper  <jackson@ximian.com>
4580
4581         * TreeView.cs: Use the currently highlighted node for the
4582         BeforeSelect event.
4583         * TextBoxBase.cs: There is no need to expand selection on
4584         MouseMove.
4585         - CanUndo means 'is there any undo operations', not 'is undo
4586         allowed on this textcontrol. Fixed ClearUndo unit test.
4587
4588 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
4589
4590         * Button.cs: only perform click when button is Selectable (so as 
4591         not to activate default buttons when they're disabled)
4592         
4593         * Control.cs: Rewrite of the SelectNextControl and related 
4594         methods. HandleClick now selects next control if the current one
4595         is being disabled.
4596         
4597         * Form.cs: OnActivated selects next active control only if Load 
4598         has already occurred. If Load hasn't run, there's no point in 
4599         selecting here, Load might change the state of controls.
4600         
4601         * FocusTest.cs: Tests marked as working again for these fixes
4602
4603 2006-11-10  Chris Toshok  <toshok@ximian.com>
4604
4605         * XplatUIX11.cs: a couple of fixes.
4606
4607         - use XInternAtoms with almost all the atoms we need to register,
4608         instead of many, many calls to XInternAtom.  should help a bit on
4609         startup time, at the expense of making the code look a little
4610         worse.
4611
4612         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
4613         isn't reparented (which seems to be a clue that we're running fon
4614         compiz) and they have an Owner form.  This fixes the tool windows
4615         in paint.net when running under compiz.
4616
4617         - when setting the opacity of a window, support both the case
4618         where the window has been reparented and also when it hasn't been.
4619         Since compiz/beryl doesn't seem to reparent windows, and these are
4620         the only window managers which support translucency, I'm not sure
4621         why we need the hwnd.reparented case at all.. but leave it in.
4622         now we get translucent windows in paint.net under compiz/beryl.
4623
4624 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
4625
4626         * FileDialog.cs: Always return the value for FilterIndex that
4627           was set. Internally convert it to values that make sense.
4628
4629 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
4630         
4631         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
4632
4633 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
4634
4635         * Toolbar.cs: Change default value of DropDownArrows to true, the 
4636         signature still using false to make it compatible with MS but the 
4637         initial value is true. Fixes #79855.
4638
4639 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
4640
4641         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
4642           only available on Linux.
4643
4644 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
4645
4646         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
4647         reduce number of calls to redraw method during toolbar creation.
4648
4649 2006-11-09  Mike Kestner  <mkestner@novell.com>
4650
4651         * ListView.cs : raise SelectedIndexChanged when an item is selected
4652         programmatically via the Item.Selected property.  Gert's nice 
4653         ListViewSelectedIndexChanged test fixture now runs clean.
4654
4655 2006-11-09  Mike Kestner  <mkestner@novell.com>
4656
4657         * ListView.cs : raise SelectedIndexChanged when a selected item is
4658         removed from the item collection using Remove or RemoveAt.
4659
4660 2006-11-09  Mike Kestner  <mkestner@novell.com>
4661
4662         * ListView.cs : raise SelectedIndexChanged once per selected item
4663         for compat with MS.  Fixes #79849+.
4664
4665 2006-11-09  Chris Toshok  <toshok@ximian.com>
4666
4667         * TabControl.cs: initialize row_count to 0, and set it to 1 when
4668         we need to (if we have any tab pages).  Fixes unit test.
4669
4670 2006-11-09  Chris Toshok  <toshok@ximian.com>
4671
4672         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
4673         width is 0, not 3.  Fixes a unit test.
4674
4675 2006-11-09  Mike Kestner  <mkestner@novell.com>
4676
4677         * ListView.cs : use Implicit scrollbars so that focus isn't 
4678         stolen from the listview when they are clicked. Fixes #79850.
4679
4680 2006-11-09  Chris Toshok  <toshok@ximian.com>
4681
4682         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
4683         have a root item.  Fixes #79879.
4684
4685 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
4686
4687         * FileDialog.cs:
4688           - Fix ToString ()
4689           - An ArgumentException is now thrown if a wrong filter
4690             is applied (matches ms). The previous filter doesn't change
4691             anymore if an exception is thrown.
4692           - Changing the FileName property also affects FileNames
4693         * ColorDialog.cs: The length of the CustomColors array is always
4694           16. It doesn't matter if we use a smaller array or null to update
4695           or change the custom colors property.
4696         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
4697           for RootFolder if we get a undefined value.
4698
4699 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4700
4701         * StatusBarPanel.cs: 
4702         - Width is set to MinWidth if Width is smaller than
4703         MinWidth. Fixes #79842.
4704         - MinWidth now always overrides Width (MSDN says MinWidth
4705         is set to Width when AutoSize = None, but they do not 
4706         behave like that).
4707         - Style has now the the correct default value.
4708         
4709 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4710  
4711         * TrackBar.cs: 
4712         - The control is completely invalidated on 
4713         Got/LostFocus to draw the focus rectangle correctly.
4714         - When AutoSize then height is always 45 (width for 
4715         vertical controls).
4716         
4717         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
4718         on the mouse when moved and it doesn't move when grabbed
4719         until the mouse moves as well. Also fixed some wrong 
4720         calculations when clicking on the thumb (control thought
4721         click was outside of thumb and didn't grab it).
4722         Fixes some of the issues in #79718.
4723
4724 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
4725
4726         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
4727
4728 2006-11-08  Chris Toshok  <toshok@ximian.com>
4729
4730         * PropertyGridView.cs: only call ToggleValue if the item is not
4731         readonly.
4732
4733 2006-11-08  Jackson Harper  <jackson@ximian.com>
4734
4735         * TextBoxBase.cs: The RichTextBox and textbox have very different
4736         word selection methods.  Implement the textbox's simple word
4737         selection here, and let the RichTextBox override and provide it's
4738         own.
4739         - Don't do extra selection on mouseup
4740         * RichTextBox.cs: Use the documents word selection algorithm, I
4741         think ideally, this function will be pulled into the
4742         RichTextBox.cs code someday.
4743
4744 2006-11-08  Chris Toshok  <toshok@ximian.com>
4745
4746         * RootGridEntry.cs: new class to represent GridItemType.Root.
4747
4748         * CategoryGridEntry.cs: reformat, and add boilerplate.
4749         
4750         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
4751         returns the UI parent anyway, and we need special handling to
4752         implement the GetTarget method in the face of it.  Also, implement
4753         Select().
4754
4755         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
4756         a root grid item, and use that instead of PropertyGrid.grid_items.
4757         Also, make use of TypeConverters (and add limitted support for
4758         ICustomTypeDescriptors) when initially populating the grid.
4759         Arrays now show up more or less properly.
4760
4761 2006-11-08  Chris Toshok  <toshok@ximian.com>
4762
4763         * Application.cs: set the modal dialog to non modal after we close
4764         it.  Fixes bug #79866.
4765
4766 2006-11-08  Jackson Harper  <jackson@ximian.com>
4767
4768         * TextControl.cs: When combining lines carry over the line end
4769         style from the end line.
4770         - Invalidate the selected area when setting it, if it is visible.
4771         * TextBoxBase.cs: Only rich text box can do full line selects.
4772         - Make sure to set the cursor position when there is a click,
4773         otherwise two clicks in separate areas could cause a large chunk
4774         to be selected.
4775
4776 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4777
4778         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
4779         Fixes #79863.
4780
4781 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4782
4783         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
4784         time. Remove tooltips when ToolButton click events.  Fixes #79856.
4785
4786 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4787
4788         * MenuAPI.cs: Ignore right click for menu actions and fixes
4789         menu border when clicked.  Fixes #79846.
4790
4791 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4792
4793         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
4794         MouseState after create wParam for message, this fixes mouse button 
4795         equal none in mouse up events.
4796         
4797 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
4798
4799         * Control.cs : Focus() now calls Select to set the Container's
4800         Active Control and to give it focus. To avoid infinite recursion
4801         (because ActiveControl also calls Focus at one point), a check 
4802         is made in Focus with the help of a new internal variable
4803         is_focusing.
4804
4805 2006-11-07  Mike Kestner  <mkestner@novell.com>
4806
4807         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
4808         if there's a selection.  Fixes #79849.
4809
4810 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
4811
4812         * PropertyGrid.cs: Avoid fixed height of help description label.
4813         Fixes part of bug #79829.
4814
4815 2006-11-07  Chris Toshok  <toshok@ximian.com>
4816
4817         * XplatUIX11.cs: fix #79790 again, by using the
4818         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
4819
4820 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4821
4822         * ToolBar.cs: Fix left click checking.
4823
4824 2006-11-07  Chris Toshok  <toshok@ximian.com>
4825
4826         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
4827
4828 2006-11-07  Chris Toshok  <toshok@ximian.com>
4829
4830         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
4831         PropertyManager unit tests.
4832
4833         * PropertyManager.cs: make property_name internal.
4834
4835 2006-11-07  Chris Toshok  <toshok@ximian.com>
4836
4837         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
4838         pass a unit test.  Also, don't set image_index to anything in
4839         response to setting the ImageList property.
4840
4841 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4842
4843         * ToolBar.cs: Ignore click events when mouse button is not a
4844         left button, only accepts other button for dropdown menus.  
4845         Fixes #79854.
4846
4847 2006-11-07  Chris Toshok  <toshok@ximian.com>
4848
4849         * DataGrid.cs: make the back and parent row buttons a little less
4850         ugly.
4851
4852 2006-11-07  Jackson Harper  <jackson@ximian.com>
4853
4854         * TextBoxBase.cs: When converting to Text don't put line breaks in
4855         for soft line breaks.
4856         * TextControl.cs: There is an initial "fake" line in the document,
4857         this is now a soft break line, so that an extra line feed doesn't
4858         get added to the end of documents.
4859
4860 2006-11-07  Chris Toshok  <toshok@ximian.com>
4861
4862         [ fix bug #79778 ]
4863         
4864         * CurrencyManager.cs: if the list is readonly, don't bother
4865         checking if IBindingList.AllowNew is true.
4866
4867         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
4868         for non-DataRowView datasources..  or rather, make it not crash.
4869         (DataGridPaintRelationRow): make sure we limit the row painting to
4870         the area not covered by the row header, and make our cell width at
4871         least large enough to cover the relation area.  This allows grids
4872         that have relations but no rows to render correctly.
4873         (DataGridPaintRowContents): same type of changes here.
4874         (SetDataSource): move back to always calling
4875         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
4876         navigating back through relations.
4877         (HitTest): handle the case where we have no cells but have
4878         relations.  Right now we generate a hit in cell 0 of whatever the
4879         row is, not sure if this is strictly correct, but it works for our
4880         purposes.
4881         
4882         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
4883         bother doing anything.
4884
4885 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
4886
4887         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
4888         early version of StatusStrip.  Not responsible for eaten
4889         application or firstborn children.
4890
4891 2006-11-06  Chris Toshok  <toshok@ximian.com>
4892
4893         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
4894         call GetTabRect with a -1 index.  Fixes #79847.
4895
4896 2006-11-06  Jackson Harper  <jackson@ximian.com>
4897
4898         * TreeNodeCollection.cs: Update scrollbars after clearing.
4899
4900 2006-11-06  Chris Toshok  <toshok@ximian.com>
4901
4902         * NumericUpDown.cs: fix the ToString method for some unit test
4903         love.
4904
4905 2006-11-06  Chris Toshok  <toshok@ximian.com>
4906
4907         * PropertyGrid.cs:
4908         - set the initial SelectedGridItem if we can.
4909
4910         - Exclude non-mergable properties only if we're merging > 1
4911         object.  Merging 1 object isn't really merging, obviously.
4912
4913         - Handle PropertySort.NoSort just like Alphabetical, which is
4914         wrong of course, but at least gets things on the screen.
4915         
4916         * PropertyGridView.cs:
4917         - Add method "FindFirstItem" which finds the first property grid
4918         item, so we can select it by default.
4919
4920         - make use of GridEntry.CanResetValue.
4921
4922         - Don't call RedrawBelowItemOnExpansion here anymore, the
4923         individual GridEntry's will do that.
4924
4925         - Remove the ITypeDescriptorContextImpl internal class.
4926         
4927         * GridEntry.cs:
4928         - this class needs to implement ITypeDescriptorContext, as it's
4929         what MS's PropertyDescriptorGridEntry does, which means we can
4930         remove the ITypeDescriptorContextImpl internal class from
4931         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
4932
4933         - keep a reference to our PropertyGridView, and move the call to
4934         RedrawBelowItemOnExpansion here from PGV.  This means
4935         programmaticly setting Expanded actually does something visible.
4936
4937         - add a CanResetValue() function which takes into account our
4938         possibly multiple "selected_objects" in the merged case.  Shifting
4939         PropertyGridView to use this method fixes another unreported
4940         crasher found running the test for #79829.
4941
4942         - when Top or Bounds is updated, make sure the PropertyGridTextBox
4943         is updated to reflect this.
4944
4945         * CategoryGridEntry.cs: the ctor takes the PGV now.
4946         
4947 2006-11-06  Jackson Harper  <jackson@ximian.com>
4948
4949         * TextControl.cs: These are 1 based.
4950         * TextBoxBase.cs: When setting the selected text, don't change the
4951         selected text tags, this is done by ReplaceText, just position the
4952         cursor at the end of the new text.
4953
4954 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
4955
4956         * ListView.cs: Allow label edit only when, when LabelEdit is
4957           set to true.
4958
4959 2006-11-06  Jackson Harper  <jackson@ximian.com>
4960
4961         * TextControl.cs: If a suitable wrapping position isn't found,
4962         just wrap right in the middle of a word.
4963
4964 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
4965
4966         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
4967           bug #79820.
4968
4969 2006-11-06  Jackson Harper  <jackson@ximian.com>
4970
4971         * TreeView.cs: Can't use the VisibleCount property when setting
4972         scrollbar heights, because this doesn't take into account whether
4973         or not the horz scrollbar just came visible.
4974
4975 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
4976
4977         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
4978         activated.  Fixes #79369, #79832.
4979
4980 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
4981
4982         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
4983           had to remove support for links that point to a directory. FileInfo
4984           returns no usefull information (means, the directory they point to)
4985           for such links. Replaced some empty string ("") with String.Empty.
4986
4987 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
4988
4989         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
4990         NullReferenceException when attempting to remove node that is not in
4991         collection. Throw NullReferenceException when null is passed to 
4992         Remove. Allow first element of the collection to be removed. Fixes
4993         bug #79831.  In GetEnumerator ().Current return null if positioned 
4994         before the first element of the collection. In GetEnumerator ().Reset,
4995         position before first element of the collection.
4996
4997 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
4998
4999         * PropertyGrid.cs: To match MS, remove default title and description
5000         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
5001         buttons.
5002
5003 2006-11-04  Chris Toshok  <toshok@ximian.com>
5004
5005         * Theme.cs: add a Clamp method, just for kicks.
5006
5007         * ThemeWin32Classic.cs: clamp all color components to [0..255].
5008
5009 2006-11-04  Chris Toshok  <toshok@ximian.com>
5010
5011         * Form.cs: if the form isn't visible, Close() does nothing.
5012
5013 2006-11-03  Chris Toshok  <toshok@ximian.com>
5014
5015         * Form.cs (Close): if the form is modal, don't Dispose of it, only
5016         Hide it.
5017         (WndProc): don't Dispose after handling the WM_CLOSE message.
5018
5019         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
5020         them as such, instead of using casts from Control to Form.  Also,
5021         don't Dispose of the modal dialog when we fall out of the loop -
5022         Close() it instead.
5023
5024         fixes bug #79813.
5025
5026 2006-11-03  Chris Toshok  <toshok@ximian.com>
5027
5028         * Control.cs (Dispose): only go through the dispose thing if we're
5029         @disposing, and we haven't already been disposed.  Fixes bug
5030         #79814.
5031
5032         * Form.cs: no reason to call "base.Dispose()" here instead of
5033         "Dispose()".
5034
5035 2006-11-03  Mike Kestner  <mkestner@novell.com>
5036
5037         * ComboBox.cs : use ToString instead of casts in AddItem for
5038         sorting functionality.  Fixes #79812.
5039
5040 2006-11-03  Chris Toshok  <toshok@ximian.com>
5041
5042         * Application.cs: pave the way for actually using the thread
5043         exception dialog.  it's ifdefed out at the moment.
5044
5045 2006-11-03  Chris Toshok  <toshok@ximian.com>
5046
5047         * ThreadExceptionDialog.cs: until we get a better layout, actually
5048         hide the details textbox and label when we shouldn't see them.
5049
5050 2006-11-03  Jackson Harper  <jackson@ximian.com>
5051
5052         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
5053         multiline textboxes anymore.  This method also determines the
5054         width/height of a textboxes canvas area.
5055         - Sorta a revert of the last patch.  For multiline just position
5056         the controls, then bail.  This way the scrollbar width won't be
5057         altered.
5058
5059 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
5060
5061         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
5062         it dont need.  Fixes #79537.
5063
5064 2006-11-02  Jackson Harper  <jackson@ximian.com>
5065
5066         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
5067         send the status after firing the DndOver event.
5068
5069 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5070
5071         * TrackBar.cs: Now orientation only switches height / width if
5072         the control's handle is created (Win32 does it like this). Also 
5073         fixed a typo in ToString() for a test to pass, changed the 
5074         exception thrown in set_LargeChange and set_SmallChange to 
5075         match Win32 behaviour, and added TrackBar tests to the unit 
5076         tests.
5077
5078 2006-11-02  Chris Toshok  <toshok@ximian.com>
5079
5080         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
5081         not _NET_WM_STATE_NO_TASKBAR.
5082
5083 2006-11-02  Jackson Harper  <jackson@ximian.com>
5084
5085         * TextControl.cs: Increment count by one, since in the update view
5086         count - 1 is used.
5087
5088 2006-11-02  Jackson Harper  <jackson@ximian.com>
5089
5090         * TextBoxBase.cs: Use client rectangle not bounds for checking if
5091         the mouse is in the client rectangle (duh).
5092
5093 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5094         
5095         * TrackBar.cs: Fixed trackbar jumping around when clicking
5096         on it - the trackbar was not detecting correctly at which
5097         side of the thumb the click was done. (fixes #79718)
5098
5099 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
5100
5101         * ListBox.cs: scroll visible area when change SelectedIndex to
5102         a non visible area.  Fixes #79481.
5103
5104 2006-11-01  Jackson Harper  <jackson@ximian.com>
5105
5106         * TextControl.cs: When replacing the selection move the selection
5107         start/end/anchor to the end of the new text.
5108
5109 2006-11-01  Jackson Harper  <jackson@ximian.com>
5110
5111         * XplatUIWin32.cs: When setting the parent change the controls
5112         visibility to it's visibility flag, not to it's old parents
5113         visibility (.Visible walks the parent chain).
5114
5115 2006-11-01  Chris Toshok  <toshok@ximian.com>
5116
5117         * XplatUIX11.cs: revert the #79790 fix, as the simple.
5118         XSetTransientForHint fix breaks paint .net's tool windows.  more
5119         work needed for that one.
5120
5121 2006-11-01  Chris Toshok  <toshok@ximian.com>
5122
5123         * ScrollBar.cs: throw ArgumentException instead of Exception in
5124         LargeChange/SmallChange setters.  fixes unit tests.
5125
5126 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
5127
5128         * ContainerControl.cs: reverted rev.67183 (which was itself
5129         a reversion of rev.66853... eh).
5130         
5131         * Control.cs: Fixes Reflector hang by changing Focus() call
5132         to what it was before rev.66643 (calling Select() here sets 
5133         ActiveControl, which in some situations calls back Focus and 
5134         eventually does a stack overflow). Temp fix.    
5135         Changes to GetNextControl() to not look for children to select when
5136         parent cannot be selectable (so it looks for siblings instead)  
5137         
5138 2006-10-31  Mike Kestner  <mkestner@novell.com>
5139
5140         * CheckedListBox.cs : off by one error in returned index from
5141         ObjectCollection.Add.  Fixes #79758.
5142
5143 2006-10-31  Chris Toshok  <toshok@ximian.com>
5144
5145         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
5146         calls for the textbox/spinner, to keep from recursing to the point
5147         where we crash.  Fixes #79760.
5148
5149 2006-10-31  Chris Toshok  <toshok@ximian.com>
5150
5151         * ListControl.cs (set_SelectedValue): don't throw exceptions on
5152         null/"" value, just return.  matches ms's behavior and fixes some
5153         failing tests.
5154
5155 2006-10-31  Chris Toshok  <toshok@ximian.com>
5156
5157         * Control.cs (set_Capture): make a logic a little easier to
5158         follow.
5159
5160         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
5161         if it's being destroyed.  A necessary fix surely, but a bandaid
5162         also, to fix the stuck capture problem in bug #78413.
5163
5164 2006-10-31  Chris Toshok  <toshok@ximian.com>
5165
5166         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
5167         convention of clearing hwnd.ClientRect when we set the
5168         width/height (so it'll be recalculated by Hwnd).
5169
5170 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
5171
5172         * ContainerControl.cs: reversed Contains check from
5173         ActiveControl due to hanging problems. This fix
5174         partly regresses #79667 (button does not have
5175         initial focus), so this might be a symptom for 
5176         a larger parenting problem (set_ActiveControl
5177         is being called but the child control does
5178         not have the parent set yet?)   
5179         
5180 2006-10-31  Mike Kestner  <mkestner@novell.com>
5181
5182         * MenuAPI.cs : fix keynav when menu is click activated.
5183
5184 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
5185
5186         * ToolStrip*: Version 0.2.
5187
5188         * MenuStrip.cs: Version 0.1.
5189
5190         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
5191
5192 2006-10-30  Chris Toshok  <toshok@ximian.com>
5193
5194         [ fixes the oversized notify icon issue in bug #79745 ]
5195         
5196         * NotifyIcon.cs: scale the icon down to the size we're given by
5197         the XplatUI layer (this would be faster if we did it once instead
5198         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
5199         since it's never invoked.
5200
5201         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
5202         pixels high by default, so let's hardcode our systray icon to that
5203         size.  The SYSTEM_TRAY protocol should really have a way for
5204         client apps to query for the correct icon size.. but oh well.  A
5205         couple of patches to deal with the screwy client_window ==
5206         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
5207         instance, and also make sure we don't XSelectInput twice).
5208
5209 2006-10-30  Chris Toshok  <toshok@ximian.com>
5210
5211         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
5212         recreating forms.  Control recreation is the bane of my existence.
5213         Fix it in a way that keeps everyone happy.
5214
5215 2006-10-30  Chris Toshok  <toshok@ximian.com>
5216
5217         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
5218         just non-CHILD ones.  otherwise sometimes scrollbars end up with
5219         client_windows not being resized to the proper size (ReportBuilder
5220         shows this extremely well).
5221
5222 2006-10-30  Chris Toshok  <toshok@ximian.com>
5223
5224         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
5225         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
5226         showing up in the gnome taskbar.  Fixes bug #79790.
5227
5228 2006-10-30  Chris Toshok  <toshok@ximian.com>
5229
5230         * ApplicationContext.cs: guard against a NRE.
5231
5232         * Application.cs: null out the old MainForm for the context, so we
5233         don't try to use it again once it's disposed.  Fixes bug #79783.
5234
5235 2006-10-30  Chris Toshok  <toshok@ximian.com>
5236
5237         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
5238         BindingContext, set the data source directly, otherwise do the
5239         lazy approach - the actual ListManager will be created when we get
5240         a BindingContext. Fixes bug #79700.
5241
5242 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
5243
5244         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
5245           XplatUIX11.cs: Remove old 2 parameter SetVisible.
5246
5247         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
5248
5249 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
5250
5251         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
5252         of SetVisible that allows a window to be shown, but not activated.
5253         This is needed on Windows for MenuStrip, and can probably be used
5254         with MainMenu and ComboBox to fix the focus stealing issues on
5255         Windows.
5256
5257         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
5258
5259 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
5260
5261         * PictureBox.cs: Fix the output of the ToString method.
5262
5263 2006-10-29  Chris Toshok  <toshok@ximian.com>
5264
5265         * Control.cs (get_TopLevelControl): fix bug #79781.
5266
5267 2006-10-29  Chris Toshok  <toshok@ximian.com>
5268
5269         * ListControl.cs (set_DataSource): throw Exception here, not
5270         ArgumentException, to match MS behavior.
5271
5272 2006-10-29  Chris Toshok  <toshok@ximian.com>
5273
5274         * Form.cs: remove the try-catch's around calls to GetWindowState.
5275         We can just check the return value.
5276
5277         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
5278         Instead return -1.
5279
5280         * XplatUI.cs: Add note about additional return value for
5281         GetWindowState.
5282
5283 2006-10-29  Chris Toshok  <toshok@ximian.com>
5284
5285         * Control.cs (CreateHandle): when we create our handle, we also
5286         create the handles of our child controls.  Fixes one of the
5287         Control unit tests (CH11).
5288
5289 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
5290
5291         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
5292
5293 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
5294
5295         * ThemeClearlooks.cs: A little speedup.
5296
5297 2006-10-27  Chris Toshok  <toshok@ximian.com>
5298
5299         * Control.cs: implement Control.FromChildHandle in a way that
5300         matches the docs (and fixes the failed test.)
5301
5302 2006-10-27  Chris Toshok  <toshok@ximian.com>
5303
5304         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
5305         comments).
5306
5307         * DataGrid.cs: implement ResetForeColor such that the tests
5308         succeed.
5309         
5310 2006-10-27  Chris Toshok  <toshok@ximian.com>
5311
5312         * ToolBarButton.cs: setting text/tooltiptext to null results in it
5313         being set to "".  Fixes bug #79759.
5314
5315 2006-10-27  Jackson Harper  <jackson@ximian.com>
5316
5317         * TextControl.cs: We need to clear the entire selection area when
5318         setting the start, otherwise multiline selections are still
5319         visible.
5320
5321 2006-10-26  Chris Toshok  <toshok@ximian.com>
5322
5323         * PropertyGridView.cs: 
5324
5325         - ifdef all the code specific to the double
5326         buffer case, and provide some alternatives in the non-doublebuffer
5327         code, which makes heavy use of XplatUI.ScrollWindow to move things
5328         around without having to invalidate (and cause flicker).  There
5329         are still some drawing problems in the non-doublebuffered case, so
5330         DOUBLEBUFFER is defined by default.
5331
5332         - Fix the way dropdowns are handled.  now we explicitly watch for
5333         the events which might cause the dropdown to close, and break out
5334         of the nested event loop there.  This gets rid of all Capture
5335         code, at the expense of the Msg special casing.  Seems to work,
5336         though, and fixes bug #79743.
5337
5338 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
5339         * Control.cs: SetIsRecreating now recreates implicitly added
5340         child controls as well. Finally fixes #79629. The flag passed to 
5341         SetIsRecreating has also been removed since it wasn't used.
5342         
5343 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5344
5345         * PageSetupDialog.cs: Clean some code, fix some bits, 
5346         add some checks, and add a printer sub-dialog.
5347
5348 2006-10-26  Chris Toshok  <toshok@ximian.com>
5349
5350         * PropertyGrid.cs: make set_SelectedObject call
5351         set_SelectedObjects, and move the duplicate logic to the
5352         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
5353
5354         * PropertyGridView.cs: hide the textbox when we get a
5355         SelectedObjectsChanged event.
5356
5357         Fixes bug #79748.
5358
5359 2006-10-26  Chris Toshok  <toshok@ximian.com>
5360
5361         * PropertyGridView.cs: deal with the type converter not supporting
5362         GetStandardValues() or GetStandardValues() returning null, which
5363         is does in the default case.  Fixes #79742.
5364
5365 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
5366
5367         * CheckedListBox.cs: nunit no longer crashes when selecting 
5368         Project/Edit menu option
5369         
5370 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
5371
5372         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
5373         is no menu selected. fixes #79739
5374
5375 2006-10-25  Chris Toshok  <toshok@ximian.com>
5376
5377         * PropertyGridView.cs: factor out the splitter invalidation code
5378         into the SplitterPercent setter, and for kicks implement the
5379         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
5380         amount in either direction.
5381
5382 2006-10-25  Chris Toshok  <toshok@ximian.com>
5383
5384         * PropertyGridView.cs: do some cleanup of the brush used to draw
5385         text - read only fields should be grayed out.  not sure how to do
5386         this with the textbox, though.  but the textbox's should also be
5387         readonly now at least.  Also, hide/show the textbox when resizing
5388         the control.
5389         
5390         * CursorConverter.cs: use System.Reflection when getting the
5391         properties of Cursors, as TypeDescriptor.GetProperties isn't
5392         returning static properties.
5393
5394 2006-10-25  Chris Toshok  <toshok@ximian.com>
5395
5396         * PropertyGridView.cs: factor out the up/down handling, and reuse
5397         it for page up/down.  also add End/Home support.
5398
5399 2006-10-25  Chris Toshok  <toshok@ximian.com>
5400
5401         * PropertyGridView.cs:
5402
5403         - ensure the selected grid item is visible in the scrolled area,
5404         fixes bug #79572.
5405
5406         - fix Keys.Down handling when you're on the last item in the
5407         propertygrid.
5408
5409 2006-10-25  Mike Kestner  <mkestner@novell.com>
5410
5411         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
5412         clicks too.  Fixes #79725.
5413
5414 2006-10-24  Chris Toshok  <toshok@ximian.com>
5415
5416         * PropertyGrid.cs: use property.Converter instead of
5417         TypeDescriptor.GetConverter(property.PropertyType), so we catch
5418         TypeConverters declared on the property as well as on the
5419         PropertyType.  Fixes bug #79678.
5420
5421 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
5422
5423         * MimeIcon.cs, Mime.cs:
5424           Fallback to the default platform handler if no shared mime info
5425           stuff exists (fixes #79693).
5426
5427 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
5428         * ContainerControl.cs: Incorrect contains check in ActiveControl 
5429         from previous fix (duh).
5430
5431 2006-10-20  Chris Toshok  <toshok@ximian.com>
5432
5433         * PropertyGridView.cs: the dropdown should be MIN(number of items
5434         in list, 15).  Fixes #79551.
5435
5436 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
5437         Fixes #79384, #79394, #79652, #79667
5438         * Application.cs: 
5439         
5440         - Modal windows are now destroyed in the proper order for windows
5441         
5442         * ContainerControl.cs:
5443         
5444         - ActiveControl setter has more conditions on when to return:
5445                 - if we're reselecting the active control, but it actually
5446                 didn't have focus (window hidden or some such), it runs
5447                 - if the active control being selected doesn't actually 
5448                 exist in the container, it returns
5449         
5450         * Form.cs
5451         
5452         - The ShowDialog now gets the current form as the owner when
5453         invoking without parameters, and correctly activates the owner 
5454         when returning
5455         
5456         * MessageBox.cs
5457         
5458         - MessageBox now catches the Escape key to exit
5459
5460 2006-10-20  Chris Toshok  <toshok@ximian.com>
5461
5462         * PropertyGridView.cs: fix a number of issues (bug #78565, and
5463         most of bug #79676):
5464
5465         - you can navigate around the property grid with the arrow keys.
5466
5467         - the dropdown is sized properly when the pg has a vertical
5468         scrollbar.
5469
5470         - fix the indentation for subentries, and properly select the
5471         entire label rect.
5472
5473         - fix the gray bar's drawing (only draw it to the last element,
5474         not for the height of the control.  Also make sure we draw that
5475         last horizontal grid line.
5476
5477         - use the same mechanism the datagrid uses wrt the editing textbox
5478         when scrolling/resizing/etc.  Namely, we hide it first, do the
5479         operation, then show it again (if it's still visible).
5480         
5481         - aggressively remove a lot of unnecessary refreshes (and also
5482         calls to Invalidate(). call more limited variants, and only redraw
5483         what we need.)
5484         
5485         * PropertyGrid.cs:
5486
5487         - when we're populating the merged collection, fill in the UI
5488         parent with either the passed in item, or the category item we
5489         create.
5490
5491         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
5492
5493         * GridItem.cs: drop some fully qualified names.
5494         
5495         * GridEntry.cs: add a "UIParent", which is basically the parent
5496         treenode.
5497
5498         * GridItemCollection.cs: add an IndexOf method.
5499
5500 2006-10-20  Mike Kestner  <mkestner@novell.com>
5501
5502         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
5503         a working win32 NC invalidation mechanism, we can't invalidate
5504         menus.  [Fixes #79705]
5505
5506 2006-10-20  Mike Kestner  <mkestner@novell.com>
5507
5508         * ListBox.cs : don't update the VScrollbar if the list is empty,
5509         just hide it.  [Fixes #79692]
5510
5511 2006-10-20  Jackson Harper  <jackson@ximian.com>
5512
5513         * RichTextBox.cs: Handle some special chars better, and don't skip
5514         the entire group when we encounter a special char that we don't
5515         handle correctly.
5516
5517 2006-10-18  Chris Toshok  <toshok@ximian.com>
5518
5519         * PropertyGridView.cs: address a number of issues from bug #79676,
5520         mostly of the cosmetic variety.
5521
5522         - The highlight rectangle for indented items not extends all the
5523         way to the left.
5524
5525         - Indented items aren't indented so much.
5526
5527         - the dropdown is properly sized width-wise if the pg has a
5528         vertical scrollbar.
5529
5530 2006-10-18  Chris Toshok  <toshok@ximian.com>
5531
5532         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
5533         systray stuff is rather convoluted to begin with.
5534
5535         systray icons are a single window for some reason (that I haven't
5536         figured out yet), and for them, client_window == whole_window.
5537         Given the way the tests are structured elsewhere to determine
5538         which paints are pending (client vs. nc), that situation will
5539         always yield PAINT, not NCPAINT.  So, if we have a pending
5540         nc_expose and no pending expose, remove the hwnd from the paint
5541         queue, and also set nc_expose_pending to false, to keep us from
5542         blocking further expose's adding the hwnd to the paint queue.
5543
5544         phew.  like i said, a rather convoluted change.  Fixes the
5545         notifyicon repaint issues in bug #79645.
5546
5547 2006-10-18  Chris Toshok  <toshok@ximian.com>
5548
5549         * Form.cs: when getting the backcolor of the form, don't get
5550         base.BackColor, as this allows parents to influence the background
5551         color.  This breaks mdi forms.  Instead, if the background_color
5552         is empty, return the default.
5553
5554 2006-10-18  Chris Toshok  <toshok@ximian.com>
5555
5556         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
5557         to being private instead of internal static.
5558
5559         * Control.cs: remove all the stupid ParentWaitingOnRecreation
5560         crap, it wasn't working for more deeply nested controls anyway,
5561         and we already have the is_recreating flag - use that instead.
5562         Before calling DestroyHandle in RecreateHandle, recurse through
5563         the control tree setting it to true.  this returns the recreate
5564         code to much of its original simplicity, while now guaranteeing we
5565         actually recreate everything we're supposed to.  This change gets
5566         fyireporting actually showing mdi children.
5567
5568 2006-10-17  Chris Toshok  <toshok@ximian.com>
5569
5570         * Form.cs: remove some debug spew, and collapse some duplicate
5571         code at the end of SetClientSizeCore.
5572
5573         * XplatUIX11.cs: 
5574         - add some more debug spew here too wrt Destroy handling.
5575         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
5576         in Control's handling of WM_DESTROY.
5577         - Remove the handling of zombie window DestroyNotifies from the
5578         event loop - we don't need it.  Now the only DestroyNotifies we
5579         actually handle are ones generated by X.
5580         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
5581         match gtk's (functioning) handling of this. This keep metacity
5582         from leaving droppings in the form of wm borders with no window
5583         contents all over the place.
5584
5585         * Control.cs:
5586         - add a bunch of debug spew wrt control recreation.
5587         - fix a bug where we weren't tracking Visible properly on
5588         recreated hwnds.
5589         - fixed the WM_PAINT double buffer handling to support re-entrant
5590         calls (yes, i know it's gross, but it's happening to us).
5591
5592 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5593         * ThemeWin32Classic.cs: changed drawing of selected days
5594         to make them look better.
5595
5596 2006-10-16  Chris Toshok  <toshok@ximian.com>
5597
5598         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
5599         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
5600
5601         * XplatUIX11.cs: move away from using hwnd.client_dc and
5602         hwnd.non_client_dc and on to a stack of dc's (and in window's
5603         case, PAINTSTRUCT's), so we can deal with nested Paint calls
5604         without puking or not disposing of Graphics objects.
5605
5606         * XplatUIOSX.cs: same.
5607
5608         * XplatUIWin32.cs: same.
5609
5610 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
5611
5612         * FileDialog.cs: Don't call on_directory_changed inside
5613           OnSelectedIndexChanged (it changes the SelectedIndex too).
5614           Instead move it to OnSelectionChangeCommitted.
5615
5616 2006-10-13  Chris Toshok  <toshok@ximian.com>
5617
5618         * XplatUIX11.cs: more Destroy work.  the current code does the
5619         following things, in order:
5620
5621         1. Enumerates all handles of all controls at or below the one
5622         being destroyed, in pre-order.  As it is doing this, it marks the
5623         handles as zombie and clears all references to them.
5624         
5625         2. calls XDestroyWindow on the window passed in.
5626
5627         3. SendMessage's WM_DESTROY to all he handles in the accumulated
5628         list.
5629
5630 2006-10-13  Chris Toshok  <toshok@ximian.com>
5631
5632         * XplatUIX11.cs: set hwnd.zombie to true before calling
5633         SendMessage (WM_DESTROY).  this keeps us from marking the new
5634         window a zombie, and also keeps us from calling sendmessage at
5635         all.
5636
5637 2006-10-13  Jackson Harper  <jackson@ximian.com>
5638
5639         * TextControl.cs: Do not show the caret and selection at the same
5640         time.  Reduces ugliness by 35%.
5641
5642 2006-10-13  Chris Toshok  <toshok@ximian.com>
5643
5644         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
5645         zombie after we do the recursive call, so we actually do call
5646         SendMessage on the children controls.
5647         (GetMessage): if we find a pending paint event for a zombie hwnd,
5648         remove the hwnd from the paint queue, or else it will always be
5649         there (and we'll effectively loop infinitely)
5650
5651 2006-10-13  Mike Kestner  <mkestner@novell.com>
5652
5653         * MenuItem.cs : add Selected format under keynav too.
5654         Fixes #79528.
5655
5656 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
5657
5658         * PropertyGrid.cs: Fixed some NRE's and small difference between our
5659         implementation and that of MS.
5660
5661 2006-10-13  Chris Toshok  <toshok@ximian.com>
5662
5663         * Control.cs (OnInvalidated) only futz with the invalid_region if
5664         the control is double buffered.  this fixes the apparent hang in
5665         the ListView unit tests.  Someone needs to make the
5666         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
5667
5668 2006-10-13  Chris Toshok  <toshok@ximian.com>
5669
5670         * PropertyGridView.cs:
5671
5672         - do a little refactoring so that only one place calls
5673         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
5674         else call that.  Also make it Refresh, since there are redraw bugs
5675         otherwise (we should take a look at that...)
5676
5677         - do a little more refactoring work to share the body of code
5678         involved with the drop down.  it was duplicated in the code
5679         dealing with the listbox handling and in the code dealing with the
5680         UITypeEditors.
5681
5682         - add a Capture to the dropdown form's control once it's
5683         displayed, and add a MouseDown handler that checks to make sure
5684         the position is inside the control.  If it's not, close the
5685         dropdown.  This fixes #78190.
5686
5687         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
5688         if the value is different than the initial value.
5689         
5690 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
5691
5692         * Control.cs: see #78650
5693         - Fixed GetNextControl for several cases:
5694                 - Changed FindFlatForward to return 
5695                 correct sibling control when more than one
5696                 control has same TabIndex as the currently 
5697                 focused one.
5698                 - Changed FindFlatBackward to loop children
5699                 from last to first and apply same logic as in
5700                 FindFlatForward
5701                 - Changed FindControlForward to search for
5702                 children when control is not a container
5703                 but has children, or search for siblings if
5704                 control is a container...
5705                 - Changed FindControlBackward   to continue
5706                 searching for child controls when hitting 
5707                 Panel-like parents
5708                 
5709         - Fixed Focus method to update ActiveControl
5710         (FocusTest.FocusSetsActive failure)
5711         
5712         * TabControl.cs:
5713         - Focus rectangle now refreshes when gaining
5714         or losing focus
5715         - Removed grab for Tab key on IsInputKey that 
5716         was keeping tab navigation from working (#78650)
5717
5718 2006-10-13  Chris Toshok  <toshok@ximian.com>
5719
5720         * PropertyGridView.cs:
5721         - Rewrite SetPropertyValue to loop over SelectedGridItem's
5722         SelectedObjects.
5723
5724         - Deal with GridItem.Value == null a few places.
5725
5726         * PropertyGrid.cs: 
5727         - replace the PopulateGridItemCollection with a pair of methods
5728         which compute the intersection of all the properties in the
5729         SelectedObjects array.  Fixes #79615.
5730
5731         - Throw ArgumentException from set_SelectedObjects if there's a
5732         null in the array.
5733
5734         - Add GetTarget method which can be used to traverse up the
5735         GridItem.Parent chain.  It depends on the assumption that
5736         selected_objects for different GridEntries are always in the same
5737         order (a safe assumption).  Use this method and loop over all the
5738         selected objects in the entry when calling RemoveValueChanged and
5739         AddValueChanged.
5740         
5741         * GridEntry.cs: Make this handle multiple selected objects.
5742         .Value returns null if not all the selected objects share the same
5743         value.
5744
5745 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
5746         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
5747           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
5748           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
5749           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
5750           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
5751         add additional functionality.
5752
5753 2006-10-12  Mike Kestner  <mkestner@novell.com>
5754
5755         * ErrorProvider.cs : new ToolTipWindow ctor sig.
5756         * HelpProvider.cs : new ToolTipWindow ctor sig.
5757         * ToolTip.cs : remove ToolTip param from Window sig since it is
5758         not used.
5759         * ToolBar.cs : add tooltip support.  Fixes #79565.
5760
5761 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5762
5763         * ComboBox.cs: move the events in set_SelectedIndex to 
5764         after the call to HighlightIndex in order to avoid 
5765         possible recursion and subsequent problems with the call
5766         to HighlightIndex and include a range check in 
5767         set_HighlightIndex. Fixes #79588
5768         
5769 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5770
5771         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
5772         to ui thread's settings instead of sunday. 
5773         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
5774
5775 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5776
5777         * DateTimePicker.cs
5778         * MonthCalendar.cs
5779         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
5780         and implement missing functionality (selecting different parts 
5781         of the date and edit them individually with the keyboard).
5782         
5783 2006-10-11  Chris Toshok  <toshok@ximian.com>
5784
5785         * Control.cs (OnInvalidated): fix NRE relating to last change.
5786
5787 2006-10-11  Chris Toshok  <toshok@ximian.com>
5788
5789         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
5790         atoms in _NET_WM_STATE here if the window is maximized.  We need
5791         to do this because we're *replacing* the existing _NET_WM_STATE
5792         property, so those atoms will be lost otherwise, and any further
5793         call to GetWindowState will return Normal for a window which is
5794         actually maximized.  Fixes #79338.
5795
5796 2006-10-11  Jackson Harper  <jackson@ximian.com>
5797
5798         * TextControl.cs: Special case for setting selection end to
5799         selection start, we basically kill the anchor.
5800         - some todo comments.
5801
5802 2006-10-11  Chris Toshok  <toshok@ximian.com>
5803
5804         * Control.cs: switch to using an "invalid_region" to track which
5805         parts of the image buffer need updating.  This is more code than
5806         the simple fix from r66532.  That version just attempted to always
5807         fill the entire buffer on redraw, which turns out to be
5808         inefficient when invalidating small rectangles.  This version
5809         simply adds the invalid rectangle to the invalid region.  When we
5810         get any WM_PAINT message we see if it can be filled using the
5811         image buffer, and if it can't (if the paint event's clip rectangle
5812         is visible in the invalid region) we first fill the image buffer.
5813         So, the image buffer is still a cache, we just fill it lazily.
5814
5815         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
5816         need it any longer.
5817
5818 2006-10-11  Chris Toshok  <toshok@ximian.com>
5819
5820         * XplatUIX11.cs (SetWindowPos): we need to update both position as
5821         well as size after calling XMoveResizeWindow.  This keeps us from
5822         ignoring future SetWindowPos calls.  Fixes the disappearing
5823         DateTimePicker in the ToolBarDockExample from bug #72499.
5824
5825 2006-10-11  Chris Toshok  <toshok@ximian.com>
5826
5827         * TextBoxBase.cs: reorder things a bit when it comes to
5828         resizing-causing-recalculation.  we were recalculating the
5829         document when our position was changed, which shouldn't happen.
5830         We only care about size changes.  Clear up some more redundant
5831         recalculation calls while I'm at it.  This makes the toolbar dock
5832         example snappy when you're just dragging toolbars around (since it
5833         causes a relayout whenever you move one.)
5834
5835 2006-10-11  Chris Toshok  <toshok@ximian.com>
5836
5837         * ToolBarButton.cs (get_Rectangle): this only returns
5838         Rectangle.Empty if Visible == false, or Parent == null.
5839         Parent.Visible doesn't matter.
5840
5841 2006-10-10  Chris Toshok  <toshok@ximian.com>
5842
5843         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
5844         by .net 1.1, so switch to an internal method instead.
5845
5846 2006-10-10  Chris Toshok  <toshok@ximian.com>
5847
5848         * Control.cs (WM_PAINT): when a control is double buffered we draw
5849         initially to the ImageBuffer and then copy from there.  But when a
5850         parent control which has child controls is double buffered, the
5851         initial drawing doesn't encompass the entire ClientRectangle of
5852         the parent control, so we end up with uninitialized bits (this is
5853         easily seen by dragging the top toolbar in
5854         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
5855         manually set the ClipRectangle of the paint_event (only the one we
5856         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
5857         of the nastiness in bug #72499.
5858
5859         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
5860         which we use in Control.cs's WM_PAINT handling.
5861
5862 2006-10-10  Jackson Harper  <jackson@ximian.com>
5863
5864         * TextBoxBase.cs: Finish off the autoscrolling stuff.
5865
5866 2006-10-10  Chris Toshok  <toshok@ximian.com>
5867
5868         * Cursor.cs: Apply a slightly different patch to the one suggested
5869         in #79609.
5870
5871 2006-10-10  Jackson Harper  <jackson@ximian.com>
5872
5873         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
5874         not the parent form.
5875         * TextControl.cs: use difference in old line count vs new count to
5876         calculate how many lines were added, this takes into account soft
5877         line breaks properly.
5878
5879 2006-10-10  Chris Toshok  <toshok@ximian.com>
5880
5881         * LinkLabel.cs: don't call MeasureCharacterRanges against a
5882         rectangle located at 0,0 and the size of the text.  Use
5883         ClientRectangle instead.  This fixes rendering of non-left aligned
5884         link labels.
5885
5886 2006-10-10  Jackson Harper  <jackson@ximian.com>
5887
5888         * TextBoxBase.cs: When we set the selection start position the
5889         caret.
5890         * TextControl.cs: Need to update the caret when we decrement it to
5891         zero.
5892         - Make sure that the selection_visible flag gets reset to false if
5893         the selection isn't visible.  Before this you could get it set to
5894         visible by changing the selection start, then changing the end to
5895         equal the start.
5896
5897 2006-10-09  Jackson Harper  <jackson@ximian.com>
5898
5899         * TreeView.cs: Don't update scrollbars when we aren't visible.
5900         * TreeNodeCollection.cs: Only need to update scrollbars if being
5901         added to an expanded visible node or the root node.
5902
5903 2006-10-09  Chris Toshok  <toshok@ximian.com>
5904
5905         * XplatUIX11.cs (SendMessage): fix NRE.
5906
5907 2006-10-09  Jackson Harper  <jackson@ximian.com>
5908
5909         * TextBoxBase.cs: Implement horizontal autoscrolling.
5910         * TextControl.cs: Add a movement types that allows moving forward
5911         and backwards without wrapping.
5912
5913 2006-10-09  Mike Kestner  <mkestner@novell.com>
5914
5915         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
5916         with focus "expansion" of labels.  Fixes #79532 and then some.
5917         * ThemeWin32Classic.cs : add LineLimit to ListView label format
5918         when wrapping.
5919
5920 2006-10-09  Jackson Harper  <jackson@ximian.com>
5921
5922         * TextBoxBase.cs: Set the default max values to MaxValue since
5923         we use the scrollbar for autoscrolling and the default value is
5924         100.  If we don't do this the caret won't keep up with typing
5925         after about 18 characters.
5926         * TextControl.cs: Make sure the selection is offset by the
5927         viewport x.  This fixes selection when using auto scrolling.
5928
5929 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
5930         
5931         * Form.cs: The active control should be selected after the 
5932         OnLoad so that any child control initialization that affects
5933         the selection is done. Fixes #79406
5934
5935 2006-10-06  Chris Toshok  <toshok@ximian.com>
5936
5937         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
5938         to have no evil effects.
5939
5940         - Stop selecting StructureNotifyMask on non-toplevel windows.
5941
5942           The only way children should be resized is by using the SWF api,
5943           and we already send WM_WINDOWPOSCHANGED messages in those cases.
5944           Toplevel windows can be interacted with via the window manager,
5945           and so we keep the input mask there.
5946
5947           The other event StructureNotifyMask gives us (that we care
5948           about) is DestroyNotify.  The code is already structured such
5949           that it assumes we won't be getting a DestroyNotify event for
5950           the window we pass to XDestroyWindow (which is what
5951           StructureNotifyMask is supposed to guarantee.)  So, that code
5952           shouldn't be affected by this either.
5953
5954         - Stop selecting VisibilityChangeMask altogether.
5955
5956           We weren't doing anything with the resulting events anyway.
5957         
5958         This vastly reduces the number of X requests and events we see
5959         when resizing/laying out a large ui.
5960
5961 2006-10-06  Chris Toshok  <toshok@ximian.com>
5962
5963         * ScrollableControl.cs (DisplayRectangle): we need to take into
5964         account the DockPadding regardless of whether or not auto_scroll
5965         == true.  rework this slightly to this effect, and fix bug #79606,
5966         and part of #72499 (you can now see the drag handles and drag
5967         toolbars around).
5968
5969 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
5970
5971         * ListViewItem.cs: Collections of selected and checked items are now
5972         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
5973         we mark the collection "dirty".
5974         * ListView.cs: Marked collections readonly. Modified UpdateSelection
5975         to only clear SelectedItems when a new item is selected and MultiSelect
5976         is enabled. CheckedItems and SelectedItems now subscribe to Changed
5977         event of ListViewItemCollection, and mark its list dirty whenever
5978         that event is fire. This allows us to return selected/checked items 
5979         in the same order as they are in the Items collection. This matches
5980         the MS behavior.
5981
5982 2006-10-06  Chris Toshok  <toshok@ximian.com>
5983
5984         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
5985         right mouse clicks.  Fixes bug #79593.
5986
5987 2006-10-06  Chris Toshok  <toshok@ximian.com>
5988
5989         * Splitter.cs: doh, fix splitters that don't want to cancel the
5990         movement when you drag them.  Also, impose the limits on the
5991         values we send to the SplitterMovingEvent.  Fixes #79598.
5992
5993 2006-10-06  Jackson Harper  <jackson@ximian.com>
5994
5995         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
5996         since we use this for auto scrolling also.
5997
5998 2006-10-05  Chris Toshok  <toshok@ximian.com>
5999
6000         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
6001         beginning to think that most datagrid column types don't need this
6002         method.  Fixes bug #79392.
6003
6004 2006-10-05  Chris Toshok  <toshok@ximian.com>
6005
6006         * DataGrid.cs: move back to a more lazy scheme for creating the
6007         CurrencyManager, so we aren't updating it every time you set
6008         either DataSource or DataMember.  Also, don't call
6009         RecreateDataGridRows if the currency manager hasn't changed.
6010
6011 2006-10-05  Chris Toshok  <toshok@ximian.com>
6012
6013         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
6014         emitted, SelectedIndex should already be updated.  Fixes bug
6015         #78929.
6016
6017 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
6018
6019         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
6020           ToolStripTextBox.cs: Initial commit.
6021         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
6022
6023 2006-10-05  Jackson Harper  <jackson@ximian.com>
6024
6025         * TabControl.cs: We need to invalidate the tab control area when
6026         new ones are added (duh).
6027
6028 2006-10-03  Chris Toshok  <toshok@ximian.com>
6029
6030         * Form.cs (ProcessDialogKey): if the focused control is in this
6031         form and is a button, call its PerformClick method here.  Fixes
6032         #79534.
6033
6034 2006-10-04  Jackson Harper  <jackson@ximian.com>
6035
6036         * TabPage.cs: Ignore setting of Visible, and add an internal
6037         method for setting the controls visibility.  TabPage's Visible
6038         property is a little strange on MS, this seems to make us
6039         compatible, and fixes cases where people set all the tab pages to
6040         visible.
6041         * TabControl.cs: Use the new internal setting on tab pages
6042         visibility.
6043
6044 2006-10-03  Mike Kestner  <mkestner@novell.com>
6045
6046         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
6047
6048 2006-10-03  Mike Kestner  <mkestner@novell.com>
6049
6050         * ListView.cs : use is_visible instead of Visible to check if 
6051         scrollbars should be placed/sized.  Also some max_wrap_width
6052         love for LargeIcon view.  [Fixes #79533]
6053
6054 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
6055
6056         * TextControl.cs :
6057           Make set_TextAlign() do actually update the align. Fixed #78403.
6058
6059 2006-10-03  Chris Toshok  <toshok@ximian.com>
6060
6061         * DataGrid.cs: fix a crash when switching datasources if the
6062         vertical scrollbar is at someplace other than Value = 0.  Also,
6063         reduce the number of recalculation passes we do in SetDataSource
6064         from 2 to 1.
6065
6066 2006-10-03  Jackson Harper  <jackson@ximian.com>
6067
6068         * TextBoxBase.cs: Move the if value the same bail check up, we
6069         don't want to empty the document if it is already empty, this
6070         seems to severly mess up the caret.  TODO: I should probably fix
6071         the empty statement to update teh caret somehow.
6072
6073 2006-10-03  Chris Toshok  <toshok@ximian.com>
6074
6075         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
6076         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
6077         reflection, an internal row type, properties on said type, etc.)
6078         will work with our datagrid.  Fixes #79531.
6079
6080 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
6081
6082         * FileDialog.cs: Don't crash if a path is not accessible
6083           (System.UnauthorizedAccessException). Fixes #79569.
6084         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
6085           a ':' too. Return unknown icon for those paths/files.
6086
6087 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
6088
6089         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
6090         GetContainerControl returns null.
6091
6092 2006-10-02  Chris Toshok  <toshok@ximian.com>
6093
6094         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
6095         call to XGetWindowAttributes instead of "handle".  fixes an X
6096         error using notifyicon after the NotifyIconWindow to Form base
6097         class switch.
6098
6099 2006-10-02  Chris Toshok  <toshok@ximian.com>
6100
6101         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
6102         server grab and looping we need to do to get down to the most
6103         deeply nested child window.
6104         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
6105         QueryPointer again after the WarpPointer so we can generate a
6106         proper (fake) MotionNotify event to be enqueued in the destination
6107         window's queue.
6108         (GetCursorPos): call QueryPointer.
6109
6110         Fixes #79556.
6111
6112 2006-10-02  Jackson Harper  <jackson@ximian.com>
6113
6114         * NotifyIcon.cs: Derive the notify icon from a form, so things
6115         like FindForm work on it.
6116         - Swallow the WM_CONTEXTMENU message, since that is generated on
6117         mouse down, and context menu is a mouse up kinda guy.  I believe
6118         the correct fix here is probably to make the notify icon entirely
6119         NC area, but this seems to work fine for anyone not manipulating
6120         WndProc.
6121
6122 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
6123
6124         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
6125           ToolStripItemCollection.cs, ToolStripLabel.cs,
6126           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
6127           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
6128           Initial implementation.
6129         * TextRenderer.cs: Provide padding to MeasureText.
6130
6131 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
6132
6133         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
6134         of ButtonBaseAccessibleObject. Fix bug #79552.
6135
6136 2006-10-02  Jackson Harper  <jackson@ximian.com>
6137
6138         * MdiWindowManager.cs: When maximizing use the containers client
6139         rect, not it's bounds, so nc area is accounted correctly.
6140         - Use the parent form's size for the menu position, since the
6141         client isn't always the full form size.
6142
6143 2006-10-01  Chris Toshok  <toshok@ximian.com>
6144
6145         * ScrollableControl.cs: make sure neither right_edge or
6146         bottom_edge are < 0, since they're used as LargeChange for the
6147         horiz/vert scrollbars respectively.  Fixes #79539.
6148
6149 2006-10-01  Chris Toshok  <toshok@ximian.com>
6150
6151         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
6152         the xplatuix11 code can cause us to destroy/recreate our handle.
6153
6154         * XplatUIX11.cs
6155         (SystrayAdd):
6156         - this code can be invoked many times for the same Hwnd.  Make
6157           sure we only destroy the client window once (the first time this
6158           method is called).  This fixes bug #79544.
6159         - Remove the call to the improperly bound XSync.  why we had two
6160           bindings to this, I will never know, but this call resulted in
6161           events being discarded from the queue(!).
6162         - correct a misunderstanding of _XEMBED_INFO - the second atom is
6163           not our current state but the state we wish to be in.  So, 0 if
6164           we don't want to be mapped.  Change it to 1.
6165         (SystrayRemove): The XEMBED spec makes mention of the fact that
6166         gtk doesn't support the reparent of client windows away from the
6167         embedder.  Looking at gtksocket-x11.c seems to agree with this.
6168         The only avenue we have for removing systray icons is to destroy
6169         them.  We don't want the handle to go away for good, though, so
6170         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
6171         #79545.
6172         
6173 2006-10-01  Chris Toshok  <toshok@ximian.com>
6174
6175         * Form.cs (WndProc): inline the native_enabled variable usage into
6176         the cases in which it's used.  Fixes #79536.
6177
6178 2006-09-29  Mike Kestner  <mkestner@novell.com>
6179
6180         * ListView.cs : toggle the selection state for ctrl clicks in 
6181         multiselect mode. [Fixes #79417]
6182
6183 2006-09-29  Mike Kestner  <mkestner@novell.com>
6184
6185         * ListView.cs : kill CanMultiSelect and refactor the selection
6186         code to support multiselection in the absence of mod keys. Steal
6187         arrow/home/end keys by overriding InternalPreProcessMessage to
6188         restore regressed keynav behavior.
6189         [Fixes #79416]
6190
6191 2006-09-29  Jackson Harper  <jackson@ximian.com>
6192
6193         * MdiClient.cs: Repaint the titlebars when the active window is
6194         changed.
6195
6196 2006-09-29  Chris Toshok  <toshok@ximian.com>
6197
6198         * Application.cs: when entering a runloop with a modal, make sure
6199         the hwnd is enabled.  Fixes #79480.
6200
6201 2006-09-29  Chris Toshok  <toshok@ximian.com>
6202
6203         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
6204         when ListManager.CanAddRows == false, bump us back one.
6205
6206         * DataGridColumnStyle.cs (ParentReadOnly): remove the
6207         listmanager.CanAddRows check.  This makes ArrayLists uneditable
6208         using a datagrid, which is not right.
6209         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
6210         is an IEditable, but call property_descriptor.SetValue regardless.
6211         fixes #79435.
6212
6213 2006-09-29  Chris Toshok  <toshok@ximian.com>
6214
6215         * DataGridBoolColumn.cs: we need to test equality in the face of
6216         possible null values (as is the case with the default NullValue).
6217         This patch keeps us from crashing in that case.
6218
6219 2006-09-29  Jackson Harper  <jackson@ximian.com>
6220
6221         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
6222         here, since it will get called for every node collection in the
6223         tree. This is now done in the treeview once the sorting is
6224         finished.
6225         * TreeView.cs: Recalculate the visible order, and update the
6226         scrollbars after sorting, set the top nope to the root so that the
6227         recalc actually works.
6228
6229 2006-09-29  Chris Toshok  <toshok@ximian.com>
6230
6231         * LinkLabel.cs: more handling of the default link collection in
6232         the face of LinkArea manipulation.  The default link collection
6233         contains 1 element (start=0,length=-1).  If the user sets LinkArea
6234         to anything and the links collection is the default, clear it.
6235         Then only add the link if its nonempty.  Fixes #79518.
6236
6237 2006-09-29  Chris Toshok  <toshok@ximian.com>
6238
6239         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
6240         piece correctly when we hit a '\n'.  Fixes #79517.
6241
6242 2006-09-29  Chris Toshok  <toshok@ximian.com>
6243
6244         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
6245         change the binding of gdk_init_check to take two IntPtr's, and
6246         pass IntPtr.Zero for both of them.  Fixes #79520.
6247
6248 2006-09-29  Mike Kestner  <mkestner@novell.com>
6249
6250         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
6251         [Fixes #78779]
6252
6253 2006-09-28  Jackson Harper  <jackson@ximian.com>
6254
6255         * XplatUIX11.cs: When translating NC messages make sure we go from
6256         whole window to screen, not client window to screen.
6257         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
6258         method doesn't exist
6259         - Skip over controls that aren't forms when arranging.
6260
6261 2006-09-28  Jackson Harper  <jackson@ximian.com>
6262
6263         * XplatUIWin32.cs: Clip the rect to the parent window.
6264         * XplatUIStructs.cs: Add clipping modes struct.
6265         * InternalWindowManager.cs: New private method that factors title
6266         bar heights in when calculating the pos of an NC mouse message.
6267         - Use SendMessage to force a paint when the form's size is changed
6268         instead of painting the decorations immediately.
6269         - Don't let the NC button click messages get to DefWndProc,
6270         because they will attempt to handle windowing themself, and this
6271         messes up z-order (it will put them in front of the scrollbars).
6272         * XplatUIX11.cs: Make sure that we don't reset window managers if
6273         we already have one (ie the window is an MDI window).
6274
6275 2006-09-28  Chris Toshok  <toshok@ximian.com>
6276
6277         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
6278         menu code really needs going over.
6279
6280 2006-09-27  Chris Toshok  <toshok@ximian.com>
6281
6282         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
6283         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
6284         window is maximizable.  So, we need to make sure that even if we
6285         clear the border/wm frame of those functions, they're still
6286         available (basically, we remove the decoration without removing
6287         the function).  Half the fix for #79338.
6288
6289 2006-09-27  Chris Toshok  <toshok@ximian.com>
6290
6291         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
6292         Fixes bug #79515.
6293
6294 2006-09-27  Chris Toshok  <toshok@ximian.com>
6295
6296         * Splitter.cs: reorder things a bit so that we don't actually
6297         draw/move the splitter until after calling OnSplitterMoving.  This
6298         lets users cancel/disallow the movement by explicitly setting
6299         event.SplitX/SplitY.  Fixes #79372.
6300
6301 2006-09-27  Jackson Harper  <jackson@ximian.com>
6302
6303         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
6304         because it is most likely on a window being destroyed, and that
6305         will give us an X11 error.
6306
6307 2006-09-27  Chris Toshok  <toshok@ximian.com>
6308
6309         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
6310         the dropdown button now toggles between showing and hiding the
6311         dropdown.  Also, get rid of dropdown_form_showing and just use
6312         dropdown_form.Visible.  We still don't do a grab, but I'll leave
6313         that part to someone who has handled Capture-fu before.
6314
6315 2006-09-27  Chris Toshok  <toshok@ximian.com>
6316
6317         * DataGrid.cs: return false if alt isn't pressed when '0' is
6318         pressed.  this keeps the '0' key from being swallowed, and fixes
6319         bug #79350.
6320
6321 2006-09-27  Chris Toshok  <toshok@ximian.com>
6322
6323         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
6324         Calling Refresh (in response to a scrollbar event) screws up the
6325         scrollbar painting.  Fixes bug #78923.
6326
6327 2006-09-27  Chris Toshok  <toshok@ximian.com>
6328
6329         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
6330         then insert into hashtable" blocks threadsafe.
6331
6332 2006-09-27  Chris Toshok  <toshok@ximian.com>
6333
6334         * MessageBox.cs (CreateParams): the styles should be |'ed with our
6335         baseclass's, since otherwise the
6336         ControlBox/MinimizeBox/MaximizeBox assignments above have no
6337         effect.  This gets the close button back in messageboxes.
6338
6339 2006-09-27  Chris Toshok  <toshok@ximian.com>
6340
6341         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
6342         flag, not just != 0.  this makes flags that are actually multiple
6343         bits (like WS_CAPTION) work.  fixes bug #79508.
6344
6345 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
6346
6347         * PageSetupDialog.cs: add support for getting and settings the 
6348         paper size, source and orientation.
6349
6350 2006-09-26  Chris Toshok  <toshok@ximian.com>
6351
6352         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
6353         and caption == "", we need to remove the resize handles as well as
6354         the title bar.
6355
6356         * Control.cs (set_Text): turns out that setting Text on a form
6357         should change the WM styles on the window, since if ControlBox ==
6358         false, the only way to get a window border is to have a non-""
6359         Text property.  check winforms/forms/text.cs for an example.  so,
6360         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
6361         update both window styles and title.  This fixes a lot of dialogs
6362         (including the preferences dialog in MonoCalendar.)
6363
6364 2006-09-26  Chris Toshok  <toshok@ximian.com>
6365
6366         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
6367         control isn't a Form), call Win32ShowWindow to hide the window,
6368         but don't update the control Visible property.  When we reparent
6369         back to a parent control, call SetVisible in order for the
6370         window's visibility to be reinstated.
6371
6372         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
6373         the FosterParent.
6374
6375         * Control.cs (ControlCollection.Remove): remove that value.Hide()
6376         call for good, since it breaks MonoCalendar (and other things I'm
6377         sure.) Also, set all_controls to null *after* the owner calls,
6378         which end up regenerating it.
6379         (ChangeParent): allow new_parent to be == null, passing
6380         IntPtr.Zero down to XplatUI.
6381
6382         this fixes #79294 the right way.
6383
6384 2006-09-26  Mike Kestner  <mkestner@novell.com>
6385
6386         * GridEntry.cs : internal SetParent method.
6387         * PropertyGrid.cs : attach to property changed on the proper
6388         target if we have a hierarchical grid with subobjects. Setup
6389         GridItem.Parent for hierarchical items.
6390         * PropertyGridView.cs : Set value on the correct target for
6391         hierarchical grids. [Fixes #78903]
6392
6393 2006-09-26  Chris Toshok  <toshok@ximian.com>
6394
6395         * Control.cs (ChildNeedsRecreating): this should return true if
6396         either we're being recreated and the child is in our list, or our
6397         parent is waiting for our recreation.
6398
6399 2006-09-26  Chris Toshok  <toshok@ximian.com>
6400
6401         * Control.cs (ControlCollection.Remove): reinstate the
6402         value.Hide() call as suggested in bug #79294.
6403
6404 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
6405
6406         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
6407         coordinates (versus a relative move).
6408
6409 2006-09-26  Chris Toshok  <toshok@ximian.com>
6410
6411         * Control.cs: rework child recreation a little bit.  It turns out
6412         that we race between the DestroyNotify the WM_DESTROY message.  If
6413         the parent gets its DestroyNotify before the child gets the
6414         WM_DESTROY message, the child ends up not recreating (since the
6415         parent finishes its recreation on DestroyNotify, and the child
6416         checks ParentIsRecreating.)
6417
6418         So, instead we store off a list of all the child controls which
6419         need to be recreated when the parent control starts to recreate
6420         itself.  Then, when child controls get their WM_DESTROY message we
6421         check to see if they're in the parent's pending recreation list,
6422         and if so, we recreate.  This removes all dependency on ordering
6423         from the code and fixes the initial MonoCalendar upgrade dialog.
6424         
6425 2006-09-26  Jackson Harper  <jackson@ximian.com>
6426
6427         * TextControl.cs: Use the Line to get the length of the line,
6428         since soft line breaks can change the end line.
6429
6430 2006-09-26  Chris Toshok  <toshok@ximian.com>
6431
6432         * Control.cs (ControlCollection.AddImplicit): don't add the
6433         control again if it's already in one of our lists.  This keeps us
6434         from adding controls over and over again for comboboxes when their
6435         handle gets recreated (as the combobox adds implicit controls in
6436         OnHandleCreated).  Fixes the X11 errors in bug #79480.
6437
6438 2006-09-26  Jackson Harper  <jackson@ximian.com>
6439
6440         * TextControl.cs: When deleting characters make sure that any
6441         orphaned zero lengthed tags get deleted.
6442         - Fix ToString for zero lengthed tags.
6443
6444 2006-09-25  Jackson Harper  <jackson@ximian.com>
6445
6446         * TextControl.cs: When getting a tag at the location there can be
6447         multiple tags at the same spot, these are 0-lengthed tags that
6448         appear when extra formatting has been stuck in a location.  We
6449         need to pull out the last of these 0 lengthed tags.
6450
6451 2006-09-25  Jackson Harper  <jackson@ximian.com>
6452
6453         * TextControl.cs: Fix print out in debug method.
6454         * TextBoxBase.cs: When text is set bail if we are setting to the
6455         previous value.
6456         
6457 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
6458
6459         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
6460           It is now possible to change the selected index in a FontXXXListBox
6461           with the up and down arrow keys from the FontXXXTextBoxes.
6462           Also, send the FontXXXTextBox mouse wheel event to the corresponding
6463           FontXXXListBoxes to match ms.
6464
6465 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
6466
6467         * SystemInformation.cs: Return a clone of the theme's MenuFont because
6468         anyone can dispose it, anytime. All other properties returns enums, 
6469         structs or basic types so they don't need such tricks.
6470
6471 2006-09-22  Jackson Harper  <jackson@ximian.com>
6472
6473         * XplatUI.cs:
6474         * XplatUIWin32.cs:
6475         * Clipboard.cs:
6476         * DataFormats.cs:
6477         * XplatUIOSX.cs:
6478         * XplatUIDriver.cs: Update interface to add a primary selection
6479         flag, so the driver can use the primary selection buffer if
6480         needed.
6481         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
6482
6483         * RichTextBox.cs: We need to supply the data object to paste now
6484         (so we can choose to supply CLIPBOARD or PRIMARY).
6485         * TextBoxBase.cs: Supply data object to paste (see above).
6486         - Middle click uses the primary selection data object.
6487         
6488 2006-09-21  Chris Toshok  <toshok@ximian.com>
6489
6490         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
6491         of SetWMStyles.  It's still a rat's nest and is largely
6492         order-dependent which I dislike immensely.  This also fixes the X
6493         button disappearing from toplevel forms.
6494
6495 2006-09-21  Mike Kestner <mkestner@novell.com>
6496
6497         * ListBox.cs: move Jordi's click/dblclick raising code to the
6498         mouse up handler.
6499
6500 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
6501
6502         * ListBox.cs: Fixes 79450
6503
6504 2006-09-21  Mike Kestner <mkestner@novell.com>
6505
6506         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
6507         to deal with people updating the TreeNodeCollection after the tree
6508         is disposed.  "Fixes" 79330.
6509
6510 2006-09-20  Jackson Harper <jackson@ximian.com>
6511
6512         * TextControl.cs: Push the cursor record onto the undo stack
6513         before the delete action. This fixes 78651.
6514
6515 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
6516
6517         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
6518         CreateParams. Fixes 79329.
6519
6520 2006-09-19  Chris Toshok  <toshok@ximian.com>
6521
6522         * XplatUIX11.cs: a couple of blanket code massage passes to clean
6523         things up a bit.  First, get rid of the NetAtoms array (and the NA
6524         enum), and just embed the atoms as static fields.  Also, add a
6525         couple of functions (StyleSet and ExStyleSet) to clean up all the
6526         bitmask testing of styles.
6527
6528         * X11Structs.cs: remove the NA enum, not needed anymore.
6529         
6530 2006-09-19  Chris Toshok  <toshok@ximian.com>
6531
6532         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
6533         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
6534         added cleanup to get MessageBox titles appearing again, which were
6535         broken by my earlier fix for caption-less/ControlBox-less windows.
6536
6537 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
6538
6539         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
6540           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
6541           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
6542           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
6543           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
6544           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
6545           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
6546           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
6547           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
6548           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
6549           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
6550             Inital import.
6551         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
6552           ToolStripButton.cs: Stubs needed for above.
6553         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
6554
6555 2006-09-15  Chris Toshok  <toshok@ximian.com>
6556
6557         * XplatUIX11.cs:
6558         - make the MessageQueues hashtable Synchronized.
6559         
6560         - SendMessage: if the Hwnd is owned by a different thread, use the
6561         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
6562         thread.  Fixes bug #79201.
6563
6564 2006-09-15  Chris Toshok  <toshok@ximian.com>
6565
6566         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
6567         ControlBox == false, we disallow maximize/minimize/close.  If the
6568         form Caption is "" we also disallow move (and get rid of the Title
6569         decoration).  Unfortunately, regardless of how things are set,
6570         we're stuck with the Title and WM menu.
6571
6572 2006-09-15  Chris Toshok  <toshok@ximian.com>
6573
6574         * Application.cs: add locking around the static message_filters
6575         ArrayList, part of #79196.
6576
6577 2006-09-15  Chris Toshok  <toshok@ximian.com>
6578
6579         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
6580         Form.ControlBox == false, the window has no titlebar nor resize
6581         handles.  fixes bug #79368.
6582
6583 2006-09-15  Chris Toshok  <toshok@ximian.com>
6584
6585         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
6586         >= 0.  Fixes bug #79370.
6587
6588 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
6589         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
6590         * Control.cs:
6591             Add properties: LayoutEngine, Margin, DefaultMargin.
6592             Add method: GetPreferredSize.
6593             Move layout logic from PerformLayout to layout engines. 
6594
6595 2006-09-13  Chris Toshok  <toshok@ximian.com>
6596
6597         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
6598         fix for #79326 broke #78718, so this change addresses that.
6599
6600         - in SendWMDestroyMessages remove the call to
6601         CleanupCachedWindows, since we might be recreating the control and
6602         need to maintain the references to right Hwnd handles.  Also, set
6603         the zombie flag to true for each of the children in the hierarchy
6604         instead of calling hwnd.Dispose.  This will cause GetMessage to
6605         ignore all events for the window except for DestroyNotify.
6606
6607         - In GetMessage, ignore messages except for DestroyNotify for
6608         zombie hwnds.
6609         
6610         * Control.cs: revert the is_recreating fix from the last
6611         ChangeLog.  It's definitely "right", but it breaks switching from
6612         an MDI form to a non-MDI form.  Will need to revisit that.
6613
6614         * Hwnd.cs: add a zombie flag, which means "the
6615         client_window/whole_window handles are invalid, but we're waiting
6616         for the DestroyNotify event to come in for them".  Set the flag to
6617         false explicitly if setting WholeWindow/ClientWindow, and also
6618         when Disposing.
6619         
6620 2006-09-13  Chris Toshok  <toshok@ximian.com>
6621
6622         * XplatUIX11.cs: rework window destruction slightly.
6623
6624         - when destroying the windows associated with a control, we don't
6625         need 2 separate XDestroyWindow calls.  Just the one for the
6626         whole_window (or for client_window if whole_window is somehow
6627         IntPtr.Zero -- can this happen?) is enough.
6628
6629         - reworked SendWMDestroyMessages slightly, so we always dispose
6630         the child control hwnd's after sending the messages.
6631         
6632         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
6633         the two places it was used (one was even using hwnd.Handle and the
6634         other hwnd.client_window.  ugh), adding another call in
6635         SendWMDestroyMessages.  We need this new call because now the
6636         DestroyNotify events in the queue will be ignored for the child
6637         controls (as their hwnd's were disposed, and the window id's
6638         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
6639
6640         - this fixes bug #79326.
6641
6642 2006-09-13  Chris Toshok  <toshok@ximian.com>
6643
6644         * Control.cs: don't always set is_recreating to false at the end
6645         of RecreateHandle, since sometimes we're not done (and won't be
6646         until WndProc handles the WM_DESTROY message).  Also, set
6647         is_recreating to false in the WM_DESTROY handling code.  Part of
6648         the fix for bug #79326.
6649
6650 2006-09-13  Miguel de Icaza  <miguel@novell.com>
6651
6652         * X11DesktopColors.cs: Start the droppage of debugging messages.
6653
6654         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
6655
6656 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
6657
6658         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
6659
6660 2006-09-12  Chris Toshok  <toshok@ximian.com>
6661
6662         * DataGrid.cs (get_ListManager): if the list_manager is null, try
6663         to create it using SetDataSource.  Fixes bug #79151.
6664
6665 2006-09-11  Chris Toshok  <toshok@ximian.com>
6666
6667         * XEventQueue.cs: add a DispatchIdle property.
6668
6669         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
6670         either the queue is null, or the queue has DispatchIdle set to
6671         true.
6672         (DoEvents): set queue.DispatchIdle to false around the
6673         peek/translate/dispatch message loop in this method.  This keeps
6674         Application.Doevents from emitting idle events.  Part of the fix
6675         for #78823.
6676
6677 2006-09-11  Chris Toshok  <toshok@ximian.com>
6678
6679         * DataGrid.cs (set_DataSource): make this work for both the
6680         winforms/datagrid test and ReportBuilder.  It seems as though when
6681         we've created a ListManager (or maybe it's if we have a
6682         BindingContext?), when we set the DataSource it clears the
6683         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
6684         #79333.
6685
6686 2006-09-11  Chris Toshok  <toshok@ximian.com>
6687
6688         * XplatUIX11.cs: deal with queue being null, which happens in all
6689         the Clipboard functions.  Fixes one of the two problems mentioned
6690         in #78612.
6691
6692 2006-09-11  Chris Toshok  <toshok@ximian.com>
6693
6694         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
6695         button on various spots (including outside the menu) works closer
6696         to MS, and doesn't crash.  Fixes #79343.
6697
6698 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
6699
6700         * ListView.cs: Do not initialize item_sorter in init. To match MS,
6701         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
6702         and the internal comparer is set. When a new ListViewItemSorter is set,
6703         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
6704         was specified. No further processing is necessary if SortOrder is set
6705         to it's current value. If Sorting is modified to None, and View is
6706         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
6707         (either custom or our internal ItemComparer) to null, on 1.0 profile
6708         only set item_sorter to null if its our internal IComparer. If Sorting
6709         is modified to Ascending or Descending, then use our internal IComparer
6710         if none is set, and if the current IComparer is our internal one then:
6711         on 2.0 profile always replace it with one for new Sorting, and on 1.0
6712         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
6713         Enum.IsDefined to verify whether a valid View value is specified in
6714         its setter. Automatically sort listview items when listview is
6715         created. In Sort, do nothing if ListView is not yet created, or if
6716         no item_sorter is set (no Sorting was set, Sorting was explicitly set
6717         to None or ListViewItemSorter was set to null). Added Sort overload
6718         taking a bool to indicate whether the ListView should be redrawn when
6719         items are sorted (we use this in ListViewItemCollection to avoid double
6720         redraws). Modified our internal IComparer to take the sort order into
6721         account. In Add and AddRange methods of ListViewItemCollection, also
6722         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
6723         view), but use overload with noredraw option to avoid double redraw.
6724         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
6725         true when View is Tile, and do the same when attempting to set View to
6726         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
6727         for selected/checked indices, as it involves overhead when sorting is
6728         done while these collections are not used all that often. Instead
6729         we'll build the indices on demand. Modified IList implementation of
6730         CheckedIndexCollection to use public methods if object is int.
6731         Modified CheckedListViewItemCollection to hide checked items if
6732         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
6733         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
6734         IList implementation in SelectedIndexCollection to use public methods
6735         if object is int. Modified SelectedListViewItemCollection to hide
6736         selected items if listview is not yet created.
6737         * ListViewItem.cs: CheckedIndices list no longer needs to be
6738         maintained separately (see ListView changes). Also clone font, fixes
6739         test failure.
6740
6741 2006-09-11  Mike Kestner  <mkestner@novell.com>
6742
6743         * ComboBox.cs: if we are updating the contents of the currently
6744         selected index, refresh the control or the textbox selection.
6745         [Fixes #79066]
6746
6747 2006-09-11  Mike Kestner  <mkestner@novell.com>
6748
6749         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
6750         the 'specified' logic has been moved there.  This seems like a bug 
6751         in Control.cs, since our current SetBoundsCore completely ignores 
6752         the specified parameter.  Peter's commit seems to indicate that is 
6753         the way the MS control implementation works.  [Fixes #79325]
6754
6755 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
6756
6757         * XplatUI.cs: Set default_class_name to be composed
6758         of current domain id. This allows MWF to be loaded in multiple
6759         domains on Win32.
6760
6761 2006-09-09  Miguel de Icaza  <miguel@novell.com>
6762
6763         * X11Keyboard.cs: If we are unable to obtain the input method, do
6764         not call CreateXic to create the input context.   Should fix
6765         #78944/79276.
6766
6767 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
6768
6769         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
6770           Simplified gnome support by adding more pinvokes to get the
6771           icon for a file or mime type.
6772
6773 2006-09-08  Jackson Harper  <jackson@ximian.com>
6774
6775         * MenuAPI.cs: Deslect popup context menu items before closing the
6776         window, so that you don't see the previously selected item
6777         selected when you reopen the menu.
6778         * TextControl.cs: Update the cursor position even if we don't have
6779         focus.  This fixes typing in things like the ComboBox.  I'm not
6780         totally sure we should always set the visibility if we don't have
6781         focus, but couldn't find any corner cases where the cursor showed
6782         up when it shouldn't.
6783
6784 2006-09-08  Chris Toshok  <toshok@ximian.com>
6785
6786         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
6787         our arrays are length 256.  & 0xff before indexing.  Fixes the
6788         crash in bug #78077.
6789         
6790 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6791
6792         * ThemeWin32Classic.cs: 
6793         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
6794         is true. Handle that check box too.
6795
6796 2006-09-07  Chris Toshok  <toshok@ximian.com>
6797
6798         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
6799         79244.
6800
6801 2006-09-07  Chris Toshok  <toshok@ximian.com>
6802
6803         * Control.cs: in set_BackColor only do the work if
6804         background_color != value.
6805
6806         * XplatUIX11.cs: move the clearing of invalid areas (both client
6807         and nc) to the same block of code where we set (nc_)expose_pending
6808         to false.  That is, move it from PaintEventEnd to PaintEventStart,
6809         so things that cause invalidates from within OnPaint will trigger
6810         another call to OnPaint.  Fixes bug #79262.
6811
6812 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
6813
6814         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
6815         * FileDialog.cs: Fix typo
6816
6817 2006-09-07  Jackson Harper  <jackson@ximian.com>
6818
6819         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
6820         for tab pages if they have any.
6821
6822 2006-09-06  Mike Kestner  <mkestner@novell.com>
6823
6824         * Splitter.cs: use the "current" rect when finishing drag handle
6825         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
6826
6827 2006-09-06  Mike Kestner  <mkestner@novell.com>
6828
6829         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
6830         support offset splitters. [Fixes #79298]
6831
6832 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
6833
6834         * Mime.cs: Fixed a bug that could override the global mime type
6835           result.
6836
6837 2006-09-05  Jackson Harper  <jackson@ximian.com>
6838
6839         * TabControl.cs: Better calculation method for setting the slider
6840         pos. Prevents crashes on really wide tabs.
6841         - Draw Image on tab pages if an image list is used.
6842
6843 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6844
6845         * MonthCalendar.cs: When Font changes, the Size should be
6846         updated to fit the new font's space requirements.
6847
6848 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
6849
6850         * ListBox.cs: If the items are cleared with Items.Clear set
6851           top_index to 0.
6852
6853 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6854
6855         * MonthCalendar.cs: Handle arrow keys as input keys. Also
6856         fire DateChanged event instead of DateSelected event when
6857         the date was changed by keyboard interaction.
6858
6859 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6860
6861         * DateTimePicker.cs: Handle DateChanged for the associated
6862         month_calendar control, and set month_calendar.Font from 
6863         OnFontChanged method, as well as resize the height of the
6864         control when needed. Make PreferredHeight proportional.
6865
6866 2006-09-01  Chris Toshok  <toshok@ximian.com>
6867
6868         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
6869         properties.
6870
6871         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
6872
6873 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
6874
6875         * FileDialog.cs: Set ClientSize instead of window size, to allow space
6876           for decorations (Fixes #79219)
6877
6878 2006-09-01  Mike Kestner  <mkestner@novell.com>
6879
6880         * ComboBox.cs: first stab at sorting plus some selection handling
6881         fixes to bring us more in line with MS behavior.  Also switches back
6882         to index based selection.  Alternative patches for index-based 
6883         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
6884         and latency@gmx.de on bug 78848.  I assume they were similar to this
6885         code I've had simmering in my tree forever.
6886         [Fixes #78848]
6887
6888 2006-09-01  Chris Toshok  <toshok@ximian.com>
6889
6890         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
6891         when setting list position guard against ending up with a -1 index
6892         (the other part of the fix for #78812).  Should probably make sure
6893         we don't need the analogous fix in the ItemDeleted case.
6894
6895         * DataGrid.cs:
6896         - in SetDataSource, work around the fact that the way
6897         OnBindingContextChanged is invoked will cause us to re-enter this
6898         method.  I'll remove the hack once I investigate
6899         OnBindingContextChanged.
6900
6901         - fix the logic in set_DataSource and set_DataMember (basically
6902         what to do if the other of the two is null.)
6903         
6904         - in OnListManagerItemChanged, we need to take into account the
6905         edit row when deciding whether or not to call RecreateDataGridRows
6906         (part of the fix for #78812).
6907
6908 2006-09-01  Jackson Harper  <jackson@ximian.com>
6909
6910         * Splitter.cs: Don't do anything if there is no control to affect
6911         (prevents us from crashing in weird tet cases).
6912         * TreeView.cs: Bounding box for the mouse movement reverting
6913         focus/selection back to previously selected node.  This matches
6914         MS, and makes the tree a lot more useable.
6915         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
6916         use clipping so they are not drawn.  This fixes when the control
6917         is set to have a transparent background, or if it was over an
6918         image.
6919
6920 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
6921
6922         * MimeIcon.cs: Improved handling for reading default icons when
6923           using gnome (2.16 made it necessary). Check and read svg icons
6924           first, then 48x48 and then 32x32 icons.
6925
6926 2006-08-31  Chris Toshok  <toshok@ximian.com>
6927
6928         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
6929         visible.
6930
6931         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
6932         ProcessKeyPreview.  Fixes part of #77806.
6933
6934         * DataGrid.cs: big patch.
6935
6936         - revert the queueing up of DataSource/DataMember if inside
6937         BeginInit/EndInit calls.  That's not the way the datagrid achieves
6938         its delayed databinding.  Instead, call SetDataSource in
6939         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
6940         #78811.
6941
6942         - Also, it wasn't mentioned in #78811, but the test case exhibits
6943         behavior that was lacking in our datagrid implementation - Columns
6944         that have mapping names that don't exist in the datasource's
6945         properties aren't shown.  Yuck.  To fix this I added the bound
6946         field to the column style, and basically any calculation to figure
6947         out anything about columns uses a loop to find the bound columns.
6948         still need to investigate if I can cache an array of the bound
6949         columns or if the indices must be the same.
6950
6951         - When setting CurrentCell, we no longer abort if the cell being
6952         edited was in the add row.  This fixes the other part of #77806.
6953
6954         - The new code also fixes #78807.
6955         
6956         * ThemeWin32Classic.cs: perpetrate the same disgusting
6957         column.bound field hack, and only render bound fields.
6958
6959 2006-08-31  Chris Toshok  <toshok@ximian.com>
6960
6961         * DataGridColumnStyle.cs: add bound field.  this field is true if
6962         the datasource has a property corresponding to the mapping name.
6963
6964         * DataGridTableStyle.cs: set the bound field on the column styles
6965         depending on whether or not we have a column for that property.
6966
6967 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
6968
6969         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
6970           splitter control (fixes #79228)
6971
6972 2006-08-31  Chris Toshok  <toshok@ximian.com>
6973
6974         * DataGridColumnStyle.cs: we need to delay the assignment of
6975         property descriptor until the last possible moment due to the lazy
6976         databinding stuff in the datagrid.  Also, fix the exceptions
6977         thrown by CheckValidDataSource to match MS.
6978
6979 2006-08-31  Jackson Harper  <jackson@ximian.com>
6980
6981         * Form.cs: When activated select the active control, if there is
6982         no active control, we select the first control.
6983         * XplatUIX11.cs: If there is no focus control when we get a
6984         FocusIn event, find the toplevel form and activate it.  This
6985         occurs when you popup a window, it becomes the focus window, then
6986         you close that window, giving focus back to the main window.
6987
6988 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6989
6990         * MonthCalendar.cs: 
6991         * ThemeWin32Classic.cs: Cache Font in bold style, as well
6992         as StringFormat with Center alignments in MonthCalendar,
6993         instead of creating new ones when drawing the control. 
6994         Also, draw the month name in bold style.
6995
6996 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
6997
6998         * Control.cs:
6999           - PerformLayout(): It would seem MS performs the fill even if the 
7000             control is not visible (part of #79218 fix)
7001           - ResetBackColor(): Use the setter to reset the color, to allow
7002             overriders to catch the change.
7003         * Form.cs:
7004           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
7005           - CreateHandle(): dito (part of $79218 fix)
7006           - Don't set an icon if we have a dialog
7007         * ScrollableControl.cs:
7008           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
7009           - ScrollIntoView(): No need to scroll if control is already visible
7010             (resolves fixme and fixes #79218)
7011
7012 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7013
7014         * MonthCalendar.cs: Change proportions in SingleMonthSize
7015         to match the aspect of the original control.
7016
7017 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
7018
7019         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
7020           get updated when they get maximized.
7021
7022 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
7023
7024         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
7025
7026 2006-08-29  Chris Toshok  <toshok@ximian.com>
7027
7028         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
7029
7030 2006-08-29  Jackson Harper  <jackson@ximian.com>
7031
7032         * TreeView.cs: Need to track selected node and highlighted node,
7033         they aren't always the same thing, when the mouse is down on a
7034         node it is hilighted, but not selected yet.
7035         - Do the HideSelection stuff right
7036         - Need to focus on rbutton mouse down. And redraw selection when
7037         right click is mouse upped.
7038
7039 2006-08-29  Mike Kestner  <mkestner@novell.com>
7040
7041         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
7042         when SubItems.Count < Columns.Count.  [Fixes #79167]
7043
7044 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
7045
7046         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
7047
7048 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
7049
7050         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
7051           from X. Only send based on ConfigureNotify if we don't have the
7052           correct location in hwnd (if the window manager moved us)
7053
7054 2006-08-28  Mike Kestner  <mkestner@novell.com>
7055
7056         * ListView.cs: remove a TODO. 
7057         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
7058         [Fixes ListView part of #79166]
7059
7060 2006-08-28  Mike Kestner  <mkestner@novell.com>
7061
7062         * ListView.cs: move wheel handler to parent since it is focused
7063         instead of the item_control now.  [Fixes #79177]
7064
7065 2006-08-28  Mike Kestner  <mkestner@novell.com>
7066
7067         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
7068         when the control is focused. [Fixes #79171]
7069
7070 2006-08-28  Mike Kestner  <mkestner@novell.com>
7071
7072         * ListView.cs: size the item and header controls for empty and
7073         unscrollable views.
7074         * ThemeWin32Classic.cs: draw disabled backgrounds.
7075         [Fixes #79187]
7076
7077 2006-08-28  Chris Toshok  <toshok@ximian.com>
7078
7079         * Form.cs: remove unused "active_form" static field.
7080
7081         * Hwnd.cs: lock around accesses to static windows collection.
7082
7083         * Application.cs: lock threads in Exit ().
7084
7085 2006-08-28  Chris Toshok  <toshok@ximian.com>
7086
7087         * NativeWindow.cs: lock around accesses to window_collection.
7088         
7089 2006-08-28  Chris Toshok  <toshok@ximian.com>
7090
7091         * Control.cs: err, fix this the right way, by locking on controls
7092         when using it.  not by making it synchronized.
7093
7094 2006-08-28  Chris Toshok  <toshok@ximian.com>
7095
7096         * Control.cs: make the static "controls" field synchronized, as it
7097         gets updated from multiple threads.
7098
7099 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
7100
7101         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
7102           Prevent other threads from exiting when calling thread sets quit state.
7103         * XEventQueue.cs: Added PostQuitState property
7104
7105 2006-08-27  Chris Toshok  <toshok@ximian.com>
7106
7107         * AsyncMethodData.cs: add a slot for the window handle.
7108
7109         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
7110         window (the destination control's window, not the foster window).
7111
7112         * Control.cs (BeginInvokeInternal): store the window's handle in
7113         the AsyncMethodData.
7114         
7115
7116 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
7117
7118         * XplatUIX11.cs:
7119           - PostQuitMessage: Removed resetting S.D display handle, we might have
7120             another loop started after calling PostQuitMessage (Fixes #79119)
7121           - Created destructor to reset S.D handle
7122
7123 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
7124
7125         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
7126
7127 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7128
7129         * TextControl.cs (Insert): Update the caret position even if we don't
7130           have a handle yet, just don't call the driver in that case.
7131         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
7132           to the end of the new selection text (Fixes #79184)
7133
7134 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7135
7136         * Form.cs (Activate): Only activate if the handle is created)
7137         * Control.c:
7138           - Mark window as invisible when it's disposed
7139           - Check if window handle is created when setting window visible, 
7140             instead of relying just on the is_created variable
7141           - Check if object is disposed when creating the control (Fixes #79155)
7142
7143 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7144
7145         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
7146           when allowing layout again. Otherwise we re-generate the anchoring 
7147           distance to the border again and actually alter what the user wanted
7148           This is ugly, it'd be better if we used DisplayRectangle instead of
7149           ClientRectangle for Control.UpdateDistances, but that causes us to
7150           have other problems (initial anchoring positons would be wrong)
7151           (Fixes #78835)
7152
7153 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7154
7155         * Control.cs:
7156           - The size and location setters shouldn't go directly to 
7157             SetBoundsCore, but to SetBounds, which triggers layout on the
7158             parent, then calls SetBoundsCore. (Related to fix for #78835)
7159           - SetBounds: Moved actual location update code into this function
7160             from SetBoundsCore, to match MS. Added call to PerformLayout if
7161             we have a parent (to trigger resizing of anchored parents if the 
7162             child size has changed (see testcase for #78835) 
7163         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
7164           new control code
7165         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
7166
7167 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7168
7169         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
7170           System.Drawing when a toplevel window gets closed; there might
7171           be other toplevel windows belonging to the same app (Fixes #78052)
7172
7173 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
7174
7175         * FileDialog.cs: After reading FileDialog settings from mwf_config
7176           use Desktop prefix only if a real folder doesn't exist anymore.
7177         * FontDialog.cs: Added char sets.
7178           It is now possible to select the font, size or style with the
7179           textboxes.
7180
7181 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
7182
7183         * PrintPreviewDialog.cs: Use assembly name constants.
7184
7185 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7186
7187         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
7188           scrollbar from whacking it's buttons)
7189
7190 2006-08-24  Chris Toshok  <toshok@ximian.com>
7191
7192         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
7193         in this patch (aggregating setting Left/Top/Width/Height to
7194         setting Bounds on the scrollbars), but the crux of the fix is in
7195         Recalculate, where we scroll by the remaining scroll_position if
7196         we're hiding a scrollbar.  The 2*$5 reward in the comment is
7197         serious.
7198
7199 2006-08-24  Jackson Harper  <jackson@ximian.com>
7200
7201         * MdiClient.cs:
7202         * MdiWindowManager.cs: If the form is made a non-mdi window we
7203         need to remove the form closed event so that closing forms works
7204         correctly.
7205
7206 2006-08-24  Jackson Harper  <jackson@ximian.com>
7207
7208         * Control.cs: Make IsRecreating internal so that the driver can
7209         check it
7210         - Temporarily remove the Hide when controls are removed, its
7211         making a whole bunch of things not work because visibility isn't
7212         getting reset elsewhere correctly
7213         * Form.cs: Need to do a full handle recreation when the mdi parent
7214         is set.
7215         * XplatUIX11.cs: If we are recreating handles don't dispose the
7216         HWNDs.  What was happening is the handles were being recreated in
7217         SendWMDestroyMessages, but then flow continued on in that method
7218         and destroyed the new handles.
7219
7220 2006-08-23  Jackson Harper  <jackson@ximian.com>
7221
7222         * Form.cs: MdiClient is always at the back of the bus
7223         * Control.cs: When the order of items in the collection is changed
7224         we need to reset the all_controls array
7225         - do the same sorta setup thats done when adding a control when a
7226         control is set on the collection.
7227
7228 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7229
7230         * TextBoxBase.cs (get_Text): Return an empty array if our document
7231           is empty (fixes #79052)
7232
7233 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7234
7235         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
7236           on WM_SYSCHAR messages (fixes #79053)
7237
7238 2006-08-23  Chris Toshok  <toshok@ximian.com>
7239
7240         * DataGrid.cs: fix flickering when scrolling vertically.
7241
7242 2006-08-23  Chris Toshok  <toshok@ximian.com>
7243
7244         * DataGrid.cs (EndEdit): only invalidate the row header when we
7245         need to.
7246
7247 2006-08-23  Chris Toshok  <toshok@ximian.com>
7248
7249         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
7250         methods.  fixes the flicker when scrolling around.
7251
7252 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7253
7254         * FileDialog.cs: Making sure the control is created before we get a 
7255           chance to use it with BeginInvoke (Fixes #79096)
7256
7257 2006-08-23  Chris Toshok  <toshok@ximian.com>
7258
7259         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
7260         width to use when painting the rows.
7261
7262 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7263
7264         * TextBoxBase.cs:
7265           - Throw ArgumentException if a negative value is passed to SelectionLength
7266           - Update the selection end if start is moved. end needs to be always
7267             after start. (Fixes #79095)
7268           - Track selection length; MS keeps the selection length even if start
7269             is changed; reset on all other operations affection selection
7270
7271 2006-08-22  Jackson Harper  <jackson@ximian.com>
7272
7273         * TreeView.cs: Make sure both scrollbars get displayed and sized
7274         correctly when the other bar is visible.
7275         - Use the original clip rectangle for checking if the area between
7276         the two scrollbars is visible, not the viewport adjusted clipping
7277         rectangle.
7278
7279 2006-08-22  Jackson Harper  <jackson@ximian.com>
7280
7281         * Binding.cs: We don't use IsBinding because it requires the
7282         control to be created, which really shouldn't be necessary just to
7283         set a property on the control.
7284
7285 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7286
7287         * ComboBox.cs: Some CB.ObjectCollection methods must throw
7288         ArgumentNullReferenceException when the argument is null.
7289
7290 2006-08-21  Jackson Harper  <jackson@ximian.com>
7291
7292         * Timer.cs: Track the thread that the timer is started in (NOT
7293         CREATED), this way messages for it will only be triggered on its
7294         queue.
7295         * XEventQueue.cs: Track the timers here, this makes timers per
7296         thread, like MS.
7297         * XplatUIX11.cs: The timers are moved to the XEventQueue.
7298
7299 2006-08-19  Chris Toshok  <toshok@ximian.com>
7300
7301         * XplatUIX11.cs: after further communication with pdb, we get the
7302         best of both worlds.  SetZOrder working for un-Mapped windows, and
7303         no X errors for un-mapped windows.
7304
7305 2006-08-19  Chris Toshok  <toshok@ximian.com>
7306
7307         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
7308         as it was causing pdn toolbars to not have the correct stacking.
7309
7310 2006-08-18  Mike Kestner  <mkestner@novell.com> 
7311
7312         * ListView.cs : guard against negative ClientArea.Width in scrollbar
7313         calculation.  Not sure why control should ever be setting a negative
7314         width though.  Fixes #78931.
7315
7316 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7317
7318         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
7319         null items in ObjectCollection class.
7320         * ListBox.cs.: Likewise.
7321
7322 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
7323
7324         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
7325           as the base method in ThemeWin32Classic should work fine.
7326           Fixed bug #78607.
7327
7328 2006-08-18  Jackson Harper  <jackson@ximian.com>
7329
7330         * Binding.cs: When validating if the value entered doesn't convert
7331         properly reset to the old value.
7332         * RadioButton.cs: Don't fire click when we get focus.
7333
7334 2006-08-18  Jackson Harper  <jackson@ximian.com>
7335
7336         * FileDialog.cs: Paint the selection on the directory combobox the
7337         same way as on MS. 
7338
7339 2006-08-17  Jackson Harper  <jackson@ximian.com>
7340
7341         * ErrorProvider.cs: Don't allow the error control to be selected.
7342         * Control.cs: Don't send the SetFocus messages, the control
7343         activation will do this, and if we do it blindly here validation
7344         does not work.
7345
7346 2006-08-17  Jackson Harper  <jackson@ximian.com>
7347
7348         * Control.cs:
7349         * ContainerControl.cs: Make validation events fire in the correct
7350         order.  TODO: For some reason the first validation event is not
7351         getting fired.
7352
7353 2006-08-17  Mike Kestner  <mkestner@novell.com> 
7354
7355         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
7356
7357 2006-08-17  Mike Kestner  <mkestner@novell.com> 
7358
7359         * ComboBox.cs : implement scroll wheel support for popped-down
7360         state. Fixes #78945. 
7361
7362 2006-08-17  Jackson Harper  <jackson@ximian.com>
7363
7364         * TreeView.cs: Specify treeview actions (old patch that didn't get
7365         committed for some reason).
7366         - Don't let the mouse wheel scroll us too far.  Just want to make
7367         the bottom node visible, not scroll it all the ways to the top.
7368
7369 2006-08-17  Jackson Harper  <jackson@ximian.com>
7370
7371         * XplatUIX11.cs: Mouse wheel events go to the focused window.
7372
7373 2006-08-17  Mike Kestner  <mkestner@novell.com> 
7374
7375         * ComboBox.cs : don't do mouseover selection in simple mode.
7376
7377 2006-08-16  Jackson Harper  <jackson@ximian.com>
7378
7379         * Form.cs: Fire the closing events for all the mdi child windows
7380         when a window is closed.  If the cancel args are set to true, the
7381         main window still gets the event fired, but it doesn't not close.
7382         * MdiWindowManager.cs: Do this closing cleanup in a Closed
7383         handler, instead of when the button is clicked, so cancelling the
7384         close works correctly.
7385         * ComboBox.cs: Send the mouse down to the scrollbar.
7386
7387 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7388
7389         * ListBox.cs: When passing 'null' to SelectedItem,
7390         set SelectedIndex to -1, to unselect items. This is the
7391         observed behaviour in .Net.
7392
7393 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
7394
7395         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
7396           MS flags saying there won't be any. (fixes #78800)
7397         * Control.cs (HandleClick): Made virtual
7398
7399 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
7400
7401         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
7402           cultures. Fixed bug #78399.
7403
7404 2006-08-16  Jackson Harper  <jackson@ximian.com>
7405
7406         * Form.cs: Use the MdiClients MdiChildren property to access
7407         MdiChildren instead of creating the array from the child controls.
7408         * MdiClient.cs: Maintain a separate array of the mdi children, so
7409         that insertion order is maintained when the Z-order is changed.
7410
7411 2006-08-16  Mike Kestner  <mkestner@novell.com> 
7412
7413         * ListView.cs : add an ItemComparer and default to it for sorting.
7414         Fixes #79076, but sorting needs a complete overhaul to be compat with
7415         MS.
7416
7417 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
7418
7419         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
7420
7421 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
7422
7423         * Hwnd.cs (Mapped): Properly traverse the tree
7424
7425 2006-08-15  Chris Toshok  <toshok@ximian.com>
7426
7427         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
7428         pass manager.Current.GetType() to ParseData.  It has to be the
7429         property type.  So, hold off doing the ParseData until we're in
7430         SetPropertyValue where we know the type.  This fixes the crash in
7431         #78821 but the textbox is still empty.
7432
7433 2006-08-15  Chris Toshok  <toshok@ximian.com>
7434
7435         * DataGrid.cs:
7436         - when we're scrolling, only call Edit() again if the
7437         current cell is still unobscured. Fixes bug #78927.
7438         - when handling mousedown on a cell, ensure the cell is visible
7439         before calling Edit.
7440         - remove the properties from DataGridRow, and remove the
7441         DataGridParentRow class altogether.
7442         
7443
7444 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
7445
7446         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
7447           fire OnTextChanged by ourselves. There's no point calling base,
7448           we don't set the base value anywhere else. Fixes #78773.
7449
7450 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7451
7452         * ListBox.cs: Call CollectionChanged when modifying
7453         an item from Items indexer, to update the actual items
7454         in the list box.
7455
7456 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7457
7458         * PrintDialog.cs: Small fixes for focus and a pair of checks,
7459         to match .Net behaviour.
7460
7461 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
7462
7463         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
7464
7465 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
7466
7467         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
7468
7469 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
7470
7471         * MessageBox.cs: Prevent potential NRE exception.
7472         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
7473
7474 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
7475
7476         * MessageBox.cs: Calculate the owner of a messagebox, also make
7477           it topmost. Fixes #78753
7478
7479 2006-08-14  Chris Toshok  <toshok@ximian.com>
7480
7481         * XplatUIX11.cs: A couple of fixes so that metacity will let us
7482         programmatically move windows.  first, set the PPosition hint as
7483         well as the USPosition hint.  Second include some code from pdb
7484         that sets the window type to NORMAL when we set the transient for
7485         hint.  This is because, in the absence of a window type, metacity
7486         thinks any window with TransientFor set is a dialog, and refuses
7487         to let us move it programmatically.  fascists.
7488
7489 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
7490
7491         * XplatUIX11.cs: When setting normal hints, take into consideration
7492           an different hints previously set so we don't delete them (fixes #78866)
7493
7494 2006-08-12  Chris Toshok  <toshok@ximian.com>
7495
7496         * ToolBarButton.cs: make Layout return a boolean, if something to
7497         do with the button's layout changed.
7498
7499         * ToolBar.cs:
7500         - add another parameter to Redraw, @force, which all existing
7501           calls set to true.
7502         - make the Layout function return a boolean which is true if the
7503           layout has actually changed.  Redraw now uses this (and @force)
7504           to determine when to invalidate.  At present the only place
7505           where @force can be false is the call from OnResize, when
7506           background_image == null.  So, resizing a toolbar when the
7507           layout doesn't change results in no drawing.
7508
7509 2006-08-12  Chris Toshok  <toshok@ximian.com>
7510
7511         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
7512         the VScrollBar and HScrollbar reversed.  oops.
7513
7514         * DataGrid.cs: fix the logic that assigns sizes to the implicit
7515         scrollbars.  we were assigning them twice (once in
7516         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
7517         therefore causing two scrollbar resizes (and redraws?) to happen
7518         per grid resize.
7519
7520 2006-08-12  Chris Toshok  <toshok@ximian.com>
7521
7522         * ToolBarButton.cs: redraw the entire button if the theme tells us
7523         to.
7524
7525         * Theme.cs: add ToolBarInvalidateEntireButton.
7526
7527         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
7528         buttons, just the border.
7529
7530         * ThemeNice.cs: redraw the entire toolbar button since we need to
7531         draw the highlight image.
7532
7533         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
7534         we need to redraw the entire button (not just the border).
7535
7536 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
7537
7538         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
7539           for vertical bars. Fixes the mismatches shown by #78513
7540
7541 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
7542
7543         * FileDialog.cs: If a saved/remembered path doesn't exist
7544           anymore, fall back to "Desktop".
7545
7546 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
7547
7548         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
7549           parent. It's apparently legal to not have one
7550         * XplatUIX11.cs:
7551           - SetZOrder: Don't try to set Z-Order on an unmapped window
7552           - CreateWindow: 0,0 are legal coordinates for a window. don't move
7553             it unless the coordinates are negative
7554
7555 2006-08-10  Mike Kestner  <mkestner@novell.com>
7556
7557         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
7558         when setting to null per msdn docs.  Fixes #78854.
7559
7560 2006-08-10  Chris Toshok  <toshok@ximian.com>
7561
7562         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
7563         flickering by setting a clip rectangle on the Graphics when we
7564         need to redraw just a particular menuitem.  Also, rename "OnClick"
7565         to "OnMouseDown" to reflect what it actually is.
7566         
7567         * Form.cs: track the OnMouseDown change.
7568
7569 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
7570
7571         * CommonDialog.cs: Properly inherit the CreateParams from the form
7572           and only change what we need. Fixes #78865
7573
7574 2006-08-10  Chris Toshok  <toshok@ximian.com>
7575
7576         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
7577         flickering in flat mode (and most of the flickering in general) by
7578         only invalidating the button border (and not the entire rectangle)
7579         when the state changes.  A couple of cases still flicker:
7580         ToggleButtons, and the dropdown arrow case when the user mouse
7581         ups.
7582
7583 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
7584
7585         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
7586           for german keyboards. Numlock state shouldn't affect the behaviour
7587           of the Del key. Fixes bug #78291.
7588
7589 2006-08-10  Chris Toshok  <toshok@ximian.com>
7590
7591         * ListControl.cs: remove the items.Clear line from BindDataItems,
7592         as this is the first thing done by both subclasses in their
7593         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
7594         passed -1, refresh the list.  This gets databinding working when
7595         the datasource is set on the list before the datasource is
7596         populated (as in wf-apps/ReportBuilder.)
7597
7598         * ComboBox.cs: remove the argument to BindDataItems.  This call
7599         should really go away, and be initiated by the ListControl code.
7600
7601         * ListBox.cs: same.
7602
7603 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
7604
7605         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
7606           if no data is in the document when the control is displayed
7607
7608 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
7609
7610         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
7611           yes (fixes #78806)
7612         * TextControl.cs: 
7613           - PositionCaret: Allow positioning of caret but don't call methods 
7614             requiring a handle if the window isn't created yet
7615           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
7616           - owner_HandleCreated: Don't position the caret, just update it's 
7617             location. User might have already set a different position
7618
7619 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
7620
7621         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
7622           windows. Screws up the returned coordinates for child windows. 
7623           Fixes #78825. I'm hoping this doesn't break something, since the
7624           code was explicitly put in 8 months ago, but no bug was attached.
7625           Menus still seem to work properly.
7626
7627 2006-08-08  Chris Toshok  <toshok@ximian.com>
7628
7629         * DataGrid.cs: make BeginInit/EndInit actually do what they're
7630         supposed to do - delay data binding until the EndInit call.  Also,
7631         make the table style collection's CollectionChangeAction.Refresh
7632         work properly.
7633
7634         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
7635         (with action = Refresh) when a consituent table's MappingName is
7636         changed.
7637
7638 2006-08-08  Chris Toshok  <toshok@ximian.com>
7639
7640         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
7641         Invalidate, since changing the text can change the size of the all
7642         toolbar buttons.
7643
7644 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
7645
7646         * Form.cs (AddOwnedForm): Still need to add the form to our listif
7647           we don't have it yet
7648
7649 2006-08-08  Chris Toshok  <toshok@ximian.com>
7650
7651         * PrintControllerWithStatusDialog.cs: don't .Close() the status
7652         dialog, as this causes X errors later on, since we actually
7653         destroy the window.  Instead, .Hide() it.
7654
7655 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
7656
7657         * ComboBox.cs: Added focus reflection for popup window
7658         * XplatUIX11.cs: 
7659           - Removed transient setting for non-app windows for now, not sure it
7660             was needed
7661           - Fixed logic checking if we have captions when deciding 
7662             override_redirect, WS_CAPTION is two bits and a 0 check was not
7663             sufficient
7664           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
7665             complicated
7666         * Form.cs: 
7667           - AddOwnedForm: Don't just add the form to the list, call the property
7668             to ensure the driver is informed about the ownership as well
7669           - CreateHandle: Set the TopMost status in the driver if we have an owner
7670         * XplatUI.cs: Fixed debug statement
7671
7672 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
7673         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
7674           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
7675           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
7676           TrackBarRenderer.cs: Make constructor private.
7677         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
7678         * ProfessionalColorTable.cs: Make properties virtual.
7679
7680 2006-08-06  Duncan Mak  <duncan@novell.com>
7681
7682         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
7683         is not changing.
7684
7685 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7686         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
7687           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
7688           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
7689           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
7690           Initial import of new 2.0 classes.
7691
7692 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7693         * Application.cs: Add 2.0 VisualStyles properties.
7694
7695 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7696         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
7697           XplatUIX11.cs: Create property to allow access to existing private
7698           variable "themes_enabled"
7699
7700 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7701
7702         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
7703         file size, as otherwise our class libraries fail using windows. Fixes
7704         bug #78759.
7705
7706 2006-08-04  Jackson Harper  <jackson@ximian.com>
7707
7708         * Form.cs:
7709         * XplatUIX11.cs: Move the toolwindow window manager creation into
7710         the X11 driver, this way on win32 we can let windows create/handle
7711         the toolwindows.
7712
7713 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7714
7715         * PrintDialog.cs: Remove some redundant checks, add some others,
7716         clean some code, and move the focus to the text boxes when the
7717         values are incorrect.
7718
7719 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
7720
7721         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
7722
7723 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
7724
7725         * NumericUpDown.cs: Setting the Minimum and Maximum is now
7726           handled correctly. Fixes bug #79001.
7727
7728 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7729
7730         * PrintDialog.cs: The "Copies" numeric up down must have
7731         set the Minimum property to 1; only if the value is bigger
7732         than 1, activate "Collate" check box. This is the behaviour of .Net.
7733         Also modify the Document elements only if it is not null.
7734
7735 2006-08-03  Jackson Harper  <jackson@ximian.com>
7736
7737         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
7738         length. (We have a larger array then actual node count).
7739                 
7740 2006-08-03  Jackson Harper  <jackson@ximian.com>
7741
7742         * ComboBox.cs: Don't show selection by default.
7743         - The SelectAll isn't needed here, since the focus code should do
7744         that
7745         - DDL style lists to manual selection drawing, so when they
7746         get/lose focus they have to invalidate.
7747
7748 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
7749
7750         * TextBoxBase.cs: Don't always show all selections by default.
7751
7752 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
7753         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
7754           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
7755           Fixed various typos.
7756
7757 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
7758
7759         * Control.cs: Removing the controls in a ControlCollection with
7760           Clear now hides the controls as expected. Fixes bug #78804. 
7761
7762 2006-08-03  Jackson Harper  <jackson@ximian.com>
7763
7764         * Control.cs: Revert previous focus patch, it breaks reflector.
7765
7766 2006-08-03  Jackson Harper  <jackson@ximian.com>
7767
7768         * ComboBox.cs: Cleanup selection and focus with the combobox.
7769         This also eliminates some duplicated keyboard code, since now
7770         everything is handled by the main class.
7771         - Make list selection work on mouse up instead of down, to match
7772         MS.
7773
7774 2006-08-02  Jackson Harper  <jackson@ximian.com>
7775
7776         * Control.cs: Setting focus needs to go through the whole
7777         selection mechanism.
7778
7779 2006-08-02  Chris Toshok  <toshok@ximian.com>
7780
7781         * PrintPreviewDialog.cs: change MinimumSize to use
7782         base.MinimumSize so it works.
7783
7784 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
7785
7786         * TextControl.cs:
7787           - UpdateCaret: Added sanity check in case caret isn't defined yet
7788           - Line.Delete: Now updating selection and caret markers if we're
7789             transfering a node (Properly fixes #78323)
7790           - SetSelectionEnd: Added sanity check
7791         * TextBoxBase.cs: Removed broken attempt to fix #78323
7792
7793 2006-08-01  Chris Toshok  <toshok@ximian.com>
7794
7795         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
7796         Close() call is handled in Form, not here.
7797
7798 2006-08-01  Chris Toshok  <toshok@ximian.com>
7799
7800         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
7801         layout/rendering.
7802
7803         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
7804         for sizes < 100% zoom.  The code now aggressively attempts to keep
7805         from calling document.Print (), and tries not to use the scaling
7806         g.DrawImage whenever possible (it still does if you scale to >
7807         100%, since usually that involves huge images).
7808
7809         * PrintPreviewControl.cs: hook up the close button.
7810
7811 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
7812         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
7813           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
7814           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
7815           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
7816           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
7817           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
7818           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
7819           Removed [Serializable] for 2.0 Event Handlers.
7820
7821 2006-07-31  Jackson Harper  <jackson@ximian.com>
7822
7823         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
7824         * TextControl.cs: Uncomment out the body of this method.
7825
7826 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
7827
7828         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
7829           standard cursors.
7830
7831 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7832
7833         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
7834           that embed TextBox and need selections visible even if textbox is not
7835           focused to enforce that behaviour.
7836         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
7837           selection drawing
7838
7839 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7840
7841         * TextControl.cs:
7842           - Added new SetSelectionStart/SetSelectionEnd overloads
7843           - Fixed viewport width assignment to be accurate
7844           - Adjusted alignment line shift calculations to allow cursor on right
7845             aligned lines to be always visible at the right border (like MS)
7846         * TextBoxBase.cs:
7847           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
7848           - TextBoxBase_SizeChanged: recalculating canvas on size changes
7849           - CalculateScrollBars: Use ViewPort size instead of window size, to
7850             properly consider space occupied by the border and scrollbars 
7851             (Fixes #78661)
7852           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
7853             calculations; no longer leaves artifacts
7854           - CaretMoved: Adjusted window scrolling to match MS and fixed several
7855             calculation bugs (Still missing right/center align calculations)
7856
7857 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
7858
7859         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
7860           use of both scroll rect and clip rect, as they do the same.
7861
7862 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7863
7864         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
7865           in the event handler (fixes #78912)
7866
7867 2006-07-31  Chris Toshok  <toshok@ximian.com>
7868
7869         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
7870         grid.ListManager.Count, since grid.ListManager might be null.
7871         This of course begs the question "why are we drawing rows for a
7872         grid with no list manager (and therefor no rows)?"  Fixes the
7873         crash in bug #78929.
7874
7875 2006-07-31  Chris Toshok  <toshok@ximian.com>
7876
7877         * RelatedPropertyManager.cs: Don't always chain up to the parent
7878         ctor.  instead, call SetDataSource if the parent's position is !=
7879         -1.  Fixes the crash in #78822.
7880
7881 2006-07-31  Chris Toshok  <toshok@ximian.com>
7882
7883         * DataGrid.cs (get_ListManager): use field instead of property
7884         accessors for datasource and datamember.
7885         (RowsCount): make internal again.
7886         (OnMouseDown): end edits before resizing columns/rows.
7887         (OnMouseUp): restart edits after resizing columns/rows.
7888
7889 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
7890
7891         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
7892           This fixes the situation where the last set cursor is displayed
7893           whenever the mouse is over scrollbars.
7894
7895 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7896
7897         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
7898         Document properties, as well as initial values.
7899
7900 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
7901
7902         * XplatUIWin32.cs (SetBorderStyle): Setting both border
7903           and ClientEdge results in a 3-pixel border, which is
7904           wrong.
7905
7906 2006-07-28  Jackson Harper  <jackson@ximian.com>
7907
7908         * TreeNodeCollection.cs: Fix the clear method.
7909         - Fix the Shrink also
7910
7911 2006-07-27  Jackson Harper  <jackson@ximian.com>
7912
7913         * TreeView.cs: Make sure the visible order is computed when we
7914         attempt to size the scrollbars (for trees that mess with the
7915         scrolling when they shouldn't.
7916         - Make sure to give the scrollbars valid values.
7917
7918 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
7919
7920         * XplatUIX11.cs: Move motion compression code to where it
7921           has less performance impact
7922
7923 2006-07-26  Jackson Harper  <jackson@ximian.com>
7924
7925         * UpDownBase.cs: When the control is selected make the child
7926         controls non selectable, so that a click on them won't do a
7927         focus/unfocus cycle.
7928         - Don't give focus to the text box when the spinner is selected.
7929         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
7930
7931 2006-07-26  Chris Toshok  <toshok@ximian.com>
7932
7933         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
7934         satisfied with this solution.  If the bitmaps are small, we should
7935         just cache them in the PrintPreviewDialog and draw them here.
7936         Also, the layout is broken for the 2-up and 3-up cases.
7937
7938         * Theme.cs: add PrintPReviewControlPaint.
7939
7940         * PrintPreviewDialog.cs: first pass implementation.
7941
7942         * PrintPreviewControl.cs: first pass implementation.  No
7943         scrollbars yet.
7944
7945         * PrintDialog.cs: only validate fields if that particular portion
7946         of the UI is enabled.  Also, set the document's controller to a
7947         PrintControllerWithStatusDialog wrapping the document's print
7948         controller.
7949
7950         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
7951         bring up a SaveFileDialog (i hope we don't want to match the
7952         behavior of the crappy windows file entry) and set the
7953         PrinterSettings.PrintFileName accordingly.
7954
7955 2006-07-26  Jackson Harper  <jackson@ximian.com>
7956
7957         * ContainerControl.cs: Add a field that disables auto selecting
7958         the next control in a container when the container is activated.
7959         * UpDownBase.cs: Don't select the text box when the up down is
7960         selected.
7961
7962 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
7963
7964         * XEventQueue.cs: Added methods for peeking (used for compression
7965           of successive events)
7966         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
7967           mouse move events (fixes #78732)
7968
7969 2006-07-25  Jackson Harper  <jackson@ximian.com>
7970
7971         * UpDownBase.cs: Use an internal class for the textbox so that we
7972         can control focus.  the updown control should always have focus,
7973         if either the text area or the buttons are clicked.
7974         - Send the key messages to the textbox, since it never actually
7975         has focus
7976         - Activate and decativate the textbox caret.
7977
7978 2006-07-24  Jackson Harper  <jackson@ximian.com>
7979
7980         * Control.cs: Use the directed select when selecting a control,
7981         this way the container controls override will get called and the
7982         whole ActiveControl chain will get triggered.  TODO: probably need
7983         to make sure this gets done everywhere instead of the old
7984         Select(Control).
7985         * ContainerControl.cs: Implement the directed Select method to
7986         find and activate the correct child control.    
7987         
7988 2006-07-22  Mike Kestner  <mkestner@novell.com>
7989
7990         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
7991         menu handling code so that clicks without a grab work too.
7992         [Fixes #78914]
7993
7994 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
7995
7996         * FileDialog.cs: Enable the BackButton when dirstack has one element.
7997           Added some small optimizations.
7998
7999 2006-07-21  Matt Hargett  <matt@use.net>
8000
8001         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
8002
8003 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
8004
8005         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
8006           tests pass and match MS in some strange border cases.
8007
8008 2006-07-21  Chris Toshok  <toshok@ximian.com>
8009
8010         * ThemeWin32Classic.cs: handle drawing of the relation links and
8011         parent row buttons.
8012
8013         * Theme.cs: change args to DataGridPaintParentRow.
8014
8015         * DataGrid.cs: Don't use controls for the relation links and
8016         parent buttons, so we have to handle all their interactions in
8017         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
8018         when we're navigating through child tables, so we can reinstate
8019         selection, expanded state, current cell, etc.
8020
8021 2006-07-20  Chris Toshok  <toshok@ximian.com>
8022
8023         * ToolBar.cs: When we redraw a button, for whatever reason,
8024         there's no reason to redraw the entire toolbar.  Also, don't call
8025         Control.Refresh from within Redraw, as it's much heavier than
8026         Invalidate (which is really what we want).
8027
8028 2006-07-20  Chris Toshok  <toshok@ximian.com>
8029
8030         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
8031         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
8032         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
8033         traces from within a debug IBindingList datasource
8034         (in mono/winforms/datagrid) for *days*, I've finally gotten things
8035         to work in a similar fashion.
8036
8037 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8038
8039         * ListBox.cs: Don't call Sort () when setting 
8040         the Sorted property to false (avoid an unnecessary sort).
8041
8042 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8043
8044         * ListControl.cs: DataSource should throw an ArgumentException
8045         instead of a normal exception when the argument is not of the 
8046         correct type.
8047
8048 2006-07-20  Mike Kestner  <mkestner@novell.com>
8049
8050         * Control.cs: add InternalPreProcessMessage to allow us to steal
8051         key events before MWF gets its paws on them.  Adapted from a
8052         suggestion by eno.
8053         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
8054         up/down/left/right navigation. Override the new internal control
8055         method to steal the events since they never make it to WndProc.
8056         * ToolBarButton.cs: don't worry about pushed when setting hilight
8057         since the drawing code prefers pushed to hilight. Invalidate on 
8058         Hilight changes. Fixes #78547 and #78525.
8059
8060 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
8061
8062         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
8063           the canvas size. Fixes #78868
8064
8065 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
8066
8067         * Splitter.cs: Track requested split position until first layout
8068           is performed. Fixes #78871
8069
8070 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
8071
8072         * Application.cs: Removed code that forces 1.x for the version
8073           number if the version started with 0. Not sure why that code was
8074           there and I couldn't find any bugs that indicated we needed it.
8075           Fixes #78869
8076
8077 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
8078
8079         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
8080           ResetDefaults(), just write some output to the console until it's
8081           implemented. Fixes bug #78907 for now. Eliminated two warnings.
8082
8083 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
8084
8085         * PropertyGridView.cs: set StartPosition of drop down forms
8086         so they appear in correct initial spot.  Fixes #78190.
8087
8088 2006-07-19  Mike Kestner  <mkestner@novell.com>
8089
8090         * ThemeWin32Classic.cs: use parent background color when drawing
8091         flat toolbars.  Restructure the conditionals to make sure non-flat
8092         non-Divider toolbars are filled too.  Fixes #78837.
8093
8094 2006-07-19  Mike Kestner  <mkestner@novell.com>
8095
8096         * ListBox.cs: Sort on collection changes even if the handle
8097         isn't created yet.  Fixes #78813.
8098
8099 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8100
8101         * ListControl.cs: DisplayMember should never be null,
8102         and now we assign String.Empty when null is passed to it (this
8103         is the .Net way).
8104
8105 2006-07-17  Mike Kestner  <mkestner@novell.com>
8106
8107         * ListViewItem.cs: restructure Font and subitem Font handling 
8108         to hold a specific font and refer back to owner on null.
8109         Fixes #78761.
8110
8111 2006-07-17  Mike Kestner  <mkestner@novell.com>
8112
8113         * ToolBar.cs: bandaid for side-effect of previous patch which was
8114         discarding explicit heights for non-AutoSize toolbars.  Need to
8115         extend my format tester to deal with AutoSize=false. Fixes #78864.
8116
8117 2006-07-15  Jackson Harper  <jackson@ximian.com>
8118
8119         * LabelEditTextBox.cs:
8120         * TreeView.cs: Use a new LabelEdit class for node editing, this
8121         class automatically 'closes' itself when it gets the enter key or
8122         loses focus.
8123         - Use the client rectangle when setting the trees scrollbars, so
8124         border style is taken into account.
8125         
8126 2006-07-14  Jackson Harper  <jackson@ximian.com>
8127
8128         * TreeNode.cs:
8129         * TreeView.cs: Make the editing work similar to MSs, firing the
8130         events correctly and ending edits correctly.
8131
8132 2006-07-14  Mike Kestner  <mkestner@novell.com>
8133
8134         * ToolBarButton.cs:
8135         * ToolBar.cs: layout restructuring and redraw enhancements to support
8136         formatting changes gracefully, like setting TextAlign, ImageList, 
8137         ButtonSize, and Appearance.  Handles explicit button sizing quirks
8138         of the MS controls.  Things like flat toolbars ignoring button size
8139         but becoming constant sized at the largest button's size.  Normal
8140         toolbars with an image set cannot be shrunk smaller than the image,
8141         but text can be clipped/ignored.
8142         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
8143         is zero.  Seems like DrawString should be smart enough to not put
8144         anything on screen though. Also trim labels and ellipsize at the char
8145         boundary, not word.
8146         Fixes #78711 and #78483.
8147
8148 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
8149
8150         * FolderBrowserDialog.cs: Disable "New Folder" button and
8151           "New Folder" contextmenu menuitem if a folder like "My Computer"
8152           is selected.
8153
8154 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
8155
8156         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
8157         * FolderBrowserDialog.cs:
8158           - Use MWFConfig to store and read size and position settings
8159           - Added code to create a new folder (button or context menu).
8160             Use TreeView labeledit to change the name of the new folder.
8161
8162 2006-07-14  Jackson Harper  <jackson@ximian.com>
8163
8164         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
8165         when the tree is scrolled we end editing.
8166
8167 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
8168
8169         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
8170           Down arrows
8171
8172 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
8173
8174         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
8175         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
8176         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
8177         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
8178         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
8179         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
8180         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
8181         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
8182         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
8183         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
8184         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
8185         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
8186         ListViewItemSelectionChangedEventHandler.cs,
8187         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
8188         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
8189         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
8190         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
8191         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
8192         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
8193         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
8194         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
8195         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
8196         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
8197         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
8198         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
8199         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
8200         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
8201         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
8202         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
8203         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
8204         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
8205         WebBrowserNavigatingEventHandler.cs, 
8206         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
8207
8208 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
8209
8210         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
8211         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
8212         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
8213         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
8214         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
8215         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
8216         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
8217         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
8218         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
8219         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
8220         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
8221         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
8222         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
8223         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
8224         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
8225         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
8226         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
8227         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
8228         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
8229         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
8230         ListViewItemStates.cs, MaskFormat.cs: Added
8231
8232 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
8233
8234         * PropertyGridView.cs: Fix keyboard navigation of drop down.
8235         Patch from eno for bug 78558.
8236         
8237 2006-07-13  Jackson Harper  <jackson@ximian.com>
8238
8239         * TreeView.cs: When an edit is finished make sure that the
8240         selected node is visible.
8241         - When setting the top/bottom use the scrollbars is_visible, so
8242         everything will be set correctly even if the tree isn't visible
8243         yet.
8244
8245 2006-07-13  Jackson Harper  <jackson@ximian.com>
8246
8247         * ComboBox.cs: Revert the item->index part of my previous patch.
8248         * TreeView.cs: Use LostFocus instead of Leave for detecting when
8249         the edit box has lost focus (duh).
8250         - Just make the edit box not visible when we get return, that will
8251         take the focus, which will call EndEdit
8252         * TreeNode.cs When we start editing, notify the treeview.
8253
8254 2006-07-12  Jackson Harper  <jackson@ximian.com>
8255
8256         * ComboBox.cs: Clear out old items before setting the item list.
8257         This prevents databound controls from having their items added
8258         twice.
8259         - Switch the combobox to use indices whereever possible instead of
8260         using Item's.  This allows usto navigate through lists that have
8261         more then one item with the same string value (ie a, b, b, a).
8262         - Scroll the listboxes scrollbar when a non visible item is
8263         highlighted
8264         - Allow keypress to cycle through all the possible values. For
8265         example if you have b1, b2, b3 and hold down the B key all the
8266         values will be cycled through.
8267         
8268 2006-07-12  Jackson Harper  <jackson@ximian.com>
8269
8270         * TextBoxBase.cs:
8271         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
8272         this using the internal methods.
8273         * Control.cs: Add OnGotFocusInternal.  A new method that allows
8274         controls to "override" OnGotFocus and change focus behavior if
8275         needed.
8276         - Same thing for LostFocus
8277         * ComboBox.cs: Pass off focus to the text control properly.
8278
8279 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
8280
8281         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
8282         * FolderBrowserDialog.cs: Almost a complete rewrite.
8283           - Better support for Environment.Specialfolders
8284           - Added support for MWFVFS
8285           - Made setting SelectedPath work
8286
8287 2006-07-12  Jackson Harper  <jackson@ximian.com>
8288
8289         * Control.cs: Optimze getting all the controls.
8290
8291 2006-07-11  Jackson Harper  <jackson@ximian.com>
8292
8293         * ContainerControl.cs: Override SETFOCUS in the container control,
8294         so that it is not selected on mouse click.
8295
8296 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
8297
8298         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
8299           Hopefully we will have a better way once all of focus is complete.
8300
8301 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
8302
8303         * ThemeWin32Classic.cs: Commented out some debug code and fixed
8304           a compile error with csc.
8305
8306 2006-07-11  Jackson Harper  <jackson@ximian.com>
8307
8308         * Control.cs: When hiding a control only select the next control
8309         if the current control was focused.
8310         - Don't handle enter/leave when setting/killing focus, this is
8311         done by the container control.
8312         - Remove is_selected, it's not needed anymore.
8313         - Add utility methods for selecting a child control, and for
8314         firing the Enter/Leave events.
8315         * ContainerControl.cs: When a control is activated fire the
8316         enter/leave events.
8317         - Don't wrap when processing the tab key, so that focus can be
8318         moved outside of the container.
8319         - Use the correct active control
8320
8321 2006-07-11  Jackson Harper  <jackson@ximian.com>
8322
8323         * ComboBox.cs: Remove some debug code that was blinding me.
8324         * UpDownBase.cs: These controls actually aren't implicit, they are
8325         visible to the user.
8326
8327 2006-07-10  Chris Toshok  <toshok@ximian.com>
8328
8329         * DataGrid.cs: move back to the is_adding boolean field.  god i
8330         hate this is_editing/is_adding/is_changing stuff.
8331
8332 2006-07-10  Chris Toshok  <toshok@ximian.com>
8333
8334         * DataGridTableStyle.cs: just check if the property type is bool.
8335         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
8336         Don't use CanRenderType.
8337
8338         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
8339         if our text == NullText.  Remove CanRenderType.
8340
8341         * DataGridBoolColumn.cs: nuke CanRenderType.
8342
8343         * DataGrid.cs: reenable some code to end the current edit inside
8344         of set_CurrentCell.  This fixes the other 1.1.16 regression.
8345         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
8346         Also, remove the visible_row_count arg from CalcRowHeaders, since
8347         we don't need to worry about the actual height of the area.
8348
8349 2006-07-10  Chris Toshok  <toshok@ximian.com>
8350
8351         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
8352         mode, just return.
8353
8354         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
8355         the real sense of the IsInEditOrNavigateMode property (true =
8356         navigate, false = edit).  Also, update OnKeyPress to reflect this.
8357
8358         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
8359         column style exists, we still need to set its property descriptor
8360         to match up with our list manager.
8361
8362 2006-07-10  Chris Toshok  <toshok@ximian.com>
8363
8364         * ThemeWin32Classic.cs: implement the new row/header painting
8365         approach.  The parent row painting will likely go away and
8366         replaced with label controls, but the rest seems to work ok (and
8367         efficiently).
8368
8369         * Theme.cs: change the way we draw datagrid rows.  we don't draw
8370         the row headers as a block now.  Instead we draw them in the
8371         normal draw-row loop.  Add some calls for drawing parent rows and
8372         relation rows.
8373
8374         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
8375         a default table style.  Set the defaults from ThemeEngine.Current,
8376         not SystemColors.  Fix lots of misc issues with property setters.
8377
8378         * DataGrid.cs: move loads of style information out of this class
8379         as it's being duplicated with DataGridTableStyle.  keep track of a
8380         special DataGridTableStyle for the properties we used to mirror
8381         here.  Switch all the style properties to access this table style
8382         instead of instance fields of this class.  Also add a internal
8383         class to represent parent rows (more needs to be stored here, like
8384         the selection state from the parent table, as well as the
8385         expansion state.)  Also, for datasources with relations, do the
8386         right thing for collapse/expand, and add support for the
8387         navigation/parent row buttons.
8388
8389         Lastly, fix the crash in the 1.1.16 build.
8390
8391         * GridTableStylesCollection.cs: make the explicit interface
8392         implementations call the class's methods as opposed to duplicating
8393         them.
8394
8395         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
8396         0 so the text doesn't jump around when we move the cursor.
8397
8398 2006-07-10  Jackson Harper  <jackson@ximian.com>
8399
8400         * TextBoxBase.cs:
8401         * ListBox.cs: Match MS's ToString (this makes debugging focus
8402         stuff infinitely easier).
8403
8404 2006-07-10  Jackson Harper  <jackson@ximian.com>
8405
8406         * Control.cs (SelectNextControl): When checking the control's
8407         parent use this instead of ctrl.parent so that null can be passed
8408         to SelectNextControl. (I have unit tests for this).
8409         - Remove unused var.
8410
8411 2006-07-10  Chris Toshok  <toshok@ximian.com>
8412
8413         * CurrencyManager.cs: correct one regression, the removal of the
8414         finalType field.  Also, add a MonoTODO on CanAddRows, implement
8415         Refresh() correctly, and fix some event emission in
8416         ListChangedHandler.
8417
8418 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
8419
8420         * FileDialog.cs: Don't use brackets for new folders if they exist
8421           under *nix. Instead use -(number of existing folders +1).
8422
8423 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
8424
8425         * FileDialog.cs:
8426           - Fixed really nasty bug #78771
8427           - Don't block the whole GUI when reading directories with a lot of
8428             entries. Use an other thread instead and call BeginInvoke to
8429             update the ListView in MWFFileView
8430
8431 2006-07-07  Chris Toshok  <toshok@ximian.com>
8432
8433         * Control.cs (Dispose): release any Capture when disposing.
8434
8435 2006-07-07  Chris Toshok  <toshok@ximian.com>
8436
8437         * LinkLabel.cs (Select): if we chain up to the parent, set
8438         focused_index to -1 so we'll search for the first available link
8439         the next time the user tabs into us.  Also, if the direction is
8440         backward and focused_index == -1, start the search from the last
8441         element.
8442
8443 2006-07-07  Chris Toshok  <toshok@ximian.com>
8444
8445         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
8446         is beyond the end of the text, don't do anything.
8447         (CreateLinkPieces): set our ControlStyles.Selectable based on
8448         whether or not we have any links.
8449         (Link.Invalidate): use a loop instead of foreach.
8450         (Link.set_Start): null out owner.sorted_links so it'll be
8451         recreated by CreateLinkPieces.
8452
8453 2006-07-06  Chris Toshok  <toshok@ximian.com>
8454
8455         * LinkLabel.cs: revert the SetStyle change.
8456
8457 2006-07-06  Chris Toshok  <toshok@ximian.com>
8458
8459         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
8460         (OnEnableChanged): s/Refresh/Invalidate
8461         (OnGotFocus): if we have a focused index already, refocus it (so
8462         if we mouse out/in to the window it'll focus the right link).
8463         (OnKeyDown): move the tab handling out of here.
8464         (OnLostFocus): don't set focused_index to -1, so we can refocus it
8465         when we lose focus.
8466         (OnMouseDown): don't Capture here - Control handles it.  Also,
8467         focus the active link.
8468         (OnMouseUp): don't deal with Capture.
8469         (OnPaintBackgroundInternal): remove.
8470         (OnTextAlignChanged): CreateLinkPieces before calling the
8471         superclass's method.
8472         (OnTextChanged): call CreateLinkPieces before calling superclass's
8473         method.
8474         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
8475         move around.
8476         (Select): implement this, moving the selection between different
8477         links, and call parent.SelectNextControl if we don't have another
8478         link to focus in the given direction.
8479         (CreateLinkPieces): call Invalidate instead of Refresh.
8480         
8481 2006-07-06  Chris Toshok  <toshok@ximian.com>
8482
8483         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
8484         new LinkLabel internals.
8485
8486         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
8487         over pieces looking for active/focused/etc links.  also, deal with
8488         runs of text (and links) with embedded \n's in them, and use
8489         MeasureCharacterRanges instead of MeasureString to figure out the
8490         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
8491         two-step.
8492
8493 2006-07-04  Jackson Harper  <jackson@ximian.com>
8494
8495         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
8496         XKB or key auto repeat, do it manually.  Without key auto repeat,
8497         when a key is held down we get key press, key release, key press,
8498         key release, ... with auto repeat we get key press, key press, key
8499         press ..., and then a release when the key is actually released.
8500
8501 2006-07-03  Jackson Harper  <jackson@ximian.com>
8502
8503         * TabControl.cs:
8504         * ThemeWin32Classic.cs: Tabs do not obey normal background color
8505         rules, they are always control color regardless of the background
8506         color.
8507
8508 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
8509
8510         * FileDialog.cs: Added internal class MWFConfig.
8511           Removed Registry support and replaced it with support for the new
8512           MWFConfig class. See MWFConfig comments for more information.
8513
8514 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
8515
8516         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
8517           rectangle. Added some patches from eno from bug #78490 and fixed
8518           the arrow position for small up and down CPDrawScrollButtons.
8519
8520 2006-06-30  Jackson Harper  <jackson@ximian.com>
8521
8522         * InternalWindowManager.cs: Remove some debug code.
8523         * Form.cs: When an MdiParent is set to null, the window is
8524         "detatched" and becomes a normal window.
8525         * MdiClient.cs: Don't bring the new child form to the front until
8526         it is activated (setting it as active does this), this makes the
8527         previously active forms titlebar get redrawn as inactive.
8528
8529 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
8530
8531         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
8532           with later controls
8533
8534 2006-06-29  Mike Kestner  <mkestner@novell.com>
8535
8536         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
8537         arrow in keynav state.  Fixes #78682.
8538
8539 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
8540
8541         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
8542           order (fixes #78393)
8543
8544 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
8545
8546         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
8547           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
8548           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
8549           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
8550           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
8551           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
8552           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
8553           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
8554           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
8555           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
8556           enumerations (FlagsAttribute, SerializableAttribute, added/removed
8557           values)
8558
8559 2006-06-28  Mike Kestner  <mkestner@novell.com>
8560
8561         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
8562
8563 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
8564
8565         * PropertyGrid.cs,
8566           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
8567           item lines from other area (It also makes BackColor consistent and
8568           compatible with .NET). Fixed bug #78564.
8569
8570 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
8571
8572         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
8573         Patch from Eno for #78555.
8574
8575 2006-06-27  Chris Toshok  <toshok@ximian.com>
8576
8577         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
8578
8579         * DataGridColumnStyle.cs: same.
8580
8581         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
8582         
8583         * DataGridDrawingLogic.cs: nuke.
8584
8585 2006-06-27  Chris Toshok  <toshok@ximian.com>
8586
8587         * DataGridTableStyle.cs: clean up the constructors, and build the
8588         list of child relations for this table.  I have no idea if this is
8589         where we should be doing it (it probably isn't), but since we're
8590         already iterating over the properties..
8591
8592         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
8593         struct and array for keeping track of row information, similar to
8594         what's shown in a hack on
8595         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
8596
8597         * Theme.cs: be consistent about the naming of DataGrid methods,
8598         prefering ColumnWidths and RowHeights over columnsWidths and
8599         RowsHeights.
8600
8601         * ThemeWin32Classic.cs: same, and also add support for variable
8602         sized rows (and the +/- expansion icons for related rows).
8603
8604 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
8605
8606         * TextBoxBase.cs: Applied Eno's patch from #78660
8607
8608 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
8609
8610         * Form.cs (ScaleCore): We don't want to scale our form if it's
8611           state is minimized or maximized, but we still need to scale our
8612           child windows. Also, added try/finally block to ensure layout
8613           gets reset (Fixes #78697)
8614
8615 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
8616
8617         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
8618
8619 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
8620
8621         * Form.cs: Fixed c+p error and added check to resize form if minimum
8622           size is bigger than current size (Fixes #78709)
8623
8624 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
8625
8626         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
8627
8628 2006-06-26  Mike Kestner  <mkestner@novell.com>
8629
8630         * ComboBox.cs: only do Keypress handling in the combo when there  
8631         are items in the collection. Fixes #78710.
8632
8633 2006-06-26  Chris Toshok  <toshok@ximian.com>
8634
8635         * Binding.cs: make this work bi-directionally.  also, clear up
8636         other mixups between Push/Pull Data (e.g. we're supposed to pull
8637         data when validating).
8638
8639         * BindingManagerBase.cs: trim some fully qualified collection
8640         types.
8641
8642         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
8643
8644 2006-06-23  Chris Toshok  <toshok@ximian.com>
8645
8646         * PropertyManager.cs: It appears (according to the unit tests)
8647         that PropertyManager doesn't use
8648         PropertyDescriptor.AddValueChanged to track propery value changes
8649         in its datasource, but uses the same scheme as Binding, where it
8650         looks for a <Property>Changed event and binds to it.
8651
8652         Also, according to the docs, IsSuspended always returns false for
8653         a property manager with a non-null datasource.
8654
8655 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
8656
8657         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
8658           need to update the actual DialogResult. (Fixes #78613)
8659
8660 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
8661
8662         * Form.cs (ShowDialog): Release any captures before running the
8663           new message pump (fixes #78680)
8664
8665 2006-06-22  Mike Kestner  <mkestner@novell.com>
8666
8667         * ListView.cs: Layout column widths properly in details mode even 
8668         if HeaderStyle.None is set.  Fixes #78691.
8669
8670 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
8671
8672         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
8673
8674 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
8675
8676         * Control.cs (ContainsFocus): Using new driver method to get focused
8677           window, instead of trying to use internal tracking var, which can
8678           recursion issues (Fixes #78685)
8679         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
8680           XplatUIWin32.cs: Added GetFocus method to return focused window
8681
8682 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8683
8684         * ColorDialog.cs: when the mouse button is pressed inside the color
8685         matrix, don't let the cursor move out of it until the button is
8686         released, which is the behavior on windows. Changed 'colours' by
8687         'colors' to use the same word consistently.
8688
8689 2006-06-21  Chris Toshok  <toshok@ximian.com>
8690
8691         * DataGrid.cs: add in some basic navigation stuff (navigating to a
8692         child relation and back, using a stack).  Also, remove
8693         GetDataSource and the code that calls it - it's not needed.  Also,
8694         track CurrencyManager.ListName's removal.
8695
8696 2006-06-21  Chris Toshok  <toshok@ximian.com>
8697
8698         * CurrencyManager.cs: push some of the original type checking from
8699         BindingContext.CreateBindingManager to here, and remove some of
8700         the finalType stuff.  Need more tests to make sure I've got the
8701         ListName part right, and we might need more in SetDataSource.
8702
8703         * PropertyManager.cs: add a ctor that takes just the datasource,
8704         and no property name.  Make SetDataSource work with a null
8705         property_name, and make Current return the data_source if the
8706         property descriptor is null.  this makes 'string foo = "hi";
8707         BindingContext[foo].Current' return "hi" as it should.
8708
8709         * RelatedCurrencyManager.cs: make this code more generic - there's
8710         no reason the parent manager has to be CurrencyManager, and
8711         there's no reason to pass the DataRelation.  It suffices to use a
8712         BindingManagerBase and PropetyDescriptor.
8713
8714         * RelatedPropertyManager.cs: make a similar change here.
8715         
8716         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
8717         flower I knew it could be.
8718
8719 2006-06-20  Chris Toshok  <toshok@ximian.com>
8720
8721         * PropertyManager.cs: the PropertyChangedHandler is invoked when
8722         data in the source has changed and we need to update the control,
8723         so s/PullData/PushData.
8724
8725         * CurrencyManager.cs: Refresh is meant to update the control from
8726         data in the datasource.  So, s/PullData/PushData.
8727
8728         * BindingContext.cs: add more ugliness (we weren't handling the
8729         case where data_source = DataTable and data_member = column_name).
8730
8731         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
8732         from the perspective of the datasource.  PullData pulls from the
8733         control, PushData pushes to the control.
8734
8735 2006-06-20  Chris Toshok  <toshok@ximian.com>
8736
8737         * BindingContext.cs: rewrite the CreateBindingManager code to
8738         handle navigation paths more or less properly.  This could
8739         definitely stand some more work, in particular to push the
8740         recursion up to the toplevel.  But that relies on fixes in other
8741         places (System.Data comes to mind).
8742
8743         Also, move to a flat hashtable (and encode the twolevel nature of
8744         the dictionary into the hash key).  This lets us implement the
8745         IEnumerable.GetEnumerator method.
8746
8747         * RelatedCurrencyManager.cs: new class.  Update our view based on
8748         our relation and our parent CurrencyManager's position.
8749
8750         * CurrencyManager.cs: split out some logic from the ctor into
8751         SetView, so it can be called from the new RelatedCurrencyManager
8752         subclass.
8753
8754         * RelatedPropertyManager.cs: new class.  Update our datasource
8755         based on the position of our parent CurrencyManager.
8756
8757         * PropertyManager.cs: split out some logic from the ctor into
8758         SetDataSource, so it can be called from the new RelatedDataSource
8759         subclass.  Also, make the Current getter return the value
8760         of the PropertyDescriptor, not the data_source.
8761
8762         * Binding.cs: no need to duplicate the string splitting code here.
8763
8764 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
8765
8766         * Control.cs:
8767           - set_Enabled: OnEnabledChanged is not called if the inherited state 
8768             of the control is not altered, even though  we might be changing the
8769             internal state of the control (#78458)
8770           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
8771             OnEnabledChanged, to allow easy altering of any child window state
8772           - OnEnabledChanged: Added code to enable/disable driver window state
8773           - OnParentEnabledChanged: Instead of firing the event, call 
8774             OnEnabledChanged, which will fire the event and also a) set driver
8775             window state and pass the enabled state to any grandchildren (#78458)
8776
8777 2006-06-19  Jackson Harper  <jackson@ximian.com>
8778
8779         * InternalWindowManager.cs: We don't set the cursor explicitly
8780         thats done via the response to NCHITTESTs.
8781         - Don't need to adjust for titlebar heights anymore, the
8782         coordinates are coming in the correct coordinates now (see peters
8783         last patch).
8784
8785
8786 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
8787
8788         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
8789           being translated relative to whole window, instead of client window.
8790           That caused broken offsets on mouseclick (and caused gas for our
8791           InternalWindowManager)
8792
8793 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
8794
8795         * TextControl.cs:
8796           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
8797           - Undo(): Added replay of cursor move on DeleteChars action; added
8798             calling Undo() again if a recorded cursor move is invalid (to
8799             ensure that some action is performed on Undo)
8800         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
8801
8802 2006-06-16  Jackson Harper  <jackson@ximian.com>
8803
8804         * MdiClient.cs: Instead of just sizing maximized windows when
8805         there is a resize we also have to adjust the Y of minimized
8806         windows, so they stay pinned to the bottom of the mdi container.
8807         - Eliminate separate tracking of the active control, we can just
8808         get this from the controls collection.
8809         - Paint the decorations for the newly activated titlebar so we get
8810         a pretty blue bar.
8811         * InternalWindowManager.cs:
8812         * ThemeWin32Classic.cs: Minimized windows get all three buttons
8813         even if they are a tool window.
8814         
8815 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
8816
8817         * TextControl.cs (Undo): Handle non-existent cursor locations in the
8818           undo buffer, these can happen when text was deleted and the cursor
8819           was recorded first. Since we will also have a recorded cursor
8820           after the delete this is not an issue. (Fixes #78651)
8821
8822 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
8823
8824         * AccessibleObject.cs: Remove dependence on Control.is_selected;
8825           instead properly track control states internally (allows us to
8826           remove is_selected from Control)
8827
8828 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8829
8830         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
8831         whose width is not a multiple of 8.
8832
8833 2006-06-13  Jackson Harper  <jackson@ximian.com>
8834
8835         * MdiClient.cs:  Only maximize the next child if the current one
8836         is maximized.
8837
8838 2006-06-13  Chris Toshok  <toshok@ximian.com>
8839
8840         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
8841         modified.  Also, guard against grid or grid_drawing being null in
8842         Invalidate.
8843
8844         * DataGrid.cs: Reformat tons of getters/setters.  In the
8845         DataMember setter, just call SetNewDataSource instead of
8846         duplicating some of its functionality.  In SetNewDataSource, don't
8847         check ListManager for null, since the property getter creates the
8848         object if needed.
8849
8850         * DataGridTableStyle.cs: don't set TableStyle or call
8851         SetDataGridInternal on the column here, it's done in
8852         GridColumnStylesCollection.Add.
8853
8854         * GridColumnStylesCollection.cs: fix all the explicit interface
8855         implementations to just call our methods.  Nuke AddInternal() and
8856         move the body of it to Add().  Also, add a call to
8857         column.SetDataGridInternal to Add().
8858
8859         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
8860         base()+duplicate code.  Also, use the Format property instead of
8861         format to generate an Invalidate ala MS.  Lastly, create the
8862         textbox here, unconditionally.
8863         (set_Format): call Invalidate.
8864         (get_TextBox): no need to call EnsureTextBox.
8865         (Commit): remove the message box.
8866         (Edit) remove the call to EnsureTextBox.
8867         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
8868         (EnterNullValue): no need to check textbox for null.
8869         (HideEditBox): no need to check textbox for null.
8870         (SetDataGridInColumn): add the textbox to the grid's controls.
8871         (EnsureTextBox): nuke.
8872         
8873 2006-06-13  Jackson Harper  <jackson@ximian.com>
8874
8875         * MdiWindowManager.cs: Hook up to the maximized menus paint event
8876         and redraw the buttons when needed. Unhook when the window is
8877         unmaximized.
8878         * MainMenu.cs: Add an internal Paint event, the mdi window manager
8879         needs this so that it can redraw its buttons when the menu is
8880         repainted.
8881         * InternalWindowManager.cs:
8882         * Form.cs: The method order has changed for DrawMaximizedButtons,
8883         so that it can be a PaintEventHandler.
8884         
8885 2006-06-13  Jackson Harper  <jackson@ximian.com>
8886
8887         * MdiClient.cs: When we close a maximized mdi window, the next mdi
8888         window is activated and maximized, even if it wasn't before.
8889         - When  a new window is activated repaint the decorations of the
8890         old one, so that it no longer has the Active "look" (the blue
8891         titlebar).
8892         * InternalWindowManager.cs: Open up CreateButtons to base classes
8893         so they can recreate the buttons on state changes.
8894         - If a window is maximized give it all three buttons
8895         * MdiWindowManager.cs: Create the titlebar buttons when the state
8896         is changed, this is needed because a toolwindow will not have all
8897         three buttons until it is maximized.
8898
8899 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
8900
8901         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
8902           Fixed bug #78609.
8903
8904 2006-06-12  Jackson Harper  <jackson@ximian.com>
8905
8906         * KeysConverter.cs: Make sure we handle the Ctrl special case
8907         if its the only key.
8908         
8909 2006-06-12  Jackson Harper  <jackson@ximian.com>
8910
8911         * Theme.cs: Add a method to get the size of a managed window
8912         toolbar button.
8913         * InternalWindowManager.cs: Remove the ButtonSize property, this
8914         should be retrieved from the theme.
8915         * MdiWindowManager.cs: Get the button size from the theme
8916         * ThemeWin32Classic.cs: Make the method to get the managed window
8917         titlebar button size public.
8918         - Handle the different button sizes of maximized toolwindows
8919         (should match any maximized window).
8920         - Get the titlebar height from the theme, not the WM (which gets
8921         it from the theme).
8922
8923 2006-06-12  Jackson Harper  <jackson@ximian.com>
8924
8925         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
8926         event down to the mdi window manager.
8927         - Expose some extra stuff to base classes
8928         - Make sure to end the Capture on an NC Mouse up, so that we can
8929         get double clicks properly, and the sizing doens't stick.
8930         - When doing PointToClient contain it in the workable desktop
8931         area, this prevents windows from changing size when the cursor is
8932         pulled outside of the working area while sizing.
8933         * MdiWindowManager.cs: When we get a double click maximize the
8934         window.
8935         - Reset the cursor after handling mode changes.
8936
8937 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
8938
8939         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
8940           current desktop, instead of just assuming a 0, 0 origin. This
8941           is needed for our internal window manager, to know the top
8942           margin of the desktop
8943
8944 2006-06-12  Chris Toshok  <toshok@ximian.com>
8945
8946         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
8947         we need this to get rid of the selected background in the bool
8948         column.
8949         (CancelEditing): move the ConcedeFocus call to above the Abort
8950         call.  Also, set is_changing to false and invalidate the row
8951         header if we were changing before.
8952         (ProcessKeyPreviewInternal): remove, since noone outside this
8953         class calls it anymore.  Roll the code into ProcessKeyPreview.
8954         (EndEdit): remove the internal version.
8955         (InvalidateCurrentRowHeader): make private.
8956
8957         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
8958         Keys.Escape handling (and with it the last call to
8959         DataGrid.EndEdit from outside the class.)
8960
8961
8962 2006-06-12  Chris Toshok  <toshok@ximian.com>
8963
8964         * DataGridTextBox.cs (.ctor): isedit defaults to false.
8965         (OnKeyPress): set isedit to true.
8966         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
8967         already handled by the grid.
8968
8969         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
8970         right.  ugh.
8971         (set_DataSource): SetDataSource always returns true, so stop
8972         putting it in an if statement.
8973         (EndEdit): get rid of some {}'s
8974         (ProcessGridKey): return true in case Keys.Escape.
8975         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
8976         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
8977         PositionChanged, stopped connecting to CurrentChanged.
8978         (GetDataSource): simplify this a bunch.
8979         (SetDataSource): change return type from bool to void.
8980         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
8981         to this, and make sure we don't set ListManager.Position inside
8982         set_CurrentCell.
8983         (OnListManagerItemChanged): if we're passed an actual index,
8984         redraw that row.
8985
8986         * CurrencyManager.cs (set_Position): don't call PullData here.
8987
8988 2006-06-09  Jackson Harper  <jackson@ximian.com>
8989
8990         * TreeNode.cs:  Recalculate the visible order before doing the
8991         Expand/Collapse Below calls, because those calls generate an
8992         expose.
8993         - Reduce calls to the TreeView property, which is mildly expensive
8994         by using a local var.
8995         * Form.cs: Layout the MDI child windows when creating the parent
8996         form.
8997         - Don't use the internal constructor anymore
8998         * MdiClient.cs: use the parent form width/height (if available)
8999         when laying out the child windows, we do this because the
9000         mdiclient isn't docked yet when the initial layout is done.
9001         - Don't need an internal constructor anymore.
9002
9003 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9004
9005         * FileDialog.cs: handle access errors when trying to create a folder
9006         or changing to a directory. No need to initialize out parameters.
9007
9008 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9009
9010         * FileDialog.cs: Append a number when creating a new folder if the
9011           folder already exists (use parenthesis instead of square brackets)
9012
9013 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9014
9015         * FileDialog.cs:
9016           - Disabled registry support for windows and added better registry
9017             error checking for other systems (need to investigate why it
9018             works perfectly on my system)
9019           - If a folder already exist show an error MessageBox instead of
9020             trying to create an indexed name.
9021           - Fixed a non intentional typo.
9022
9023 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9024
9025         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
9026
9027 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9028
9029         * FileDialog.cs: When creating a new folder don't crash if the
9030           folder already exists.
9031
9032 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9033
9034         * FileDialog.cs: Allmost a complete rewrite.
9035           - added a "virtual" file system that handles the differences
9036             between unix and windows file systems (especially the directory
9037             structure). Moved most of the directory and file handling code
9038             into the vfs.
9039             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
9040             UnixFileSystem and FSEntry.
9041           - Recently used folder/directory, size, location and used file names
9042             (file name ComboBox) are now stored in the registry and get read
9043             before the dialog shows up (fixes part 6 of bug #78446).
9044           - Creation of new folders/directories is now possible (context menu
9045             or ToolBar). Added TextEntryDialog for this that fills in the gap
9046             until ListView.LabelEdit works.
9047           - Fixed cursor handling (bug #78527) and focus handling for
9048             PopupButtonPanel
9049           - Various "Search in" ComboBox enhancements. The content of the
9050             dropdown listbox now almost matches ms.
9051           - Changed the behaviour when the user switches to SpecialFolder
9052             Recent to show the ListView in View.Details.
9053           - Beside using the ToolBar to change the View property of the
9054             file ListView it is now possible to use the context menu too.
9055
9056 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9057
9058         * ComboBox.cs: Don't create a new ObjectCollection when an item
9059           gets inserted. Just insert the item in the existing object_items
9060           ArrayList.
9061
9062 2006-06-08  Jackson Harper  <jackson@ximian.com>
9063
9064         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
9065         that the treeview and root node checks are done also, this fixes a
9066         regression i caused in the unit tests.
9067
9068 2006-06-07  Wade Berrier <wberrier@novell.com> 
9069
9070         * RichTextBox.cs: More ISO8859-1 -> unicode
9071
9072 2006-06-07  Mike Kestner  <mkestner@novell.com>
9073
9074         * ComboBox.cs : use items to hold highlight/selection so that
9075         collection insertions don't require synchronization.
9076
9077 2006-06-07  Jackson Harper  <jackson@ximian.com>
9078
9079         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
9080         routine.  We now always keep the sized edge at the cursor instead
9081         of computing movement and adjusting rects.  There is one buglet
9082         with this method though when the cursor is moved over area that
9083         the window can not expand too (such as the toolbars on the desktop).
9084
9085 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9086
9087         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
9088         here. Fixes crash on startup in AlbumSurfer.
9089
9090 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
9091
9092         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
9093           values
9094
9095 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9096
9097         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
9098         statement to avoid calling XNextEvent which will block if another thread
9099         took the event that we were expecting. Fixes bug #78605.
9100
9101 2006-06-07  Mike Kestner  <mkestner@novell.com>
9102
9103         * ListView.cs : isolated checkbox clicking from the selection logic.
9104         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
9105
9106 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9107
9108         * Form.cs: Check that the value passed to Form.DialogResult
9109         is a valid enum value.
9110
9111 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9112
9113         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
9114         Computer'. Clicking it in the network view goes to 'My Computer'.
9115         Added CIFS filesystem type. Display the mount point of filesystems.
9116         Avoid duplicate mount points (happens for me with CIFS);
9117
9118 2006-06-06  Jackson Harper  <jackson@ximian.com>
9119
9120         * InternalWindowManager.cs: Draw the maximized windows buttons
9121         when resizing.
9122
9123 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9124
9125         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
9126         all other dialogs. Fixes bug #78585.
9127
9128 2006-06-06  Mike Kestner  <mkestner@novell.com>
9129
9130         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
9131         Only invalidate checkbox on checkstate changes to avoid flicker.
9132         * ListBox.cs : avoid unselect/select when clicking selected item.
9133         avoid reselection flicker for already multiselected items.
9134         Fixes #78382.
9135
9136 2006-06-06  Jackson Harper  <jackson@ximian.com>
9137
9138         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
9139         the parent form so that the menu is removed if needed.
9140
9141 2006-06-06  Mike Kestner  <mkestner@novell.com>
9142
9143         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
9144         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
9145
9146 2006-06-06  Mike Kestner  <mkestner@novell.com>
9147
9148         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
9149
9150
9151 2006-06-06  Jackson Harper  <jackson@ximian.com>
9152
9153         * Control.cs: Use the property (instead of the field) to get the
9154         default cursor so it is instantiated correctly.
9155         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
9156         resizes so we need to manually repaint the window decorations here.
9157         - Set the titlebar button locations as soon as they are created,
9158         otherwise they are not set correctly on win32.
9159         
9160 2006-06-06  Chris Toshok  <toshok@ximian.com>
9161
9162         * CurrencyManager.cs (set_Position): call PullData before
9163         OnCurrentChanged.
9164         (AddNew): after calling IBindingList.AddNew, update our
9165         listposition, and call OnCurrentChanged/OnPositionChanged (without
9166         calling PullData).
9167         (OnCurrentChanged): remove the call to PullData from here.
9168         (OnItemChanged): remove the call to PushData from here.
9169         (OnPositionChanged): change the test from == null to != null to
9170         match the other methods.
9171         (ListChangedHandler): the grossest part of the patch.  Implement
9172         this such that it passes the unit tests in CurrencyManagerTest and
9173         the output more or less matches that of MS's implementation.
9174  
9175 2006-06-06  Mike Kestner  <mkestner@novell.com>
9176
9177         * ListView.cs : only update check state on single click.
9178         * ThemeWin32Classic.cs : fix focus drawing for details view without
9179         fullrowselect.  Fixes #78454.
9180         * XplatUIX11.cs : fix for double click emission.
9181
9182 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
9183
9184         * PropertyGridView.cs : Applied Atsushi's patch to fix
9185         font dialog bug  (#78197).
9186
9187 2006-06-05  Jackson Harper  <jackson@ximian.com>
9188
9189         * TreeNode.cs: Compute the next node for expanding/collapsing
9190         correctly. We now factor in nodes without a NextNode
9191         correctly. (Fixes somes cases in nunit-gui).
9192         * InternalWindowManager.cs: Set the bounds when updating the
9193         virtual position of a tool window.
9194         
9195 2006-06-05  Chris Toshok  <toshok@ximian.com>
9196
9197         * DataGrid.cs: rename cached_currencymgr to list_manager.
9198         (set_CurrentCell): move SetCurrentCell code here, and clean it up
9199         some.
9200         (CurrentRow, CurrentColumn): single accessors so we can make the
9201         cursor movement code a lot easier to understand.
9202         (CurrentRowIndex): implement this in terms of CurrentRow.
9203         (BeginEdit): clean this up a bit.
9204         (CancelEditing): sort out the is_editing/is_changing/is_adding
9205         stuff a little.
9206         (EndEdit): minor changes.
9207         (OnKeyDown): add a comment about a (most likely) unnecessary
9208         check.
9209         (OnMouseDown): cancel editing when we click on a row header.  And
9210         use the CurrentRow setter, not CurrentCell.
9211         (ProcessDialogKey): directly call ProcessGridKey.
9212         (UpdateSelectionAfterCursorMove): factor out this common block of
9213         code (it's used everywhere that we move the cursor by updating row
9214         or column).
9215         (ProcessGridKey): pretty substantial overhaul.  Use the
9216         CurrentRow/CurrentColumn properties to make the code a lot more
9217         readable.  Only use the CurrentCell property when we have to
9218         modify both row and column at once.  Tab behavior is still broken,
9219         and Delete is untested.
9220         (Select): if we have no selected rows, set selection_start to
9221         @row.
9222         (EditCurrentCell): rename EditCell this.  It was only ever invoked
9223         with CurrentCell as the arg, so drop the arg and rename it.
9224
9225         * DataGridColumnStyle.cs: clean up the constructors a little, and
9226         drop CommonConstructor().
9227
9228         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
9229         actually get notified when the user hits it.
9230         (ProcessKeyMessage): *substantially* simplify this method.
9231         There's no reason (that I can see) for the textbox to be making
9232         calls into the datagrid at all.  Remove all of them but the ones
9233         for Enter handling.  those will take some more work.
9234
9235         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
9236         calling HideEditBox.
9237         (HideEditBox): if we have an active textbox, render it invisible
9238         without causing a re-layout of the datagrid.
9239
9240 2006-06-05  Mike Kestner  <mkestner@novell.com>
9241
9242         * ListView.cs : fix NRE crasher when focuseditem is cleared by
9243         collection changes by resetting it to Items[0].  Fixes #78587.
9244
9245 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9246
9247         * MessageBox.cs: if the height of the text is larger than the icon_size,
9248         use that. Fixes bug #78575.
9249
9250 2006-06-05  Jackson Harper  <jackson@ximian.com>
9251
9252         * TreeView.cs: Fix line drawing when scrolling.  To do this each
9253         node is basically responsible for drawing its entire horizontal
9254         area.  When drawing a node it draws its parent node lines if
9255         needed.
9256         - Adjust the clip area to the viewport rectangle
9257         - Fix Left/Right key handling to match MS. (It expand/collapses
9258         and moves to parents/first child but does not move selection to
9259         sibling nodes).
9260         - Fix SetTop to work with new bound calculation code
9261         - When scrollbars are no longer needed we need to reset scrolling
9262         vars and recalculate the visible order so the redraw is correct
9263         * TreeNode.cs: We can't expand/collapse nodes with no children.
9264
9265 2006-06-03  John Luke  <john.luke@gmail.com> 
9266
9267         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
9268         so the colors work without dev packages
9269         
9270 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
9271
9272         * Control.cs 
9273           - Select: Implemented to just use activate. Seems to match MS 
9274             behaviour closest. Documented to only do actual control walking 
9275             based on it's parameters if in a container control so I moved 
9276             the code there.
9277           - Removed selection check logic from our internal Select() method
9278         * ContainerControl.cs:
9279           - Select: Moved selection logic from Control here, since MS documents
9280             that containers obey the bool arguments. No longer calling base
9281
9282 2006-06-02  Jackson Harper  <jackson@ximian.com>
9283
9284         * TreeView.cs: If the selected node isn't changed when we get
9285         focus update the previously selected node so that we see the
9286         selection box.
9287
9288 2006-06-02  Mike Kestner  <mkestner@novell.com>
9289
9290         * ComboBox.cs: restructure grab and general mouse event handling.
9291         Make the composite control raise mouse events like it was a single
9292         control for leaves/enters/motion/up/down events.  fix dropdown list
9293         coordinate mangling and refactor it into the scrollbar subclass to
9294         reduce code duplication.  Fixes #78282 #78361 and #78457.
9295
9296 2006-06-02  Mike Kestner  <mkestner@novell.com>
9297
9298         * ScrollBar.cs: remove Capture setting/clearing, as it happens
9299         automatically in the Control.WndProc.
9300
9301 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9302
9303         * FileDialog.cs: fix crash when running SharpChess, which sets the
9304         FilterIndex to 2 with only one Filter.
9305
9306 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9307
9308         * ToolBar.cs: add SizeSpecified property.
9309         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
9310         try to figure out our real size, otherwise fallback to what the
9311         container says.
9312
9313 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
9314
9315         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
9316         * Control.cs (WndProc): MS always calls the DefWndProc to pass
9317           up the event
9318
9319 2006-06-01  Mike Kestner  <mkestner@novell.com>
9320
9321         * ListView.cs: revamp the focus management in ListView.  It still
9322         causes churn of LostFocus/GotFocus emissions on clicks, but it's
9323         better than not handling focus at all.  Will revisit when pdb feels
9324         the general focus handling is solid.  Fixes #78526.
9325
9326 2006-06-01  Jackson Harper  <jackson@ximian.com>
9327
9328         * TreeView.cs: Set the default border style in the constructor.
9329         - Move painting to use OnPaintInternal instead of capturing
9330         WM_PAINT, this is the correct way of doing things
9331         - UpdateBelow shouldn't invalidate the scrollbar area
9332         - Cap the top on update below in case the node was above the top
9333         of the viewport rectangle.
9334         - ExpandBelow and Collapse below need to obey Begin/End Update.
9335         * TreeNode.cs: Make is_expanded internal so the treenode
9336         collection can change it without firing the whole event chain.
9337         * TreeNodeCollection.cs: When clearing all the child nodes make
9338         sure to recalc the visible order.
9339         - Improve algo for remove the top node
9340
9341 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
9342
9343         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
9344           SendMessage directly calling window procedures, which in turn might
9345           call SetFocus()
9346
9347 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
9348
9349         * Control.cs: Don't handle WM_SETFOCUS if the same window already
9350           has focus (works around X11 sending a FocusIn after our SetFocus)
9351         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
9352
9353 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
9354
9355         * Mime.cs: Fix for the NET_2_0 build.
9356           NameValueCollection needs StringComparer now.
9357
9358 2006-05-31  Chris Toshok  <toshok@ximian.com>
9359
9360         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
9361         return (via an out parameter) the starting X of the column.
9362         (UpdateVisibleColumn): track change to FromPixelToColumn.
9363         (HitTest): add a ColumnResize case here.
9364         (DrawResizeLine): new function, probably poorly named.
9365
9366         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
9367         only need to keep one reference.
9368         (set_ListManager): same.
9369         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
9370         Also, add support for HitTestType.ColumnResize.
9371         (OnMouseMove): add column resize behavior here, and change the
9372         cursor to the correct one as we move around the datagrid.
9373         (OnMouseUp): terminate the column resize if we're resizing.
9374         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
9375         for the current cell.
9376         (ConnectListManagerEvents): use cached_currencymgr.
9377         (DisconnectListManagerEvents): fill this in, using
9378         cached_currencymgr.
9379         (SetCurrentCell): remove cached_currencymgr_events handling.
9380         (SetDataMember): only call DisconnectListManagerEvents if
9381         cached_currencymgr is != null.
9382         (SetDataSource): same.
9383         (OnListManagerCurrentChanged): cached_currencymgr_events ->
9384         cached_currencymgr.
9385
9386 2006-05-31  Jackson Harper  <jackson@ximian.com>
9387
9388         * BindingManagerBase.cs: Remove somedebug code that creeped into
9389         SVN.
9390         * TreeNode.cs: We get the indent level dynamically right now, so
9391         don't track it as a member.
9392         * TreeNodeCollection.cs: Make sure all nodes added to the list
9393         have parents, treeviews/topnodes setup properly.
9394         - Don't attempt to track indent level.
9395
9396 2006-05-30  Jackson Harper  <jackson@ximian.com>
9397
9398         * BindingContext.cs: Create the currency manager tables here.
9399         This allows us to more easily create null tables (when bad data
9400         members are used), and more easily create related currency
9401         managers.
9402         * CurrencyManager.cs: All the table creation stuff is done by the
9403         binding context now.
9404         - Current should throw an exception if listposition is -1.
9405         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
9406         been bound yet.
9407
9408 2006-05-30  Mike Kestner  <mkestner@novell.com>
9409
9410         * ListView.cs: allow reexpansion of zero-width column headers.
9411         Fixes #78528.
9412
9413 2006-05-28  Chris Toshok  <toshok@ximian.com>
9414
9415         * CurrencyManager.cs (get_Current): after the late binding
9416         listposition = -1 fix, we need to guard against it here and return
9417         null, otherwise we raise an exception (which is swallowed
9418         elsewhere, and breaks datagrid databinding.)
9419
9420 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
9421
9422         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
9423           than WM_SYSKEY, don't throw if get something unexpected (#78507)
9424
9425 2006-05-26  Jackson Harper  <jackson@ximian.com>
9426
9427         * ControlPaint.cs:
9428         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
9429         values, it's faster and it's all we care about (we don't care if
9430         the names aren't equal).
9431         * KeyboardLayouts.cs: Eliminate some dead code.
9432         - Lazy init things
9433         * X11Keyboard.cs: Lazy init keyboard detection.
9434         - Cleanup access modifiers a little.
9435
9436 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
9437
9438         * XplatUIX11.cs: Once again, attempting to get layout just right.
9439
9440 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
9441
9442         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
9443           the sizes of each link section, that will result in sizes that
9444           match DrawString's layout (Fixes #78391)
9445
9446 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
9447
9448         * FileDialog.cs: If AddExtension property is true autocomplete the
9449           extensions in SaveFileDialog correctly. Fixes bug #78453.
9450           Set MyNetwork and MyComputer to "C:\" for windows. This should
9451           fix part 8 of bug #78446 for now.
9452
9453 2006-05-26  Chris Toshok  <toshok@ximian.com>
9454
9455         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
9456         invalidate the current row header if we need to, but presumably
9457         we'll invalidate the row corrsponding to the bounds or
9458         editingControl.
9459         (GridHScrolled): switch back to this method, as it's part of the
9460         public api.  *sigh*.
9461         (GridVScrolled): same.
9462         (OnMouseWheel): hack up something that more or less works.  Call
9463         GridHScrolled/GridVScrolled directly, instead of duplicating much
9464         of their code here.
9465         (EnsureCellVisibility): reinstate a bunch of this code, since we
9466         can't just set the scrollbar Value and expect to do all the work
9467         in the ValueChanged handler.  Also, Call Update() after scrolling
9468         in one direction so the other XplatX11.ScrollWindow call has the
9469         proper stuff in the proper places.
9470         (EditCell): set is_editing to true before calling .Edit.
9471
9472         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
9473         don't bother comparing first.
9474         (OnKeyPress): call grid.ColumnStartedEditing before calling
9475         base.OnKeyPress.  this will set is_changing and invalidate the row
9476         header if necessary.
9477         (ProcessKeyMessage): for WM_CHAR messages, call
9478         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
9479         and WM_KEYDOWN.
9480         
9481         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
9482         it's done in the DataGrid.
9483         (NextState): call grid.ColumnStartedEditing, which takes care of
9484         invalidating the row header (and setting is_changing).
9485
9486         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
9487         here.  it's done in the DataGrid.
9488
9489 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9490
9491         * Control.cs: allow changing the cursor when the mouse position is
9492         out of bounds but Capture is set.
9493         * LinkLabel.cs: handle the case when the mouse button is pressed on the
9494         linklabel but released somewhere else.
9495
9496 2006-05-25  Jackson Harper  <jackson@ximian.com>
9497
9498         * TreeView.cs: When we get focus if there is no selected node make
9499         it the top node
9500         - Remove some uneeded setup code from Draw.
9501         * TreeNodeCollection.cs: If the tree doesn't have a top node when
9502         a new node is inserted make the new node the top.
9503         * XplatUIX11.cs:
9504         * Timer.cs: Use Utc time so that no local time zone stuff needs to
9505         be used (should be faster).
9506         
9507 2006-05-25  Chris Toshok  <toshok@ximian.com>
9508
9509         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
9510         problem with the last commit.
9511
9512 2006-05-25  Chris Toshok  <toshok@ximian.com>
9513
9514         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
9515         need the invalidate call here, while scrolling right-to-left via
9516         the left arrow key (i.e. moving the editing cell while scrolling).
9517
9518         * DataGrid.cs (.ctor): remove the initialization of
9519         ctrl_pressed/shift_pressed.  We no longer track them using key
9520         up/down handlers, but by using Control.ModifierKeys.  Also, switch
9521         to using ValueChanged handlers on the scrollbars instead of
9522         Scrolled event handlers.  This simplifies a bunch of the scrolling
9523         code.
9524         (GridHValueChanged): rename from GridHScrolled, and change it to
9525         work with the new event args.
9526         (GridVValueChanged): same.
9527         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
9528         (OnMouseWheel): actually scroll the datagrid.  Don't change the
9529         selected cell.
9530         (ProcessGridKey): correct all the keyboard navigation stuff I
9531         could find.  Ctrl up/down/left/right/home/end work now.
9532         (EnsureCellVisibility): correct method name spelling.  Also,
9533         simplify this a touch by not explicitly calling the
9534         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
9535         scrollbar value.
9536         (OnKeyUpDG): no need for this method now.
9537         
9538 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9539
9540         * LinkLabel.cs: display the OverrideCursor when hovering the label.
9541         Fixes bug #78392.
9542
9543 2006-05-25  Chris Toshok  <toshok@ximian.com>
9544
9545         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
9546         r61019.
9547
9548 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
9549
9550         * Application.cs: Moved setting of is_modal and closing to before
9551           we create the control, to allow the event handlers called as a
9552           result of creation affect closing. Also removed Gonzalo's previous
9553           change to setting DialogResult, the behaviour has been moved to 
9554           Form.ShowDialog()
9555         * Form.cs: 
9556           - ShowDialog(): Removed explicit creation of the form, let RunLoop
9557             handle it instead
9558           - ShowDialog(): If no dialog result is set, we need to return Cancel
9559           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
9560             the close is cancelled
9561
9562 2006-05-25  Jackson Harper  <jackson@ximian.com>
9563
9564         * StatusBar.cs: We only need to update the sizes of the other
9565         panels when we have auto size contents.  Also we are only updating
9566         the contents of the panel, not the borders, so compensate for the
9567         border width (TODO: get this width from the theme somehow).
9568         * TreeView.cs: Scrollable is true by default
9569         - Use invalidate instead of refresh where needed
9570         - Factor the scrollable value into scrollbar updating
9571         - Update the scrollbars if the Scrollable property is altered
9572         - Update the selected node if its ImageIndex is changed
9573         - Handle null nodes in UpdateNode (mainly so we don't have to
9574         check if selected is null when updating it
9575         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
9576         are factored into the visible count
9577         - Use VisibleCount for clarity in the code
9578         - When the font is changed we need to recurse through all the
9579         nodes and invalidate their sizes
9580         
9581 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9582
9583         * Application.cs: set the DialogResult to fixed when the main form is
9584         hidden or destroyed while being modal.
9585
9586 2006-05-25  Miguel de Icaza  <miguel@novell.com>
9587
9588         * Theme.cs: Use Tangoified messagebox icons. 
9589
9590         (GetSizedResourceImage): Also cope with width = 0 and do not
9591         trigger a warning in that case (0 means "give me your icon from
9592         the resouce, no special size needed).
9593
9594 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
9595
9596         * Application.cs: Leave runloop if the the main modal form is 
9597           hidden (fixes #78484)
9598
9599 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
9600
9601         * BindingContext.cs : reject null datasource in Contains() and
9602           Item[].
9603         * CurrencyManager.cs : check data_member validity when data_source
9604           is dataset. When it is late binding, the initial position is -1.
9605
9606 2006-05-24  Jackson Harper  <jackson@ximian.com>
9607
9608         * TreeNodeCollection.cs: Dont't recalculate the visible order on
9609         inserted nodes that aren't visible.  This changes the
9610         max_visible_order which confuses scrollbar settings.
9611         - Use the enumerator to get the prev node instead of duplicating
9612         code.
9613         * TreeView.cs: Use new method for setting scrollbar values
9614         - Don't set the bounds every time the scrollbar is updated
9615         - When updating below the root node use an invalidate instead of a
9616         refresh to prevent the child controls (scrollbars) from being
9617         refreshed. (UpdateBelow still needs to be reworked anyways).
9618         - Reenable SetBottom now that visible orders are set correctly,
9619         added some debug code incase we ever get bad values there again.
9620         - Set the scrollbar max to 2 less then the max value, this
9621         compensates for the max value being one above the node count, and
9622         for scrollbars adding one extra "notch".
9623         - When drawing image nodes if there is an imagelist we draw the
9624         first image in the list if the supplied image index is out of the
9625         image list's bounds.
9626         
9627 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
9628
9629         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
9630           we receive a size change from the WM (Fixes #78503)
9631
9632 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
9633
9634         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
9635           rectangle (Fixes #78501)
9636
9637 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
9638
9639         * ButtonBase.cs: 
9640           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
9641             as a bitfield.
9642           - Fixed MouseMove to no longer switch pressed state unless the left
9643             mouse button is pressed. Atsushi provided the original patch (#78485)
9644           
9645 2006-05-24  Jackson Harper  <jackson@ximian.com>
9646
9647         * ScrollBar.cs: New internal methods that allow us to change a
9648         couple values on the scrollbar (the most common case is maximum
9649         and large change) without getting multiple invalidates.
9650
9651 2006-05-24  Chris Toshok  <toshok@ximian.com>
9652
9653         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
9654         (Edit): save off the original state in oldState, and set
9655         grid.is_editing to true.
9656         (OnKeyDown): abort editing if escape is pressed.  also, call
9657         NextState if space is pressed.
9658         (OnMouseDown): call NextState.
9659         (NextState): factor out shared code from OnKeyDown and OnMouseDown
9660         here.  Also, only invalidate the row header once (on the initial
9661         is_changing switch) to save on redraws.
9662
9663 2006-05-24  Chris Toshok  <toshok@ximian.com>
9664
9665         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
9666         if the value in the cell is different than it was before.  This
9667         keeps us from triggering a layout when we move around a datarid
9668         with a highlighted cell.
9669         (Edit): suspend layout when creating/positining the text box, and
9670         resume passing false so we don't ever actually re-layout.
9671         (ReleaseHostedControl): same.
9672         (EnsureTextBox): reformat slightly, and set WordWrap to false.
9673
9674         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
9675         control-key sequences should go to the datagrid - remove that
9676         lock.  Also, modify the conditions under which we move between
9677         cells when moving the cursor within a cell, and remove the "this"
9678         and "base" from field accesses.  We weren't even consistent, given
9679         they all were in the base class.
9680
9681 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
9682
9683         * Binding.cs : (.ctor)
9684           An obvious NRE fix for BindingTest.CtorNullTest().
9685
9686 2006-05-23  Chris Toshok  <toshok@ximian.com>
9687
9688         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
9689         them between lines.  This fixes some quirks editing cells in the
9690         datagrid.
9691
9692 2006-05-23  Jackson Harper  <jackson@ximian.com>
9693
9694         * TreeView.cs: Use begin/end update when doing expand/collapse all
9695         so that we don't get flicker on the scrollbar.
9696
9697 2006-05-23  Jackson Harper  <jackson@ximian.com>
9698
9699         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
9700         treenode calculations to be independant of the painting code. To
9701         do this nodes track a visible order which is calculated by the
9702         treeview.
9703         - Call new methods for expanding/collapsing nodes.  These methods
9704         use scrollwindow so we don't have to update everything below the
9705         node.
9706         * TreeView.cs: Refactored drawing and scrolling code.  We don't
9707         need to update nodes when drawing anymore or calculate scrollbar
9708         stuff.
9709         - Added new methods for expanding/collapsing nodes. These methods
9710         use ScrollWindow so as to not have to redraw all the nodes below.
9711         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
9712         we add/remove nodes or sort.
9713         - Handle removing the selected and the top node properly.
9714
9715 2006-05-23  Chris Toshok  <toshok@ximian.com>
9716
9717         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
9718         maybe this should actually happen in the datagrid code?
9719         (EndEdit): no need to invalidate anything, given that
9720         ReleaseHostedControl causes the datagrid to relayout, which
9721         invalidates everything anyway.
9722
9723         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
9724         in SetCurrentCell).
9725         (set_SelectionBackColor): call InvalidateSelection instead of
9726         Refresh.
9727         (set_SelectionForeColor): same.
9728         (BeginEdit): Flesh this out a bit.
9729         (CancelEditing): only do any of this if we're editing/adding.
9730         (EndEdit): same.
9731         (OnMouseDown): there's no need to cancel editing here, it's done
9732         in SetCurrentCell.
9733         (SetCurrentCell): only invalidate the current row header if it's a
9734         different row than the new one.
9735         (ShiftSelection): fix this to work like MS does.
9736         (ResetSelection): factor out the invalidation of selected_rows to
9737         InvalidateSelection.
9738         (SetDataSource): cancel any editing that's going on.
9739
9740         * DataGridColumnStyle.cs
9741         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
9742         call the non-interface version.
9743
9744         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
9745         header rectangle with the clip rectangle so we don't redraw the
9746         entire header for just a small area.  Gets rid of the last flicker
9747         when horizontally scrolling.
9748         (DataGridPaintRow): same.
9749
9750 2006-05-23  Mike Kestner  <mkestner@novell.com>
9751
9752         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
9753         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
9754         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
9755         Critical bug report.
9756
9757 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
9758
9759         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
9760           and this fixes #78493
9761
9762 2006-05-23  Miguel de Icaza  <miguel@novell.com>
9763
9764         * Theme.cs (GetSizedResourceImage): Scale images if the proper
9765         size is not found.  
9766         
9767         * FileDialog.cs: Do not change the background for the side bar as
9768         it wont work nicely with the theme, and also reduces the artifacts
9769         in rendering the icons (which I want to fix too).
9770
9771         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
9772         resources, not resgen resources. 
9773
9774         (PlatformDefaultHandler): Pull images using the new API.
9775
9776 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
9777
9778         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
9779           a reference to the hwnd and will not remove it unless there are
9780           no pending exposures (fixes #78341)
9781         * XplatUI.cs: Improved debug
9782
9783 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
9784
9785         * MenuAPI.cs : don't handle OnClick event when it was not the left
9786           button. Fixed bug #78487.
9787
9788 2006-05-23  Mike Kestner  <mkestner@novell.com>
9789
9790         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
9791         prefer submenus to the top menu for item lookup, to avoid popping down
9792         top-row items.
9793
9794 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
9795
9796         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
9797           Graphics.FillRectangle as the visual results are really bad (even
9798           on win). We now draw perfect arrows (and perfect shadows when the
9799           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
9800           Pen.DashPattern to draw the dots of each line.
9801
9802 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
9803
9804         * FileDialog.cs: Update the filename combobox when navigating through
9805           the ListView with the cursor keys. Fixes part 7 of bug #78446.
9806
9807 2006-05-22  Mike Kestner  <mkestner@novell.com>
9808
9809         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
9810         Fixes #78463.
9811
9812 2006-05-22  Mike Kestner  <mkestner@novell.com>
9813
9814         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
9815         requests. Fix a misspelled parameter and a copy paste exception error
9816         in Select.
9817
9818 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
9819
9820         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
9821           to get the same width/height (5/13) on X11 as the default font has on
9822           win32. This means that our DefaultFont emSize is smaller than the 
9823           the MS SWF equivalent (even thought the width/height stays the same)
9824
9825 2006-05-20  Jackson Harper  <jackson@ximian.com>
9826
9827         * MdiClient.cs:
9828         * MdiWindowManager.cs:
9829         * InternalWindowManager.cs: Make sure to use the border width from
9830         the theme.
9831
9832 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
9833
9834         * PrintDialog.cs: Implements printer details
9835
9836 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
9837
9838         * FileDialog.cs: Added focus handling for PopupButtonPanel.
9839           Fixes part 1 and 2 of bug #78446
9840
9841 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
9842
9843         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
9844           instead of sticking to the first ever calculated value
9845
9846 2006-05-19  Mike Kestner  <mkestner@novell.com>
9847
9848         * ComboBox.cs: fix mouse motion selection to use MousePosition and
9849         PointToClient, since Capture is set. Fixes #78344.
9850
9851 2006-05-19  Mike Kestner  <mkestner@novell.com>
9852
9853         * ListView.cs: match MS behavior in Details view where items are not
9854         drawn if Columns.Count == 0. 
9855         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
9856         Use a separate pen to draw the check, since changing the width affects
9857         the box as well.  Fixes #78454.
9858
9859 2006-05-18  Miguel de Icaza  <miguel@novell.com>
9860
9861         * ListView.cs: ArgumentOutOfRangeException, single versions of the
9862         exception should throw the name of the invalid argument.
9863
9864         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
9865         there are no files listed. 
9866
9867 2006-05-18  Jackson Harper  <jackson@ximian.com>
9868
9869         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
9870         up.
9871
9872 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
9873
9874         * Control.cs: Brought back our old UpdateZOrder method as a private
9875           function and switched our calls from UpdateZOrder to the new one.
9876           This fixes the Paint.Net canvas disappearing bug.
9877
9878 2006-05-18  Jackson Harper  <jackson@ximian.com>
9879
9880         * Theme.cs:
9881         * ThemeWin32Classic.cs:
9882         * InternalWindowManager.cs: Move the drawing into the theme,
9883         expose everything the theme should need from the window manager.
9884
9885 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
9886
9887         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
9888           from the call to NativeWindow to avoid walking up the parent chain
9889           further than needed (speeds up setting cursors and avoids setting
9890           the wrong cursor if a parent has another cursor defined)
9891         * Cursor.cs: When loading an icon as cursor, MS uses the center of
9892           the icon as hotspot, not what's contained as hotspot in the icon
9893           file. This fixes the perceived drawing offset seen with Paint.Net
9894         
9895 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
9896
9897         * XplatUIX11.cs: 
9898           - Store the calculated rectangle in Hwnd object and use it when 
9899             setting the client size
9900           - Force Toolwindows to always be type Dock, to ensure they're on top
9901
9902 2006-05-18  Mike Kestner  <mkestner@novell.com>
9903
9904         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
9905         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
9906         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
9907         Substantial refactoring to remove confusing nested classes. Coding
9908         standard and Get+Set->property refactorings.  Shift to index based
9909         highlighting in ComboListBox instead of constantly using IndexOf and
9910         Items[]. Add invalidations on resize for DropDownList to fix ugliness
9911         in FileDialog growth.  Draw borders manually since Simple mode needs
9912         to look like two independent controls.  Make listbox border
9913         conditional to DropDownStyle.  Improved OwnerDraw support.
9914
9915 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
9916
9917         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
9918         Don't set the disposed graphics to null, so we can throw the "right"
9919         exception if the graphics is reused later (added a flag to avoid 
9920         double disposing). Some behaviours are different under 2.0 and are
9921         filled under bug #78448.
9922
9923 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
9924
9925         * Control.cs: When double-buffering is enabled, we need to reset
9926           our graphics context between paint calls. Otherwise, any 
9927           transformations and other alterations on the context will 
9928           become cumulative (#77734)
9929
9930 2006-05-18  Mike Kestner  <mkestner@novell.com>
9931
9932         * ListView.cs: do focused item selection like MS on clicks. 
9933         Rework focus handling for ItemControl so LostFocus invalidates as
9934         well.
9935         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
9936         the ListView ItemControl has focus.
9937
9938 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
9939
9940         * XplatUIX11.cs: If client_window ends up being width or height zero
9941           due to border settings, move it off window inside whole_window (#78433)
9942
9943 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
9944
9945         * Mime.cs: Shrink the mime file cache correctly.
9946
9947 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
9948
9949         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
9950
9951 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9952
9953         * XplatUIX11.cs (AddExpose): More sanity checks
9954
9955 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9956
9957         * XplatUIX11.cs:
9958           - AddExpose: Don't add expose ranges outside the size of our
9959             window
9960           - Cast opacity values to Int32 to avoid crashes with certain
9961             values
9962           - Added disabled code paths that protect against illegal cross-
9963             thread painting (Developers.exe)
9964
9965 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9966
9967         * ProgressBar.cs: Invalidate the control when it's resized
9968           since block size is based on control size. (#78388)
9969
9970 2006-05-16  Miguel de Icaza  <miguel@novell.com>
9971
9972         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
9973         of setting the incoming argument to the "reset" value, we set the
9974         this.datamember to string.empty (before we were invalidating the
9975         incoming data).   
9976
9977         Fixes 78420
9978
9979 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9980
9981         * Form.cs: Only apply transparency settings after the form
9982           is created. (Fixes #77800)
9983
9984 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9985
9986         * ApplicationContext.cs: Grab the HandleDestroyed event so
9987           we know when to fire OnMainFormClosed 
9988
9989 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9990
9991         * Application.cs: Introduced sub-class to allow tracking of
9992           threads and centralized triggering of the event mess for
9993           ThreadExit, AppExit, etc..  (#76156)
9994
9995 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
9996
9997         * MimeIcon.cs:
9998           - Do not return a null icon index value for a mime subclass.
9999             Instead try the main mime type class too.
10000           - Seems that some newer distributions don't have a link to some
10001             gnome default icons anymore. So check the default gnome dir too.
10002           
10003
10004 2006-05-16  Jackson Harper  <jackson@ximian.com>
10005
10006         * MdiClient.cs: Don't paint the parent background image if we have
10007         our own background image.
10008
10009 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10010
10011         * Control.cs:
10012           - PerformLayout: Do not shrink space filled by DockStyle.Fill
10013             controls, all filled controls are supposed to overlap (#78080)
10014           - UpdateZOrder is supposed to update the control's z-order in the
10015             parent's z-order chain. Fixed to behave like that
10016           - BringToFront: Removed obsolete code
10017           - SendToBack: Simplyfied
10018           - SetChildIndex: Trigger layout calculations when Z-order changes
10019             since layout is done by z-order
10020
10021 2006-05-16  Chris Toshok  <toshok@ximian.com>
10022
10023         [ fixes bug #78410 ]
10024         * DataGrid.cs (set_AlternatingBackColor): use
10025         grid_drawing.InvalidateCells instead of Refresh().
10026         (set_BackColor): call grid_drawing.InvalidateCells.
10027         (set_BackgroundColor): use Invalidate instead of Refresh.
10028
10029         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
10030         invalidate the cell area.
10031
10032 2006-05-15  Chris Toshok  <toshok@ximian.com>
10033
10034         [ fixes bug #78011 ]
10035         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
10036         on to DataGridPaintRow.
10037         (DataGridPaintRow): take a clip argument, and only draw the cells
10038         which intersect it.  same with the not_usedarea.
10039
10040         * Theme.cs (DataGridPaintRow) add @clip parameter.
10041
10042         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
10043         XplatUI.ScrollWindow.
10044         (ScrollToRow): same.
10045
10046         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
10047         with last column which was causing a gray swath to appear with the
10048         XplatUI.ScrollWindow code.
10049
10050 2006-05-15  Chris Toshok  <toshok@ximian.com>
10051
10052         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
10053         use XplatUI.ScrollWindow.
10054         (VerticalScrollEvent): use XplatUI.ScrollWindow.
10055
10056 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
10057
10058         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
10059
10060 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
10061
10062         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
10063           file since there are no equivalent X11 cursors
10064
10065 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10066
10067         * MonthCalendar.cs : DateTimePicker should reflect selected date
10068           on mouse*up*, not mouse*down*. Fixed originally reported part of
10069           bug #76474.
10070
10071 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10072
10073         * TabControl.cs : When argument index is equal or more than tab
10074           count, just ignore. Fixed bug #78395.
10075
10076 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
10077
10078         * Control.cs: Dispose all child controls when control is diposed (#78394)
10079
10080 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10081
10082         * ColorDialog.cs: Finally it is possible to select the color with
10083           the text boxes
10084
10085 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10086
10087         * PrintDialog.cs: Fix typo
10088
10089 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10090
10091         * PrintDialog.cs: PrintDialog is not resizable
10092         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
10093           color. Made some ToolBar drawing methods protected virtual.
10094
10095 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
10096
10097         * PrintDialog.cs: Implementation of the PrintDialog
10098
10099 2006-05-12  Chris Toshok  <toshok@ximian.com>
10100
10101         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
10102         thumb, instead use MoveThumb.  This has the side effect of making
10103         most of the other thumb moving machinery use MoveThumb as well.
10104         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
10105         need to actually invalidate the rectangle where the new thumb will
10106         go.
10107         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
10108         We force an Update() after, so it's not as fast as it could be,
10109         but at least there's zero flicker and no droppings.
10110         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
10111         (UpdateThumbPos): add another argument (dirty), which says whether
10112         or not to calculate/add dirty regions which we later invalidate.
10113         For cases where we know we're going to use MoveThumb, we pass
10114         false for this.  Otherwise, pass true.
10115
10116 2006-05-12  Jackson Harper  <jackson@ximian.com>
10117
10118         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
10119         the status bar.
10120         
10121 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
10122
10123         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
10124           and GetClipRegion methods and UserClipWontExposeParent property.
10125         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
10126           overriding UserClipWontExposeParent property, setting to false, since
10127           Win32 handles the required expose messages to draw our clipped parent
10128           areas internally
10129         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
10130           PaintEventStart to set the user clip region if set.
10131         * Control.cs: 
10132           - Now internally tracking the Region for the control since we need to
10133             store it if the handle is not yet created and only set it when it
10134             becomes created. Before setting the region forced handle creation
10135           - Added code to draw the parents underneath a user-clipped region
10136         * Hwnd.cs: Added UserClip property
10137
10138 2006-05-12  Chris Toshok  <toshok@ximian.com>
10139
10140         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
10141         (set_Maximum): same.
10142         (set_Minimum): same.
10143         (set_SmallChange): same.
10144         (OnMouseUpSB): remove the call to refresh when releasing the
10145         thumb.  We shouldn't need it.
10146         
10147 2006-05-12  Miguel de Icaza  <miguel@novell.com>
10148
10149         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
10150         AutoSize set to None, we do not need to relayout everything, we
10151         just need to invalidate the current region.
10152
10153         (Draw): Do not draw the entire ClientArea, just redraw the
10154         clip area being passed.
10155
10156         * MdiClient.cs: Make MdiClient constructor with the Form argument
10157         internal. 
10158
10159 2006-05-12  Jackson Harper  <jackson@ximian.com>
10160
10161         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
10162         parents background image,  but strangely not their own.
10163         - (DrawStatusBarPanel): Take into account horizontal alignment
10164         when drawing the strings and icons.
10165
10166 2006-05-12  Mike Kestner  <mkestner@novell.com>
10167
10168         * ListBox.cs: avoid invalidations for focus when the collection is
10169         empty. 
10170
10171 2006-05-12  Chris Toshok  <toshok@ximian.com>
10172
10173         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
10174         invalidate the entire thumb area.  Call InvalidateDirty which
10175         limits the redraw to the thumb itself and surrounding pixels.
10176
10177         * XplatUIX11.cs (ScrollWindow): optimize copying.
10178         
10179 2006-05-12  Chris Toshok  <toshok@ximian.com>
10180
10181         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
10182         Figure out the positioning/layout in a single pass instead of
10183         multiple recursive invocations.  Speeds up the initial display of
10184         the data grid.  Also, make many things private that were
10185         originally public but unused outside this class.
10186
10187 2006-05-11  Jackson Harper  <jackson@ximian.com>
10188
10189         * MdiClient.cs: Improved layout code.
10190
10191 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
10192
10193         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
10194           not SelectedObject.
10195
10196 2006-05-11  Chris Toshok  <toshok@ximian.com>
10197
10198         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
10199         union of that will always be {0,0,width,height}.
10200
10201 2006-05-11  Jackson Harper  <jackson@ximian.com>
10202
10203         * Form.cs: Match MS's DefaultSize for forms (they must have
10204         changed the size in sp2).
10205
10206 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
10207
10208         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
10209
10210 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
10211
10212         * TextControl.cs : Fixed bug #78109. This incorrect position
10213           comparison caused crash on automatic line split.
10214         * TextBoxBase.cs : reduce duplicate code.
10215
10216 2006-05-10  Jackson Harper  <jackson@ximian.com>
10217
10218         * MdiClient.cs: Active form is only sent to the back when using
10219         the Next form functionality, when a form is clicked the current
10220         active shouldn't be sent to the back.
10221         - Layout the mdi windows when the container is first made visible.
10222         * Form.cs: Give the MdiClient a ref to the containing form when we
10223         create it.
10224         
10225 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
10226
10227         * LinkLabel.cs : link_font could be uninitialized, so populate one
10228           before actual use. Fixed bug #78340.
10229
10230 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
10231
10232         * XplatUIX11.cs : clipboard format native value is IntPtr.
10233           Fixed bug #78283.
10234
10235 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
10236
10237         * Control.cs: 
10238           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
10239             which is passed up the parent chain by DefWndProc
10240           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
10241             to DefWndProc (#77956)
10242         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
10243
10244 2006-05-10  Jackson Harper  <jackson@ximian.com>
10245
10246         * MdiClient.cs: We need to remove the controls from the mdi
10247         collection, when we close the window.
10248         * MdiWindowManager.cs: Special handling of closing mdi windows.
10249         * InternalWindowManager.cs: Make the close method virtual so the
10250         mdi window manager can handle it specially.
10251
10252 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
10253
10254         * DataGrid.cs:
10255           - Recalculate grid when the data source has changed
10256           - Matches styles provided by user from all data sources types
10257         * DataGridTableStyle.cs: For columns that provided by the user set the
10258         with the preferred value is there was unassigned.
10259         * CurrencyManager.cs: throw OnItemChanged event
10260
10261 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
10262
10263         * PictureBox.cs: Don't animate until handle is created. Start animation
10264           when handle is created.
10265
10266 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
10267
10268         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
10269           current codebase.
10270         * XEventQueue.cs: We don't need to provide the extra info
10271
10272 2006-05-10  Jackson Harper  <jackson@ximian.com>
10273
10274         * MdiClient.cs: If the mdi clients parent form has a background
10275         image set, we draw that background image for the mdi area's
10276         background.
10277
10278 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
10279
10280         * TextBoxBase.cs: Set IBeam cursor (#78347)
10281
10282 2006-05-10  Mike Kestner  <mkestner@novell.com>
10283
10284         * ToolBar.cs: fix some text padding issues with ButtonSize
10285         calculation. Update the default size to match MS documentation.
10286         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
10287         button size. Fixes #78296.
10288
10289 2006-05-10  Mike Kestner  <mkestner@novell.com>
10290
10291         * ListBox.cs: use is_visible for scrollbar positioning in case the
10292         control isn't on screen yet.  Fix off by one with Right vs Width
10293         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
10294         
10295 2006-05-10  Jackson Harper  <jackson@ximian.com>
10296
10297         * X11Dnd.cs: Drop to a control with another control on top of it.
10298         * ToolBar.cs: Work on a copy of the buttons list, so that it can
10299         be modified in click handlers. TODO: Look for similar problems in
10300         other controls.
10301
10302 2006-05-09  Jackson Harper  <jackson@ximian.com>
10303
10304         * Form.cs: Window managers need the old window state when setting
10305         window state now.
10306         * InternalWindowManager.cs: Allow the base mdi window manager to
10307         handle more of the MDI only stuff (like maximize buttons).
10308         * MdiWindowManager.cs: Fix some snafus in changing the window
10309         state.  Add all the menu functionality, for both popup and
10310         maximized menus.
10311         * MdiClient.cs: When a new form is selected the currently
10312         activated form is sent to the back, this matches MS.
10313         - Implement a new method to activate the next mdi child window.
10314
10315 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
10316
10317         * Control.cs: 
10318           - Added new InternalCapture method to allow controls to prevent
10319             the capture behaviour on the click handlers
10320           - Switched to use InternalCapture
10321         * ComboBox.cs:
10322           - Using InternalCapture to prevent mouse captures from being released
10323             on mouse button release (Fixes #78100)
10324         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
10325           returns Form borders if a caption is present. (Fixes #78310)
10326
10327 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
10328
10329         * TreeNode.cs: Changed serialization .ctor to not require every field
10330           to be present. (#78265)
10331         * OwnerDrawPropertyBag.cs: Added serialization .ctor
10332
10333 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
10334
10335         * MimeIcon.cs: for is faster than foreach for strings.
10336
10337 2006-05-05  Mike Kestner  <mkestner@novell.com>
10338
10339         * CheckedListBox.cs: update check handling code to not use selected.
10340         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
10341         behavior for visual feedback, motion response, shift/ctrl handling,
10342         and properly deal with all 4 selection modes. Updates to bounds
10343         handling logic.  Add scroll wheel support. [Fixes #77842]
10344
10345 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
10346
10347         * ListView.cs:
10348           - Moved adding of Implicit controls into .ctor. That way, subsequent
10349             creation of the controls will not cause them to think they are 
10350             toplevel windows (fixes #78200 header problem)
10351           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
10352           - Switched visibility setting of header control to use internal field
10353             to avoid triggering handle creation
10354           - Now checking if handle is created before causing a refresh when items
10355             are added (This makes us now match handle creation time with MS)
10356         * Splitter.cs: Removed loading of private splitter cursor, switched to
10357           Cursors version now that that is loading the right ones
10358         * Cursors.cs: Load proper splitter cursors from resources
10359         * Cursor.cs: Added second method of loading resource cursors for the 
10360           VS.Net users amongst us
10361
10362 2006-05-05  Mike Kestner  <mkestner@novell.com>
10363
10364         * ListView.cs: give header_control a minimum size based on the
10365         ListView size.
10366
10367 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
10368
10369         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
10370           window seems to do that with metacity, so set that type. (#78120)
10371
10372 2006-05-05  Mike Kestner  <mkestner@novell.com>
10373
10374         * ListViewItem.cs: fix Details mode checkbox layout bug.
10375         * ThemeWin32Classic.cs: draw a ListView column header for unused space
10376         at the end of the header, if it exists. [Fixes for #78200]
10377
10378 2006-05-04  Jackson Harper  <jackson@ximian.com>
10379
10380         * MdiClient.cs: Add a helper property to get the container form.
10381         * MdiWindowManager.cs: We have to make sure to use the menu origin
10382         when drawing the icons and buttons, this fixes maximized window
10383         icons/buttons on win32.
10384         * InternalWindowManager.cs: Reset the restore captions when a
10385         window goes from Maximized to Minimized and vice versa. Move the
10386         DrawMaximizedButtons into the MdiWindowManager source, tool
10387         windows can't be maximized. NOTE: This could use a little
10388         refactoring if time ever permits.
10389         
10390 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
10391
10392         * TextBox.cs: Add MWFCategoryAttributes
10393         * TextBoxBase.cs: Add MWFCategoryAttributes
10394         * Form.cs: Add MWFCategoryAttributes
10395
10396 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
10397
10398         * Control.cs: Add MWFCategoryAttributes
10399         * ScrollableControl.cs: Add MWFCategoryAttributes
10400
10401 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
10402
10403         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
10404           Divider is true. Fix a little glitch in PropertyToolBar
10405           drawing code
10406
10407 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
10408
10409         * Control.cs:
10410           - Dispose: Call base.Dispose, this causes the disposed event
10411             to be fired (and probably other, more important stuff)
10412           - SetVisibleCore: Set is_visible to true after creating the
10413             window so that the window still gets created invisible (if
10414             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
10415             to generate a WM_ACTIVE message
10416         * Form.cs: Call Dispose when we want to destroy the window, instead of
10417           just destroying the handle (Dispose will do that for us)
10418         * XplatUIX11.cs:
10419           - RootWindow also needs a queue, so we can properly process the
10420             property change events from RootWindow (like Activate)
10421           - Generatic synthetic WM_ACTIVE message when the active window is
10422             being destroyed
10423
10424 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
10425
10426         * LinkLabel.cs: Trigger a recalc of our label dimensions when
10427           bounds are changed
10428
10429 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
10430
10431         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
10432           for determining width and height (image might not be assigned if
10433           we're drawing an imagelist)
10434
10435 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
10436
10437         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
10438         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
10439           height from system
10440         * Theme.cs: No longer returns hardcoded menu height, instead calls
10441           new driver method
10442         * Form.cs (OnLoad): Scaling happens before triggering Load events 
10443           on MS (# 78257)
10444
10445 2006-05-01  Mike Kestner  <mkestner@novell.com>
10446
10447         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
10448
10449 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
10450
10451         * TextBoxBase.cs: Removed Fixme
10452         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
10453
10454 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
10455
10456         * XplatUIX11.cs:
10457           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
10458             the rectangle relative to the parent, considering borders. We
10459             don't really want that.
10460           - ScrollWindow: Fixed warning to be more understandable
10461         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
10462           scrollbars and scroll only the visible area
10463         * RichTextBox.cs: Removed debug output
10464
10465 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
10466
10467         * NumericUpDown.cs (Text): Just use base
10468         * UpDownBase.cs: Ensure txtView is created before using it
10469
10470 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
10471
10472         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
10473           casting to IntPtr to avoid 64bit overflow errors
10474
10475 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
10476
10477         * Control.cs:
10478           - AllowDrop: Don't force handle creation.
10479           - CreateHandle: Added call to tell driver if we're allowed to drop
10480
10481 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
10482
10483         * FileDialog.cs: Remember the last directory not only for the
10484           current instance but also for new FileDialog instances.
10485
10486 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
10487         
10488         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
10489           broke sending async messages
10490
10491 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
10492
10493         * XplatUIX11.cs:
10494           - ScrollWindow: Fixed method. We finally generate expose events again
10495             for scrolled areas. This was causing 'garbage' when scrolling
10496             textbox and other controls that used ScrollWindow
10497           - Switched from using the regular queue for paint events to the MS 
10498             model of 'generating' paint events when the queue is empty.
10499             We use the new XQueueEvent.Paint subclass to store which windows
10500             need painting.
10501           - AddExpose now takes the x/y/width/height of the exposed area
10502             and inserts the window into the paint queue if not already there
10503           - InvalidateWholeWindow: Switched to use new AddExpose method
10504           - UpdateMessageQueue: Added which queue to monitor for paint events
10505           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
10506             the unlikely case nothing above handles it. We reset the expose
10507             pending states to get them off the queue.
10508           - GetMessage: Now pulls a paint event if no other events are in the
10509             queue
10510           - Invalidate: Switched to new AddExpose method
10511           - PeekMessage: Updated to understand pending paint events
10512           - UpdateWindow: Fixed logic bug. We were only updating if the window
10513             didn't need updating. Also switched to sending WM_PAINT directly,
10514             like MS does.
10515         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
10516           and random access Remove(). The random access is needed to handle
10517           UpdateWindow() where a WM_PAINT is sent directly without accessing
10518           the queue.
10519         * ScrollBar.cs: Added Update() calls to cause immediate updates to
10520           allow for better feedback when scrolling. Scrollbars are small and
10521           the immediate update should make it 'feel' more responsive without
10522           slowing things down. ScrollBar still needs it's invaliate logic
10523           updated to not always invalidate the whole bar on certain changes.
10524
10525 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10526
10527         * Control.cs:
10528         (BackColor): if the control does not support a transparent background,
10529         return the default backcolor when the parent backcolor is transparent.
10530
10531 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
10532
10533         * Application.cs: Updated to new StartLoop/GetMessage API
10534         * RichTextBox.cs: Provide some output on RTF parsing errors
10535         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
10536           new queue_id argument to GetMessage and PeekMessage to allow faster
10537           handling of per-thread queues in drivers.
10538         * Hwnd.cs: Added Queue tracking and property
10539         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
10540         * XEventQueue.cs: Added thread trackingA
10541         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
10542         * XplatUIX11.cs:
10543           - Implemented new per-thread queue
10544           - GetMessage: Fixed return/break behaviour on several cases. We were
10545             returning stale messages in some cases, instead of just processing
10546             the next message
10547
10548 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
10549
10550         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
10551
10552 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
10553
10554         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
10555           fixed off-by-one comparisons between Width/Height and Right/Bottom.
10556
10557 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
10558
10559         * PropertyGridView.cs: Fix drop down width.
10560
10561 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
10562
10563         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
10564           a mess in DrawToolBar, so I removed one of them.
10565
10566 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
10567
10568         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
10569           needed (clip). Otherwise we get artifacts.
10570
10571 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
10572
10573         * FixedSizeTextBox.cs: Added constructor to allow specifying which
10574           dimension is fixed
10575         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
10576           and switched FixedSizeTextBox to only be fixed vertical (#78116)
10577         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
10578           if it matches the scale base font (avoids unneeded scaling)
10579
10580 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
10581
10582         * X11DesktopColors.cs: One gtk_init_check should be enough
10583
10584 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
10585
10586         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
10587           match MS behaviour
10588
10589 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
10590
10591         * TextBoxBase.cs: 
10592           - Generate OnTextChanged for Backspace even if we're only deleting
10593             the current selection
10594           - When setting the Text property, only select all text if the
10595             control does not have focus when it is being set. Otherwise
10596             just place the cursor at the beginning of the control
10597
10598 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
10599
10600         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
10601           Added a little helper to draw PropertyGrid ToolBar with a different
10602           border and a different BackColor.
10603         * PropertyGrid.cs: Some background parts didn't get painted with the
10604           correct background color. Added a class that helps us to draw the
10605           correct border for PropertyGridView and a class that helps us to
10606           draw ToolBars with a different backcolor
10607         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
10608
10609 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
10610
10611         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
10612         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
10613
10614 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
10615
10616         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
10617           into the palette entries. Also, since we're working on a copy
10618           we needed to copy the palette back onto the bitmap.
10619         * Cursor.cs: Same fix as XplatUIWin32.cs.
10620
10621 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
10622
10623         * ImageListStreamer.cs: Need to read the var (or we're off)
10624
10625 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
10626
10627         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
10628           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
10629           TextBoxBase.cs: Unused var fixes
10630         * AxHost.cs: Small 2.0 fix
10631         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
10632           as it seems that is what at least Metacity expects. This will make
10633           icons show up on 64bit platforms. We still have some 64bit size
10634           issues, though, since the startup app window size still won't match.
10635
10636 2006-04-25  Mike Kestner  <mkestner@novell.com>
10637
10638         * *.cs: cleanup newly reported exception var unused warnings.
10639
10640 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
10641
10642         * ThemeWin32Classic.cs: Button image alignment now matches exactly
10643           ms
10644
10645 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
10646
10647         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
10648           image. The image position is always the same, no matter if the
10649           button is pressed or not.
10650
10651 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
10652
10653         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
10654           selection and set the correct filename for SaveFileDialog.
10655           Patch by Emery Conrad.
10656
10657 2006-04-24  Mike Kestner  <mkestner@novell.com>
10658
10659         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
10660         check for item.X outside the ClientRect instead of item.Y. Fixes
10661         #78151.
10662
10663 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10664
10665         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
10666         trust that value blindly and do some sanity check. Fixes bug #77814.
10667
10668 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10669
10670         * ImageListStreamer.cs: save the mask as a 1bpp image.
10671
10672 2006-04-21  Mike Kestner  <mkestner@novell.com>
10673
10674         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
10675         pass Checked and Indeterminate to the Theme Engine. Improve
10676         encapsulation with ListBox.
10677         * ListBox.cs: Keep a StringFormat instead of calculating it every item
10678         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
10679         nested types.  Move all CheckState functionality to CheckedListBox.
10680         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
10681         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
10682         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
10683         single base list. Fix scrollbar sizing and placement to mirror MS.
10684         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
10685         used.
10686         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
10687         for CheckedListBox by using new DrawItemState info.  Center the
10688         checkboxes on the items. Use new StringFormat property.
10689
10690 2006-04-18  Jackson Harper  <jackson@ximian.com>
10691
10692         * Form.cs: MdiChildren don't do default locations the same way as
10693         regular forms.  This prevents a crash when trying to position the
10694         mdi windows.
10695
10696 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
10697
10698         * PropertyGridTextBox.cs: Formatting, copyright
10699         * PropertiesTab.cs: Formatting
10700         * PropertyGrid.cs: Formatting
10701         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
10702           click toggling of values
10703           
10704 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
10705
10706         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
10707         * Control.cs (.ctor): verify_thread_handle is static, don't reset
10708           every time a control is created
10709         * Application.cs: Removed obsolete EnableRTLMirroring method
10710
10711 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
10712
10713         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
10714         SelectedIndex to -1. Fixes bug #78121.
10715
10716 2006-04-17  Jackson Harper  <jackson@ximian.com>
10717
10718         * Binding.cs: Handle null values for Current and BindingContext.
10719         This occurs when binding is a little delayed.
10720         * CurrencyManager.cs: return null for Current when there are no
10721         items in the list.
10722         - Hookup to the listchanged event on the DataView and update
10723         bindings when the list is changed.  This fixes late binding of
10724         controls.
10725
10726 2006-04-17  Jackson Harper  <jackson@ximian.com>
10727
10728         * X11Dnd.cs:
10729         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
10730         Ringenbach.
10731
10732 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
10733
10734         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
10735           place
10736         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
10737           with the correct ButtonState
10738
10739 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
10740
10741         * XplatUIX11.cs: Improved distinguishing between window types to
10742           tell the WM a type closer to what the app wants (Fixes #78107)
10743
10744 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
10745
10746         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
10747           GrabHandle
10748
10749 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
10750
10751         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
10752           drawing code to reflect the size grip changes
10753
10754 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10755
10756         * ImageListStreamer.cs: fix handling of the mask that follows the main
10757         bitmap when deserializing and serialize it properly. The generated mask
10758         should better be a 1bpp image, but I'll do that later.
10759
10760 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
10761
10762         * FileDialog.cs: Show something in the DirComboBox on *nix if the
10763           path doesn't fit into some of our Current.Places
10764
10765 2006-04-13  Jackson Harper  <jackson@ximian.com>
10766
10767         * ComboBox.cs: Use borders instead of drawing our own decorations,
10768         try to obey correct rules for heights.
10769         * Theme.cs:
10770         * ThemeNice.cs:
10771         * ThemeClearLooks.cs:
10772         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
10773         this is now handled by borders.
10774         - Remove unused DrawListBoxDecorationSize method.
10775         
10776 2006-04-13  Mike Kestner  <mkestner@novell.com>
10777
10778         * MenuAPI.cs: null guarding for the disbled click check fixes crash
10779         reported by Alex.
10780
10781 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
10782
10783         * ThemeWin32Classic.cs: 
10784           - Fixed CPDrawStringDisabled
10785           - Corrected drawing of disabled menu items
10786           - Fixed drawing of disabled radio buttons (bug #78095)
10787           - Draw check in a disabled CheckBox with color ControlDark 
10788
10789 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10790
10791         * Form.cs: Use the provided width when calculating the menu size;
10792           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
10793           and ClientSize.Width won't be updated yet
10794         * Application.cs: Use Visible instead of Show() to make form visible,
10795           this way we create the handle later and menusize is considered
10796
10797 2006-04-12  Mike Kestner  <mkestner@novell.com>
10798
10799         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
10800         reporting.
10801
10802 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10803
10804         * TextBox.cs: Implemented context menu
10805
10806 2006-04-12  Mike Kestner  <mkestner@novell.com>
10807
10808         * ListView.cs: implement box selection. fixes #77838.
10809         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
10810
10811 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
10812
10813         * XplatUIX11.cs: Added setting of window type when transient window
10814           is created (metacity would move it otherwise)
10815         * X11Structs.cs: Added WINDOW_TYPE atoms
10816         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
10817           background (the control is Opaque but still wants transparent
10818           backgrounds)
10819
10820 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10821
10822         * Control.cs: Added OnPaintBackgroundInternal to allow controls
10823           that set Opaque but don't mean it (like all ButtonBase-derived
10824           controls) to still draw their background
10825         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
10826           the background
10827
10828 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
10829
10830         * Control.cs (PaintControlBackground): Set the graphics object
10831           on our PaintEvent to null to prevent it from being disposed
10832           when the PaintEvent gets disposed
10833
10834 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
10835
10836         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
10837         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
10838
10839 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10840
10841         * Control.cs: 
10842           - Added transparency check to BackColor property. Transparent
10843             backgrounds are only allowed if the control styles permit it
10844           - Added recursive painting of parent control background and
10845             foreground if a control with a transparent backcolor is drawn
10846             (Thanks to Tim Ringenback for providing his 'hack' as a base
10847              for this patch) Fixes #77985 and #78026.
10848           - Added Opaque style check before calling OnPaintBackground, no
10849             need to draw the background if the control is opaque
10850           - Removed ControlAccessibleObject owner variable (inherited from
10851             base, no need to define again)
10852           - Added some documentation links explaining the drawing events
10853             and styles
10854
10855 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
10856
10857         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
10858           that the affected control is the located at the left border of our
10859           parent (Fixes #77936)
10860
10861 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10862
10863         * TextBoxBase.cs: When rendering disabled or readonly controls,
10864           draw the background with 'Control' instead of 'Window' color as
10865           long as the user hasn't specifically set a color
10866
10867 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
10868
10869         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
10870           since that won't be updated if the user types text (only if it's
10871           programatically set)
10872
10873 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10874
10875         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
10876           layout changes do to app-triggered resizes will have the proper
10877           display rectangle for layout
10878
10879 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
10880
10881         * ThemeWin32Classic.cs:
10882           - Make use of the SystemBrushes and SystemPens wherever possible
10883           - Corrected some highlight colors
10884           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
10885             drawing
10886         * Theme.cs: Added Empty field to CPColor struct
10887
10888 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10889
10890         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
10891           is displayed when calculating the display rectangle. Thanks to Mike
10892           for teaching me the err of my ways.
10893
10894 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
10895
10896         * ScrollableControl.cs:
10897           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
10898             (instead of 0,0) and we now return the real width/height instead of
10899             just the clientrectangle, adjusted for padding. The rectangle is
10900             now cached and created by the new CalculateDisplayRectangle method.
10901           - Created new CalculateDisplayRectange method, which basically does
10902             what get_DisplayRectangle() did originally, but now using the 
10903             right edge instead of DisplayRectangle to determine the size of
10904             our scrollbars
10905           - get_Canvas(): Fixed it to properly calculate canvas for 
10906             right/bottom controls which seem to be placed to the right/bottom
10907             of any controls that have a fixed location
10908           - Removed TODO that's taken care of
10909           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
10910             and SetDisplayRectLocation according to new MSDN2 docs
10911           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
10912             event when that is called, this is added for compatibility
10913           - ScrollControlIntoView(): Implemented.
10914           - Switched scrollbars to be implicit, they shouldn't be selectable
10915         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
10916           call it when the active control is set/changed
10917         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
10918         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
10919           implicit_control variable (used for native Win32 message generation)
10920         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
10921           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
10922         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
10923         * XplatUIStructs.cs: Added ScrollBarCommands enum
10924
10925 2006-04-10  Jackson Harper  <jackson@ximian.com>
10926
10927         * ButtonBase.cs:
10928         * CheckedListBox.cs:
10929         * ComboBox.cs:
10930         * DataGrid.cs:
10931         * DataGridView.cs:
10932         * Form.cs:
10933         * GroupBox.cs:
10934         * ListBox.cs:
10935         * PrintPreviewControl.cs:
10936         * ProgressBar.cs:
10937         * PropertyGrid.cs:
10938         * Splitter.cs:
10939         * StatusBar.cs:
10940         * TrackBar.cs:
10941         * UpDownBase.cs: Fixup base event overrides.
10942         
10943 2006-04-06  Mike Kestner  <mkestner@novell.com>
10944
10945         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
10946         all user-initiated value changes to min <= value <= max-thumbsz+1.
10947         (set_Value): check for vert/horiz when calculating new thumb position.
10948         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
10949         like MS does.
10950         (OnMouseMoveSB): refactor the thumb dragging code and refine
10951         invalidation logic to reduce flicker.
10952         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
10953         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
10954         (UpdateThumbPosition): small code readability cleanup
10955
10956 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
10957
10958         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
10959           different
10960
10961 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
10962
10963         * ThemeNice.cs: Use a better graphics effect when a button is pressed
10964
10965 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
10966
10967         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
10968         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
10969           This dramatically reduces the number of Pen.Dispose calls. 
10970           Where possible call ResPool methods only once instead of calling it
10971           over and over again (for example for the same color).
10972
10973 2006-04-06  Mike Kestner  <mkestner@novell.com>
10974
10975         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
10976         Also remove an unused private field on the collection. Fixes #77972.
10977
10978 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
10979
10980         * ThemeNice.cs: Added ToolBar drawing code
10981
10982 2006-04-06  Mike Kestner  <mkestner@novell.com>
10983
10984         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
10985         I'm assuming that means we need to look up the toplevel for the
10986         provided control. Fixes the crash trace in #77911 but exposes another
10987         crash in some strange reflection usage in NDocGui.
10988
10989 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
10990
10991         * ThemeNice.cs: Gave it a little silver touch and added Images
10992           method
10993         * FontDialog.cs: FontDialog is not resizable
10994         * FileDialg.cs: Added SizeGripStyle.Show
10995
10996 2006-04-05  Jackson Harper  <jackson@ximian.com>
10997
10998         * KeyboardLayouts.cs: Remove warning.
10999
11000 2006-04-05  Jackson Harper  <jackson@ximian.com>
11001
11002         * Control.cs: Enable OnPaintInternal so we can use it for drawing
11003         all of our controls instead of Paint +=.
11004         * ListBox.cs:
11005         * ListView.cs:
11006         * MenuAPI.cs:
11007         * MessageBox.cs:
11008         * NotifyIcon.cs:
11009         * ProgressBar.cs:
11010         * ScrollBar.cs:
11011         * Splitter.cs:
11012         * StatusBar.cs:
11013         * TabControl.cs:
11014         * TextBoxBase.cs:
11015         * ToolBar.cs:
11016         * TrackBar.cs:
11017         * UpDownBase.cs:
11018         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
11019         use OnPaintInternal. Remove Width/Height and Visible checks in
11020         paint handler, this is done at a higher level now.
11021         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
11022         * PaintEventArgs.cs: Add a handled flag so controls that don't
11023         want anymore painting after OnPaintInternal can make sure OnPaint
11024         isn't called.
11025
11026 2006-04-05  Mike Kestner  <mkestner@novell.com>
11027
11028         * Form.cs: fix the menu WndProc hacks to respect the native enabled
11029         state of the form, so that we don't process events when Modal dialogs
11030         are up. Fixes #77922.
11031
11032 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
11033
11034         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
11035           checking is done.
11036
11037 2006-04-05  Mike Kestner  <mkestner@novell.com>
11038
11039         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
11040
11041 2006-04-05  Mike Kestner  <mkestner@novell.com>
11042
11043         * ListView.cs (HeaderMouseMove): null guarding for the over column
11044         when setting up the drag_to_index.  Fixes #78015.
11045
11046 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
11047
11048         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
11049           in the taskbar. Transient windows seem to accomplish that.
11050
11051 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
11052
11053         * Form.cs:
11054           - Re-enabled CreateParams.X/Y code for FormStartPosition
11055           - Added code for manual placement when creating the Control
11056           - Incomplete patch to treat MDI forms differently when
11057             setting the ClientSizeCore. (Still need to figure out handling
11058             x/y coords there)
11059         * XplatUIX11.cs:
11060           - When we're explicitly setting the X/Y position of a non-Child
11061             window, let the WM know. Metacity really wants this.
11062
11063 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11064
11065         * ThemeNice.cs: Added CPDrawButton
11066
11067 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11068
11069         * ThemeNice.cs: Changed the color for focused buttons and activated
11070           the arrows for small scroll buttons.
11071
11072 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11073
11074         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
11075           anymore. Changed some method modifiers to protected (virtual)
11076         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
11077           changes
11078         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
11079           Updated drawing of menus, buttons and progressbars; added
11080           CPDrawBorder3D 
11081
11082 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11083
11084         * ImageListStreamer.cs: implemented serialization/deserialization
11085         of the images.
11086
11087 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
11088
11089         * ThemeWin32Classic.cs:
11090           - Removed all the DrawFrameControl stuff; CPDrawButton,
11091             CPDrawCheckBox and CPDrawRadioButton are now handled directly
11092             inside the methods
11093           - Updated and corrected the drawing code of CPDrawButton,
11094             CPDrawCheckBox and CPDrawRadioButton to better match ms
11095           - Updated theme checkbox and radiobutton code to use the CP*
11096             methods
11097
11098 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
11099
11100         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
11101           bug is fixed
11102
11103 2006-03-31  Jackson Harper  <jackson@ximian.com>
11104
11105         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
11106         sometimes.
11107         * UpDownBase.cs: Don't CreateGraphics manually, use a
11108         Refresh. Ideally we would invalidate the correct areas here.
11109
11110 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
11111
11112         * XplatUIX11.cs: 
11113           - We now track the mapping state of windows. If a window (or 
11114             one of it's parents) is not mapped we no longer permit
11115             WM_PAINT messages to be generated since we'd otherwise get 
11116             lots of BadMatch X errors. Jackson did all the work figuring
11117             out the problem.
11118           - Destroying the caret if the window it's contained in is 
11119             destroyed. Can't use regular DestroyCaret method since it
11120             might fall into a drawing function (trying to remove the
11121             caret) and with that generate new BadMatch errors. Again,
11122             Jackson tracked this down.
11123           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
11124             make sure we send the messages to all windows. (The old code
11125             would send the WM_DESTROY to the window, and then all child
11126             windows would be 'gone' because the WM_DESTROY handle lookup
11127             would no longer find the destroyed window)
11128         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
11129         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
11130
11131 2006-03-31  Jackson Harper  <jackson@ximian.com>
11132
11133         * ScrollableControl.cs: Dont recalc if we are not visible.
11134
11135 2006-03-31  Mike Kestner  <mkestner@novell.com>
11136
11137         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
11138         the visibility branch.
11139
11140 2006-03-31  Jackson Harper  <jackson@ximian.com>
11141
11142         * ScrollBar.cs: Cap values when incrementing/decrementing.
11143
11144 2006-03-31  Mike Kestner  <mkestner@novell.com>
11145
11146         * MenuAPI.cs: setup menu.tracker for popup/context menus.
11147         * ToolTip.cs: guard against timer expirations with no active control.
11148         Not sure why it happened.
11149
11150 2006-03-31  Mike Kestner  <mkestner@novell.com>
11151
11152         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
11153         text.
11154         * ToolTip.cs: Position the tooltip based on where the cursor is at
11155         popup time, not at MouseEnter time.  Add a Down state so that we don't
11156         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
11157         positioning offset. Lookup DisplaySize at positioning time, since it
11158         can theoretically change during invocation.
11159         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
11160         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
11161
11162 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
11163
11164         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
11165           Fixes behaviour when the Text property of the box is String.Empty
11166
11167 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
11168
11169         * XplatUIX11.cs: Only send mouseleave for our client windows, not
11170           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
11171           a window)
11172
11173 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
11174
11175         * FileDialog.cs: Visual enhancement for the popup buttons in 
11176           PopupButtonPanel
11177
11178 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
11179
11180         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
11181           code
11182
11183 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
11184
11185         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
11186           highlighted menu items to match ms
11187
11188 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
11189
11190         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
11191
11192 2006-03-30  Mike Kestner  <mkestner@novell.com>
11193
11194         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
11195         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
11196         go active to account for HotLight to Selected transition.
11197         * MenuItem.cs: add internal Selected prop. Fill out the Status
11198         property by calculating it from item info. Add HotLight,
11199         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
11200
11201 2006-03-30  Mike Kestner  <mkestner@novell.com>
11202
11203         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
11204
11205 2006-03-29  Jackson Harper  <jackson@ximian.com>
11206
11207         * Form.cs: Implement TODO.
11208
11209 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
11210
11211         * PrintPreviewDialog.cs: Implemented missing methods and events; still
11212           missing proper dialog setup in the constructor
11213
11214 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
11215
11216         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
11217         * Control.cs:
11218           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
11219           - Fixed ResetBindings and removed TODO
11220           - Added check for cross-thread calls to get_Handle()
11221           - Added Marshaller attribute for set_Font to satisfy class status
11222         * FontDialog.cs: Removed TODOs that seemed implemented
11223         * UpDownBase.cs: Removed unneeded TODO and Fixme
11224         * MessageBox.cs: Implemented support for Default button and removed TODO
11225         * FileDialog.cs: Removed obsolete TODO
11226         * DomainUpDown.cs: Removed obsolete TODO
11227         * ButtonBase.cs: Removed obsolete TODO
11228         * XplatUIWin32.cs: Removed obsolete TODO
11229         * Form.cs:
11230           - Removed obsolete TODO
11231           - Calling CheckAcceptButton when the acceptbutton is changed to allow
11232             internal status updates
11233           - Making sure the active control is selected when the control is created
11234         * CurrencyManager.cs: Removed obsolete TODO
11235
11236 2006-03-29  Mike Kestner  <mkestner@novell.com>
11237
11238         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
11239         of PrintPreviewDialog and RichTextBox.
11240
11241 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
11242
11243         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
11244           DarkDark, Light and LightLight colors for a specific color
11245         * ThemeWin32Classic.cs:
11246           - Use Button drawing code to draw RadioButtons and CheckBoxes with
11247             Appearance = Button 
11248           - Make use of the new ResPool helper CPColor
11249           - Draw ProgressBar and StatusBar with correct 3D borders
11250
11251 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
11252
11253         * ColorDialog.cs: Return selected color. Fixes bug #77940.
11254
11255 2006-03-28  Mike Kestner  <mkestner@novell.com>
11256
11257         * ListView.cs: fix Icon layout to plan for scrollbar widths when
11258         calculating col/row counts.
11259
11260 2006-03-28  Mike Kestner  <mkestner@novell.com>
11261
11262         * ColumnHeader.cs:
11263         * ListView.cs:
11264         * ListViewItem.cs:
11265         * Menu.cs: 
11266         switch to explicit interface method implementation for some methods
11267         corcompare identifies as inconsistent with MS.
11268
11269 2006-03-28  Mike Kestner  <mkestner@novell.com>
11270
11271         * MainMenu.cs: 
11272         * Menu.cs:
11273         add a few missing methods from the class status output.
11274
11275 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
11276
11277         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
11278           correct.
11279
11280 2006-03-28  Mike Kestner  <mkestner@novell.com>
11281
11282         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
11283
11284 2006-03-27  Mike Kestner  <mkestner@novell.com>
11285
11286         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
11287         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
11288
11289 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
11290
11291         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
11292
11293 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
11294
11295         * ThemeWin32Classic.cs:
11296           - GroupBox: Inserted a little gap between the text and the lines
11297             on the right side
11298           - Made the code in CPDrawBorder3D more readable
11299           - Corrected the drawing location of the up and down arrows in 
11300             CPDrawScrollButton
11301
11302 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
11303
11304         * ControlPaint.cs: Corrected line widths in DrawBorder for
11305           ButtonBorderStyle Inset and Outset
11306
11307 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
11308
11309         * ThemeWin32Classic.cs:
11310           - Rewrote the totally broken CPDrawBorder3D method. That was
11311             one of the main problems for the terrific ThemeWin32Classic
11312             look
11313           - Updated and corrected Button drawing
11314           - Correct the dimensions of the SizeGrip to match ms ones
11315           - Removed a small drawing glitch in DrawComboBoxEditDecorations
11316         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
11317           Border3DStyle.Sunken to match ms.
11318
11319 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
11320
11321         * ThemeWin32Classic.cs: First small part of the "de-uglify
11322           ThemeWin32Classic" effort, SizeGrip
11323
11324 2006-03-24  Jackson Harper  <jackson@ximian.com>
11325
11326         * XplatUIX11.cs: Give a max idle time of one second, this matches
11327         MS and forces an Idle event every second when there are no other
11328         events in the queue.
11329
11330 2006-03-24  Mike Kestner  <mkestner@novell.com>
11331
11332         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
11333         * ListView.Item.cs: fix layout issues with null image lists and images
11334         smaller than checkbox size.
11335         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
11336         mode like MS does.  It's weird, but consistent.  ;-)
11337         Fixes #77890.
11338
11339 2006-03-24  Mike Kestner  <mkestner@novell.com>
11340
11341         * ListView.cs: Scroll wheel support for the item control.  Fixes
11342         #77839.
11343
11344 2006-03-23  Jackson Harper  <jackson@ximian.com>
11345
11346         * ScrollableControl.cs: Special case negative sized areas, not
11347         zero.
11348         * MonthCalendar.cs: Save the rect of the clicked date so we can
11349         use it for invalidation.
11350         - Try to cut down on the number of invalidates
11351         - Invalidate the rect the mouse is over and was over when moving
11352         the mouse, so we get the focus box following the cursor.
11353
11354 2006-03-23  Mike Kestner  <mkestner@novell.com>
11355
11356         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
11357         focus rectangle drawing. Fixes #77835.
11358
11359 2006-03-23  Mike Kestner  <mkestner@novell.com>
11360
11361         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
11362         the if and else if and reverting back to the original == check on the
11363         None conditional.
11364
11365 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
11366
11367         * FontDialog.cs: Update the example panel if the selected index of
11368           the fontListBox changes.
11369
11370 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
11371
11372         * FileDialog.cs: Make FileDialog remember which directory it was in
11373           last in the same execution.
11374
11375 2006-03-22  Mike Kestner  <mkestner@novell.com>
11376
11377         * FileDialog.cs: make the DropDownMenu on the toolbar display
11378         RadioChecks since they are mutually exclusive and that's what MS does.
11379
11380 2006-03-22  Mike Kestner  <mkestner@novell.com>
11381
11382         * Theme.cs: add Color param to CPDrawMenuGlyph.
11383         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
11384         checks and radio marks and arrows are visible on highlighted items.
11385         * ControlPaint.cs: update to use new Theme signature.
11386
11387 2006-03-22  Mike Kestner  <mkestner@novell.com>
11388
11389         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
11390         is active. Fixes #77870.
11391
11392 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
11393
11394         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
11395           to be focused/selected after startup
11396
11397 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
11398
11399         * ColorDialog.cs: 
11400           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
11401             CustomColors and ShowHelp properties
11402           - Some internal rewrites to get better results when using the
11403             ColorMatrix
11404
11405 2006-03-22  Mike Kestner  <mkestner@novell.com>
11406
11407         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
11408         HoverSelection.  Fixes #77836.
11409
11410 2006-03-22  Mike Kestner  <mkestner@novell.com>
11411
11412         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
11413         ToggleButtons.  (De)Sensitize the Back button around a stack count of
11414         1, not 0.  Update ButtonSize based on a pixel count of the win32
11415         control.  Adjust the toolbar size/location for new button size.
11416
11417 2006-03-22  Jackson Harper  <jackson@ximian.com>
11418
11419         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
11420         true.
11421         * ScrollBar.cs: When doing increments and decrements we need to
11422         set the Value property so that ValueChanged gets raised. A
11423         possible optimization here would be to make an internal SetValue
11424         that doesn't invalidate immediately.
11425         * ToolTip.cs: Tooltips get added to their container (when
11426         supplied) so they get disposed when the container is disposed.
11427         - Don't create tooltips for String.Empty. This prevents all these
11428         little 2-3 pixel windows from showing up when running nunit-gui
11429         and driving me mad.
11430         * Form.cs: Don't set topmost when setting the owner if the handles
11431         haven't been created yet.  The topmost set will happen when the
11432         handles are created.
11433
11434 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
11435
11436         * XplatUIX11.cs:
11437           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
11438           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
11439             visible (to allow them to recalculate their sizes)
11440
11441 2006-03-21  Mike Kestner  <mkestner@novell.com>
11442
11443         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
11444         methods. Removed a ton of redundant code.  Still not really happy with
11445         the border rendering, but I think that's mainly because of the
11446         ControlDarkDark being black instead of a dark grey. Depending on how 
11447         close we want to be, we might want to revisit those color choices.
11448         Among the new features added during the refactor were DropDownArrow
11449         pressed rendering, Disabled image rendering.  Proper flat appearance
11450         boundary rendering.  Removed the Divider and Wrapping dividers since I
11451         can't figure out any combination of themes and conditions to make the
11452         MS control draw a horizontal line on a toolbar despite what the
11453         Divider property docs indicate.
11454         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
11455         conditions and incorrect layout.  Updated to coding standard.
11456         * ToolBarButton.cs: refactored layout and positioning code from
11457         ToolBar to here.  Invalidate wherever possible instead of forcing
11458         redraws of the whole toolbar. 
11459         (Known remaining issues: explicit ButtonSize smaller than provided
11460         images.)
11461
11462 2006-03-21  Mike Kestner  <mkestner@novell.com>
11463
11464         * ContextMenu.cs (Show): use the position parameter instead of just
11465         showing at the MousePosition.
11466
11467 2006-03-21  Jackson Harper  <jackson@ximian.com>
11468
11469         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
11470         control handle this.
11471         * TreeNodeCollection.cs: If we are clearing the root node we need
11472         to reset top_node so calcs can still happen.
11473         * ThemeWin32Classic.cs: This is a Flags so we need to check
11474         properly.
11475         
11476 2006-03-21  Jackson Harper  <jackson@ximian.com>
11477
11478         * DataGrid.cs: Create columns when the binding context has been
11479         changed.
11480         * X11Structs.cs: Keysyms are uints.
11481         - Add size to fix build.
11482
11483 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
11484
11485         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
11486           XplatUIOSX.cs: 
11487           - Added ResetMouseHover method to allow controls to retrigger
11488             hovering if they need it more than once
11489           - Implemented MouseHoverTime and MouseHoverSize properties
11490         * Timer.cs: Start() must reset the interval
11491         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
11492           properties
11493
11494 2006-03-21  Jackson Harper  <jackson@ximian.com>
11495
11496         * X11Keyboard.cs: improved layout detection. Move the nonchar
11497         tables into this file.
11498         * KeyboardLayouts.cs: Move the tables into resource files.
11499
11500 2006-03-21  Mike Kestner  <mkestner@novell.com>
11501
11502         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
11503
11504 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
11505
11506         * Mime.cs: Various speed optimizations. Looking up mime types
11507           is now 2 times faster than before
11508
11509 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
11510
11511         * CreateParams.cs: Added internal menu field
11512         * Control.cs: 
11513           - Switched call order for UpdateBounds; now we always call
11514             the one that also takes ClientSize, and we're calculating the 
11515             client size via driver method in the others. The previous
11516             method of tracking client size by difference wasn't working
11517             for forms where even the starting client size wouldn't match
11518             the overall form size (due to borders) (Part of fix for #77729)
11519           - CreateParams(): Do not use parent.Handle unless the handle is
11520             already created. Causes havoc with Nexxia and throws off our
11521             creation of controls
11522         * XplatUIX11.cs:
11523           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
11524           - Switched handling of ConfigureNotify over to new PerformNCCalc 
11525             method (consolidates code)
11526           - Changed RequestNCRecalc to use new PerformNCCalc method
11527           - Added calls to RequestNCRecalc when menus and borders are changed
11528             to allow app to set NC size. (Part of fix for #77729) This matches
11529             when MS send a WM_NCRECALC on Win32 windows.
11530           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
11531             (Part of fix for #77729). This matches what MS does, they also
11532             send that message when the form is made visible.
11533           - XException.GetMessage: Improved usability of X errors by including
11534             a translation of the window into Hwnd and Control class
11535           - Improved debug info for window creation, reparenting and destruction
11536           - Created helper method WindowIsMapped() [Currently not used]
11537         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
11538         * Form.cs:
11539           - CreateParams: Now setting our menu on the new internal menu field
11540           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
11541             avoid calculating the same property twice
11542         * Hwnd.cs:
11543           - Improved usability of ToString() for debugging purposes
11544           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
11545             determine the height of the menu, instead of just the font. This
11546             required to also create a graphics context and to keep a bmp 
11547             around (for performance reasons)
11548
11549 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
11550
11551         * MenuAPI.cs: Added OnMouseUp method
11552         * Form.cs:
11553           - Now remembering the requested client size, avoids size errors
11554           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
11555             instead of base if the menu is active. This is required due to
11556             control now capturing and releasing on down/up and it would
11557             prematurely release our menu capture
11558
11559 2006-03-17  Jackson Harper  <jackson@ximian.com>
11560
11561         * KeyboardLayouts.cs: Add the czech layouts.
11562
11563 2006-03-16  Jackson Harper  <jackson@ximian.com>
11564
11565         * Control.cs: Use the viewport space when sizing not the controls
11566         client size, so things like ScrollableControl that effect the
11567         viewport size (when scrollbars are added) are computed correctly.
11568         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
11569         of ManagerEntrys.
11570         - Handle creating BindingManagers for null data sources.
11571         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
11572         source, otherwise when rows are added they are added to the 'fake'
11573         datasource and we will crash when trying to set the position in
11574         those rows.
11575         - Use Implicit scrollbars on the datagrid so they arent
11576         selectable.
11577         
11578 2006-03-16  Jackson Harper  <jackson@ximian.com>
11579
11580         * Binding.cs:
11581         * InternalWindowManager.cs:
11582         * MdiWindowManager.cs:
11583         * X11Keyboard.cs: I really want Mike to love me again (fix
11584         compiler warnings).
11585
11586 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
11587
11588         * DataGrid.cs:
11589           - OnMouseDown: Switch to editing mode when clicking on the cell
11590                          even if we're clicking on the cell that's currently 
11591                          selected
11592           - ProcessGridKey: Left/Right now wrap like MS.Net does
11593           - ProcessGridKey: Tab now knows to add a new row when tab is
11594                             pressed in the cell of the last column of the 
11595                             last row
11596           - ProcessGridKey: Enter now adds another row  if pressed in the last
11597                             row and selectes the new row, same column cell
11598           - ProcessGridKey: Home/End navigate columns, not rows, like 
11599                             originally implemented
11600           - Broke ProcessKeyPreview code out into an extra Internal method
11601             so it can be called from the edit code
11602         * DataGridTextBox.cs (ProcessKeyMessage):
11603           - Switched to accept Tab keypresses
11604           - Added F2 handling to allow jumping to the end of the edited cell
11605           - Added logic to allow moving caret left/right inside edited cell
11606             and making the edited cell jump when the caret hits cell borders
11607           - Tab and Enter are now passed to the datagrid after being handled
11608         * TextBoxBase.cs:
11609           - Removed capture code now that Control handles it
11610           - set_SelectionStart now ensures caret is visible
11611
11612 2006-03-16  Jackson Harper  <jackson@ximian.com>
11613
11614         * TrackBar.cs: Debackwards the increment/decrement for handling
11615         mouse clicks on the bar with vertical trackbars.
11616         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
11617         bottom to match MS.
11618
11619 2006-03-16  Mike Kestner  <mkestner@novell.com>
11620
11621         * ListView.cs: make shift/ctrl keyboard and mouse selection 
11622         consistent with the MS control. Fix a bug in
11623         SelectedListViewItemCollection.Clear that was pissing me off for the
11624         better part of a day because the collection was being altered
11625         underneath us as we walked the list.
11626
11627 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
11628
11629         * Control.cs: Not sure how we could miss this so long, but it seems
11630           that MS.Net has Capture set all the way from before calling 
11631           OnMouseDown through sending the mouse events until after
11632           OnMouseUp. This will fix DataGrid's selection being set to end
11633           at the location of the MouseUp.
11634
11635 2006-03-15  Jackson Harper  <jackson@ximian.com>
11636
11637         * BindingContext.cs: Check the binding after its added so that it
11638           can initialize the binding managers and hookup to events.
11639         * Binding.cs: Data members seem to sometimes include rows/cols in
11640           the format Row.Column we now take this into account.
11641           - Hookup to the position changed event so we can update the
11642           control when the position has changed in the data set.
11643         * CurrencyManager.cs: Take into account the row/col naming
11644           convention when creating dataset tables.
11645         * BindingContext.cs: Using a newer better way of storing
11646           datasource/datamember pairs.  Hopefully this better matches MS for
11647           looking up binding managers.
11648
11649
11650 2006-03-15  Jackson Harper  <jackson@ximian.com>
11651
11652         * BindingContext.cs: The currency manager needs the data member
11653         name, if the member is a data set we use the name to find the
11654         correct table.
11655         * CurrencyManager.cs: When creating the list prefer an IList over
11656         an IListSource.
11657         - Attempt to create a DataTable from a DataSet (TODO: might need
11658         some better error checking here, although MS doesn't seem to have much)
11659         - If we have a DataTable create a view and use it as our list.
11660
11661 2006-03-15  Mike Kestner  <mkestner@novell.com>
11662
11663         * ListView.cs: keep a matrix of the icon mode layout to facilitate
11664         keyboard navigation. Support Up/Down/Left/Right selection correctly
11665         for all 4 View modes.
11666         * ListViewItem.cs: add internal row/col fields for icon layouts.
11667
11668 2006-03-15  Jackson Harper  <jackson@ximian.com>
11669
11670         * TabControl.cs: Redraw the tabs when we resize so their newly
11671         calculated sizes are drawn on screen.
11672         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
11673         composite characters.
11674         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
11675         - filter events so that composite characters can be created
11676         patches by peter
11677         * X11Structs.cs: Add XIMProperties enum.
11678
11679 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
11680
11681         * Control.cs (BringToFront, SendToBack): Don't use window or handle
11682           unless it's created
11683
11684 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
11685
11686         * Control.cs (PerformLayout): We don't need to consider visiblity
11687           for anchoring, only for docking. This fixes 'whacky' alignment
11688           in listbox and other controls that use implicit scrollbars after
11689           the previous PerformLayout patch
11690         * ListBox.cs: Switched to use implicit scrollbars
11691           
11692 2006-03-14  Mike Kestner  <mkestner@novell.com>
11693
11694         * ToolBar.cs: 
11695         * VScrollBar.cs:
11696         - chain up the "new event" overrides to base and use
11697         OnEvent to raise them.  Part of fix for bug #76509.
11698
11699 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
11700
11701         * FileDialog.cs: Do not select an item in the parent directory
11702           on backspace
11703
11704 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
11705
11706         * Control.cs (PerformLayout): It would seem that we considered
11707           invisible windows for our layout. Not quite the right thing
11708           to do. Now we don't any longer, thereby fixing bug #76889.
11709
11710 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
11711
11712         * Control.cs (CanFocus): I goofed. A control can have focus 
11713           even though it's not selectable. Made it match MS docs.
11714
11715 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11716
11717         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
11718           center by default (fixes #76895)
11719         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
11720           all uses of Border3DSides.All with the explicit ORd together
11721           Left|Right|Top|Bottom because I assume that nobody was aware 
11722           that All also implies a center fill. Most places I checked had
11723           a fill right above.
11724         * ProgressBarStyle.cs: Added
11725
11726 2006-03-13  Mike Kestner  <mkestner@novell.com>
11727
11728         * ListView.cs: fix breakage in drag shadow header positioning 
11729         from Peter's csc compilation fix.
11730
11731 2006-03-13  Mike Kestner  <mkestner@novell.com>
11732
11733         * ListView.cs: fix NRE produced by backspacing twice in a focused
11734         FileDialog.
11735
11736 2006-03-13  Mike Kestner  <mkestner@novell.com>
11737
11738         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
11739
11740 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11741
11742         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
11743           be changed
11744         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
11745           the allowed size before making programmatic size changes
11746
11747 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
11748
11749         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
11750           set, metacity is broken and will still use the emty sizes in 
11751           the struct. (Fix for #77089)
11752
11753 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11754
11755         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
11756           WindowExStyles and marked both enums as Flags
11757         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
11758           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
11759           to match WindowStyles split
11760         * XplatUIX11.cs:
11761           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
11762           - Updated to match WindowStyles split
11763         * XplatUIWin32.cs:
11764           - Fixed FosterParent creation, was using ExStyle on the Style field
11765             (This should help with Popup focus issues)
11766           - Updated to match WindowStyles split
11767
11768 2006-03-13  Jackson Harper  <jackson@ximian.com>
11769
11770         * MdiWindowManager.cs: Use the system menu height. Fixes some
11771         strange sizing issues.
11772
11773 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
11774
11775         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
11776         * TextBoxBase.cs:
11777           - Scroll to caret after inserting text (#77672)
11778           - Make scroll range one pixel higher, fixes off-by-one error (and
11779             makes underlines visible on the last line)
11780
11781 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
11782
11783         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
11784           the keyboard state from being stuck with keys in 'pressed' state when
11785           focus is switched away via keyboard
11786         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
11787           reset the keyboard if no X11 KeyUp events are expected to come
11788         * X11Structs.cs: Switched type of Visible to bool to match driver
11789
11790 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
11791
11792         * TextControl.cs:
11793           - Switched caret to be just 1 pixel wide, matches MS and looks less
11794             clunky
11795           - Moved caret display 1 pixel down from the top of the control
11796             to improve view
11797           - InsertCharAtCharet: Update the selection start if moving the caret
11798             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
11799           - No longer always creating the caret when the caret methods are
11800             called. Only the actual ShowCaret/HideCaret will do that now
11801           - Only setting caret visible if the owner control has focus
11802           - UpdateView: Added invalidation-shortcut logic for center and right 
11803             aligned text. Previously we'd update all according to the left
11804             logic which caused drawing errors. Also fixed height of invalidated
11805             areas, now properly invalidating the whole area (was off-by-one)
11806           - owner_HandleCreated: Always generate the document when the
11807             handle is created; this ensures that 
11808         * TextBoxBase.cs:
11809           - Fixed situation where caret would disappear under the right
11810             window border, also improved scrolling behaviour on left-
11811             aligned textboxes
11812           - Fixed right-aligned textboxes to have a border to the
11813             right instead of the caret being under the right border
11814         * XplatUIX11.cs:
11815           - Switched from 'nested' to simple visible/not visible tracking 
11816             for caret (part of fix for #77671)
11817           - No longer passing through translated FocusIn/FocusOut messages
11818             since we were notifying too often and the wrong windows. Instead
11819             we just notify our focussed window of receiving or loosing focus
11820         * XplatUIWin32.cs: Switched from 'nested' show/hide 
11821           counting for caret to simple visible yes/no behaviour (part of 
11822           fix for #77671)
11823
11824 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
11825
11826         * Mime.cs: Remove debug code...
11827
11828 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
11829
11830         * MimeGenerated.cs: Removed
11831         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
11832           and subclasses) from /usr/(local/)share/mime and
11833           $HOME/.local/share/mime.
11834
11835 2006-03-10  Jackson Harper  <jackson@ximian.com>
11836
11837         * MdiWindowManager.cs: Recalc the NC area when a window is
11838         maximized/restored so that the menu area is drawn on forms that
11839         don't have a menu.
11840
11841 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11842
11843         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
11844           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
11845           us to force a WM_NCCALCRESIZE message being sent. This is needed
11846           for MDI maximizing.
11847
11848 2006-03-10  Jackson Harper  <jackson@ximian.com>
11849
11850         * Form.cs: We need to use the ActiveMenu when calculating menu
11851         height.
11852         - Fix nullref when the window manager hasn't been created yet.
11853         * Control.cs: Fix nullref when we try to bring a control to the
11854         front that has no parent.
11855         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
11856         height.
11857         - Add a dummy item to the maximized menu so it always has the
11858         correct height. Otherwise when there are no menus we don't get our
11859         icon and buttons.
11860         
11861
11862 2006-03-10  Jackson Harper  <jackson@ximian.com>
11863
11864         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
11865         stuff.
11866         * Form.cs: Make the window_state internal so the window managers
11867         can track it.
11868         - When an MDI child is maximized let its window manager create the
11869         main menu (so it can add its icon).
11870         - Notify the window managers of state changes
11871         - Let the window manager paint its buttons and handle button
11872         clicks on the menu when it is maximized.
11873         * InternalWindowManager.cs: Move the prev_bounds into the mdi
11874         window manager, since tool windows don't use it, only mdi windows.
11875         - Tell the main form that we don't want it to handle NCPAINT
11876         itself to avoid extra painting.
11877         - Handle clicks on a maximized windows menu.
11878         - Handle window state changes
11879         - Handle minimize/maximize clicks correctly by setting the window state.
11880         * MdiWindowManager.cs: Add an icon menu that (the menu you get
11881         when clicking on the forms icon).
11882         - New method to create a forms maximized menu. This is its normal
11883         menu + an icon.
11884         - Handle window state changes.
11885         - Handle sizing of maximized windows.  Maximized windows are just
11886         drawn bigger then the parent visible area. All controls are still
11887         there, they are just outside the visible area (this matches windows).
11888         * MdiClient.cs: No scrollbars when a child window is maximized.
11889         - Let the children windows figure out how big they should be when
11890         sizing maximized windows.
11891         - Implement a version of ArrangeIconicWindows somewhat similar to
11892         Windows version.  There are some little differences, but I don't
11893         think any app will rely on the layout of minimized mdi windows.
11894
11895 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11896
11897         * Padding.cs: Several fixes to allow compiling with csc 2.0
11898
11899 2006-03-09  Jackson Harper  <jackson@ximian.com>
11900
11901         * Menu.cs:
11902         * MenuItem.cs: Cheap hack so we can add items to the list without
11903         the events being raised.  This allows adding mdi items during
11904         drawing. TODO: Should probably find a better time to add the items.
11905
11906 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11907
11908         * ThemeWin32Classic.cs:
11909           - CheckBox_DrawText: Added logic to not wrap if not enough space
11910             is available (Fix for bug #77727)
11911           - RadioButton_DrawText: Added logic not to wrap if not enough
11912             space is available (Fix for bug #77727). Also removed some
11913             duplicate code, DrawString always drawing the regular text
11914             before hitting the if statement.
11915
11916 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
11917
11918         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
11919
11920 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11921
11922         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
11923         * ContainerControl.cs: Partial implementation of some 2.0 scaling
11924           methods. Moved the new 2.0 properties into alphabetical order with
11925           other properties and added MonoTODO tags
11926
11927 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11928
11929         * AutoScaleMode.cs: Added. Fix build.
11930
11931 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11932
11933         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
11934           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
11935           and was requiring premature handle creation for calls from above
11936         * Form.cs, Control.cs: Removed handle arguments from calls to
11937           CalculateClientRect()
11938
11939 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11940
11941         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
11942           drag_column.column_rect is MarshalByRef and can't be used that way
11943
11944 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11945
11946         * AxHost.cs: Added deserialization constructor for 
11947           AxHost+State (fixes 77743)
11948
11949 2006-03-09  Mike Kestner  <mkestner@novell.com>
11950
11951         * ListView.cs: 
11952         - Added column drag reordering for details view.
11953         - fixed behavior when mouse is dragged off column and
11954         AllowColumnReorder is false.
11955         * ColumnHeader.cs: clone the format too in Clone.
11956         * Theme.cs: add DrawListViewHeaderDragDetails method.
11957         * ThemeWin32Classic.cs:
11958         - impl new method for drawing drag column shadows and targets.
11959         - support column offset for details mode in DrawListViewItem.
11960
11961 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11962
11963         * TextControl.cs: Reset the char_count when the document is cleared
11964           (Fixes bug reported on mono-winforms mailing list)
11965
11966 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11967
11968         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
11969           of calling base we simply process the key ourselves, since both
11970           DefWindowProc and the handled method would set m.Result. 
11971           (Fixes #77732)
11972
11973 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11974
11975         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
11976           method also moves the window; instead implemented a copy of
11977           Control.ScaleCore (Part of fix for #77456)
11978         * TextBoxBase.cs: 
11979           - Created new CreateGraphicsInternal method to allow providing
11980             a graphics context when no handle is created without triggering
11981             handle creation. (Part of fix for #77456)
11982           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
11983         * TextControl.cs: 
11984           - Switched Constructor to require TextBoxBase instead of Control (to
11985             allow uncast access to CreateGraphicsInternal)
11986           - Safeguarded use of owner.Handle property. No longer accessing it
11987             unless the handle is already created.
11988           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
11989           - Now triggering a recalc when owning control becomes visible
11990         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
11991           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
11992           premature handle creation (Part of fix for #77456)
11993         * Control.cs:
11994           - We now only destroy our double-buffering buffers when the
11995             control is resized or disposed, but not when visibility
11996             changes. (The code even re-created them twice every time)
11997           - Now requiring a redraw of the buffer on visibility changes
11998             (fixes bug 77654 part 2)
11999           - Not passing OnParentVisibleChanged up unless the control
12000             is visible
12001           - CanFocus: Fixed to match MS documentation
12002           - Focus: Fixed to return actual focus state and to check if
12003             setting focus is legal before setting it
12004
12005 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
12006
12007         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
12008           when to draw focus rectangle by looking at parent focus and
12009           selected state instead. This fixes TabPages on Linux sometimes
12010           having none or multiple focus rectangles.
12011         * XplatUIX11.cs (SetFocus): 
12012           - Don't set the focus if the same window already has focus
12013           - Use SendMessage instead of PostMessage (like it's Win32
12014             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
12015             to match MS behaviour
12016         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
12017           are not selectable.
12018
12019 2006-03-07  Jackson Harper  <jackson@ximian.com>
12020
12021         * PictureBox.cs: Revert line I accidently committed last week.
12022
12023 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
12024
12025         * Control.cs: 
12026           - Added new IsRecreating and ParentIsRecreating properties to
12027             allow testing if RecreateHandle has been called on ourselves
12028             or one of our parents
12029           - WndProc(WM_DESTROY): If our control handle is being recreated
12030             we immediately need to create the handle when receiving the
12031             destroy, that way our child windows find a valid parent handle
12032             when they themselves are being recreated upon WM_DESTROY receipt
12033             (fix for bug #77654 part 1)
12034         * XplatUIX11.cs:
12035           - DestroyWindow: WM_DESTROY must be sent to our own window before
12036             notifying any child windows. MS documents that child windows
12037             are still valid when WM_DESTROY is received. (Control now relies on
12038             this behaviour)
12039           - Added some fine-grain debug options
12040
12041 2006-03-06  Jackson Harper  <jackson@ximian.com>
12042
12043         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
12044         box and base calculations off this.
12045         * MdiChildContext.cs:
12046         * MdiWindowManager.cs: Don't need to ensure scrollbars here
12047         anymore.
12048         
12049 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
12050
12051         * Splitter.cs: In situations where the affected control is added
12052           to the parent's control list after the splitter, we would not
12053           populate affected. Now we try populating it on mousedown, if
12054           it's not already set, and force it to be re-set whenever our
12055           parent changes.
12056
12057 2006-03-03  Matt Hargett  <matt@use.net>
12058
12059         * Control.cs: implement Control.Padding
12060         * Padding.cs: -Padding.All returns -1 when constructing with the
12061         implicit default ctor
12062         -Padding.ToString() matches MS.NET
12063         * ContainerControl.cs: implement
12064         ContainerControl.AutoScaleDimensions
12065         * ListControl.cs: implement ListControl.FormattingEnabled
12066         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
12067         * ButtonBase.cs:
12068         * TabPage.cs: Implement UseVisualStyleBackColor.
12069         * PictureBox.cs: Implement PictureBox.InitialImage.
12070
12071 2006-03-03  Mike Kestner  <mkestner@novell.com>
12072
12073         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
12074         event declarations to proxy to base event.
12075         * ListViewItem.cs: update to use ItemControl.
12076         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
12077         * ThemeWin32Classic.cs: update to new ListView theme API and fix
12078         column header label rendering for 0 width columns.
12079
12080 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
12081
12082         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
12083           that causes the control to be created. Fixes #77476.
12084
12085 2006-03-02  Jackson Harper  <jackson@ximian.com>
12086
12087         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
12088         expose_pending.
12089
12090 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
12091
12092         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
12093           passed in for the EventArgs (fixes #77690)
12094
12095 2006-03-01  Jackson Harper  <jackson@ximian.com>
12096
12097         * ScrollBar.cs: Refresh afterbeing resized.
12098
12099 2006-02-28  Mike Kestner  <mkestner@novell.com>
12100
12101         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
12102         Clean up a tracker compile warning.
12103         * MenuItem.cs: add internal PerformPopup method.
12104         [Fixes #77457]
12105
12106 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
12107
12108         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
12109           implicit expose) when the text is set to null
12110
12111 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
12112
12113         * RichTextBox.cs (FlushText): When newline is true, we always
12114           need to split the line, even if no text is on it and we may
12115           never eat newlines. (Fixes #77669)
12116
12117 2006-02-28  Mike Kestner  <mkestner@novell.com>
12118
12119         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
12120         and set Selected instead.
12121         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
12122         collections.
12123
12124 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
12125
12126         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
12127
12128 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
12129
12130         * FontDialog.cs:
12131           - Got rid of the panel. All controls are now directly added to
12132             the dialog form
12133           - It is now possible to set a font with the Font property
12134           - MinSize and MaxSize property do now what they should
12135           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
12136           - Searching and selecting a font with the font textbox works now,
12137             the same applies to the style and size textbox
12138           - Draw the correct 3D border in the example panel
12139           - Fixed a little mem leak (unused fonts didn't get disposed)
12140           - Many other internal updates/rewrites...
12141           - Fix typo
12142
12143 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
12144
12145         * TextControl.cs: 
12146           - InsertRTFFromStream: Added 'number of characters inserted' argument
12147           - set_SelectedRTF: Now using the number of characters to calculate
12148             the new location for the selection and cursor (x/y cannot be used
12149             due to potentially already wrapped text)
12150
12151 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
12152
12153         * TextControl.cs: Added property and implemented means to allow 
12154           disabling recalculation of a document (can be used to speed up
12155           multiple inserts and is needed to make RTF inserts predictable, see
12156           bug #77659)
12157         * RichTextBox.cs: Using the new NoRecalc property of Document to
12158           keep x/y insert locations predictable. Also makes it faster inserting
12159           large chunks of RTF
12160
12161 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
12162
12163         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
12164           it's easier for a child control to handle the other messages without
12165           having to duplicate the special functionality
12166         * TextBoxBase.cs
12167           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
12168             code to handle processing the key ourselves, in order to get 
12169             access to the result of KeyEventArgs.Handled. We now only call 
12170             ProcessKey if they key hasn't been handled already. Fixes #77526.
12171           - set_Text: If null or empty string is given, just clear the 
12172             document. Fixes part of #77526
12173
12174 2006-02-27  Jackson Harper  <jackson@ximian.com>
12175
12176         * SizeGrip.cs: Paint the background color before painting the grip
12177         so things look right.
12178         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
12179
12180 2006-02-27  Mike Kestner  <mkestner@novell.com>
12181
12182         * ListView.cs:
12183           - Restructure layout and invalidation model to remove a ton of
12184           flicker from the control and speed up performance in general.
12185           - Add manual column resize, flickers like crazy, but I already have
12186           some ideas on how I'll fix that. (#76822)
12187           - Merge the three Icon-based views into a single layout method.
12188           - Move item selection interaction logic from the item since 
12189           interaction with the collections is more appropriate to the view.
12190           - Deselection on non-item clicks.
12191         * ListViewItem.cs:
12192           - Encapsulate most of the layout. Add some internal props to trigger
12193           layout.  Move to a model where Items invalidate themselves instead
12194           of just invalidating the whole control every time something changes.
12195           - Invalidate on Text/Caption changes.
12196           - switch to an offset based layout model to avoid having to absolute
12197           position every element on item moves.
12198           - correct checkbox layout to conform to MS layout.
12199         * ThemeWin32Classic.cs:
12200           - refactor some column header drawing code.
12201           - fix string justification for column headers (#76821)
12202           - make SmallIcon labels top justified for compat with MS impl.
12203         * ThemeClearlooks.cs:
12204           - adjust to new ListViewItem internal checkbox bounds api.
12205
12206 2006-02-27  Jackson Harper  <jackson@ximian.com>
12207
12208         * Control.cs:  Change where implicit controls fall in the zorder.
12209         They are now on top of all children.
12210         - Synced AddImplicit code with Add
12211         - Removed unused enumerator.
12212         * SizeGrip.cs: Remove the TODO as its been TODONE.
12213
12214 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
12215
12216         * TextControl.cs(Insert): Combine the last lines unless the insertion
12217           string ends with \n\n, otherwise we leave one line too many (Fixes
12218           something I noticed with the testapp for #77526; the bug itself was
12219           already fixed in the previous checkin)
12220
12221 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
12222
12223         * RichTextBox.cs:
12224           - SelectionColor and SelectionFont methods no longer set absolute
12225             styles. Instead, the keep font or color respectively (This 
12226             resolves a long-standing FIXME in the code)
12227           - When flushing RTF text, the insert code now considers text trailing
12228             behind the insertion point (Fixes the bug where when replacing
12229             the selected text via SelectedRTF the remainder of the line behind 
12230             the selection would stay on the first insertion line)
12231         * TextBoxBase.cs:
12232           - AppendText now updates the selection points after inserting text
12233           - AppendText now ensures that the last tag (sometimes 0-length) of
12234             the document is used for the style information (Fixes part of 
12235             bug #77220)
12236         * TextControl.cs:
12237           - Created new FontDefiniton class to allow describing partial style
12238             changes
12239           - StreamLine() now takes a lines argument, to allow it to decide
12240             whether an encountered zero-length tag is the last in the document
12241             (which must be kept to not loose the font/color contained in it,
12242             for later appends)
12243           - Created Combine() and Split() methods for Marker structs, to 
12244             support marker updates due to reformatted documents (soft line
12245             wraps)
12246           - Implemented Document.CaretTag setter
12247           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
12248             of the last line (Not the cause, but also exposed by bug #77220)
12249           - Added LineTag argument to InsertString method, to allow callers
12250             to force a certain tag to be used (required to force use of the
12251             trailing zero-length tag of a document)
12252           - Now updating markers in Combine(), to avoid stale tag markers
12253           - Added some method descriptions to aid maintenance
12254           - Implemented new FormatText concept, allowing additive/subtractive
12255             formatting by only specifying the components that are to be 
12256             changed. This was needed for resolving the RTB.SelectedColor/
12257             RTB.SelectedFont fixmes
12258           - Added Break() support method to allow breaking up linetags (used
12259             for partial formatting)
12260           - Added GenerateTextFormat() method. It is used for partial 
12261             formatting and allows to generate a full font/color from given
12262             attributes and an existing tag.
12263
12264 2006-02-26  Jackson Harper  <jackson@ximian.com>
12265
12266         * XplatUIX11.cs:  Use the correct caption height.
12267         - Translate hittest coordinates to screen coords to match MS.
12268         * XplatUIWin32.cs: When we create MDI windows we need to reset
12269         some of the style flags, so we get a nice blank window, and can
12270         draw all the decorations ourselves.
12271         - Set a clipping rectangle on the non client paint event, the
12272         window manager drawing code needs one.
12273         * Form.cs: The window manager needs to know when the window state
12274         has been updated.
12275         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
12276         don't need to factor in border and title sizes in these
12277         methods. TODO: Remove the args and fix the call points.
12278         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
12279         properly.
12280         - Let the driver set the cursors.
12281         - Improve active window handling
12282         - Correct sizes for title bars and buttons.
12283         - Match MS drawing better
12284         * MdiWindowManager.cs: We don't need to handle border style
12285         updates specially anymore.
12286         - Check for scrollbars when windows are done moving
12287         - Handle Active properly.
12288         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
12289         correctly. I am spewing the exception though, so we don't hide the
12290         bugs.
12291         
12292 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
12293
12294         * DataGridViewRowPostPaintEventArgs.cs,
12295           DataGridViewCellPaintingEventArgs.cs,
12296           DataGridViewRowCollection.cs,
12297           DataGridViewRowPrePaintEventArgs.cs,
12298           DataGridViewCell.cs: Clear a few warnings and implement a few
12299           exceptions that should be thrown.
12300
12301 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
12302
12303         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
12304           'inheriting' our parent's (non-default) cursor. (Part of
12305            the fix for #77479)
12306
12307 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
12308
12309         * XplatUIX11.cs: Fixed cast to make csc happy
12310
12311 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
12312
12313         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
12314           it's for the client area (part of fix for #77479 and needed
12315           for MDI window cursor handling)
12316         * XplatUIX11.cs
12317           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
12318             the appropriate default cursors and also passing the message
12319             up the parent chain 
12320           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
12321             for non-client areas
12322
12323 2006-02-15  Jackson Harper  <jackson@ximian.com>
12324
12325         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
12326         is a real MDI window
12327
12328 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
12329
12330         * X11DesktopColors.cs: Instead of checking the desktop session
12331           string for "KDE" check if it starts with "KDE"
12332
12333 2006-02-10  Jackson Harper  <jackson@ximian.com>
12334
12335         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
12336         systems).
12337
12338 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
12339
12340         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
12341           errors
12342         * ColorDialog.cs:
12343           - Got rid of the panel. All controls are now directly added to
12344             the dialog form
12345           - Changed to mono coding style
12346
12347 2006-02-10  Jackson Harper  <jackson@ximian.com>
12348
12349         * InternalWindowManager.cs: We don't need the set visibility to
12350         false hack anymore now that peter has written beautiful shutdown
12351         code.
12352
12353 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
12354
12355         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
12356           where already explicitly destroyed
12357
12358 2006-02-10  Jackson Harper  <jackson@ximian.com>
12359
12360         * MdiClient.cs: Handle the case where windows are too high or to
12361         the left and we need scrollbars.
12362
12363 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
12364
12365         * MimeIcon.cs: Added some icons
12366         * FileDialog.cs:
12367           - Fixed bug #77477
12368           - Got rid of the panel. All controls are now directly added to
12369             the dialog form
12370           - Changed to mono coding style
12371           - On Linux "My Computer" and "My Network" will now show some
12372             more usefull information. A new class, MasterMount, gathers
12373             this information from /proc/mount. Updated MWFFileView to make
12374             use of this information
12375           - Fixed a bug that caused FileDialog to crash when
12376             ".recently_used" file had a zero size
12377           - FilterIndex does now what it should
12378           - Some Refactoring
12379         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
12380             FileDialog changes
12381
12382 2006-02-09  Jackson Harper  <jackson@ximian.com>
12383
12384         * ComboBox.cs: Don't touch if null.
12385
12386 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
12387
12388         * Cursor.cs: 64bit safeness fix
12389         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
12390
12391 2006-02-09  Jackson Harper  <jackson@ximian.com>
12392
12393         * Form.cs: If a form is made into an MDI form update the styles so
12394         all the props can get set correctly.
12395         - Kill the mdi_container when we dont need it anymore.
12396         * InternalWindowManager.cs: Add missing NOT
12397
12398 2006-02-08  Jackson Harper  <jackson@ximian.com>
12399
12400         * InternalWindowManager.cs: Respek clipping when drawing MDi
12401         decorations.
12402
12403 2006-02-08  Jackson Harper  <jackson@ximian.com>
12404
12405         * Hwnd.cs: Add bits to track non client expose events.
12406         * XplatUIX11.cs: Track non client expose events on the hwnd. This
12407         gives us a proper invalid rect and will allow for some nice
12408         optimizations with NC client drawing
12409         - MDI windows are children windows, so move their style handling
12410         into the child window block.
12411         * InternalWindowManager.cs: Remove a state reset that was
12412         getting invoked at the wrong time. Fixes managed windows getting
12413         into a 'stuck' captured state.
12414
12415 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
12416
12417         * TextControl.cs (Document.ctor): Now initializing 
12418           selection_anchor. Fixes #77493
12419
12420 2006-02-07  Jackson Harper  <jackson@ximian.com>
12421
12422         * TrackBar.cs: The increment/decrements were backwards.
12423
12424 2006-02-07  Mike Kestner  <mkestner@novell.com>
12425
12426         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
12427         to the instance itself.
12428
12429 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
12430
12431         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
12432           on ulongs and pointers, the size differs between 32bit and 64bit
12433           systems. 
12434
12435 2006-02-07  Mike Kestner  <mkestner@novell.com>
12436
12437         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
12438         for 64 bit platforms to work around a metacity bug. 
12439
12440 2006-02-07  Jackson Harper  <jackson@ximian.com>
12441
12442         * TrackBar.cs: Process the input keys we need, and hookup to
12443         KeyDown instead of using WndProc, so we get key messages.
12444
12445 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
12446
12447         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
12448           machine we're on. 
12449         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
12450           we need to translate the XdndVersion atoms array before sending it
12451
12452 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
12453
12454         * XplatUIX11.cs: 
12455           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
12456             number of bits for the property, not the number of bytes. The
12457             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
12458             but would not crash since it specified 8 bits instead of 4 bits)
12459           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
12460             defined as XID -> long in the C headers)
12461           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
12462             references since those are now IntPtr to begin with
12463           - Switched all Atom.XXX 'int' casts to IntPtr casts
12464           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
12465           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
12466           - Added XChangeActivePointerGrab DllImport (for X11DnD)
12467         * X11Structs.cs:
12468           - Changed 'int' type for Atoms in XEvent structures to IntPtr
12469           - Changed atom in HoverStruct to be IntPtr
12470         * X11DnD.cs:
12471           - Removed local DllImports, switched code to use those from XplatUIX11
12472           - Removed/fixed casts related to the switch of Atom to be a IntPtr
12473
12474 2006-02-06  Mike Kestner  <mkestner@novell.com>
12475
12476         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
12477         method signatures in the import region.  There may still be some
12478         lingering struct marshaling issues, as I didn't drill down into those.
12479         Yet.
12480
12481 2006-02-06  Jackson Harper  <jackson@ximian.com>
12482
12483         * ComboBox.cs: Dont manually set the top_item, this is computed
12484         when the scrollbar position is set.
12485
12486 2006-02-06  Mike Kestner  <mkestner@novell.com>
12487
12488         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
12489         startup crashes on amd64.  There's other fixes needed.  All pinvoke
12490         usage of Atom needs to be mapped to IntPtr for example.  And there are
12491         likely other int/long issues to be addressed.
12492
12493 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
12494
12495         * FileDialog.cs: One more...
12496
12497 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
12498
12499         * FileDialog.cs: Next try
12500
12501 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
12502
12503         * FileDialog.cs: First part of fix for #77464
12504
12505 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
12506
12507         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
12508           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
12509           AcceptButton border drawing.
12510
12511 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
12512
12513         * Form.cs: Moved positioning of form after auto scaling is applied,
12514           otherwise it would possibly use wrong form size.
12515
12516 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
12517
12518         * Control.cs (RecreateHandle): No need to re-create any child
12519           controls, the child windows will get destroyed automatically by
12520           the windowing system or driver, and re-created when the handle
12521           is being accessed the first time. Fixes #77456
12522         * Form.cs: No longer setting the form to closing if the handle is 
12523           being recreated. This seems like the right thing to do, don't
12524           have a bug or testcase for this, though.
12525
12526 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
12527
12528         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
12529           controls to avoid unwanted side effects
12530
12531 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
12532
12533         * Control.cs: 
12534           - ScaleCore needs to scale the bounds, not the ClientSize of the 
12535             control. Fixes #77416.
12536           - DefaultSize is 0,0 for control
12537         * TextBoxBase.cs: 
12538           - DefaultSize is 100, 20
12539           - SetBoundsCore: Now enforcing the height, no matter if the provided
12540             height is more or less than the preferred one, as long as AutoSize
12541             is on
12542         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
12543
12544 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
12545
12546         * Control.cs:
12547           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
12548             call unless both performLayout is true *and* we have a pending
12549             layout change
12550           - ResumeLayout: MS does not completely nest Suspend and Resume,
12551             they bottom out at 0, fixed our code to match that.
12552           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
12553             SetBoundsCore, we were updating even when we shouldn't. This fixes
12554             swf-anchors mis-anchoring when resizing the app fast and lots.
12555           - UpdateDistances: Now only setting the left and top distance if 
12556             we have a parent and are not suspended, this is based on
12557             a suggestion by Don Edvaldson in bug #77355.
12558           - OnVisibleChanged: Fixed logic when to create the control. We may
12559             not create the control if we have no parent or if it's not visible;
12560             switched to using Visible property instead of is_visible field 
12561             since the property also considers parent states. This fixes a bug
12562             when starting Paint.Net
12563
12564 2006-02-02  Jackson Harper  <jackson@ximian.com>
12565
12566         * Form.cs: If the forms handle hasn't been created yet don't call
12567         into xplatui to make it top most, just set the topmost flag on the
12568         form in CreateParams
12569         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
12570
12571 2006-02-01  Jackson Harper  <jackson@ximian.com>
12572
12573         * ScrollableControl.cs: Refactored the Recalculate method a
12574         little, this wasn't handling all the variants of bottom and right
12575         bars needed to be added and added/removed based on their
12576         counterparts being added/removed (which changes the drawable
12577         size). Also we special case client widths and heights of 0 and
12578         don't add the scrollbar for those.
12579
12580 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
12581
12582         * XplatUIX11.cs: 
12583           - Added method to get AbsoluteGeometry(); currently unused, but might
12584             be used in the future, if we try again to figure out toplevel
12585             coordinates with some more crappy window managers
12586           - Added FrameExtents() method to retrieve the WM set decoration size
12587           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
12588             to deal with at least KDE, FVWM and metacity (Fixes #77092)
12589         * Hwnd.cs: 
12590           - Added whacky_wm tracking var for metacity
12591           - Added logic to have default menu height if the actual menu height
12592             has not yet been calculated (part of fix for #77426)
12593         * Form.cs: Keep track whether client size has been set and re-set 
12594           it if a menu is added/removed afterwards (Fixes #77426)
12595
12596 2006-01-31  Jackson Harper  <jackson@ximian.com>
12597
12598         * Control.cs: When a new Site is set on the component attempt to
12599         pull the AmbientProperties from it.
12600
12601 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
12602
12603         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
12604           in the background of the owning form. Fixes #77332
12605
12606 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
12607
12608         * MimeIcon.cs: Fix for #77409
12609
12610 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
12611
12612         * XplatUIX11GTK.cs: Initial import
12613
12614 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
12615
12616         * FixedSizeTextBox: fixes class signature
12617
12618 2006-01-30  Jackson Harper  <jackson@ximian.com>
12619
12620         * FixedSizeTextBox.cs: New internal class that represents a
12621         textBox that will not be scaled.
12622         * TreeView.cs:
12623         * ComboBox.cs:
12624         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
12625         standard TextBox.
12626                 
12627 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
12628
12629         * XplatUIX11.cs: Retrieve default screen number instead of
12630           assuming 0. Attempted fix for #77318
12631
12632 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
12633
12634         * XplatUIWin32.cs: 
12635           - GetWindowPos: When a window is parented by FosterParent, use 
12636             the desktop instead of FosterParent as the base to get coordinates
12637           - CreateWindow: Don't make FosterParent the parent window for Popups
12638             if we don't want a taskbar entry, Popups automatically don't get one
12639         * Hwnd.cs: Need to call remove to actually remove the key from the
12640           hash table
12641
12642 2006-01-30  Mike Kestner  <mkestner@novell.com>
12643
12644         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
12645
12646 2006-01-30  Jackson Harper  <jackson@ximian.com>
12647
12648         * TreeView.cs:
12649         * TreeNode.cs: Raise events no matter how the treenode is
12650         checked. Patch by Don Edvalson.
12651
12652 2006-01-30  Jackson Harper  <jackson@ximian.com>
12653
12654         * TreeNode.cs: Signature fix.
12655
12656 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
12657
12658         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
12659
12660 2006-01-20  Mike Kestner  <mkestner@novell.com>
12661
12662         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
12663         event forwarding when menus are active.
12664         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
12665         Most of the patch is pdb's with a little rework.
12666
12667 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
12668
12669         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
12670           Removed GetMenuDC and ReleaseMenuDC methods; replaced
12671           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
12672         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
12673         * InternalWindowManager.cs: Added use of PaintEventStart/End to
12674           handling of WM_NCPAINT message, now passing the PaintEventArgs to
12675           the PaintWindowDecorations method
12676         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
12677         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
12678         * MenuAPI.cs: Made tracker window invisible
12679         * XplatUIWin32.cs:
12680           - Removed GetMenuDC and ReleaseMenuDC methods
12681           - Implemented the client=false path for PaintEventStart and
12682             PaintEventEnd
12683
12684 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
12685
12686         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
12687         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
12688           styles
12689         * Form.cs: 
12690           - MaximizeBox, MinimizeBox: Recreate the handle when setting
12691             the style
12692           - CreateParams: Reworked the styles to match MS look'n'feel,
12693             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
12694             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
12695
12696 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
12697
12698         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
12699           window is not mapped, since otherwise every form that's being 
12700           created is considered minimized, which is wrong.
12701         * Form.cs: Catching the exception and returning our internal value
12702           instead
12703
12704 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
12705
12706         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
12707           SetWindowMinMax() to have means to tell the driver about the minimum,
12708           maximum and maximized state window sizes. (Part of the fix for #76485)
12709         * Form.cs:
12710           - Implemented tracking of minimum and maximum window size, now calling
12711             new SetWindowMinMax() driver method to tell the driver (Part of the
12712             fix for #76485)
12713           - Finished handling of WM_GETMINMAXINFO method, now setting all values
12714             (Completes fix for #76485)
12715           - Calling new SetWindowMinMax driver method when the handle for a 
12716             form is created, to make sure the driver knows about it even if
12717             the values have been set before the window was created
12718           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
12719             to avoid messing up our anchoring calculations (partial fix
12720             for #77355)
12721         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
12722         * XplatUIX11.cs:
12723           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
12724           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
12725             (and presumably other freedesktop.org compliant WMs). Left the
12726             assumption unmapped=minimized, needed for SetVisible to work.
12727           - Now setting the window state when creating windows
12728           - Fixed SetVisible to consider/set the window state when mapping
12729             a Form. We cannot set the state before it's mapped, and we cannot
12730             use Form.WindowState once it's mapped (since it would ask the
12731             driver and get 'normal'. Therefore, we grab the state before
12732             mapping, map, and then set state.
12733           - Implmemented SetWindowMinMax method; Metacity does not seem to
12734             honor the ZoomHints, though.
12735         * XplatUIWin32.cs:
12736           - Removed MINMAXINFO (moved to XplatUIStructs)
12737           - Added SetWindowMinMax stub (on Win32 the only way to set that
12738             information is in response to the WM_GETMINMAXINFO message, which
12739             is handled in Form.cs)
12740           - Added logic to SetVisible to set the proper window state when a 
12741             form is made visible (fixes #75720)
12742
12743 2006-01-26  Jackson Harper  <jackson@ximian.com>
12744
12745         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
12746         same way we handle them with Invoke.
12747
12748 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
12749
12750         * Form.cs:
12751           - Added tracking of window state so CreateParams can return
12752             the appropriate style
12753           - Moved setting of WS_CAPTION style in CreateParams to allow
12754             styles without caption
12755         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
12756           control if the TextBox property is accessed. Fixes #77345
12757         * Control.cs:
12758           - get_Created: now uses is_disposed and is_created to determine
12759             return value (suggested by Jackson)
12760           - CreateHandle: No longer exits if the handle is being recreated
12761           - RecreateHandle: If the handle is not yet created call the 
12762             appropriate method to create either control or handle. If the
12763             control is already created CreateHandle will simply exit instead
12764             of just creating the handle
12765         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
12766           now SendMessage WM_DESTROY directly to the control when DestroyWindow
12767           is called.
12768         * XplatUIX11.cs: 
12769           - When DestroyWindow is called, instead of waiting for the 
12770             DestroyNotification from X11, we directly post it to the WndProc
12771             and immediately dispose the hwnd object.
12772             Same applies to DestroyChildWindows, and this obsoletes the
12773             expose_pending tracking. Contrary to Win32 behaviour we destroy our
12774             child windows before our own, to avoid X11 errors.
12775           - Removed the direct sending of WM_PAINT on UpdateWindow
12776         * XplatUIWin32.cs:
12777           - Reworked DoEvents and GetMessage to allow access to internal queue
12778             even when trying non-blocking access to the queue.  Fixes #77335. 
12779             Based on a patch suggestion by Don Edvalson. The new private
12780             GetMessage can now also be used as a backend for a PeekMessage
12781             frontend version.
12782         * XplatUI.cs: Improved debug output for CreateWindow
12783
12784 2006-01-25  Jackson Harper  <jackson@ximian.com>
12785
12786         * Help.cs: Allow param to be null. Patch by Don Edvalson.
12787
12788 2006-01-24  Jackson Harper  <jackson@ximian.com>
12789
12790         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
12791         when we have a MaxDropItems lower then the selected index.
12792
12793 2006-01-24  Jackson Harper  <jackson@ximian.com>
12794
12795         * Control.cs: Don't allow selection of non visible controls, allow
12796         selection of controls without parents.
12797
12798 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
12799
12800         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
12801         * DataGridDrawingLogic.cs: Add editing row only when is necessary
12802
12803 2006-01-23  Jackson Harper  <jackson@ximian.com>
12804
12805         * UpDownBase.cs: Make the textbox handle all the selection and
12806         tabbing. This fixes tabing to updown controls.
12807
12808 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
12809
12810         * TextBoxBase.cs: fixes exception thown the object was null
12811
12812 2006-01-23  Jackson Harper  <jackson@ximian.com>
12813
12814         * ButtonBase.cs: Just use the base CreateParams. They set
12815         visibility and enabled correctly.
12816         * ComboBox.cs:
12817         * TrackBar.cs:
12818         * MonthCalendar.cs: Lets let the base set as much of the
12819         createparams as possible so we don't have duplicate code all over
12820         the place.
12821
12822 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
12823
12824         * ThemeGtk.cs: Added TrackBar and some experimental code to
12825           get double buffering back
12826
12827 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12828
12829         * DataGrid.cs: Allows row number set internally higher than the last
12830         when creating a new row. Restores the editing functionality.
12831
12832 2006-01-20  Mike Kestner  <mkestner@novell.com>
12833
12834         * MimeIcon.cs: delay Image creation until the icons are accessed
12835         instead of creating 190 scaled images on GnomeHandler startup.
12836
12837 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
12838
12839         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
12840           first call base before processing the event. Fixes #77279
12841
12842 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
12843
12844         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
12845           that the stride for the GDI bitmap would match the stride of
12846           a DIB or a Cursor.
12847
12848 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
12849
12850         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
12851
12852 2006-01-19  Jackson Harper  <jackson@ximian.com>
12853
12854         * ComboBox.cs: Hookup the text controls keydown event so we get
12855         those when the text control has the focus.
12856
12857 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
12858
12859         * Label.cs: Now using the base events instead of defining new ones;
12860           this allows us to just call the base properties without having to
12861           duplicate all base property logic 
12862
12863 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
12864
12865         * Label.cs: A label by default is not a tabstop (Fixes one of our
12866           failing nunit tests)
12867
12868 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
12869
12870         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
12871         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
12872
12873 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
12874
12875         * Cursor.cs: Reimplemented creating cursor bitmaps without using
12876           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
12877           This fixes #77218
12878         * XplatUIWin32.cs: 
12879           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
12880             constructor creates images that can't be saved. Part of the fix
12881             for #76103
12882           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
12883           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
12884             bug fix for handling window state in forms properly)
12885
12886 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12887
12888         * ThemeGtk.cs: Simplify ScrollBar drawing
12889
12890 2006-01-18  Jackson Harper  <jackson@ximian.com>
12891
12892         * Splitter.cs: Set the default dock style for the splitter control
12893         in the constructor.
12894
12895 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12896
12897         * ThemeGtk.cs: Corrected StateType and ShadowType for
12898           gtk_paint_box
12899
12900 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12901
12902         * Control.cs: Make use of Theme.DoubleBufferingSupported
12903         * ThemeGtk.cs:
12904           - Added drawing for flat style buttons
12905           - Added ScrollBar drawing
12906
12907 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12908
12909         * ThemeClearlooks.cs: Removed some unneeded code.
12910         * ThemeGtk.cs: First part of ThemeGtk enhancements.
12911
12912 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
12913
12914         * LinkLabel.cs: We need to update the hover drawing when
12915           leaving the control as well.
12916
12917 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
12918
12919         * DataGrid.cs: Clicking on non empty areas in the columns
12920            area was giving an exception
12921
12922 2006-01-17  Jackson Harper  <jackson@ximian.com>
12923
12924         * ThemeWin32Classic.cs:
12925         * ListView.cs: Do not draw/clip the headers when the header style
12926         is None.
12927
12928 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
12929
12930         * DataGrid.cs: Fixes 77260
12931         
12932 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
12933
12934         * DataGrid.cs: Clicking on a column on a empty grid was giving
12935           an exception
12936
12937 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
12938
12939         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
12940           or any keypress will crash the grid.
12941
12942 2006-01-17  Mike Kestner  <mkestner@novell.com>
12943
12944         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
12945         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
12946         invisible/previously-visible items.
12947         [Fixes #76909]
12948
12949 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
12950
12951         * ThemeClearlooks.cs:
12952         - Added CL_Draw_Button method; now other theme controls that are 
12953           not derived from button or do not have a button can draw buttons
12954           too
12955         - Updated ComboBox drawing
12956         - Beautified RadioButton drawing
12957         - Corrected drawing of bottom and left tabs
12958         - Beautified DateTimePicker and MonthCalendar
12959         - Added CPDrawButton and CPDrawRadioButton
12960
12961 2006-01-16  Jackson Harper  <jackson@ximian.com>
12962
12963         * ComboBox.cs: Set the initial value of the scrollbar to the
12964         current index. Reduce the numbers of refreshs and IndexOfs called.
12965
12966 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
12967
12968         * FileDialog.cs: When the file listview is focused hitting the
12969           backspace key moves the fileview to the parent directory
12970
12971 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
12972
12973         * Form.cs: 
12974           - Added RecreateHandle call when changing taskbar visibility to 
12975             trigger reparenting in Win32 driver (Fixes #75719)
12976           - If a window has minimize or maximize buttons, it cannot have
12977             a help button
12978         * XplatUIWin32.cs:
12979           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
12980             the toplevel form with FosterParent (A toolwindow not on the
12981             taskbar) (Fixes #75719)
12982           - Made FosterParent a toolwindow
12983
12984 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12985
12986         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
12987
12988 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12989
12990         * ToolTip.cs: If SetToolTip is called from a control and the mouse
12991           is currently over that control, make sure that tooltip_window.Text
12992           gets updated
12993
12994 2006-01-13  Mike Kestner  <mkestner@novell.com>
12995
12996         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
12997
12998 2006-01-13  Jackson Harper  <jackson@ximian.com>
12999
13000         * TreeView.cs: On MS GetNodeAt never actually factors in the X
13001         value passed.  Also redraw the selected node when we recieve
13002         focus, so tabbing between trees works correctly.
13003
13004 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
13005
13006         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
13007           ~/.gconf/%gconf-tree.xml, so use
13008           .gconf/desktop/gnome/interface/%gconf.xml
13009
13010 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
13011
13012         * TextControl.cs: Draw text in gray if control is disabled
13013
13014 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
13015
13016         * TreeView.cs: Draw the focus rectangle outside the highlight, to
13017           make sure it's always visible. Fixes #76680.
13018
13019 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
13020
13021         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
13022
13023 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
13024
13025         * PageSetupDialog.cs: Added.
13026         * PrintDialog.cs: Attributes.
13027         * PrintPreviewControl.cs: Updates.
13028         * PrintPreviewDialog.cs: Updates.
13029         
13030 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13031
13032         * Control.cs: Undid my selection check fix, since it's not needed
13033         * TextBoxBase.cs:
13034           - Now considering the presence of hscroll/vscroll when sizing
13035             vscroll/hscroll respectively. Fixed bug #77077
13036           - Added Left/Up/Down/Right to IsInputKey list to prevent
13037             ContainerControl from stealing them. This fixes what I broke
13038             with my last checkin.
13039
13040 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
13041
13042         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
13043           I finally understand how the property can be set without a setter :-)
13044
13045 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13046
13047         * Application.cs:
13048           - Switched RunLoop to use static Message.Create to create a 
13049             Message object
13050           - Added PreProcessMessage call in runloop for keyboard events; this
13051             is part of the fix for #77219, I overlooked this originally in the
13052             MSDN doc for PreProcessMessage
13053         * Control.cs:
13054           - Removed call to PreProcessMessage from handling of keyboard 
13055             messages; it's supposed to be done in the message pump
13056           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
13057             per MSDN documentation.
13058           - IsInputChar: All chars are input chars by default; removed the 
13059             parent calling chain, MS does not document that
13060           - PreProcessMessage: If IsInputChar is true, we want to return false
13061             to allow dispatching of the message
13062           - When selecting the next control, now also check that we're not
13063             selecting ourselves again and therefore return a false positive.
13064         * TextBoxBase.cs:
13065           - Tried to match return values for IsInputKey and ProcessDialogKey
13066             to what MS returns; moved processing of our special keys outside
13067             ProcessDialogKey since MS does not seem to return true on those.
13068           - Moved code that previously was in ProcessDialogKey into new private
13069             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
13070           - Reworked handling of WM_CHAR to not have to duplicate code from
13071             Control.cs anymore, instead we simply call down to base.
13072            
13073 2006-01-12  Jackson Harper  <jackson@ximian.com>
13074
13075         * ComboBox.cs: We always need to refresh the text area when
13076         EndUpdate is called. Fixes the combobox in the file dialog.
13077         * Control.cs: Don't create the creator_thread until the controls
13078         handle is created.  Also in InvokeRequired we check if the
13079         creator_thread is null. This gives the effect of InvokeRequired
13080         returning true if the controls handle is not created yet, and
13081         matches MS.
13082
13083 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13084
13085         * XplatUI.cs:
13086           - Added StartLoop() driver method. This is used to allow drivers to
13087             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
13088             loop for a particular thread
13089           - Added EndLoop() driver method. This is called once the message
13090             pump for the thread is shut down
13091           - Added SupportsTransparency method to allow the driver to indicate
13092             opacity support for windows
13093         * Form.cs:
13094           - Removed TODO attribute, completed AllowTransparency property
13095           - Added documented logic to Opacity
13096         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
13097           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
13098           versions of CompatibleTextRendering
13099         * X11Structs.cs: Added opacity atom to our atom enumeration
13100         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
13101           of a form might be set before it's reparented by the WM, and we need
13102           the opacity value without calling up to Form)
13103         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
13104           SupportsTransparency() driver methods
13105         * Application.cs: Now calling StartLoop and EndLoop driver methods
13106         * XplatUIX11.cs:
13107           - Added opacity atom registration
13108           - Added StartLoop()/EndLoop() methods. They're empty right now but
13109             will need to get implemented when we switch to a per-thread queue
13110           - Implemented SupportsTransparency() method
13111           - Implemented SetWindowTransparency() method
13112           - Added support for setting the opacity value when a window is
13113             reparented (since the opacity needs to be set on the WM frame)
13114         * XplatUIOSX.cs, XplatUIWin32.cs:
13115           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
13116
13117 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
13118
13119         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
13120
13121 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
13122
13123         * FileDialog.cs: Added ToolTip for MWFFileView
13124         * MimeIcon.cs: Rewrote GnomeHandler.
13125           - Get currently used gnome icon theme from
13126             ($HOME)/.gconf/%gconf-tree.xml
13127           - Make use of inherited icon themes
13128           - Support SVG icon themes like Tango via librsvg
13129
13130 2006-01-12  Miguel de Icaza  <miguel@novell.com>
13131
13132         Revert's Jackson's revert which broke 2.0 builds.   Fix both
13133         builds. 
13134         
13135         * Application.cs: Move the use_compatible_text_rendering outside
13136         the NET_2_0 define.  If we ever need to use the
13137         use_compatible_text_rendering on the individual controls they will
13138         access the variable from the common shared code paths.
13139
13140 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13141
13142         * XplatUI.cs:
13143           - Added more granular debug options
13144           - Added method to print both window text and id
13145           - Switched debug output to use new Window() debug method
13146           - Added IsEnabled() driver method
13147           - Added EnableWindow() driver method
13148         * Form.cs:
13149           - Removed end_modal; no longer needed, new loop handles termination
13150             via 'closing' variable
13151           - If form is modal, setting DialogResult will now initiate loop
13152             termination via 'closing' variable
13153           - Added support for is_enabled/WS_DISABLED to CreateParams
13154           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
13155             does all the work
13156           - Removed code that's now in RunLoop from ShowDialog()
13157           - Added various documented sanity checks to ShowDialog()
13158           - Added handling of WM_DESTROY message; we set 'closing' on getting
13159             the message to indicate the message pump to terminate
13160           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
13161             send by the Application.ExitThread method. (We send the message
13162             to destroy the window after all other events have been
13163             processed through the queue, instead of destroying the handle 
13164             directly)
13165           - Moved code from Close() method to WM_CLOSE handler; added logic
13166             to only send close-related events if the form is not displayed
13167             modal
13168         * Splitter.cs (..ctor): Fixed typo in resource name
13169         * Control.cs:
13170           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
13171             brush now
13172           - set_Cursor: Now only setting calling into XplatUI if the handle for
13173             the control is already created; this avoids implict handle creation
13174             or crashes if it's not created
13175           - set_Enabled: Now setting the enabled state via the new driver method
13176             instead of just tracking it
13177           - CreateParams: Added logic to set WS_DISABLED based on enabled state
13178           - CreateControl: Reordered event firing and method calls to more
13179             closely fire events in the order MS does. Now setting the
13180             enabled state in the driver when creating the control.
13181           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
13182             match MS order
13183         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
13184           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
13185         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
13186         * Hwnd.cs:
13187           - Added tracking of window enabled state (get_Enabled/set_Enabled)
13188           - Added EnabledHwnd property to easily allow a driver to find the
13189             handle of the first enabled window in the parent chain (this is
13190             used by drivers to pass up input events of disabled windows)
13191         * XplatUIDriver.cs: Added IsEnabled() method
13192         * Application.cs:
13193           - Removed crude and obsolete exiting tracking variable
13194           - Removed internal ModalRun(); replaced by RunLoop()
13195           - Implemented private CloseForms() method to allow closing all 
13196             windows owned by a particular (or all) threads
13197           - Exit() now properly closes all windows without forcing the message
13198             pump to quit
13199           - Removed obsolete InternalExit() method
13200           - Changed Run() methods to use new RunLoop() message pump
13201           - Implemented new RunLoop() method for both modal and non-modal forms
13202         * CommonDialog.cs:
13203           - get_CreateParams: Added setting of WS_DISABLED
13204           - Simplified ShowDialog(); now all the work is done in RunLoop(),
13205             invoked via Form.ShowDialog()
13206         * NativeWindow.cs: We don't remove the window from the collection when
13207           the handle is destroyed; there might still be messages for it in the
13208           queue (mainly the resulting WM_DESTROY); instead it will be removed
13209           when Control calls InvalidateHandle in the WM_DESTROY handler
13210         * XplatUIX11.cs:
13211           - CreateWindow: Added logic to handle the WS_DISABLED window style
13212           - EnableWindow: Implemented based on Hwnd.Enabled
13213           - GetMessage: Reset PostQuitState so the method can be called again
13214           - Implemented support for disabled windows (passing messages to the
13215             first enabled parent) in handling all input messages
13216           - Added optimizations for handling Expose events
13217           - Implemeted new driver method IsEnabled()
13218           - Now always resetting paint pending tracking vars when we start paint
13219           - Re-implemented UpdateWindow via just sending a WM_PAINT message
13220         * XplatUIOSX.cs: Added IsEnabled method stub
13221         * XplatUIWin32.cs: Implemented new IsEnabled() method
13222
13223 2006-01-11  Jackson Harper  <jackson@ximian.com>
13224
13225         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
13226         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
13227         variables a little.
13228         * ColorDialog.cs: Clear out the old form before adding the new
13229         panel.  
13230
13231 2006-01-11  Jackson Harper  <jackson@ximian.com>
13232
13233         * X11Dnd.cs: Make sure to add all the text formats when adding
13234         strings to the data object.
13235         * TreeNodeCollection.cs: When adding to a sorted tree we need to
13236         do some redrawing too.  Also change the UpdateNode to an
13237         UpdateBelow so the newly added node gets painted.
13238         
13239 2006-01-11  Miguel de Icaza  <miguel@novell.com>
13240
13241         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
13242         LinkLabel.cs, PropertyGrid.cs: Implement the
13243         UseCompatibleTextRendering property for 2.x
13244
13245         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
13246
13247 2006-01-11  Jackson Harper  <jackson@ximian.com>
13248
13249         * TreeView.cs: Use the property for setting the selected node so
13250         the correct events get raised.
13251         * TreeNode.cs: Update the tree when the fore/back colours of a
13252         node are set.
13253
13254 2006-01-10  Jackson Harper  <jackson@ximian.com>
13255
13256         * TreeView.cs: Allow setting SelectedNode to null.
13257
13258 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13259
13260         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
13261
13262 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13263
13264         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
13265
13266 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13267
13268         * PrintDialog.cs: Added attributes and set default property values.
13269
13270 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13271
13272         * PrintControllerWithStatusDialog.cs: 
13273         Added PrintControllerWithStatusDialog.
13274
13275 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13276
13277         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
13278         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
13279
13280 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13281
13282         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
13283
13284 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13285
13286         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
13287         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
13288
13289 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
13290
13291         * MimeIcon.cs: Added internal class SVGUtil.
13292
13293 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
13294
13295         * FileDialog.cs: Don't crash if there are two files with the
13296           same name but different locations.
13297
13298 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
13299
13300         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
13301         dates across multiple month grids. Used to not highlight entire 
13302         month, but does now.
13303         
13304 2006-01-06  Jackson Harper  <jackson@ximian.com>
13305
13306         * MonthCalendar.cs: Removed DoEvents call to prevent a running
13307         message loop. Change timer intervals to numbers that seem more
13308         natural.
13309
13310 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
13311
13312         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
13313           object for location info since screen object is now implemented.
13314
13315 2006-01-05  Jackson Harper  <jackson@ximian.com>
13316
13317         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
13318         * AsyncMethodResult.cs: We no longer use a WeakReference for the
13319         AsyncMethodResult, this is because we ALWAYS want the
13320         ManualResetEvent to get set.
13321         * Control.cs: When disposing use an async invoke to call shutdown
13322         code, so that thigns don't block on the finalizer thread.  Also
13323         check if we even have a message loop before trying to send
13324         messages, if we don't then don't bother sending messages.
13325         - No more weak references for async methods
13326         * XplatUIDriver.cs: No more weak references for async methods.
13327
13328 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
13329
13330         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
13331           returns two FontFamily with the same name
13332
13333 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
13334
13335         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
13336           drawing disabled text. Instead using the ColorGrayText color
13337
13338 2006-01-04  Jackson Harper  <jackson@ximian.com>
13339
13340         * TreeNode.cs: redraw the node when its image index is changed.
13341
13342 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
13343
13344         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
13345           time I checked there are no others like it.
13346
13347 2006-01-04  Jackson Harper  <jackson@ximian.com>
13348
13349         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
13350         this gives the behavoir I was looking for.
13351         * Control.cs: Special case Invoking EventHandlers, this matches MS
13352         and fixes part of bug #76326.
13353
13354 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
13355
13356         * ThemeClearlooks.cs, FileDialog.cs:
13357           - Reflect the latest Theme class changes
13358           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
13359             with DateTime
13360             
13361 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
13362
13363         * Theme.cs: Cache UI resource images and resize them if needed
13364
13365 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
13366
13367         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
13368           is called. This fixes the crash in Nexxia when setting the font
13369           attributes in the chat. [However, RTF needs a look-over to make sure
13370           that all SelectionXXX methods handle the special case that selection
13371           is empty and therefore the change must be applied to all text starting
13372           at the cursor/selection start]
13373
13374 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
13375
13376         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
13377           XplatUIOSX.cs: Added SendMessage and PostMessage methods
13378         * X11Keyboard.cs: Switched to new way of calling PostMessage
13379
13380 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
13381
13382         * Theme.cs: Added theme interface for images to allow the theme to
13383           control what images are used for things like FileDialog, MessageBox
13384           icons, etc.
13385         * MessageBox.cs: Now uses the new Theme icon/image interfaces
13386
13387 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
13388
13389         * FileDialog.cs:
13390           - Removed some dead code
13391           - Opening a recently used file does work now
13392           - Small UI enhancements
13393           - Refactoring
13394
13395 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
13396
13397         * FileDialog.cs: Forgot too add __MonoCS__
13398
13399 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
13400
13401         * FileDialog.cs: We are able to read recently used files now let's
13402           go on and write them.
13403
13404 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
13405
13406         * FileDialog.cs: Breathe some life into "last open"/"recently used"
13407           button
13408         * MimeIcon.cs: Do a check for the top level media type also
13409
13410 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
13411
13412         * ThemeClearlooks.cs:
13413           - Added CPDrawStringDisabled
13414           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
13415             some chars if the text doesn't fit into text_rect
13416           - DrawListViewItem: If View = View.LargeIcon center the image;
13417             rewrote the drawing of ListViewItem.Text if View = 
13418             View.LargeIcon
13419
13420 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
13421
13422         * MimeIcon.cs: Use default KDE icon theme if there is no
13423           "48x48" directory for the current icon theme, fixes #77114
13424         * Mime.cs: Disable not working and actually not used code. 
13425         * ThemeWin32Classic.cs:
13426           - Replace "new SolidBrush" in GetControlBackBrush and
13427             GetControlForeBrush with ResPool.GetSolidBrush
13428           - Changed DrawListViewItem from private to protected virtual
13429         * FileDialog.cs:
13430           - Added form.MaximizeBox = true
13431           - Don't throw an exception if there is a broken symbolic link
13432
13433 2005-12-23  Jackson Harper  <jackson@ximian.com>
13434
13435         * TabControl.cs: Give the panels focus, keyboard navigation is
13436         fixed so this works correctly now.
13437         - We need these key events also.
13438         * ToolBar.cs: Remove some of the poor mans double buffering.
13439         
13440 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
13441
13442         * ComboBox.cs: The internal TextBox now returns the focus.
13443
13444 2005-12-23  Jackson Harper  <jackson@ximian.com>
13445
13446         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
13447
13448 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
13449
13450         * Control.cs: Removed debug code
13451         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
13452           implicit children
13453
13454 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
13455
13456         * Control.cs: When creating the control, update the Z-order after
13457           all it's children are created, too. (Fixes nexxia not showing
13458           picturebox bug)
13459
13460 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
13461
13462         * Control.cs: Do not update the anchoring distances if layout is
13463           suspended, instead do it once layout is resumed
13464
13465 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
13466
13467         * Control.cs: 
13468           - After many hours of debugging, for both Jackson and
13469             myself, it turns out that it helps to set the parent of a control
13470             if you want to actually see it onscreen. In the spirit of that
13471             discovery, we're now setting the parent of the control and
13472             it's children when the control's handle is created. This fix
13473             will make Lutz Roeder's Reflector run happily. 
13474           - now just creating the handle instead of the whole control when
13475             getting a graphics context for the control.
13476
13477 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
13478
13479         * ScrollableControl.cs: When calculating the canvas, don't consider
13480           the scrollbar widths. Instead, predict if horizontal scrollbar
13481           will affect canvas when deciding on vertical display and vice versa.
13482
13483 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
13484
13485         * RichTextBox.cs: Set default RTF font for documents that don't
13486           have a font table (Fixes #77076)
13487
13488 2005-12-22  Jackson Harper  <jackson@ximian.com>
13489
13490         * TextBoxBase.cs: It's difficult to do, but you can have an empty
13491         clipboard. This prevents a NullRef in that case.
13492         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
13493         clipboard. PRIMARY is for the currently selected text only. (We
13494         should implement PRIMARY at some point.
13495
13496 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
13497
13498         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
13499           a Unicode function with a structure that was defined in Ansi way.
13500           This fixes #76942.
13501
13502 2005-12-21  Jackson Harper  <jackson@ximian.com>
13503
13504         * StatusBar.cs: Statusbar handles its fore/back colours on it's
13505         on. Because thats how it rolls. (and this avoids it using ambient
13506         colours).
13507         * ThemeWin32Classic.cs: Use the proper back color for filling.
13508         * Menu.cs: Use the system menu bar color for drawing menu
13509         bars. Using the window back color will bring ambient colours into
13510         the picture.
13511
13512 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
13513
13514         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
13515           Bitmaps were created and not disposed.
13516
13517 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
13518
13519         * Control.cs (CreateControl): Don't do anything if the control is
13520           already created, otherwise we'd fire the OnCreated event more than
13521           once
13522
13523 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
13524
13525         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
13526           will always match. Instead return -1. Fixes #76464.
13527
13528 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
13529
13530         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
13531           neither the beginning nor the end of the line (Fixes bug #76479)
13532
13533 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
13534
13535         * Control.cs:
13536           - ControlNativeWindow.ControlFromHandle(): Now handling situation
13537             where handle is invalid
13538           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
13539             instead of slower linear search
13540         * NativeWindow.cs: Don't remove the window from the hashtable until
13541           after the driver has destroyed it (since the driver might use
13542           Control.FromHandle to lookup the control object
13543         * Hwnd.cs: Added DestroyPending property to track if a window is 
13544           already destroyed as far as the driver is concerned and only hasn't
13545           yet notified the control
13546         * XplatUIX11.cs:
13547           - Activate(): Check if the window is still valid before using the 
13548             handle
13549           - Implemented DestroyChildWindow() method to mark child windows as
13550             destroyed when a window is destroyed. This prevents situations 
13551             where we might call an X method based on queued events for a
13552             window that already has been destroyed but we haven't yet pulled
13553             the destroy method from the queue.
13554           - Added a call to the new DestroyChildWindow() method to the drivers
13555             DestroyWindow code. Also now marking the destroyed window itself
13556             as pending
13557
13558 2005-12-20  Jackson Harper  <jackson@ximian.com>
13559
13560         * StatusBar.cs:
13561         * StatusBarPanel.cs: Don't calculate panel sizes on draw
13562         anymore. Just do them when needed, also track the rects of panels
13563         so that we can optimize refreshing more in the future.
13564
13565 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
13566
13567         * ColorDialog.cs: Fixed focus drawing in small color controls
13568
13569 2005-12-19  Jackson Harper  <jackson@ximian.com>
13570
13571         * InternalWindowManager.cs:
13572         * MdiWindowManager.cs: Cleanup some coordinate system changes so
13573         moving windows works properly.
13574
13575 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
13576
13577         * Control.cs: 
13578           - Removed call to InitLayout() from SetBoundsCore(); doc says
13579             it's only called when a control is added to a container
13580           - Split InitLayout logic, moved to separate UpdateDistances() method
13581             since we need to perform those calculations more often than just
13582             when adding the control to a container. (Needed to fix #77022)
13583           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
13584           - Reduced the OnBindingContextChanged events count, don't send them
13585             unless the control is created, we still aren't totally matching
13586             MS, but I can't quite figure out some of their rules
13587
13588 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
13589
13590         * ThemeClearlooks.cs: Corrected distance between ProgressBar
13591           stripes
13592
13593 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
13594
13595         * ThemeClearlooks.cs:
13596           - Updated ProgressBar drawing
13597           - Corrected drawing of ScrollBars and scroll buttons
13598           - Some temporary fixes for minor pixel artefacts
13599
13600 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
13601
13602         * Control.cs:
13603           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
13604             cause events to be sent in the same order as MS does.
13605           - Added ChangeParent() method to trigger various OnXXXChanged events
13606             that need to be fired when a parent changes (This is a reworking
13607             of the patch from r54254, with the X11 errors fixed)
13608           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
13609             since on MS we get OnLayoutChanged events when calling Clear()
13610           - Changed Enabled property to consider parent state as well, if a
13611             parent is not enabled, the control will not be either
13612           - Changed Parent property to simply call Controls.Add() since that
13613             now does all the work required, this way we avoid code duplication
13614           - Threw in a few OnBindingsContextChanged calls to try and match
13615             when MS sends them. We seem to send a few too many, though.
13616           - Added call to CreateControl when adding the control to a parent.
13617             We were never calling CreateControl. Still needs some work, in
13618             some places we treat HandleCreated and ControlCreated as equal, 
13619             which is wrong
13620           - Removed obsolete commented out code from UpdateZOrder()
13621
13622 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
13623
13624         * ThemeClearlooks.cs: Updated TrackBar drawing.
13625
13626 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
13627
13628         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
13629
13630 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
13631
13632         * FileDialog.cs: Add the Help button and the open readonly
13633           checkbox only if needed
13634
13635 2005-12-16  Jackson Harper  <jackson@ximian.com>
13636
13637         * Control.cs: Make sure we have an active menu before trying to
13638         process commands on it. Prevents menu-less forms from crashing
13639         when Alt is pressed.
13640         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
13641         Dieter Bremes.
13642         * RichTextBox.cs: Expand statement to help out gmcs and fix the
13643         2.0 build.
13644
13645 2005-12-16  Jackson Harper  <jackson@ximian.com>
13646
13647         * InternalWindowManager.cs: Don't translate tool windows screen
13648         coordinates. This fixes windows 'bouncing' around when being moved.
13649
13650 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
13651
13652         * TextBoxBase.cs:
13653           - MaxLength now treats 2^31-1 equal to unlimited length (this is
13654             not quite MS compatible, MS uses that number only for single line
13655             and 2^32-1 for multi-line, but I figure it won't hurt keeping
13656             the limit at 2GB)
13657           - Now enforcing the MaxLength limit when entering characters
13658           - Added argument to internal Paste() method to track if it's called
13659             from programatically or via keyboard, since keyboard driven pastes
13660             need to enforce max-length
13661           - Added logic to Paste to only paste as many chars as MaxLength 
13662             allows
13663         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
13664         * TextControl.cs:
13665           - Added Length property to return number of characters in document
13666           - Added private CharCount property which only tracks actual chars
13667             in the document (no linefeeds) and fires event when CharCount
13668             changes
13669           - Added tracking of character count to all methods that alter it
13670           - Added LengthChanged event to allow applications to subscribe
13671             to any changes to the document
13672
13673 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
13674
13675         * TextBox.cs: 
13676           - Removed local password_char field (moved to TextBoxBase)
13677           - Now setting the document's password var when password is
13678             set
13679         * TextBoxBase.cs:
13680           - Added password_char field (needed here so MultiLine can
13681             access it)
13682           - Added logic to MultiLine property setter to set the document's
13683             variable when password display is allowed
13684           - Removed debug code and made some debug code conditional
13685         * TextControl.cs:
13686           - Added RecalculatePasswordLine() method to handle special password
13687             char only lines
13688           - Added PasswordChar property, also added related tracking vars
13689           - Draw() method now uses local text var for grabbing text to draw,
13690             this var is set to line.text unless we're doing password display,
13691             then it is set to the pre-generated all-password-chars line
13692           - Added calling RecalculatePasswordLine() method for password lines
13693
13694 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
13695
13696         * Hwnd.cs: 
13697           - Added Reparented property to allow tracking of Window Manager
13698             reparenting actions (which affect X/Y calculations of toplevel 
13699             windows)
13700           - Made ToString() print window handles in hex
13701         * XplatUIX11.cs:
13702           - AddConfigureNotify(): Now uses reparented state off Hwnd to
13703             determine if X/Y needs offsetting
13704           - AddConfigureNotify(): Fixed offset calculations
13705           - Now adds ReparentNotify messages into the queue
13706           - Now processes ReparentNotify messages and causes a 
13707             WM_WINDOWPOSCHANGED message to be sent upstream if a window
13708             is reparented (as most likely it's X/Y coordinates are changed
13709             due to that)
13710
13711 2005-12-14  Jackson Harper  <jackson@ximian.com>
13712
13713         * XplatUIX11.cs: Tool windows still need to respek focus.
13714
13715 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
13716
13717         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
13718           have a working release
13719
13720 2005-12-13  Jackson Harper  <jackson@ximian.com>
13721
13722         * Form.cs: Update styles after setting the border style regardless
13723         of whether or not the window is using a window manager.
13724
13725 2005-12-13  Jackson Harper  <jackson@ximian.com>
13726
13727         * Form.cs: We now hook into an internal window manager instead of just an
13728         MDI subsystem, this is so we can have properly behaving tool windows.
13729         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
13730         * InternalWindowManager.cs: New internal class that acts as a
13731         window manager for tool windows and as a base for mdi windows.
13732         * MdiWindowManager.cs: New class that acts as a window manager for
13733         mdi windows.
13734
13735 2005-12-12  Jackson Harper  <jackson@ximian.com>
13736
13737         * Control.cs: Updates so we match behavoir for for implicit
13738         controls. Fixes explosions in MDI.
13739
13740 2005-12-12  Jackson Harper  <jackson@ximian.com>
13741
13742         * Control.cs: Implement Invalidate (Region).
13743
13744 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
13745
13746         * Control.cs: 
13747           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
13748             the same events as MS does. MS fires events for each property 
13749             except, for unknown reasons, Cursor, when the control is reparented. 
13750             I can't seem to totally match add/remove since MS also fires some 
13751             VisibleChanged events, which makes no sense. Consolidated the
13752             parenting code into a separate method so it can be called from
13753             both Add and Remove. set_Parent no longer needs any special logic
13754             as it calls the parent's add method which implicitly fires
13755             all events
13756           - Removed some obsolete code and debug output
13757           - Enabled state is inherited from parents, if this is enabled
13758
13759 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
13760
13761         * Form.cs: Removed commented out code
13762
13763 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
13764
13765         * Control.cs:
13766           - Added internal version of Invoke, with additional argument 
13767             indicating if we're calling it from a Dispose() handler. That
13768             way we can avoid BeginInvoke throwing an exception if we're
13769             calling for an already destroyed window.
13770           - Added a dispose argument to BeginInvokeInternal, and made the
13771             check if a valid window handle chain exists conditional on
13772             it not being a dispose call
13773           - Removed code in DestroyHandle to destroy our children. Since we
13774             now handle the WM_DESTROY message we will catch all our children
13775             being destroyed.
13776           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
13777         * Form.cs:
13778           - Added a field to track the application context of the form.
13779           - No need to set closing variable as response to WM_CLOSE, instead
13780             we destroy the window. We also call PostQuitMessage if the form
13781             has an application context (which makes it the main app form,
13782             which, when closed terminates the app)
13783         * XplatUI.cs:
13784           - Dropped Exit() method, it's naming was confusing
13785           - Added PostQuitMessage() which causes GetMessage to return false
13786             once the message queue is empty
13787         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
13788           PostQuitMessage()
13789         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
13790           no longer a valid XplatUI method, but left it in since it's used
13791           internally. Added empty PostQuitMessage() method.
13792         * MenuAPI.cs: Replaced call to Exit() with call to
13793           PostQuitMessage, even though this is probably no longer needed.
13794         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
13795         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
13796         * Application.cs:
13797           - Replaced call to XplatUI.Exit() with PostQuitMessage()
13798           - Removed old debug code that would call XplatUI for exception
13799             display, enabled standard exception handling (Still not enabled
13800             though, until NativeWindow's ExternalExceptionHandler define
13801             is removed
13802         * NativeWindow.cs:
13803           - Added internal method to allow control to update NativeWindow
13804             after a window has been destroyed
13805           - Added handling of already destroyed windows when calling i
13806             DestroyWindow
13807           - Added removal of handle from list on ReleaseHandle
13808         * XplatUIX11.cs:
13809           - Dropped GetMessageResult var and related code
13810           - Added PostQuitState to field to track if PostQuitMessage has been
13811             called
13812           - Dropped Exit() method
13813           - Added PostQuitMessage() method
13814           - GetMessage now will return false if PostQuitState is set and no
13815             more messages are in the queue.
13816           - Expose handler will no longer generate WM_PAINT messages if we are
13817             in PostQuitState since it's very likely any windows have already
13818             been destroyed, and since Hwnd won't get updated until we have
13819             processed the DestroyNotify we'd be causing X errors.
13820         
13821 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13822
13823         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
13824           Thanks to Mike for pointing out the err of my ways.
13825
13826 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13827
13828         * Control.cs(PreProcessMessage): Moved menu handling back, but
13829           after all other key handling, to match MS (who handles Menu in
13830           DefWndProc)
13831         * Menu.cs (WndProc): Removed my brainfart
13832
13833 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13834
13835         * Control.cs(PreProcessMessage): Removed special menu handling 
13836         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
13837
13838 2005-12-07  Mike Kestner  <mkestner@novell.com>
13839
13840         * Control.cs : special case SYSKEYUP so that we can adjust keynav
13841         state according in tracker.
13842         * Menu.cs : promote tracker field to base class and provide a tracker
13843         lookup capability.  Add/Remove shortcuts dynamically if the top menu
13844         has a tracker. Unparent items that are removed from the collection.
13845         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
13846         * Theme*.cs: add always_show_hotkeys field to support configurability
13847         of mnemonic display.  win32 doesn't show mnemonics until Alt is
13848         pressed.
13849
13850 2005-12-07  Jackson Harper  <jackson@ximian.com>
13851
13852         * MdiChildContext.cs: Use Control.ResetCursor.
13853         * Control.cs: ResetCursor needs to set the property so that the
13854         correct XplatUI call gets made.
13855
13856 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13857
13858         * Control.cs: More fixes to make our key events match MS. We
13859           were not setting the modifier state on KeyData, and we were
13860           not generating any events when Alt was pressed with a key
13861           since handling of WM_SYSxxx was missing for the OnKey methods.
13862
13863 2005-12-07  Jackson Harper  <jackson@ximian.com>
13864
13865         * MdiChildContext.cs: reenable the sizing code.
13866         - When the mouse leaves a window reset its cursor.
13867
13868 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
13869
13870         * ThemeClearlooks.cs: Reflect latest Hwnd changes
13871
13872 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13873
13874         * Hwnd.cs: Now using the theme 3d bordersize to calculate
13875           widths of Fixed3D borders
13876
13877 2005-12-07  Jackson Harper  <jackson@ximian.com>
13878
13879         * MdiClient.cs: Fix warnings. Earn Mike's love.
13880
13881 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
13882
13883         * ThemeClearlooks.cs:
13884           - Adjusted mouse over button color
13885           - Added first parts of CheckBox drawing
13886           - Added correct color for selected text background
13887           - Fixed ComboBox drawing
13888           - Added CPDrawBorder3D and CPDrawBorder
13889
13890 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
13891
13892         * XplatUIX11.cs: Added call to XBell for AudibleAlert
13893
13894 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
13895
13896         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
13897           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
13898           alert users via sound. We could add an enum arg with different
13899           types of alerts in the future
13900
13901 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
13902
13903         * Control.cs: Fix behaviour problems pointed out by Mike
13904
13905 2005-12-05  Mike Kestner  <mkestner@novell.com>
13906
13907         * StatusBarPanel.cs: add Invalidate method and hook it into all the
13908         prop setters.  Calls parent.Refresh for now, but could be maybe be
13909         optimized with an internal method on StatusBar at some point.
13910         [Fixes #76513]
13911
13912 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
13913
13914         * RichTextBox.cs: Implemented get_SelectionColor
13915
13916 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
13917
13918         * ThemeClearlooks.cs:
13919           - Removed dead code
13920           - Draw black button border only if button is Form.AcceptButton
13921           - Draw correct button color for pressed RadioButton if the mouse 
13922             has entered the button
13923           - Updated ProgressBar drawing!
13924           - Updated CPDrawSizeGrip drawing
13925           - Updated StatusBarPanel drawing
13926
13927 2005-12-05  Mike Kestner  <mkestner@novell.com>
13928
13929         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
13930         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
13931
13932 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
13933
13934         * ThemeClearlooks.cs: Initial check-in, activate with
13935           export MONO_THEME=clearlooks
13936         * ThemeEngine.cs: Added ThemeClearlooks
13937
13938 2005-12-03  Mike Kestner  <mkestner@novell.com>
13939
13940         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
13941         [Fixes #76897]
13942
13943 2005-12-02  Jackson Harper  <jackson@ximian.com>
13944
13945         * Form.cs: If the child form has no menu the default main menu is
13946         used as the active menu.
13947
13948 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
13949
13950         * ListBox.cs: Check if any items exist before trying to resolve 
13951           coordinates into items
13952
13953 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
13954
13955         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
13956           as the second color for the background hatch
13957
13958 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
13959
13960         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
13961         * RichTextBox.cs: FormatText position arguments are 1-based, now making
13962           sure that what we pass to FormatText is always 1-based. Fixes #76885
13963
13964 2005-11-29  Miguel de Icaza  <miguel@novell.com>
13965
13966         * NumericUpDown.cs (EndInit): When we are done initializing,
13967         reflect any updates on the UI.
13968
13969 2005-12-02  Jackson Harper  <jackson@ximian.com>
13970
13971         * ImplicitHScrollBar.cs:
13972         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
13973         their container controls.
13974         * TreeView.cs: Use the new implicit scrollbars.
13975
13976 2005-12-02  Jackson Harper  <jackson@ximian.com>
13977
13978         * TreeView.cs: Make top_node internal so the TreeNodeCollections
13979         can play with it.
13980         * TreeNodeCollection.cs: If we remove the topnode we need to
13981         update topnode to the next node in line.
13982         - When clearing nodes go through the same process as removing
13983         them, so they get depareneted and checked if they are top node.
13984
13985 2005-12-01  Jackson Harper  <jackson@ximian.com>
13986
13987         * TreeView.cs: When imagelists are used the image area is
13988         selectable as well as the text.
13989         - If there are no selected nodes select the first one.
13990         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
13991         so don't do it more then we need to.
13992
13993 2005-12-01  Jackson Harper  <jackson@ximian.com>
13994
13995         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
13996         that arrows can be scaled.
13997
13998 2005-12-01  Jackson Harper  <jackson@ximian.com>
13999
14000         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
14001         fail. Patch by Dieter Bremes
14002
14003 2005-11-30  Jackson Harper  <jackson@ximian.com>
14004
14005         * Form.cs: Property is 2.0 only
14006         * PrintDialog.cs: Signature fix.
14007
14008 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
14009
14010         * TextControl.cs: 
14011           - No longer artificially moves text 2 pixels down (now that we have
14012             borders this is no longer needed)
14013           - Added calcs for left, hanging and right indent
14014
14015 2005-11-23  Mike Kestner  <mkestner@novell.com>
14016
14017         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
14018
14019 2005-11-30  Jackson Harper  <jackson@ximian.com>
14020
14021         * MdiChildContext.cs: Set the cloned menus forms, as these don't
14022         get cloned as part of CloneMenu ().
14023         * Menu.cs: Make sure the parent of the items get set correctly
14024         when they are added.  And the owners are notified of the changes.
14025         * Form.cs: Create an ActiveMenu property, so that when MDI is used
14026         we can change the menu being displayed/handled by the form without
14027         changing the menu assosciated with the form.
14028         - Don't let Mdi children draw/handle menus.
14029         
14030 2005-11-30  Jackson Harper  <jackson@ximian.com>
14031
14032         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
14033         a MenuChanged event. Just to make the API a little more
14034         consistent.
14035         * MainMenu.cs:
14036         * MenuItem.cs: Use the new OnMenuChanged
14037         * MdiChildContext.cs: Handle menu merging.
14038         * Form.cs: Implement MergedMenu.
14039         
14040 2005-11-30  Jackson Harper  <jackson@ximian.com>
14041
14042         * Menu.cs: We were misusing Add. Add goes behind the specified
14043         index according to the docs, and does not replace the specified
14044         index. So I added an Insert method.
14045
14046 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
14047
14048         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
14049           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
14050           is for Jackson
14051         * RichTextBox.cs: Added calls to base for DnD events
14052
14053 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
14054
14055         * TextControl.cs:
14056           - Fixed drag-selection related crash; style fixes
14057           - Implemented undo class
14058             o Implemented method to capture document state for specified
14059               range in document tree
14060             o Implemented method to restore captured document state
14061             o Implemented cursor tracking
14062             o Implemented basic undo stack
14063           - Added undo cursor tracking to methods altering cursor location
14064           - Added undo tracking to selection deletion (still missing
14065             other text-altering hookups)
14066         * RichTextBox.cs:
14067           - Added SelectionLength property
14068           - Implemented CanPaste()
14069           - Implemented Paste()
14070           - Added missing protected methods
14071           - Fixed RTF->Document conversion; now uses font index 0 and color 
14072             index 0 as the default font for the parsed text
14073           - Fixed RTF<->Document font size translation
14074           - Fixed RTF generation, now properly handles cross-tag boundaries
14075             for single line selection
14076           - No longer always appends blank line to generated RTF
14077           - Removed TODOs
14078           - Added missing attributes
14079           - Hooked up undo-related methods
14080         * TextBoxBase.cs:
14081           - Implemented Copy()
14082           - Implemented Paste()
14083           - Implemented Cut()
14084           - Fixed caret mis-behaviour on backspace across line-boundaries
14085
14086 2005-11-29  Jackson Harper  <jackson@ximian.com>
14087
14088         * MdiClient.cs: Add a method for activating mdi children. Very
14089         basic right now. I imagine someday it might need more girth.
14090         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
14091         children windows names are added to the menu item.
14092         * ThemeWin32Classic.cs: Draw the arrow if the item is an
14093         mdilist. This happens regardless of whether or not there are any
14094         mdi windows to see in the list, and according to my tests happens
14095         before the items are even added. Also happens if there isn't even
14096         an mdi client to get windows from.
14097
14098 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
14099
14100         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
14101         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
14102
14103 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
14104
14105         * DataGridTableStyle.cs:
14106           - Create always the styles for the missing columns even if they are
14107             provided by the user (not default table style)
14108         * DataGrid.cs:
14109           - Fixes bug 76770
14110           - Fixes SetDataBinding (always re-attach source)
14111           - Fixes SetNewDataSource (only clear styles if they are not for 
14112             this source)
14113          -  Expands OnTableStylesCollectionChanged to handle style refresh 
14114             and remove properly
14115
14116 2005-11-29  Jackson Harper  <jackson@ximian.com>
14117
14118         * FileDialog.cs: Implement missing bits, remove some dead
14119         code.
14120         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
14121         creation of the panel so that the options set on the dialog are
14122         seen when the panel is created.
14123         * TreeView.cs: raise a click when items are clicked.
14124         
14125 2005-11-29  Jackson Harper  <jackson@ximian.com>
14126
14127         * MdiClient.cs: Pass some signature methods through to base.
14128
14129 2005-11-28  Jackson Harper  <jackson@ximian.com>
14130
14131         * ListView.cs: Raise the click event when items are clicked.
14132
14133 2005-11-28  Jackson Harper  <jackson@ximian.com>
14134
14135         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
14136         a nullref.
14137
14138 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
14139
14140         * ThemeNice.cs: - Removed 1 pixel bitmaps
14141           - Use SmoothingMode.AntiAlias where it makes sense
14142             (ScrollButton arrow for example)
14143           - Enhanced Button focus drawing
14144           - Fixed ComboBox drawing (no artefacts anymore, focus
14145             rectangle is back again, reduced size of ComboButton, etc.)
14146           - Fixed RadioButton focus drawing for Appearence.Button
14147           - Slight ScrollButton redesign
14148           - Some LinearGradientBrush size fixes
14149           - GroupBoxes have now rounded edges
14150           - Fixed StatusBar drawing
14151
14152 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
14153
14154         * ThemeNice.cs: - Remove dead code
14155           - use correct background colors for menus, etc.
14156           - Fake pixel drawing with 1 pixel bitmaps
14157
14158 2005-11-24  Jackson Harper  <jackson@ximian.com>
14159
14160         * MdiClient.cs: Size the scrollbars when resizing the window.
14161         - Resize the maximized windows when the client is resized
14162         * Form.cs: Make the child context available
14163         
14164 2005-11-23  Jackson Harper  <jackson@ximian.com>
14165
14166         * MdiChildContext.cs: Don't size windows if they are maximized.
14167
14168 2005-11-23  Mike Kestner  <mkestner@novell.com>
14169
14170         * ContextMenu.cs: use MenuTracker.
14171         * Control.cs: remove menu handle usage.
14172         * Form.cs: remove menu handle usage.
14173         * Hwnd.cs: remove menu handle usage.
14174         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
14175         motion and clicks to the new Tracker handlers.
14176         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
14177         and handle usage.
14178         * MenuAPI.cs: refactored to combine popup and menubar event handling.
14179         Killed the MENU and MENUITEM data types and associated collections
14180         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
14181         MenuTracker class that exposes the leftovers from the old MenuAPI
14182         static methods. Restructured Capture handling so that only one grab is
14183         done for the entire menu hierarchy instead of handing off grabs to
14184         submenus. Tracker now has an invisible control to Capture when active.
14185         * MenuItem.cs: add sizing accessors, kill Create
14186         and handle usage.
14187         * Theme.cs: remove menu handle and MENU(ITEM) usage.
14188         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
14189         MENU(ITEM). remove menu handle usage, use Menu directly.
14190         * XplatUIDriver.cs: remove menu handle usage.
14191         * XplatUIOSX.cs: remove menu handle usage.
14192         * XplatUIWin32.cs: remove menu handle usage.
14193         * XplatUIX11.cs: remove menu handle usage.
14194
14195 2005-11-22  Jackson Harper  <jackson@ximian.com>
14196
14197         * Hwnd.cs: Don't compute the menu size for
14198         DefaultClientRectangle.
14199         - Reenable menu sizes being computed for GetClienRectangle.
14200         * Form.cs: Remove comment of trechery
14201         
14202 2005-11-22  Jackson Harper  <jackson@ximian.com>
14203
14204         * Hwnd.cs: The adjustments for the menu bar are made when it is
14205         attached to the form.
14206
14207 2005-11-19  Jackson Harper  <jackson@ximian.com>
14208
14209         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
14210         (just like on windows).
14211
14212 2005-11-19  Jackson Harper  <jackson@ximian.com>
14213
14214         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
14215         use real buttons anymore because they are in non client area. The
14216         one TODO here is that I need to somehow invalidate a section of
14217         the non client area.
14218
14219 2005-11-18  Jackson Harper  <jackson@ximian.com>
14220
14221         * Control.cs: Put the enum check back in now that MDI doesnt have
14222         to use this to set border styles.
14223         * Form.cs: Only set mdi child windows borders if the handle has
14224         been created.
14225         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
14226         this directly on to the driver.
14227         - Get the move start position before adjusting for the titlebar
14228         height, this fixes the windows "skipping" when they are first
14229         moved.
14230
14231 2005-11-18  Jackson Harper  <jackson@ximian.com>
14232
14233         * XplatUIX11.cs: Just compute the mdi borders separately as they
14234         don't totally match up with normal form borders.
14235
14236 2005-11-18  Jackson Harper  <jackson@ximian.com>
14237
14238         * Control.cs: Set WS_ styles for borders, so that the driver does
14239         not have to retrieve the control instance to figure out what kind
14240         of borders it should have.
14241         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
14242         driver can know its an mdi child easily.
14243         * XplatUIX11.cs: Get the border styles and whether the window is
14244         MDI from the Styles and ExStyles params instead of having to get a
14245         control. This prevents a chicken and egg problem.       
14246
14247 2005-11-18  Jackson Harper  <jackson@ximian.com>
14248
14249         * MdiClient.cs: Fix typo so scrollbars show up correctly.
14250
14251 2005-11-18  Jackson Harper  <jackson@ximian.com>
14252
14253         * MdiClient.cs: Calculate when to add and remove scrollbars
14254         correctly.
14255         * MdiChildContext.cs: Adjust the y position to take the titlebar
14256         into account.
14257         - No height for FormBorderStyle.None
14258
14259 2005-11-18  Jackson Harper  <jackson@ximian.com>
14260
14261         * Control.cs: Allow non enum values to be used for
14262         InternalBorderStyle.  MDI does this to set a special border style.
14263         - New utility methods for converting points to/from client coords
14264         - Add the newly created control to the Controls collection before
14265         updating its style. This way UpdateStyle can walk the control
14266         heirarchy to find the control if needed.
14267         so I don't need to create a new Point object all the time.
14268         * Form.cs: Let MDI windows handle their border styles.
14269         - Set styles on MDI windows so the correct title style is derived.
14270         * MdiChildContext.cs: Move all the painting and window handling
14271         into the non client area.
14272         - Use correct sizing and put correct buttons on frames based on
14273         the FormBorderStyle.
14274         - Notify the mdi client about scrolling
14275         - Need to handle the buttons ourselves now, because they are all
14276         in non client areas and we can't add controls there.
14277         * MdiClient.cs: Halfway to scrolling, this implementation is
14278         somewhat broken though, we need to check to make sure other
14279         windows aren't causing scrolling before removing the bars. Also
14280         the bars need to be drawn on top, maybe I can switch implicit
14281         controls to be on top.
14282         * Hwnd.cs: caption_height and tool_caption_height are now
14283         properties of an hwnd, this way they can be set by the driver
14284         based on the type of window they are.  In X11 the window manager
14285         handles the decorations so caption_height is zero unless its an
14286         MDI window.
14287         - Add 3 pixel borders for MDI windows (0xFFFF).
14288         - Get rid of some code duplication, have DefaultClientRectanle
14289         just call GetClientRectangle.
14290         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
14291         Hwnd now.
14292         - Set border styles differently for mdi windows.
14293         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
14294         Hwnd now.
14295         
14296 2005-11-15  Mike Kestner  <mkestner@novell.com>
14297
14298         * Menu.cs: when adding an item to the collection, if item is already 
14299         parented, remove it from the parent.
14300
14301 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
14302
14303         * X11DesktopColors.cs: Added KDE support
14304
14305 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
14306
14307         * XplatUIWin32.cs: 
14308           - Clipboard methods now can translate Rtf format
14309           - No longer removes clipboard contents whenever a new format is added
14310             to allow placing multiple formats on the clipboard
14311         * Clipboard.cs: Clipboard now supports getting a IDataObject and
14312           will place all formats contained in it onto the clipboard. Also
14313           now cleans the clipboard before placing a new object onto it
14314         * RichTextBox.cs:
14315           - Implemented set_Rtf
14316           - Implemented set_SelectedRtf
14317           - Created InsertRTFFromStream() method to allow single code base
14318             for all properties and methods that insert RTF into document
14319           - Removed debug output
14320         * TextControl.cs:
14321           - Fixed Delete(int) to fix up line numbers
14322           - Fixed ReplaceSelection to combine start and end line
14323           - Fixed serious DeleteChars bug that would leave the document tree
14324             broken
14325           - Improved DumpTree with several logic checks to detect broken
14326             document trees
14327           - Removed debug lines
14328           - Fixed Caret.WordForward/WordBack moving code, now always also 
14329             updates caret.tag (fixes crash when word-selecting across tag
14330             boundaries via keyboard)
14331           - Added Insert() method for inserting multiline text into documents
14332           - Fixed DeleteChars() calculation errors that would cause a broken
14333             tag chain with multiple tag lines
14334           - DeleteChars() no longer crashes on multi-tag lines if not all tags
14335           - Split() no longer moves caret if split is at caret location
14336           - ReplaceSelection() now updates the cursor and re-displays it
14337           - ReplaceSelection() now uses new Insert() method to avoid code
14338             duplication
14339           - FormatText() can now handle formatting partial lines
14340         * TextBoxBase.cs:
14341           - Append now uses new TextControl.Insert() method (this avoids 
14342             duplicate code)
14343           - Implemented Ctrl-X (Cut) (
14344           - Implemented Ctrl-C (Copy)
14345           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
14346             regeneration when pasting text; roundtripping Copy&Paste within
14347             edit control still fails due to some calculation bugs in GenerateRTF)
14348           - The Delete key will now remove the current selection if it is visible
14349         * TextBox.cs: Removed debug lines
14350         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
14351           driver to be initialized and can't therefore be done via a static ctor)
14352
14353 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
14354
14355         * TextControl.cs: Added backend code for finding char arrays and strings
14356         * TextBoxBase.cs:
14357           - Added mouse wheel scroll support
14358           - Added support for VScroll and HScroll events
14359         * RichTextBox.cs:
14360           - Implemented all seven Find() variants
14361           - Implemented GetCharFromPosition()
14362           - Implemented GetCharIndexFromPosition()
14363           - Implemented GetLineFromIndex()
14364           - Implemented GetPositionFromCharIndex();
14365           - Implemented SaveFile for PlainText and UnicodeText
14366           - Fixed set_Font, now setting a new font applies that font to
14367             the whole document
14368           - Implemented generic Document to RTF converter
14369           - Implemented SaveFile for RichText format (still missing unicode
14370             conversion for non-ansi chars)
14371           - Implemented get_Rtf
14372           - Implemented get_SelectedRtf
14373
14374 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
14375
14376         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
14377           to allow any captures to be released before triggering OnClick. This
14378           way a click handler may capture the mouse without interference.
14379         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
14380           This way we send them even though X may not allow a grab (if the window
14381           isn't visible, for example)
14382
14383 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
14384
14385         * DataGridViewRowEventArgs.cs: DataGridView implementation
14386         * DataGridViewElement.cs: DataGridView implementation
14387         * DataGridViewComboBoxCell.cs: DataGridView implementation
14388         * DataGridViewDataErrorContexts.cs: DataGridView implementation
14389         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
14390         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
14391         * ImageLayout.cs: DataGridView implementation
14392         * DataGridViewComboBoxColumn.cs: DataGridView implementation
14393         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
14394         * DataGridViewSelectionMode.cs: DataGridView implementation
14395         * IDataGridViewEditingControl.cs: DataGridView implementation
14396         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
14397         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
14398         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
14399         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
14400         * DataGridViewColumnSortMode.cs: DataGridView implementation
14401         * DataGridView.cs: DataGridView implementation
14402         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
14403         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
14404         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
14405         * Padding.cs: DataGridView implementation
14406         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
14407         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
14408         * DataGridViewRowEventHandler.cs: DataGridView implementation
14409         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
14410         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
14411         * DataGridViewButtonCell.cs: DataGridView implementation
14412         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
14413         * DataGridViewEditMode.cs: DataGridView implementation
14414         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
14415         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
14416         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
14417         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
14418         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
14419         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
14420         * DataGridViewCellEventHandler.cs: DataGridView implementation
14421         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
14422         * DataGridViewCellStyleConverter.cs: DataGridView implementation
14423         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
14424         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
14425         * DataGridViewColumnEventArgs.cs: DataGridView implementation
14426         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
14427         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
14428         * QuestionEventArgs.cs: DataGridView implementation
14429         * IDataGridViewEditingCell.cs: DataGridView implementation
14430         * DataGridViewTriState.cs: DataGridView implementation
14431         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
14432         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
14433         * DataGridViewColumnCollection.cs: DataGridView implementation
14434         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
14435         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
14436         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
14437         * DataGridViewColumn.cs: DataGridView implementation
14438         * DataGridViewCellBorderStyle.cs: DataGridView implementation
14439         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
14440         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
14441         * DataGridViewRow.cs: DataGridView implementation
14442         * DataGridViewImageCellLayout.cs: DataGridView implementation
14443         * DataGridViewImageCell.cs: DataGridView implementation
14444         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
14445         * DataGridViewCheckBoxCell.cs: DataGridView implementation
14446         * DataGridViewHeaderCell.cs: DataGridView implementation
14447         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
14448         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
14449         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
14450         * DataGridViewTextBoxColumn.cs: DataGridView implementation
14451         * QuestionEventHandler.cs: DataGridView implementation
14452         * DataGridViewCellStyleScopes.cs: DataGridView implementation
14453         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
14454         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
14455         * DataGridViewCell.cs: DataGridView implementation
14456         * DataGridViewCellEventArgs.cs: DataGridView implementation
14457         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
14458         * DataGridViewCellStyle.cs: DataGridView implementation
14459         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
14460         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
14461         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
14462         * TextFormatFlags.cs: DataGridView implementation
14463         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
14464         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
14465         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
14466         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
14467         * DataGridViewButtonColumn.cs: DataGridView implementation
14468         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
14469         * HandledMouseEventArgs.cs: DataGridView implementation
14470         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
14471         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
14472         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
14473         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
14474         * DataGridViewRowCollection.cs: DataGridView implementation
14475         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
14476         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
14477         * DataGridViewHitTestType.cs: DataGridView implementation
14478         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
14479         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
14480         * DataGridViewColumnEventHandler.cs: DataGridView implementation
14481         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
14482         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
14483         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
14484         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
14485         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
14486         * DataGridViewContentAlignment.cs: DataGridView implementation
14487         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
14488         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
14489         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
14490         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
14491         * DataGridViewPaintParts.cs: DataGridView implementation
14492         * DataGridViewCellCollection.cs: DataGridView implementation
14493         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
14494         * DataGridViewImageColumn.cs: DataGridView implementation
14495         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
14496         * DataGridViewElementStates.cs: DataGridView implementation
14497         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
14498         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
14499         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
14500         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
14501         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
14502         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
14503         * DataGridViewRowHeaderCell.cs: DataGridView implementation
14504         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
14505         * DataGridViewTextBoxCell.cs: DataGridView implementation
14506         * DataGridViewBand.cs: DataGridView implementation
14507         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
14508         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
14509         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
14510         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
14511         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
14512         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
14513         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
14514         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
14515         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
14516         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
14517         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
14518
14519 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
14520
14521         * ThemeWin32Classic.cs: 
14522           - Draw the outside focus rectangle around buttons
14523           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
14524             doesn't use end caps for every dash of a line anymore. This
14525             workaround ignores the forecolor.
14526
14527 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
14528
14529         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
14530           endian safe.
14531
14532 2005-11-07  Jackson Harper  <jackson@ximian.com>
14533
14534         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
14535
14536 2005-11-07  Jackson Harper  <jackson@ximian.com>
14537
14538         * ScrollableControl.cs: Calculate the maximum and change vars
14539         (more) correctly so that scrollbars appear as a sensible size.
14540
14541 2005-11-04  Jackson Harper  <jackson@ximian.com>
14542
14543         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
14544         collection.
14545         * TreeView.cs: When the tree is sorted null out the top_node so
14546         that it is recalculated.
14547         - Use dotted lines instead of dashed lines to match MS better.
14548
14549 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
14550
14551         * ListView.cs: 
14552           - Implements key search for items. Useful when browsing files with FileDialog
14553           - When changing view mode or when clear the items reset scrollbar positions
14554
14555 2005-11-04  Jackson Harper  <jackson@ximian.com>
14556
14557         * CurrencyManager.cs: Implement the MetaDataChanged event, the
14558         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
14559         as to what the method may do as there is no real way of creating a
14560         derived CurrencyManager and calling the method. 
14561
14562 2005-11-03  Jackson Harper  <jackson@ximian.com>
14563
14564         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
14565         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
14566         method which seems to just be used internally to refresh the tabs.
14567
14568 2005-11-03  Jackson Harper  <jackson@ximian.com>
14569
14570         * TabControl.cs: Implement the remove method. Fix some broken
14571         comments.
14572
14573 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
14574
14575         * DateTimePicker.cs:
14576           - Added missing DateTimePickerAccessibleObject class
14577           - Added missing events
14578           - Added OnFontChanged method
14579         * Form.cs: Added missing attributes
14580         * TreeView.cs: Added missing attributes
14581
14582 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
14583
14584         * GridItemCollection.cs: Fix signatures
14585
14586 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
14587
14588         * XplatUI.cs: Updated build rev/date
14589         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
14590           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
14591         * Application.cs: Trigger context-specific ExitThread events
14592
14593 2005-11-03  Jackson Harper  <jackson@ximian.com>
14594
14595         * Menu.cs:
14596         * MainMenu.cs:
14597         * GridTableStylesCollection.cs:
14598         * Timer.cs:
14599         * TabPage.cs:
14600         * HelpProvider.cs:
14601         * StatusBar.cs:
14602         * MonthCalendar.cs: Signature fixes
14603
14604 2005-11-03  Jackson Harper  <jackson@ximian.com>
14605
14606         * TreeNodeCollection.cs: Remove should not be virtual.
14607         * TreeView.cs: Implement the last of the missing methods.
14608
14609 2005-11-03  Jackson Harper  <jackson@ximian.com>
14610
14611         * TreeNodeConverter.cs: Implement to get off my class-status back.
14612
14613 2005-11-03  Jackson Harper  <jackson@ximian.com>
14614
14615         * TreeView.cs: Hookup the bits for drag and drop.
14616         * TreeNode.cs: Don't cache the tree_view or index anymore, now
14617         that nodes can be moved from tree to tree easily this just causes
14618         all sorts of problems.
14619         * TreeNodeCollection: Don't need to give treenodes an index and
14620         treeview anymore when they are added, these are computed on the
14621         fly. Also make sure to remove a node before its added.
14622
14623 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
14624
14625         * TextControl.cs:
14626           - Added CaretSelection enum
14627           - Added comparison methods to Marker struct, makes selection code
14628             more readable
14629           - Added SelectionStart and SelectionEnd as 'moveable' location for
14630             the CaretDirection enum and handler
14631           - Added selection_prev variable to track optimized invalidation for
14632             word and line selection
14633           - Added SelectionVisible property (returns true if there is a valid 
14634             selection)
14635           - Switched CaretHasFocus to only display the caret if there is no
14636             visible selection
14637           - Avoiding StringBuilder.ToString to retrieve a single char, instead
14638             using the direct character index; should be much faster
14639           - Added various conditional debug statements
14640           - Fixed invalidation calculation for selection ranges
14641           - Added ExpandSelection() method to support word and line selection
14642           - Switched SetSelectionToCaret to use new Marker compare overloads
14643           - Added central IsWordSeparator() method to determine word 
14644             separators/whitespace and FindWordSeparator() to streamline common
14645             usage of IsWordSeparator()
14646         * TextBoxBase.cs:
14647           - Removed unneeded grabbed variable, it was just mirroring
14648             Control.Capture
14649           - No longer firing OnTextChanged event when Text setter is called,
14650             since the base will fire the event for us
14651           - Added handling of Ctrl-Up/Down selection
14652           - Added handling of Shift-Cursorkey selection
14653           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
14654             words
14655           - Added handling of Shift and Ctrl-Shift-Home/End selection
14656           - Removed some debug output
14657           - Added handling for single/double/tripple-click to place caret/
14658             select word/select line respectively (Fixes bug #76031)
14659           - Added support for drag expansion of word/line selection
14660         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
14661           current selection
14662
14663 2005-11-02  Jackson Harper  <jackson@ximian.com>
14664
14665         * X11Dnd.cs: If the drag is going to and from a MWF window just
14666         copy the data instead of sending it out through the X Selection
14667         mechanism.
14668
14669 2005-11-02  Jackson Harper  <jackson@ximian.com>
14670
14671         * X11Dnd.cs:
14672         * XplatUIX11.cs: When in a drag we don't want motion notify
14673         messages to get passed on to the other controls. This prevents
14674         mouse move messages from showing up in the drag source.
14675
14676 2005-11-02  Jackson Harper  <jackson@ximian.com>
14677
14678         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
14679         the correct button is release to end a drag.
14680         * XplatUIX11.cs: Make the button state internal so the drag system
14681         can access it.  Dragging needs to know about all button releases,
14682         not just left button.
14683
14684 2005-11-02  Miguel de Icaza  <miguel@novell.com>
14685
14686         * Form.cs (Icon): If the icon is null, reset the icon to the
14687         default value. 
14688
14689         * Cursor.cs: When writing the AND-mask bitmap do not include the
14690         number of colors, but hardcode those to two (black and white),
14691         fixes the loading of color cursors (Paint Dot Net).
14692
14693         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
14694         turn off autoscaling.
14695
14696         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
14697
14698 2005-11-02  Jackson Harper  <jackson@ximian.com>
14699
14700         * X11Dnd.cs: Make sure to send a status message if the pointer
14701         enters a control that can not accept a drop, otherwise the cursor
14702         isn't updated correctly. Also tried to compress the lines of code
14703         a bit.
14704
14705 2005-11-02  Jackson Harper  <jackson@ximian.com>
14706
14707         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
14708         set actions correctly.  This isn't perfect as XDND and win32 have
14709         some differences on how you allow actions. I'll clear this up by
14710         adding a path for drag from MWF to MWF windows.
14711         * XplatUIX11.cs: Hook into the dnd system.
14712
14713 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
14714
14715         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
14716         previously shown but they are no longer need it. Very obvious when 
14717         browsing files with FileDialog.
14718
14719 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
14720
14721         * Control.cs: We always need to call OnPaintBackground. We pretty much
14722           ignore AllPaintingInWmPaint and always do the painting there, whether 
14723           it's set or not, since we always ignore the WM_ERASEBKGND message 
14724           (which we don't generate on X11). This fixes #76616.
14725         * Panel.cs: Removed unneeded background painting. This happens properly
14726           in Control.cs already
14727
14728 2005-10-31  Mike Kestner  <mkestner@novell.com>
14729
14730         * Menu.cs: Add items to collection before setting their index.
14731         * MenuItem.cs : add range checking with ArgumentException like MS.
14732         [Fixes #76510]
14733
14734 2005-10-31  Jackson Harper  <jackson@ximian.com>
14735
14736         * ListBox.cs: Invalidate if the area is visible at all not just
14737         contained in the visible rect. Fixes unselection of semi visible
14738         items.
14739
14740 2005-10-31  Jackson Harper  <jackson@ximian.com>
14741
14742         * Control.cs: Consistently name the dnd methods. Make them
14743         internal so we can override them to match some MS behavoir
14744         internally.
14745         * Win32DnD.cs: Use the new consistent names.
14746
14747 2005-10-31  Jackson Harper  <jackson@ximian.com>
14748
14749         * TreeView.cs: Don't draw the selected node when we lose focus.
14750
14751 2005-10-31  Jackson Harper  <jackson@ximian.com>
14752
14753         * X11Dnd.cs: We still need to reset the state even though a full
14754         reset isn't being done, otherwise status's still get sent all over
14755         the place.
14756
14757 2005-10-31  Jackson Harper  <jackson@ximian.com>
14758
14759         * Control.cs: Make the dnd_aware flag internal so the dnd
14760         subsystem can check it. Catch exceptions thrown in dnd handlers to
14761         match MS behavoir.
14762         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
14763         * X11Dnd.cs: Handle null data in the converters. Set the XDND
14764         version when sending a XdndEnter. Use the control/hwnd dnd_aware
14765         flags to reduce the number of dnd enters/status's sent.
14766
14767 2005-10-31  Jackson Harper  <jackson@ximian.com>
14768
14769         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
14770
14771 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
14772
14773         * PictureBox.cs: Fixes 76512
14774
14775 2005-10-28  Jackson Harper  <jackson@ximian.com>
14776
14777         * X11Dnd.cs: Early implementation to support winforms being a drag
14778         source for data on X11. Also restructured the converters so they
14779         can go both ways now.
14780         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
14781         
14782 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
14783
14784         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
14785           clipboard requests
14786
14787 2005-10-27  Jackson Harper  <jackson@ximian.com>
14788
14789         * TreeNode.cs: Implement serialization so my DnD examples will work.
14790
14791 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
14792
14793         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
14794           TreeView.cs: Don't dispose objects that are not owned.
14795           
14796 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
14797
14798         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
14799           should retrieve the current cursor and report that, but XplatUI
14800           doesn't (yet) have an interface for that (and I'm not sure I even
14801           can, on X11)
14802         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
14803           until any message loop processing is done (and the WM_SETCURSOR
14804           replaces the cursor to the proper one)
14805         * XplatUIX11.cs: 
14806           - Fixed override behaviour, we can't set the cursor globally on X11, 
14807             just for our windows.
14808           - Invalidating the System.Drawing X11 display handle when we are
14809             shutting down
14810         * Control.cs: Fix to make csc happy
14811
14812 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
14813
14814         * TextBoxBase.cs: 
14815           - get_Text: Add last line (without trailing newline) to returned
14816             value (Fixes 76212)
14817           - get_TextLength: Count last line in returned length
14818           - ToString: Call Text property instead of duplicating code
14819
14820 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
14821
14822         * ImageList.cs: Dispose ImageAttributes objects.
14823
14824 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
14825
14826         * ImageList.cs: Use attribute constructors with less arguments where
14827           possible.
14828
14829 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
14830
14831         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
14832           Use typeof instead of strings when assembly is referenced. Added
14833           some more comments.
14834
14835 2005-10-21  Jackson Harper  <jackson@ximian.com>
14836
14837         * ListView.cs: Raise a double click event. Also tried to somewhat
14838         fix when the selectedindexchanged event is raised. Its still
14839         broken though.
14840
14841 2005-10-21  Jackson Harper  <jackson@ximian.com>
14842
14843         * TreeView.cs: New method to invalidate the plus minus area of a
14844         node without invalidating the whole node (maybe this can be used
14845         in some more places).
14846         * TreeNodeCollection.cs: When adding to an empty node we need to
14847         invalidate its plus minus area so the little block shows up.
14848         
14849 2005-10-21  Jackson Harper  <jackson@ximian.com>
14850
14851         * TreeView.cs: Make sure that when we invalidate a node the bounds
14852         are big enough to cover the selected box and the focus
14853         rectangle. Use a different colour for the lines connecting nodes
14854         so they show up with all themes.
14855
14856 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
14857
14858         * NativeWindow.cs: Don't call anything that could call into the driver,
14859           we might be on a different thread.
14860
14861 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
14862
14863         * Control.cs(Dispose): Since Dispose might run on a different thread,
14864           make sure that we call methods that could call into the driver via
14865           invoke, to avoid thread issues
14866
14867 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
14868
14869         * XplatUI.cs: Removed finalizer
14870         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
14871           not allowing to be called on the finalizer thread.
14872
14873 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
14874
14875         * ImageList.cs:
14876           - Reverted r51889 and r51891.
14877           - Added ImageListItem class that stores unmodified image items and image
14878             properties required to create list images until handle is created.
14879           - Added AddItem and moved image creation logic to AddItemInternal.
14880           - Added CreateHandle method that creates images based on unmodified items.
14881           - Added DestroyHandle that changes state to store unmodified items.
14882           - Add and AddStrip methods no more create handle.
14883           - ReduceColorDepth has no return value.
14884           - Dispose destroys handle.
14885           - Modified other methods to reflect the above changes.
14886           - Implemented key support.
14887           - Added profile 2.0 members and attributes.
14888           - Added private Reset and ShouldSerialize methods that provide the same
14889             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
14890             them as they are private.
14891           - Added some more comments about implementation details.
14892
14893 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14894
14895         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
14896
14897 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14898
14899         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
14900
14901 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14902
14903         * DataGridDrawingLogic.cs: Fixes column hit calcultation
14904         * DataGridColumnStyle.cs: Remove debug message
14905
14906 2005-10-20  Jackson Harper  <jackson@ximian.com>
14907
14908         * TreeView.cs: We can always get input keys regardless of whether
14909         or not editing is enabled. They are used for navigation.
14910
14911 2005-10-20  Jackson Harper  <jackson@ximian.com>
14912
14913         * TreeNode.cs: Use the viewport rect for determining if a node
14914         needs to be moved for visibility. Don't use Begin/End edit. This
14915         calls a full refresh when its done.
14916         * TreeView.cs: New SetBottom works correctly.  Make the viewport
14917         rect property internal so the treenodes can see it. When clicking
14918         on a node we need to ensure that its visible because it might just
14919         be partly visible when clicked.
14920
14921 2005-10-20  Jackson Harper  <jackson@ximian.com>
14922
14923         * TreeNodeCollection.cs: Remove debug code.
14924
14925 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
14926
14927         * Datagrid.cs: Implements column sorting in Datagrid
14928         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
14929
14930 2005-10-20  Jackson Harper  <jackson@ximian.com>
14931
14932         * TreeNodeCollection.cs: Remove items properly. Update the correct
14933         area after removing them.
14934
14935 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
14936
14937         * Datagrid.cs: Should not call base.OnPaintBackground
14938
14939 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
14940
14941         * XplatUIX11.cs (GetMessage):
14942           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
14943             window instead of client window
14944           - Now properly calculates NC_xBUTTONUP message coordinates
14945           - ScreenToMenu now properly calculates it's coordinates of whole 
14946             window, since menus are in the whole window, not in the client
14947             window
14948           - Added WholeToScreen coordinate translation method
14949
14950 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
14951
14952         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
14953           want to return a message, loop back to the beginning of the function
14954           and grab the next real message to process instead.
14955
14956 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
14957
14958         * Splitter.cs: Properly set limits if no filler control is used
14959
14960 2005-10-19  Jackson Harper  <jackson@ximian.com>
14961
14962         * ColorDialog.cs: Don't show the help button if it is not enabled
14963         instead of disabling it (this is what MS does). Don't create the
14964         panel until the dialog is run, otherwise the vars (such as
14965         ShowHelp) are not set yet.
14966
14967 2005-10-19  Jackson Harper  <jackson@ximian.com>
14968
14969         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
14970         are reduced when adding nodes.
14971         * TreeNode.cs:
14972         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
14973         tree.
14974         
14975 2005-10-19  Jackson Harper  <jackson@ximian.com>
14976
14977         * FolderBrowserDialog.cs: End editing our treeview so the window
14978         actually gets refreshed.
14979
14980 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
14981
14982         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
14983           Obsoleted handling of WM_ERASEBKGND, now always draws our background
14984           inside of WM_PAINT
14985
14986 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14987
14988         * MenuAPI.cs: Returns after Hidding window
14989         * XplatUIX11.cs: Added TODO found while debugging menu issues
14990
14991 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
14992
14993         * XplatUIX11.cs: Do not re-map the whole window when it's size
14994           becomes non-zero unless it's supposed to be actually visible
14995
14996 2005-10-18  Jackson Harper  <jackson@ximian.com>
14997
14998         * TreeView.cs: We don't need to keep a count anymore.
14999         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
15000         use the Grow method.
15001
15002 2005-10-18  Jackson Harper  <jackson@ximian.com>
15003
15004         * TreeNodeCollection.cs: Insert is not supported on arrays, so
15005         implement it manually here.
15006
15007 2005-10-18  Jackson Harper  <jackson@ximian.com>
15008
15009         * ImageList.cs: Dont kill the list when the colour depth is
15010         changed, just change the colour depth of all the images.
15011         - Same goes for setting the image size. Just resize them all
15012         instead of killing the list softly.
15013
15014 2005-10-18  Jackson Harper  <jackson@ximian.com>
15015
15016         * Control.cs: Don't invalidate empty rectangles.
15017
15018 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
15019
15020         * ListViewItem.cs:
15021           - Adds checked item to the Checked/Item lists (where empty before)
15022           - Do not add items to the Selected lists if they are already present
15023         * ListView.cs:
15024           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
15025           - When deleting items make sure that we delete them for the Selected
15026           and Checked list also.
15027
15028 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
15029
15030         * Label.cs: Dispose objects no longer used
15031         * ThemeWin32Classic.cs: Dispose objects no longer used
15032
15033 2005-10-18  Jackson Harper  <jackson@ximian.com>
15034
15035         * TabControl.cs: Don't refresh the whole control when the tabs are
15036         scrolled, we just need to refresh the tab area.
15037
15038 2005-10-17  Jackson Harper  <jackson@ximian.com>
15039
15040         * XplatUIX11.cs: Compress code a little bit. Only calculate the
15041         after handle when we need it.
15042
15043 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
15044
15045         * Control.cs: When the parent size changes, recalculate anchor 
15046           positions. Partial fix for #76462
15047
15048 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
15049
15050         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
15051           drawn. Fixes #76462
15052
15053 2005-10-17  Jackson Harper  <jackson@ximian.com>
15054
15055         * MonthCalendar.cs: Don't create the numeric up down until our
15056         handle is created. Otherwise our handle is created in the
15057         constructor and we don't know if we are a WS_CHILD or WS_POPUP
15058         yet.
15059
15060 2005-10-17  Jackson Harper  <jackson@ximian.com>
15061
15062         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
15063         correctly.
15064
15065 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15066         * TreeNode.cs : small logical fix (was using local var instead of field)
15067         
15068 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
15069
15070         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
15071
15072 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
15073
15074         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
15075
15076 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
15077
15078         * Control.cs: 
15079           - Re-implemented anchoring code. My first version was really broken.
15080             This fixes bug #76033. Unlike the previous implementation we will
15081             no longer have round errors since all numbers are calculated from
15082             scratch every time. Removed various anchor-related obsolete vars.
15083           - InitLayout no longer causes layout event firing and layout to be 
15084             performed
15085
15086 2005-10-16  Jackson Harper  <jackson@ximian.com>
15087
15088         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
15089         which was broken).
15090
15091 2005-10-16  Jackson Harper  <jackson@ximian.com>
15092
15093         * TabControl.cs: Remove debug code.
15094
15095 2005-10-16  Jackson Harper  <jackson@ximian.com>
15096
15097         * XEventQueue.cs: Increase the default queue size (very simple
15098         apps needed to grow the queue).
15099         * Hwnd.cs: No finalizer so we don't need to suppress
15100         finalization. Compute the invalid area manually so a new rectangle
15101         does not newto be created.
15102         * ScrollableControl.cs: Don't set any params (otherwise visibility
15103         isn't set correctly).
15104         * MdiChildContext.cs: New constructor takes the mdi parent so it
15105         doesn't have to be computed and avoids a crash on windows. Draw
15106         the window icon properly, and allow the text to be seen.
15107         * Form.cs: Use new MdiChildContext constructor. Make sure the
15108         child context isn't null in wndproc.
15109         * TabControl.cs: Don't set focus, this is muddling keyboard
15110         behavoir. Expand the tab rows when a window size increase will
15111         allow extra tabs to be seen. Don't allow tabs smaller than the
15112         width of a window to be scrolled out of view.
15113         * TreeNode.cs:
15114         * TreeView.cs: Use measure string to calculate a nodes width, the
15115         width is cached and only updated when the text or the font is
15116         changed. Don't check for expand/collapse clicks on the first level
15117         nodes if root lines are disabled.
15118         
15119 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
15120
15121         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
15122
15123 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
15124
15125         * DataGridBoolColumn.cs: fixes warning
15126
15127 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
15128
15129         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
15130         to match more to match more precisely the MS Net behavior
15131
15132 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
15133
15134         * Hwnd.cs: Added field to track if window is mapped
15135         * XplatUIX11.cs: 
15136           - Unmap windows if they become 0-size, re-map when 
15137             they are >0 again; fixes #76035
15138           - Re-set our error handler after initializing X11Desktop
15139             to override any error handlers Gtk or whatever was called
15140             may have set.
15141
15142 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
15143
15144         * CheckedListBox.cs: Removed unused vars
15145         * ListView.cs: Fixed signatures
15146         * RichTextBox.cs: Removed unused vars
15147         * TextBoxBase.cs: Removed unused vars
15148         * XplatUIWin32.cs: Removed unused vars
15149         * XplatUIX11.cs: Removed unused vars
15150         * XplatUI.cs: Updated version and date to latest published
15151
15152 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
15153
15154         * Cursor.cs: Added private .ctor to work around a bug in
15155           resourceset (Thanks to Geoff Norton for the help on this)
15156         * SplitterEventArgs.cs: Made fields accessible so we don't
15157           waste boatloads of objects and can reuse the same one
15158           in Splitter
15159         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
15160           any captions and borders when generating screen coordinates
15161         * Splitter.cs: Reimplemented control, now fully complete, uses
15162           rubberband drawing, supports and obeys all properties, has
15163           proper cursors
15164
15165 2005-10-13  Miguel de Icaza  <miguel@novell.com>
15166
15167         * Form.cs (Form): Setup default values for autoscale and
15168         autoscale_base_size;  Make these instance variables, not static
15169         variables. 
15170
15171         (OnLoad): on the first load, adjust the size of the form.
15172
15173 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
15174
15175         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
15176           width argument to DrawReversibleRectangle()
15177         * XplatUIWin32.cs, XplatUIX11.cs: 
15178           - Implemented width for DrawReversibleRectangle()
15179           - Added logic to DrawReversibleRectangle that recognizes a zero
15180             width or height and only draws a line in that situation
15181         
15182 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
15183
15184         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
15185         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
15186         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
15187           method (it uses our FosterParent window to get a graphics context)
15188
15189 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
15190
15191         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
15192           and SetWindowBackground methods
15193         * Control.cs:
15194           - Setting proper ControlStyles
15195           - We no longer call XplatUI.SetWindowBackground and XplatUI.
15196             EraseWindowBackground, instead we draw the window background
15197             ourselves in PaintControlBackground. This behaviour is
15198             required to match MS, where, when OnPaintBackground is not
15199             called, the background is not drawn.
15200           - Removed unneeded Refresh() in set_Text
15201         * Hwnd.cs: Dropped the ErasePending support. No longer needed
15202         * XplatUIX11.cs:
15203           - Created DeriveStyles method to translate from CreateParams to
15204             FormBorderStyle and TitleStyle, also handles BorderStyle (which
15205             matches FormBorderStyle enum values)
15206           - Consolidated SetHwndStyles and CalculateWindowRect border/title
15207             style calculations into single DeriveStyles method
15208           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
15209             from redrawing the whole window on any resize or expose.
15210           - Fixed CreateWindow usage of SetWindowValuemask. Before not
15211             all styles were applied to our whole/client window appropriately
15212           - Removed EraseWindowBackground() and SetWindowBackground() methods
15213           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
15214             no longer clear/redraw the background through X
15215           - Removed handling of erase_pending bit, we have no use for it (or
15216             so it seems)
15217         * XplatUIOSX.cs:
15218           - Removed generation and handling of WM_ERASEBKGND message
15219           - Removed EraseWindowBackground() and SetWindowBackground() methods
15220           - Removed handling of hwnd.ErasePending flag
15221         * XplatUIWin32.cs:
15222           - Removed EraseWindowBackground() and SetWindowBackground() methods
15223           - We no longer call EraseWindowBackground on PaintEventStart, we 
15224             ignore the fErase flag, erasing is handled in Control in the
15225             background handler
15226         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
15227           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
15228           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
15229           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
15230           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
15231           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
15232           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
15233
15234 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
15235
15236         * PropertyGrids.cs: Get sub properties
15237         * PropertyGridView.cs: Fix drawing code
15238
15239 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
15240
15241         * ListBox.cs: Fixes 76383
15242
15243 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
15244
15245         * DataGridTextBoxColumn.cs: Sets location and size before attachment
15246         * ThemeWin32Classic.cs: Fixes border drawing and calculations
15247         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
15248
15249
15250 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
15251
15252         * ComboBox.cs: Fixes border drawing
15253
15254 2005-10-10  Miguel de Icaza  <miguel@novell.com>
15255
15256         * MimeIcon.cs: Ignore errors if the file can not be read.
15257
15258 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
15259
15260         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
15261          - Fixed border calculations
15262          - Fixed horizontal scrolling in single column listboxes
15263          - Fixed drawing issues
15264
15265 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
15266
15267         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
15268           FormBorderStyle enum
15269         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
15270           code to determine FormBorderStyles from CreateParams
15271         * Form.cs:
15272           - Fixed bug where we'd set the wrong window styles if we were
15273             not creating an MDI window
15274           - Added call to XplatUI.SetBorderStyle when form borders are set
15275         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
15276         * Hwnd.cs:
15277           - Removed obsolete edge style
15278           - Switched from BorderStyle to FormBorderStyle
15279         
15280 2005-10-10  Jackson Harper  <jackson@ximian.com>
15281
15282         * Form.cs: Use the property to get the window handle instead of
15283         accessing it directly. Prevents a null reference exception.
15284
15285 2005-10-10  Jackson Harper  <jackson@ximian.com>
15286
15287         * TreeView.cs: Don't adjust the rect given to DrawString now that
15288         our libgdiplus draws correctly.
15289
15290 2005-10-08  Jackson Harper  <jackson@ximian.com>
15291
15292         * TreeView.cs: Don't try to find the clicked on node if there are
15293         no nodes in the tree.
15294
15295 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
15296
15297         * RichTextBox.cs:
15298
15299           restore
15300
15301 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
15302
15303         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
15304           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
15305           ErrorProvider.cs:
15306           Use ResPool for brushes and dispose System.Drawing objects that
15307           are not used anymore.
15308
15309 2005-10-07  Jackson Harper  <jackson@ximian.com>
15310
15311         * MdiChildContext.cs: Use the new borders instead of drawing them
15312         ourselves.
15313
15314 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
15315
15316         * Calling UpdateBounds after changing the window's BorderStyle 
15317         since the style can change the ClientSize
15318
15319 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
15320
15321         * Control.cs: Made PaintControlBackground virtual
15322         * Panel.cs: Overriding PaintControlBackground instead of using paint
15323           event; paint event method was interfering with 'real' users of the
15324           event.
15325
15326 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
15327
15328         * ThemeWin32Classic.cs: remove border drawing since it is handled
15329         by the base control class now and was causing double border drawing.
15330
15331 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
15332
15333         * Panel.cs: Redraw our background on paint. Not a pretty solution,
15334           but it does seem to match MS behaviour. This fixes bug #75324
15335
15336 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
15337
15338         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
15339           somewhat hackish looking
15340
15341 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
15342
15343         * TextBoxBase.cs:
15344           - We now accept Enter even if AcceptEnter is false, if the containing
15345             form does not have an AcceptButton configured (fixes bug #76355)
15346           - Calculations are now fixed to no longer use Width/Height, but
15347             ClientSize.Width/Height, since we now support borders (this was
15348             a result of fixing borders and therefore bug #76166)
15349           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
15350             true (fixes bug #76354)
15351         
15352 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
15353
15354         * Control.cs: 
15355           - Defaulting BorderStyle and setting it in XplatUI when our window 
15356             is created
15357           - Added enum check to InternalBorderStyle setter
15358         * XplatUIX11.cs: 
15359           - Added drawing of window borders
15360           - Now properly calculates WM decorations offset for toplevel 
15361             windows (fixes bug #74763)
15362         * XplatUIWin32.cs: 
15363           - Implemented BorderStyles for windows (we're letting win32 draw 
15364             the border for us)
15365           - Fixed the signature for SetWindowLong
15366         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
15367           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
15368           setting borders
15369         * UpDownBase.cs: Remove drawing of borders, this is handled by
15370           the driver, outside the client area
15371         * ListView.cs: Removed bogus border calculations. The control should
15372           be oblivious to borders, since those are not part of the client
15373           area. 
15374         * X11DesktopColors.cs: Commented out (currently) unneeded variables
15375         * ThemeWin32Classic.cs: Removed border calculations from ListView 
15376           drawing code
15377
15378 2005-10-06  Jackson Harper  <jackson@ximian.com>
15379
15380         * MdiChildContext.cs: Clear out the old virtual position remove
15381         all the unneeded calls to CreateGraphics.
15382
15383 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
15384
15385         * TextControl.cs: Use proper color for highlighted text; fixes #76350
15386
15387 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
15388
15389         * Form.cs: 
15390           - Added loading and setting of our new default icon
15391           - Only set icon if window is already created
15392
15393 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
15394
15395         * Label.cs:
15396           - Do not explicitly set the foreground and background colors, to
15397             allow inheriting from parents (fixes #76302)
15398           - Use Control's InternalBorderStyle property to deal with borders
15399
15400 2005-10-06  Jackson Harper  <jackson@ximian.com>
15401
15402         * MdiChildContext.cs: Use the new xplatui function to draw a
15403         reversible rect.
15404
15405 2005-10-06  Jackson Harper  <jackson@ximian.com>
15406
15407         * Form.cs: Add the parent before creating the child context cause
15408         we need the parent when setting up the child.
15409
15410 2005-10-06  Jackson Harper  <jackson@ximian.com>
15411
15412         * FolderBrowserDialog.cs: redo the tree population code so a
15413         second thread isn't used. Should be a lot faster and more stable
15414         now.
15415
15416 2005-10-05  Jackson Harper  <jackson@ximian.com>
15417
15418         * TreeView.cs: There are no expand/collapse boxes if the node has
15419         no children.
15420
15421 2005-10-05  Jackson Harper  <jackson@ximian.com>
15422
15423         * X11DesktopColors.cs: Get menu colours for the gtk theme.
15424
15425 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
15426
15427         * FileDialog.cs: Fix InitialDirectory
15428
15429 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
15430
15431         * ComboBox.cs:
15432                 - Fixes changing between styles
15433                 - Fixes simple mode
15434                 - Fixes last item crashing when navigating with keyboard
15435
15436 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
15437
15438         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
15439
15440 2005-10-05  Jackson Harper  <jackson@ximian.com>
15441
15442         * TreeView.cs: If updating the root node do a full refresh.
15443         * TreeNode.cs: The root node should be expanded by default. Also
15444         added a utility prop to tell if we are the root node.
15445         * TreeNodeCollection.cs: Only refresh if the node we are being
15446         added to is expanded. Also added a comment on a potential
15447         optimization.
15448         
15449 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
15450
15451         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
15452           in dispose method. Fixes #76330
15453
15454 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
15455
15456         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
15457
15458                 - Implements vertical and horizontal scrolling using XplatUI
15459                 - Fixes keyboard navagation
15460                 - Fixes EnsureVisible
15461                 - Drawing fixes
15462                 - Handles and draws focus properly
15463
15464
15465 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
15466
15467         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
15468           Create handle. NET_2_0: Destroy handle when value is null.
15469
15470 2005-10-03  Jackson Harper  <jackson@ximian.com>
15471
15472         * ScrollBar.cs: My last scrollbar patch was broken. This is a
15473         revert and a new patch to prevent the thumb from refreshing so
15474         much.
15475
15476 2005-10-02  Jackson Harper  <jackson@ximian.com>
15477
15478         * ScrollBar.cs: Don't update position if it hasn't actually
15479         changed. This occurs when you hold down the increment/decrement
15480         buttons and the thumb gets to the max/min.
15481
15482 2005-10-01  Jackson Harper  <jackson@ximian.com>
15483
15484         * Form.cs:
15485         * MdiChildContext.cs:
15486         * MdiClient.cs: Implement ActiveMdiChild in Form.
15487
15488 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
15489
15490         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
15491
15492 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
15493
15494         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
15495           be found
15496
15497 2005-09-30  Jackson Harper  <jackson@ximian.com>
15498
15499         * ListBox.cs: Don't do a full refresh unless some data has
15500         actually changed.
15501
15502 2005-09-30  Jackson Harper  <jackson@ximian.com>
15503
15504         * TreeView.cs: Make sure that the checkboxes size is factored in
15505         even when not visible.
15506
15507 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
15508
15509         * FileDialog.cs: Fix Jordi's build break
15510
15511 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
15512
15513         * FileDialog.cs: 
15514                 - Use standard the Windows colours for the combobox as espected
15515                 - Dispose objects that use resouces when no longer need them
15516
15517 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
15518
15519         * X11DesktopColors.cs: Initial incomplete implementation
15520         * XplatUIX11.cs: Added call to initialize X11DesktopColors
15521
15522 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
15523
15524         * Theme.cs: 
15525           - Switched Theme color names to match the names defined in 
15526             System.Drawing.KnownColors. Life's hard enough, no need to make 
15527             it harder.
15528           - Added setters to all theme color properties so themes can set
15529             their color schemes. The setters also propagate the color changes
15530             to System.Drawing.KnownColors via reflection
15531         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
15532           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
15533           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
15534           use the new, more logical theme color names
15535         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
15536           post-NT colors
15537         * ThemeWin32Classic.cs:
15538           - Removed code to set the old classic Windows colors. Instead it
15539             now relies on the colors returned by System.Drawing.KnownColors
15540             which will be either modern static colors (Unix) or colors
15541             read from the user's configuration (Win32)
15542           - Updated to use the new, more logical theme color names
15543           - Switched DataGrid drawing code to use only Theme colors instead of
15544             a mix of System.Drawing.KnownColors and Theme colors
15545           - DrawFrameControl(): Removed code that fills the button area, the
15546             fill would overwrite any previous fill done by a control. This
15547             fixes bug #75338 
15548           - Added DrawReversibleRectangle() stub
15549         * ScrollableControl.cs: Set visible state to false when scrollbars
15550           are removed (pdn fix)
15551         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
15552           DrawReversibleRectangle() method to allow drawing primitive 
15553           'rubber bands'
15554         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
15555
15556 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
15557
15558         * ImageList.cs: Add(Icon): Create handle.
15559
15560 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
15561
15562         * ListView.cs:
15563         * ThemeWin32Classic.cs:
15564                 - Fixes detail mode
15565                 - Sets clippings
15566                 - Issues with drawing
15567
15568 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
15569
15570         * ImageList.cs: Moved RecreateHandle back to ImageList as event
15571           source has to be the ImageList.
15572
15573 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
15574
15575         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
15576
15577 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
15578
15579         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
15580
15581 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
15582
15583         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
15584
15585 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
15586         * GridItem.cs: Fixed TODOs
15587         * GridItemCollection.cs: Added ICollection interface
15588
15589 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
15590
15591         * ImageList.cs: Resize icons when needed.
15592
15593 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
15594
15595         * ListViewItem.cs
15596                 - Fixes GetBounds and returns on screen rects
15597         * ListView.cs:
15598                 - Fixes vertical and horzintal scrolling of items
15599         * ThemeWin32Classic.cs:
15600                 - Fixes drawing
15601                 
15602 2005-09-29  Raja R Harinath  <harinath@gmail.com>
15603
15604         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
15605
15606 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
15607
15608         * ImageList.cs: Added comments about handle creation. Moved Handle,
15609           HandleCreated and OnRecreateHandle implementations to ImageCollection.
15610           Handle is created in Add methods.
15611
15612 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
15613          
15614         * DataGridDrawingLogic.cs: 
15615                 - Takes rows into account on Colum calculations
15616                 - Returns the column when clickig
15617         * DataGrid.cs:
15618                 - Fixes default HitTestInfo values
15619                 - Fixes HitTestInfo.ToString
15620                 - Fixes ResetBackColor          
15621         
15622 2005-09-28  Jackson Harper  <jackson@ximian.com>
15623
15624         * MdiChildContext.cs: Obey rules for fixed sized windows (no
15625         sizing or cursor changes). Also added some temp code to draw the
15626         titlebars text (Makes dev a little easier).
15627
15628 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
15629
15630         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
15631
15632 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
15633          
15634         * ListBox.cs: Fixes bug 76253
15635
15636 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
15637
15638         * ImageList.cs: Added comments about the current implementation. Added
15639           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
15640           Format32bppArgb to preserve transparency and can use Graphics.FromImage
15641           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
15642           with Bitmap.LockBits for better performance. Revised the whole file to
15643           match MS.NET behaviour and provide better performance. Non-public
15644           interface members are calling public members even when they throw
15645           NotSupportedException for better maintainability. Moved ColorDepth,
15646           ImageSize, ImageStream and TransparentColor implementations to
15647           ImageCollection for better performance as these properties are not used
15648           by ImageList.
15649         * ImageListStreamer.cs: Added a new internal constructor that takes an
15650           ImageList.ImageCollection and serializes Images based on
15651           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
15652           match ImageList property name.
15653
15654 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
15655
15656         * ListBox.cs: Fixes IndexFromPoint for last item
15657
15658 2005-09-27  Jackson Harper  <jackson@ximian.com>
15659
15660         * Form.cs: Set the position of new mdi children correctly.
15661
15662 2005-09-27  Jackson Harper  <jackson@ximian.com>
15663
15664         * MdiClient.cs: New mdi children need to be added to the back of
15665         the controls collection so the zorder is set correctly. Also add a
15666         count of all the child windows that have been created.
15667
15668 2005-09-27  Jackson Harper  <jackson@ximian.com>
15669
15670         * Form.cs (CreateParams): Setup MDI forms correctly.
15671
15672 2005-09-27  Jackson Harper  <jackson@ximian.com>
15673
15674         * MdiChildContext.cs:
15675         * MonthCalendar.cs:
15676         * UpDownBase.cs:
15677         * ListBox.cs:
15678         * ListView.cs:
15679         * TextBoxBase.cs:
15680         * TreeView.cs:
15681         * ScrollableControl.cs:
15682         * ComboBox.cs: Add implicit controls using the new implict control
15683         functionality in ControlCollection. Also try to block multiple
15684         control add in a suspend/resume layout to save some cycles.
15685         
15686 2005-09-27  Jackson Harper  <jackson@ximian.com>
15687
15688         * Control.cs: Add functionality to the controls collection to add
15689         'implicit controls' these are controls that are created by the
15690         containing control but should not be exposed to the user. Such as
15691         scrollbars in the treeview.
15692         * Form.cs: The list var of the ControlsCollection is no longer
15693         available because of the potential of implicit controls getting
15694         ignored by someone accessing the list directly.
15695
15696 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
15697
15698         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
15699           loose it's parent. (Fixed bug introduced in r49103 when we added
15700           setting the child parent to null on Remove)
15701
15702 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
15703
15704         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
15705         * Splitter.cs: Added missing attributes for BorderStyle property.
15706         * TextBoxBase.cs: Marked Calculate* methods internal.
15707         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
15708         MS.NET.
15709
15710 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
15711          
15712         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
15713
15714 2005-09-25  Jackson Harper  <jackson@ximian.com>
15715
15716         * TreeView.cs: Update the node bounds correctly regardless of
15717         whether the node is visible.
15718
15719 2005-09-25  Jackson Harper  <jackson@ximian.com>
15720
15721         * ImageList.cs: Don't dispose the image after it is added to the
15722         image list. Only reformat images that need to be resized.
15723
15724 2005-09-25  Jackson Harper  <jackson@ximian.com>
15725
15726         * ImageList.cs: Don't set the format when changing the image.
15727
15728 2005-09-25  Jackson Harper  <jackson@ximian.com>
15729
15730         * TreeView.cs: We can't just assume the node has a font. Use the
15731         treeviews font if no node font is available.
15732
15733 2005-09-25  Jackson Harper  <jackson@ximian.com>
15734
15735         * TreeView.cs: Allow the scrollbars to be reset with negative
15736         values.
15737         - Don't add scrollbars to negative sized windows.
15738
15739 2005-09-23  Jackson Harper  <jackson@ximian.com>
15740
15741         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
15742         old Mono.Posix. Also remove some stray code that shouldn't have
15743         been committed.
15744
15745 2005-09-23  Jackson Harper  <jackson@ximian.com>
15746
15747         * TreeView.cs: Attempt at proper sizing of the horizontal
15748         scrollbar. Also don't resize the scrollbars unless they are
15749         visible.
15750
15751 2005-09-23  Jackson Harper  <jackson@ximian.com>
15752
15753         * TreeView.cs: We don't need to expand the invalid area when the
15754         selection changes, as this is all drawn in the node's bounding
15755         box. The area needs to be expanded (previous typo was contracting
15756         it) when the focus rect moves.
15757
15758 2005-09-23  Jackson Harper  <jackson@ximian.com>
15759
15760         * TreeView.cs: Display the selection box under the correct
15761         circumstances. We were rendering white text with no selection box
15762         before.
15763
15764 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
15765
15766         * TextControl.cs(Split): Now updates selection start/end if it points 
15767           into a line that's being split. Fixes a FIXME and bug #75258
15768
15769 2005-09-23  Jackson Harper  <jackson@ximian.com>
15770
15771         * Binding.cs:
15772         * ListControl.cs: Don't use the path when retrieving binding
15773         managers from the binding context. My bat sense tells me that the
15774         path is only used on insertion.
15775
15776 2005-09-22  Jackson Harper  <jackson@ximian.com>
15777
15778         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
15779
15780 2005-09-22  Jackson Harper  <jackson@ximian.com>
15781
15782         * Splitter.cs: There are special cursors used for splitting.
15783         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
15784
15785 2005-09-22  Jackson Harper  <jackson@ximian.com>
15786
15787         * Splitter.cs: Change the cursor appropriately when the splitter
15788         is moused over, so the user actually knows there is a splitter
15789         there.
15790
15791 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
15792
15793        * Label.cs : Fix ToString method to give same output as MS.NET
15794
15795 2005-09-22  Jackson Harper  <jackson@ximian.com>
15796
15797         * TreeView.cs: Create the scrollbars when the handle is created
15798         and add them right away, just make them invisble. Also account for
15799         the window being shrunk vertically to the point that the vert
15800         scrollbar needs to be added.
15801         - Remove some 0.5 adjustments to get around anti aliasing issues.
15802         
15803 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
15804          
15805         * MainMenu.cs: Fixes default value
15806         * MenuItem.cs: Fixes default value
15807
15808 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
15809
15810         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
15811
15812 2005-09-21  Jackson Harper  <jackson@ximian.com>
15813
15814         * Control.cs: Don't try to set the border style on the window if
15815         it hasn't been created. When the window is created the border
15816         style will be used.
15817
15818 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
15819
15820         * Control.cs (Update): Don't call XplatUI if we don't have a
15821           window handle yet
15822
15823 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
15824
15825         * ContainerControl.cs: Instead of throwing an exception, print
15826           a one-time warning about Validate not being implemented
15827         * XplatUIWin32.cs: Removed debug output
15828
15829 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
15830
15831         * Control.cs: Only set XplatUI background if we expect the windowing
15832           system to handle the background. This stops controls that draw their
15833           own background from flickering
15834
15835         * XplatUIX11.cs: Support custom visuals and colormaps for window 
15836           creation. This allows, amongst other things, using MWF X11 windows 
15837           with OpenGL.
15838
15839 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
15840
15841         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
15842           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
15843           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
15844           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
15845           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
15846           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
15847           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
15848           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
15849           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
15850           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
15851           GridColumnStylesCollection.cs, 
15852           IDataGridColumnStyleEditingNotificationService.cs,
15853           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
15854           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
15855           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
15856           TreeNodeCollection.cs, AmbientProperties.cs, 
15857           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15858           DataObject.cs, ErrorProvider.cs, Splitter.cs,
15859           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
15860           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
15861           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
15862           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
15863           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
15864           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
15865           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
15866           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
15867           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
15868           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
15869           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
15870           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
15871           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
15872           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
15873           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
15874           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
15875           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
15876           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
15877           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
15878           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
15879           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
15880           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
15881           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
15882           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
15883           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
15884           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
15885           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
15886           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
15887           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
15888           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
15889           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
15890           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
15891           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
15892           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
15893           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
15894
15895 2005-09-21  Jackson Harper  <jackson@ximian.com>
15896
15897         * TreeNode.cs: Call Before/After Expand not Collapse when
15898         expanding.
15899
15900 2005-09-20  Jackson Harper  <jackson@ximian.com>
15901         
15902         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
15903
15904 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
15905          
15906         * ListViewItem.cs:
15907                 - Fixes bug 76120
15908                 - Fixes proper storing of subitems
15909                 - Fixes not updated items
15910
15911 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
15912
15913         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
15914           things if our window handle isn't created yet. Also disabled 
15915           debug for TextBoxBase
15916
15917 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
15918
15919         * MenuAPI.cs: Remove filtering of events to allow menu usage
15920
15921 2005-09-20  Miguel de Icaza  <miguel@novell.com>
15922
15923         * Cursor.cs: Allow null to be passed to Cursor.Current.
15924
15925 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
15926
15927         * ThemeWin32Classic.cs:
15928           - Change some private methods/fields to protected virtual so that 
15929             they can be accessed and overriden in derived classes
15930           - First refactoring of some methods. Derived themes now don't 
15931             need to duplicate the complete code from ThemeWin32Classic
15932         * ThemeNice.cs:
15933           - Added nice StatusBar
15934           - Derive from ThemeWin32Classic and not Theme
15935           - Removed duplicate ThemeWin32Classic code
15936
15937 2005-09-20  Miguel de Icaza  <miguel@novell.com>
15938
15939         * Control.cs (ControlCollection.Add): If the value null is passed
15940         the control is ignored. 
15941
15942         Optimize this loop.
15943
15944 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
15945
15946         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
15947           PostQuitMessage state.
15948         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
15949
15950 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
15951
15952         * Application.cs: Our constructor will never get called, move 
15953           initialization to fields; fixes bug #75933
15954
15955 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
15956
15957         * FileDialog.cs :
15958                 - Allow files to be selected properly using file name
15959                 combo box.
15960                 - Add ability to change diretory (absolute / relative)
15961                 using file name combo box.
15962
15963 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
15964          
15965         * ListBox.cs: 
15966                 - Fixes Multicolumn listboxes item wrong calculations
15967                 - Allows to click when only one item is in the listbox
15968                 - Fixes crash when no items using keyboard navigation
15969
15970 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
15971
15972         * ComboBox.cs: Reverted almost everything from the latest patch which
15973           broke ComboBox
15974
15975 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
15976         
15977         * ToolTip.cs:
15978                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
15979         * ComboBox.cs:
15980                 - When DropDownStyle is Simple, it does not show scrollbar 
15981                 to the last item of the list.
15982                 - When DropDownStyle is Simple, it crashed when the list was 
15983                 scrolled down with the down cursor key.
15984                 - Fixed a bug that when DropDownStyle is DropDownList, the 
15985                 selected item was not shown.
15986                 - The position of the selected item was not preserved when 
15987                 the next dropdown happened.
15988         * ThemeWin32Classic.cs:
15989                 - Items were wrapped at the right end.
15990         * CheckedListBox.cs:
15991                 - Fixed Add method
15992         * ListBox.cs:
15993                 - Items should be fully shown.
15994                 - When resizing and vertical scrollbar disappeared, the item 
15995                 of index 0 should be on the top of the list.
15996                 - GetItemRectangle should consider the size of ver. scrollbar
15997         * StatusBar.cs:
15998                 - SizingGrip area should not be allocated when it is not 
15999                 displayed.
16000                 - Now it reflects MinWidth of the containing panel and 
16001                 fixed a crash that happens when its width becomes so small.
16002
16003 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
16004
16005         * CheckedListBox.cs: Fixes bug 76028
16006         * ListBox.cs: Fixes bug 76028
16007
16008 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
16009
16010         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
16011         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
16012
16013 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
16014
16015         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
16016
16017 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16018
16019         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
16020
16021 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16022
16023         * IRootGridEntry.cs: Added
16024         * PropertyGridCommands.cs: Added
16025         * PropertiesTab.cs: Added missing methods and property
16026         * PropertyGridView.cs: Made class internal
16027         * PropertyGridTextBox.cs: Made class internal
16028
16029 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16030
16031         * MimeIcon.cs: Try to check some other environment variables
16032           if "DESKTOP_SESSION" returns "default"
16033
16034 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16035
16036         * ThemeNice.cs: Corrected background colors (e.g. menus)
16037         * ColorDialog.cs: Use correct background colors for controls
16038
16039 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16040
16041         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
16042
16043 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
16044
16045         * RichTextBox.cs: Added initial implementation
16046         * lang.cs: Removed. Was accidentally checked in long time ago
16047         * TODO: Removed. Contents were obsolete
16048
16049 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
16050                                                                                 
16051         * PropertiesTab.cs : Added
16052
16053 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
16054                                                                                 
16055         * PropertyGrid.cs : Update
16056         * PropertyGridView.cs : Update
16057         * System.Windows.Forms.resx : Added images and strings
16058
16059 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
16060
16061         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
16062  
16063 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
16064
16065         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
16066           a busy loop right after the Ungrab the X11 display is otherwise 
16067           blocked
16068
16069 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
16070
16071         * ThemeWin32Classic.cs: Optimise the use of clipping
16072
16073 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
16074
16075         * DataGrid.cs: fixes recursion bug
16076
16077 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
16078
16079         * ThemeNice.cs: 
16080           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
16081           - Cleanup
16082
16083 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
16084
16085         * ThemeNice.cs: Draw nice ProgressBars
16086
16087 2005-09-01  Miguel de Icaza  <miguel@novell.com>
16088
16089         * VScrollBar.cs: Another buglet found by Aaron's tool. 
16090
16091         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
16092         bug finder.
16093
16094 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
16095
16096         * ThemeNice.cs:
16097           - Added nicer menu drawing
16098           - Updated DrawTab
16099           - some refactoring
16100
16101 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
16102
16103         * CreateParams.cs (ToString): Made output match MS
16104         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
16105             handle is already created (to avoid forcing window creation)
16106         * XplatUIX11.cs: Set window text to caption after creating window,
16107           in case Text was set before window was created
16108         * Form.cs: Use this.Text instead of a static string as caption
16109
16110 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
16111
16112         * NotifyIcon.cs: Don't set the window to visible; this screws
16113           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
16114           OnPaint without a bitmap)
16115         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
16116           happen very often anyway; we could add the check to the WM_PAINT 
16117           event generation code
16118
16119 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
16120
16121         * NotifyIcon.cs: Fill the icon area with a background color, to 
16122           avoid 'residue' when transparent icons are drawn
16123         * XplatUIX11.cs:
16124           - Handle whole_window == client_window when destroying windows
16125           - SystrayAdd(): Set client_window to whole_window value to
16126             get mouse and other events passed to NotifyIcon
16127
16128 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
16129
16130         * Form.cs: Set proper default for Opacity property
16131         * NotifyIcon.cs:
16132           - ShowSystray(): Don't bother creating telling the OS
16133             about the systray item if no icon is provided
16134           - Now handles WM_NCPAINT message to deal with whole/client window
16135             split
16136           - Create window as visible to not get caught by Expose optimization
16137         * Hwnd.cs: Removed debug message
16138         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
16139           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
16140             PaintEventStart/End to use new client argument
16141         * TextBoxBase.cs:
16142           - Commented out debug messages
16143           - Switched PaintEventStart/End to use new client argument
16144         * XplatUI.cs: Added client window bool to PaintEventStart()/
16145           PaintEventEnd() calls, to support drawing in non-client areas
16146         * XplatUIDriver.cs: 
16147           - Added client window bool to PaintEventStart()/PaintEventEnd() 
16148             calls, to support drawing in non-client areas
16149           - Added conditional compile to allow using MWF BeginInvoke 
16150             on MS runtime
16151         * XplatUIX11.cs:
16152           - Added some conditional debug output
16153           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
16154             whole/client window split
16155           - Implemented handling of client argument to PaintEventStart()/End()
16156         * Control.cs:
16157           - Throw exception if BeginInvoke() is called and the window handle
16158             or one of the window's parent handles is not created
16159           - Added conditional compile to allow using MWF BeginInvoke on
16160             MS runtime
16161           - get_Parent(): Only sets parent if handle is created. This avoids
16162             forcing window handle creation when parent is set.
16163           - Now fires Layout and Parent changed events in proper order
16164           - Switched to use Handle instead of window.Handle for Z-Order setting,
16165             the get_Parent() patch above causes us to possibly get null for 'window'
16166           - Implemented handling of client argument to PaintEventStart()/End()
16167           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
16168             default handling)
16169           - Now sends a Refresh() to all child windows when Refresh() is called
16170
16171 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
16172
16173         * Form.cs: Added (non-functional) Opacity property
16174         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
16175
16176 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
16177         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
16178           use export MONO_THEME=nice to activate it.
16179           Currently supported controls:
16180           - Button
16181           - ComboBox
16182           - ScrollBar
16183           - TabControl (TabAlignment.Top only, other will follow)
16184         * ThemeEngine.cs: Add theme nice
16185         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
16186           if enabled
16187
16188 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
16189
16190         * Splitter.cs: Resize docked control and its neighbor.
16191
16192 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
16193         -- Making Windows with Menus layout correctly --
16194         * Form.cs : The first leg of the fix
16195                 Menu setter - adjust Client Size as needed to make space for the menu
16196                 SetClientSizeCore - doesn't call base version to be able to pass the 
16197                         menu handle to XplatUI.CalculateWindowRect
16198         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
16199         * XplatUIX11.cs: The critical second leg of the fix
16200                 GetWindowPos needs to use a recalculated client_rect
16201                 so that resizing the window doesn't break layout of child controls. 
16202                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
16203                 Lots of \t\n killed
16204
16205 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
16206
16207         * Label.cs: Now properly recalculates width and height on Font and Text
16208           changes if AutoSize is set
16209
16210 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
16211         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
16212
16213 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
16214
16215         * ImageList.cs: Makes ToString method compatible with MS
16216
16217 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
16218
16219         * MenuAPI.cs: fixes bug 75716
16220
16221 2005-08-11 Umadevi S <sumadevi@novell.com>
16222         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
16223
16224 2005-08-11 Umadevi S <sumadevi@novell.com>
16225         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
16226
16227 2005-08-10  Umadevi S <sumadevi@novell.com>
16228         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
16229
16230 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
16231
16232         * Menu.cs: fixes bug 75700
16233         * MenuAPI.cs: fixes navigation issues
16234
16235 2005-08-09  Umadevi S <sumadevi@novell.com>
16236         * CheckedListBox.cs - simple fix for GetItemChecked.
16237
16238 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
16239
16240         * ComboBox.cs: Serveral fixes
16241         * ListBox.cs: Serveral fixes
16242
16243 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
16244
16245         * ComboBox.cs: Fixes FindString methods and GetItemHeight
16246         * ListBox.cs: Fixes FindString methods
16247
16248 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
16249
16250         * DataGrid.cs: fixes bugs exposed by new tests
16251
16252 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
16253
16254         * Mime.cs: Compile Mono assembly references only if compiling
16255           with Mono (Allows to build with VS.Net again)
16256
16257 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
16258
16259         * Control.cs (PaintControlBackground): Draw background image
16260         corrrectly.
16261         (CheckForIllegalCrossThreadCalls): Stubbed.
16262         
16263         * Form.cs (OnCreateControl): Center when should be centered.
16264         
16265         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
16266
16267 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
16268
16269         * Binding.cs: Binding to properties should be case unsensitive
16270
16271 2005-07-18 vlindos@nucleusys.com
16272
16273         * DataGrid.cs: fixes setmember order
16274
16275 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
16276
16277         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
16278         * FileDialog.cs: FileDialog is now resizable and uses the new
16279           MimeIconEngine
16280
16281 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
16282
16283         * DataGridTextBoxColumn.cs: default value
16284         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
16285         * GridTableStylesCollection.cs: fixes checking MappingName
16286         * DataGridDrawingLogic.cs: fixes drawing logic issues
16287         * DataSourceHelper.cs: rewritten to make compatible with more data sources
16288         * DataGrid.cs: fixes    
16289
16290 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
16291
16292         * MimeGenerated.cs: Use case sensitive comparer for
16293           NameValueCollections
16294
16295 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
16296
16297         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
16298         * ThemeWin32Classic.cs: bug fixes, code refactoring
16299         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
16300         * DataGrid.cs: bug fixes, code refactoring
16301         * DataGridTextBox.cs: bug fixes, code refactoring
16302         * DataGridColumnStyle.cs:  bug fixes, code refactoring
16303         * Theme.cs:  bug fixes, code refactoring
16304
16305 2005-07-01  Peter Bartok  <pbartok@novell.com> 
16306
16307         * TextControl.cs: Quick fix for the reported crash on ColorDialog
16308           and other text box usage
16309
16310 2005-07-01  Jackson Harper  <jackson@ximian.com>
16311
16312         * TabControl.cs: Make sure the bottom of the tab covers the pages
16313         border.
16314
16315 2005-06-30  Peter Bartok  <pbartok@novell.com> 
16316
16317         * Form.cs (ShowDialog): Assign owner of the dialog
16318         * TextBoxBase.cs: Always refresh caret size when deleting, caret
16319           might have been moved to a tag with different height
16320
16321 2005-06-30  Jackson Harper  <jackson@ximian.com>
16322
16323         * Form.cs: Don't create an infinite loop when setting focus
16324         * MenuItem.cs: Don't dirty the parents if we don't have any
16325
16326 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
16327
16328         * LibSupport.cs: Rename
16329
16330 2005-06-29  Peter Bartok  <pbartok@novell.com>
16331
16332         * TextBoxBase.cs: Re-align caret after deleting a character
16333         * TextControl.cs:
16334           - DeleteChars(): Ensure that tag covers the provided position
16335           - StreamLine(): Drop reference for dropped tag
16336
16337 2005-06-29  Peter Bartok  <pbartok@novell.com> 
16338
16339         * TextControl.cs: 
16340           - Selections now work properly, anchoring at the initial location
16341             and properly extending in either direction (SetSelectionToCaret(),
16342             SetSelectionStart() and SetSelectionEnd())
16343           - No longer redraws the whole control on selection change, now
16344             calculates delta between previous and new selection and only
16345             invalidates/redraws that area
16346           - Fixed FindPos() math off-by-one errors
16347           - Changed DeleteChars() to verify the provided tag covers the
16348             provided position, selections may have a tag that doesn't cover
16349             the position if the selection is at a tag border
16350           - Fixed off-by-one errors in DeleteChars()
16351           - Added missing streamlining check in DeleteChars() to remove
16352             zero-length tags
16353           - Implemented Invalidate() method, now properly calculates exposures
16354             between two given lines/positions
16355           - Implemented SetSelection()
16356           - Obsoleted and removed FixupSelection()
16357           - Improved RecalculateDocument() logic, removing code duplication
16358
16359 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16360
16361         * LibSupport.cs: changes to match different input/output arguments.
16362
16363 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16364
16365         * LibSupport.cs: added libsupport.so init routine.
16366
16367 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
16368         
16369         * ControlBindingsCollection.cs
16370                 - Throws an exception on null datasource when adding
16371                 - Checks for duplicated bindings when adding
16372
16373 2005-06-28  Jackson Harper  <jackson@ximian.com>
16374
16375         * TreeView.cs (OnKeyDown): Support left and right properly
16376         (navigates as well as expanding and collapsing.
16377         - Add support for Multiply, this expands all the selected nodes
16378         children.
16379         - Fix some tabbing.
16380
16381 2005-06-28  Jackson Harper  <jackson@ximian.com>
16382
16383         * TreeView.cs: Implement keyboard navigation, currently supports,
16384         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
16385         support for toggling checkboxes with the space bar.
16386
16387 2005-06-28  Jackson Harper  <jackson@ximian.com>
16388
16389         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
16390         tree.
16391
16392 2005-06-28  Jackson Harper  <jackson@ximian.com>
16393
16394         * TreeView.cs: Add missing event.
16395
16396 2005-06-27  Peter Bartok  <pbartok@novell.com> 
16397
16398         * TextControl.cs:
16399           - Made line ending size configurable (now allows for counting 
16400             lineendings as \n or \r\n)
16401           - Added margin to viewport to keep caret visible on right side
16402           - Fixed translation routines for line/pos to documentpos to consider
16403             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
16404           - Fixed some line-endings to be unix style
16405           - Fixed Document.FormatText to perform it's calculations 1-based
16406           - Added descriptions for a few methods that might otherwise get 
16407             used wrong
16408           - Added NOTE section with some basic conventions to remember at 
16409             the top of the file
16410           - Major fixup for RichTextBox selection drawing:
16411             * Fixed crashes when multiple tags on a single line were selected
16412             * fixed selection box drawing not overlaying text
16413             * fixed bogus offset calculation for tags not starting at index 1
16414             * Switched behaviour from using multiple Substrings of a 
16415               StringBuilder.ToString() to using multiple 
16416               StringBuilder.ToString(start, length) statements, hoping this is
16417               faster (kept original version commented out in the code, in case
16418               original version was faster)
16419         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
16420           alignment != Left
16421         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
16422           call it as well
16423
16424 2005-06-27  Jackson Harper  <jackson@ximian.com>
16425
16426         * TabControl.cs: Move to the left and right with the arrow
16427         keys. These keys don't cycle beyond first and last like
16428         tab. Refresh all the tabs when scrolling them to the left or
16429         right.
16430
16431 2005-06-27  Jackson Harper  <jackson@ximian.com>
16432
16433         * TabControl.cs:
16434           - ToString: Added method
16435           - CreateParams: Remove TODO and comment
16436           - OnKeyDown: Cycle through bounds properly.
16437           - SelectedIndex: Scroll to the right or left if we need to
16438           display the newly selected tab.
16439
16440 2005-06-23  Jackson Harper  <jackson@ximian.com>
16441
16442         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
16443         set.
16444
16445 2005-06-23  Jackson Harper  <jackson@ximian.com>
16446
16447         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
16448         CTRL-SHIFT-TAB, and HOME, END are there any others?
16449
16450 2005-06-23  Jackson Harper  <jackson@ximian.com>
16451
16452         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
16453
16454 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
16455         
16456         * DataGridTextBoxColumn.cs: fixes and enhancements
16457         * ThemeWin32Classic.cs: fixes and enhancements
16458         * DataGridBoolColumn.cs:  fixes and enhancements
16459         * DataGridDrawingLogic.cs:  fixes and enhancements
16460         * CurrencyManager.cs: fixes and enhancements
16461         * DataGrid.cs: fixes and enhancements
16462         * DataGridColumnStyle.cs:  fixes and enhancements
16463
16464 2005-06-22  Jackson Harper  <jackson@ximian.com>
16465
16466         * TabControl.cs: Add some missing methods that just call into the
16467         base. Make the TabPageCollection's IList interface behave in the
16468         same manner as the MS implementation.
16469
16470 2005-06-22  Peter Bartok  <pbartok@novell.com> 
16471
16472         * TextControl.cs: Added sanity check
16473         * TextBoxBase.cs: 
16474           - Fixed wrapping behaviour, don't set wrap on single line controls
16475             (this fixes the breakage of colordialog introduced in an earlier
16476              checkin)
16477           - Added rudimentary support for autoscrolling right-aligned controls
16478             (still needs fixing, also, center alignment scroll is missing)
16479
16480 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
16481         
16482         * ScrollBar.cs: Fixes thumbpos on Maximum values
16483
16484 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
16485         
16486         * PropertyGridView.cs: Pass context information to UITypeEditors 
16487
16488 2005-06-21  Peter Bartok  <pbartok@novell.com> 
16489
16490         * TextBoxBase.cs:
16491           - Now calling PositionCaret with absolute space coordinates
16492           - Enabled vertical scrolling
16493           - Better tracking of scrollbar changes, tied into WidthChange
16494             event
16495           - Improved cursor tracking
16496           - Removed debug output
16497         * TextControl.cs:
16498           - PositionCaret coordinates are now works in absolute space, not 
16499             the canvas
16500           - Improved tracking of document size
16501           - Added events for width and height changes
16502
16503 2005-06-21  Peter Bartok  <pbartok@novell.com>
16504
16505         * Form.cs: Set focus to active control when form is activated
16506         * TextControl.cs: 
16507           - Added word-wrap functionality to RecalculateLine() 
16508           - Added some short function descriptions for VS.Net to aid in
16509             writing dependent controls
16510           - Added Caret property, returning the current coords of the caret
16511           - Added ViewPortWidth and ViewPortHeight properties
16512           - Added Wrap property
16513           - Added CaretMoved event
16514           - Removed some old debug code
16515           - Split() can now create soft splits
16516           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
16517           - Added method to format existing text
16518           - Fixed size/alignment calculations to use viewport
16519           - RecalculateDocument now can handle changing line-numbers while
16520             calculating lines
16521
16522         * TextBox.cs:
16523           - Added some wrap logic, we don't wrap if alignment is not left
16524           - Added casts for scrollbar var, base class switched types to
16525             also support RichTextBoxA
16526           - Implemented handling of scrollbar visibility flags
16527
16528         * TextBoxBase.cs:
16529           - Switched scrollbars type to RichTextBoxScrollBars to support
16530             RichTextBox
16531           - Added tracking of canvas width/height
16532           - Switched scrollbars to be not selectable (to keep focus on text)
16533           - Added central CalculateDocument() method to handle all redraw
16534             requirements
16535           - Added ReadOnly support
16536           - Added WordWrap support
16537           - Fixed handling of Enter key (we now treat it as a DialogKey)
16538           - Fixed caret positioning when h or v scroll is not zero
16539           - Fixed placing/generation of vertical scrollbar
16540           - Added CalculateScrollBars() method to allow updating scrollbar
16541             limits and visibility
16542           - Fixed handling of horizontal scroll
16543           - Added handling of vertical scroll
16544           - Implemented auto-'jump' when caret moves to close to a left or
16545             right border and there is text to be scrolled into view (currently
16546             there's the potential for a stack overflow, until a bug in
16547             scrollbar is fixed)
16548
16549 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
16550         
16551         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
16552
16553 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
16554
16555         * Mime.cs:
16556         - added inodes.
16557         - return application/x-zerosize for files with size zero
16558           (if no extension pattern matches).
16559         - check matches collection for strings too.
16560         - return only the first mime type if the name value
16561           collection has more than one mime type.
16562
16563 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
16564         
16565         * PropertyGrid.cs: Cleaned up some TODOs
16566         * PropertyGridView.cs: Added support for UITypeEditors
16567
16568 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
16569         
16570         * DataGrid.cs: clears cached value
16571
16572 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
16573
16574         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
16575         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
16576         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
16577         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
16578         
16579 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
16580
16581         * ThemeWin32Classic.cs: fixes colour
16582
16583 2005-06-15  Peter Bartok  <pbartok@novell.com>
16584
16585         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
16586         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
16587         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
16588         * Control.cs: Added some MWFCategory and MWFDescription attributes
16589         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
16590
16591 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
16592
16593         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
16594         usage
16595
16596 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
16597
16598         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
16599         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
16600         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
16601         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
16602         * DataGrid.cs: default datagrid settings for Default Styles, fixes
16603         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
16604
16605 2005-06-13  Jackson Harper  <jackson@ximian.com>
16606
16607         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
16608         isn't printed when the user enables dropping. (X11 does accept
16609         drops).
16610         
16611 2005-06-13  Jackson Harper  <jackson@ximian.com>
16612
16613         * TreeView.cs: Remove some TODOS.
16614
16615 2005-06-13  Jackson Harper  <jackson@ximian.com>
16616
16617         * Form.cs: Hook into the mdi framework.
16618         * MdiClient.cs: Use the base control collections add method so
16619         parents get setup correctly. Set the default back colour and dock
16620         style.
16621         * MdiChildContext.cs: New class, this bad actor handles an
16622         instance of an MDI window. Right now there is only basic
16623         support. You can drag, close, and resize windows. Minimize and
16624         Maximize are partially implemented.
16625
16626 2005-06-13  Jackson Harper  <jackson@ximian.com>
16627
16628         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
16629         freaky when both vals are negative. NOTE: There are probably other
16630         places in XplatUIX11 that this needs to be done.
16631
16632 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
16633
16634         * DataGrid.cs: implement missing methods, move KeyboardNavigation
16635         * DataGridColumnStyle.cs: fixes signature
16636
16637 2005-06-12  Jackson Harper  <jackson@ximian.com>
16638
16639         * XplatUIX11.cs: Use sizing cursors similar to the ones on
16640         windows.
16641
16642 2005-06-11  Jackson Harper  <jackson@ximian.com>
16643
16644         * StatusBarPanel.cs: Signature cleanups. Implement
16645         BeginInit/EndInit.
16646
16647 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
16648
16649         * DataGridTextBoxColumn.cs: Honors aligment
16650         * GridColumnStylesCollection.cs: Contains is case unsensitive
16651         * GridTableStylesCollection.cs: several fixes
16652         * DataGridTableStyle.cs: default column creation
16653         * DataGridDrawingLogic.cs: fixes
16654         * CurrencyManager.cs: ListName property
16655         * DataGrid.cs: multiple styles support
16656         * DataGridColumnStyle.cs: fixes
16657         
16658
16659 2005-06-10  Peter Bartok  <pbartok@novell.com>
16660
16661         * Control.cs(Select): Moved SetFocus call to avoid potential
16662           loops if controls change the active control when getting focus
16663         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
16664           the up/down buttons
16665
16666 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
16667
16668         * ImageListConverter.cs: Implemented
16669
16670 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
16671
16672         * MonthCalendar.cs: Wired in NumericUpDown control for year
16673
16674 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
16675
16676         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
16677           DoubleClick events, since they are not meant to be fired.
16678
16679 2005-06-09  Peter Bartok  <pbartok@novell.com>
16680
16681         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
16682           Jonathan's standalone controls into MWF, implemented missing
16683           events, attributes and methods; added xxxAccessible classes
16684         * AccessibleObject.cs: Made fields internal so other classes
16685           can change them if needed
16686
16687 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
16688
16689         * UpDownBase.cs: Complete implementation
16690         * NumericUpDown.cs: Complete implementation
16691         * DomainUpDown.cs: Complete implementation
16692
16693 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
16694
16695         * DataGridTextBoxColumn.cs: drawing fixes
16696         * DataGridCell.cs: fixes ToString method to match MSNet
16697         * DataGridTableStyle.cs: fixes
16698         * DataGridBoolColumn.cs: fixes, drawing
16699         * DataGridDrawingLogic.cs: fixes, new methods
16700         * DataGridTextBox.cs: Keyboard and fixes
16701         * DataGrid.cs:
16702                 - Keyboard navigation
16703                 - Scrolling fixes
16704                 - Row selection (single, multiple, deletion, etc)
16705                 - Lots of fixes
16706         
16707 2005-06-07  Jackson Harper  <jackson@ximian.com>
16708
16709         * ThemeWin32Classic.cs: Clear the background area when drawing
16710         buttons.
16711
16712 2005-06-06  Peter Bartok  <pbartok@novell.com>
16713
16714         * ImageListStreamer.cs: Fixed signature for GetData
16715         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
16716         * ComboBox.cs:
16717           - Added missing ChildAccessibleObject class
16718           - Added missing OnXXXFocus overrides, switched to using those
16719             instead of the event handler
16720         * Control.cs:
16721           - Added Parent property for ControlAccessibleObject
16722           - Fixed signatures
16723           - Fixed attributes
16724           - Added ResetBindings()
16725         * ListBindingConverter.cs: Implemented some methods
16726         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
16727         * ImageList.cs: Implemented basic handle scheme, removed TODOs
16728         * ContainerControl.cs: Fixed signature, now subscribing to the
16729           ControlRemoved event instead of overriding the handler, LAMESPEC
16730         * CurrencyManager.cs: Added missing attribute
16731         * MonthCalendar.cs: Added missing properties
16732
16733 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
16734
16735         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
16736         
16737 2005-06-06  Gaurav Vaish and Ankit Jain
16738
16739         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
16740         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
16741         
16742 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
16743
16744         * Control.cs: fixes CreateParams Width / Height.
16745
16746 2005-06-05  Peter Bartok  <pbartok@novell.com>
16747
16748         * Win32DnD.cs: Removed compilation warnings
16749
16750 2005-06-05  Peter Bartok  <pbartok@novell.com>
16751
16752         * Control.cs (CreateParams): Since we don't know if one of the
16753           properties we use is overridden, lets make sure if we fail accessing
16754           we continue with a backup plan
16755
16756 2005-06-05  Peter Bartok  <pbartok@novell.com>
16757
16758         * Win32DnD.cs:
16759           - Removed debug output
16760           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
16761             struct
16762           - Plugged resource leak
16763         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
16764           MS size
16765
16766 2005-06-05  Peter Bartok  <pbartok@novell.com>
16767
16768         * XplatUIWin32.cs: Removed DnD code
16769         * Win32DnD.cs: Implemented drop source and drop target functionality
16770
16771 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16772
16773         * UpDownBase.cs: remove duplicate addition of event, enable some code
16774         that was commented out.
16775         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
16776         Validate input when a key is pressed. It works fine now for every
16777         combination of Hexadecimal. Only missing some drawing love when sharing
16778         space with other controls.
16779
16780 2005-06-04  Peter Bartok  <pbartok@novell.com>
16781
16782         * Control.cs:
16783           - We need to pass a window for DragDrop, so enable callback events
16784           - Added DnD callback events when being a DragSource
16785         * XplatUI.cs (StartDrag): Added window handle argument
16786         * XplatUIDriver.cs (StartDrag): Added window handle argument
16787         * QueryContinueDragEventArgs: Made fields internally accessible so
16788           drivers can set them
16789         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
16790           can set them
16791
16792 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
16793
16794         * DataGridTextBoxColumn.cs: column text editing
16795         * DataGridTableStyle.cs: Respect columns styles created by the user
16796         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
16797         * DataGridBoolColumn.cs: bool column editing
16798         * DataGrid.cs: fixes to scrolling, properties, etc
16799         * DataGridTextBox.cs: handle keyboard
16800         * DataGridColumnStyle.cs: fixes
16801
16802 2005-06-02  Jackson Harper  <jackson@ximian.com>
16803
16804         * ImageListStreamer.cs: Somewhat broken implementation of
16805         GetObjectData. The RLE needs some work to match MS properly.
16806
16807 2005-06-02  Jackson Harper  <jackson@ximian.com>
16808
16809         * X11Dnd.cs: Attempting to keep at least one file in MWF
16810         monostyled.
16811
16812 2005-06-02  Peter Bartok  <pbartok@novell.com>
16813
16814         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
16815           that way
16816
16817 2005-06-02  Peter Bartok  <pbartok@novell.com>
16818
16819         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
16820         * XplatUI.cs: Added DoDragDrop() method
16821         * XplatUIDriver.cs: Added DoDragDrop() method
16822
16823 2005-06-02  Jackson Harper  <jackson@ximian.com>
16824
16825         * Splitter.cs: Implement BorderStyle.
16826
16827 2005-06-02  Jackson Harper  <jackson@ximian.com>
16828
16829         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
16830         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
16831         X11 using XDND.
16832
16833 2005-06-02  Peter Bartok  <pbartok@novell.com>
16834
16835         * DataObject.cs:
16836           - Added Data setter
16837           - Fixed broken insertion code for SetData, now also
16838             overwrites any existing entry of the same format name
16839         * Hwnd.cs: Added list of pointers that automatically gets
16840           freed when the window is disposed
16841         * XplatUI.cs: Call driver initialization method when loading
16842           a driver
16843         * Control.cs:
16844           - OnDragLeave takes EventArgs, not DragEventArgs
16845           - Added setting of WS_EX_ACCEPTFILES style when dropping is
16846             supported
16847           - Forces style update when drop state changes
16848         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
16849           not perfect since we cannot (yet) call the IDataObject.GetData()
16850           method, we keep getting 0x80004005 error, dunno why)
16851
16852 2005-06-02  Peter Bartok  <pbartok@novell.com>
16853
16854         * DragEventArgs.cs: Make fields internal so we can cache the
16855           object and re-set the fields from XplatUI
16856
16857 2005-06-02  Jackson Harper  <jackson@ximian.com>
16858
16859         * Control.cs: Add some internal methods so the DnD subsystem can
16860         raise DnD events. Also call into the driver when AllowDrop is set.
16861         * XplatUI.cs:
16862         * XplatUIDriver.cs: New method for setting whether or not a window
16863         is allowed to accept drag and drop messages.
16864                 
16865 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
16866         
16867         * ScrollBar.cs: Make sure that values sent in Scroll events
16868         are always between Maximum and Minimum.
16869
16870 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
16871
16872         * Menu.cs: Call MenuChanged when menuitem visibility has been
16873         changed.
16874         * MenuItem.cs: Rebuild menu when item is (not) visible.
16875         * MainMenu.cs: MainMenu has special MenuChanged.
16876         * Theme.cs: Caption and FrameBorderSize are not fixed.
16877         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
16878         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
16879         * XplatUIX11.cs,
16880         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
16881         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
16882
16883 2005-05-30  Jackson Harper  <jackson@ximian.com>
16884
16885         * DataFormat.cs: We can't statically initialize this stuff because
16886         it calls into the xplatui and could create a loop. So we lazy init
16887         it.
16888
16889 2005-05-28  Jackson Harper  <jackson@ximian.com>
16890
16891         * Control.cs: Proper implementation of Product(Name/Version).
16892
16893 2005-05-27  Jackson Harper  <jackson@ximian.com>
16894
16895         * DataObject.cs: Dont crash if no data is found.
16896
16897 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
16898         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
16899                 as per status page, guessing it should be set to true
16900
16901 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
16902
16903         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
16904         * DataGridTableStyle.cs: set proper formatting text, def header text
16905         * ThemeWin32Classic.cs: new themable paramaters
16906         * DataGridBoolColumn.cs: paint check box, get data, fixes
16907         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
16908         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
16909         * DataGridColumnStyle.cs: fixes
16910         * Theme.cs: new themable paramaters
16911                 
16912 2005-05-26  Peter Bartok  <pbartok@novell.com>
16913
16914         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
16915
16916 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16917         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
16918
16919 2005-05-24  Peter Bartok  <pbartok@novell.com>
16920
16921         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
16922           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
16923           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
16924           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
16925           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
16926           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
16927           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
16928           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
16929           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
16930           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
16931           missing attributes, etc
16932         * DataGridPreferredColumnWidthTypeConverter.cs: Added
16933
16934 2005-05-24  Peter Bartok  <pbartok@novell.com>
16935
16936         * Help.cs: Added, implemented trivial functions, throws up MessageBox
16937           when user tries to get help
16938         * DataObject.cs, DataFormats.cs, LinkArea.cs,
16939           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
16940           to suppress warnings
16941         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
16942           avoid unreachable code warning
16943
16944 2005-05-20  Peter Bartok  <pbartok@novell.com>
16945
16946         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
16947
16948 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16949
16950         * DataGridTextBoxColumn.cs: Basic painting methods
16951         * DataGridTableStyle.cs: Set table style in the column
16952         * ThemeWin32Classic.cs: Use Theme for colors
16953         * DataGridDrawingLogic.cs: Implement more drawing
16954         * DataGrid.cs: drawing, theming, enhacements, fixes
16955         * DataGridColumnStyle.cs: fixes, drawing
16956         * Theme.cs: theming for Datagrid
16957
16958 2005-05-20  Peter Bartok  <pbartok@novell.com>
16959
16960         * Cursor.cs: Implemented GetObjectData() method
16961
16962 2005-05-20  Peter Bartok  <pbartok@novell.com>
16963
16964         * Cursors.cs: Added setting of cursor name
16965         * Cursor.cs:
16966           - Implemented constructors
16967           - Implemented Draw and DrawStretched
16968           - Implemented Current property
16969           - Implemented == and != operators
16970           - Implemented Dispose()
16971           - Implemented ToString
16972           - Added missing attributes
16973         * XplatUIX11.cs:
16974           - Added missing reset for OverrideCursor when DoEvents is called
16975           - Fixed creation of cursor, logic was wrong
16976         * XplatUIWin32.cs:
16977           - Added missing reset for OverrideCursor when DoEvents is called
16978           - Fixed creation of cursor, bit arrays were swapped
16979         * Clipboard.cs: Removed obsolete MonoTODO attribute
16980
16981 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16982
16983         * ComboBox.cs: fixes OnSelectedItemChanged
16984         * ControlBindingsCollection.cs: fixes item range check
16985
16986 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16987
16988         * UpDownBase.cs:
16989                 - Calc preferred height properly
16990                 - Implement missing properties
16991                 
16992         * NumericUpDown.cs: Implement missing events
16993
16994 2005-05-19  Jackson Harper  <jackson@ximian.com>
16995
16996         * TabControl.cs: New method that resizes the tab pages before
16997         redrawing them. This as needed as the control is double buffered
16998         and sizing will not be recalculated unless ResizeTabPages is
16999         called.
17000         * TabPage.cs: Set base.Text instead of Text in the constructor so
17001         that UpdateOwner does not get called. Use the new Redraw method of
17002         TabControl instead of Refresh so the sizing is recalculated.
17003         * ThemeWin32Classic.cs: Draw the text for button tabs.
17004
17005 2005-05-19  Jackson Harper  <jackson@ximian.com>
17006
17007         * Control.cs: Paint control background images. Fix typo where
17008         PaintControlBackground was not getting called correctly.
17009
17010 2005-05-19  Peter Bartok  <pbartok@novell.com>
17011
17012         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
17013           I can investigate, apparently I broke FileDialog
17014
17015 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
17016
17017         * AxHost.cs: Some simple properties.
17018         * Control.cs: window must be accessible after ctor.
17019         * Form.cs: Added TransparencyKey property.
17020         * TextBoxBase.cs: Implemented Clear. Text property can be null.
17021         * XplatUIWin32.cs: SetBorderStyle implemented.
17022
17023 2005-05-18  Peter Bartok  <pbartok@novell.com>
17024
17025         * DataObject.cs: Entries are not global but particular to the
17026           DataObject, now it behaves that way
17027         * XplatUIWin32.cs: Implemented Clipboard methods
17028         * Clipboard.cs: Implemented
17029         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
17030         * XplatUIOSX.cs: Updated to final clipboard prototypes
17031         * XplatUIX11.cs: Implemented Clipboard methods
17032         * XplatUIDriver.cs: Updated to final clipboard prototypes
17033         * XplatUIStructs.cs:
17034           - Added BITMAPINFOHEADER struct
17035           - Added ClipboardFormats enum
17036         * X11Structs.cs:
17037           - Added ClipboardStruct
17038           - Added Atom enum items for clipboard types
17039           - Fixed atom types for Selection event structures
17040         * DataFormats.cs:
17041           - Added internal properties and methods for drivers to enumerate
17042             all known formats
17043           - Switched initialization method to allow drivers to assign their
17044             own IDs even for the MS predefined clipboard IDs
17045         * XplatUI.cs: Updated to final clipboard interface
17046
17047 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
17048         * PropertyGridView.cs: Fixed compiler warnings.
17049
17050 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
17051         * PropertyGrid.cs: Added some event calls
17052         * PropertyGridView.cs: Change drawing code to use double buffering
17053         * PropertyGridTextBox.cs: Changed Text property name
17054         * GridItem.cs: Added Bounds property.
17055         * GridEntry.cs: Added Bounds property.
17056
17057 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
17058
17059         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
17060         since GetType() may not return the correct type if the object is
17061         a remoting proxy.
17062
17063 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
17064
17065         * TreeNodeCollection.cs: fixes get/set item ranges
17066         
17067 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
17068
17069         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
17070                 
17071 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
17072
17073         * ComboBox.cs: Fix item range comparation
17074         * ListView.cs: Fix item range comparation
17075
17076 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
17077
17078         * FontDialog.cs:
17079           - Clear example panel when OnPaint is called
17080           - Better solution for displaying the example panel text
17081           - Select default indexes in the ListBoxes
17082
17083 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
17084
17085         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
17086
17087 2005-05-11  Peter Bartok  <pbartok@novell.com>
17088
17089         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
17090         * SelectionRangeConverter.cs: Implemented
17091         * PropertyGrid.cs: Fixed attribute value
17092         * Control.cs:
17093           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
17094           - Added Sebastien Pouliot's CAS Stack Propagation fixes
17095         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
17096           that's common to all drivers. First methods to go there are
17097           Sebastien Pouliot's CAS Stack Propagation helper methods
17098         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
17099           Sebastien Pouliot for CAS Stack Propagation
17100
17101 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
17102
17103         * OSXStructs.cs:
17104           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
17105
17106 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
17107
17108         * DataGridTextBoxColumn.cs: fixed some members
17109         * GridColumnStylesCollection.cs: indexed column is case insensitive
17110         * DataGridTableStyle.cs: fixes
17111         * ThemeWin32Classic.cs: add new theme parameter
17112         * Theme.cs: add new theme parameter
17113         * DataGridDrawingLogic.cs: Datagrid's drawing logic
17114         * DataGrid.cs: fixes, new internal properties, etc.
17115         * DataGridColumnStyle.cs: allows to set grid value
17116         *
17117
17118 2005-05-10  Peter Bartok  <pbartok@novell.com>
17119
17120         * AccessibleObject.cs:
17121           - Removed MonoTODO attribute on help, method is correct
17122           - Fixed Bounds property
17123         * AxHost.cs: Moved MonoTODO
17124         * ButtonBase.cs: Now setting AccessibleObject properties
17125         * RadioButton.cs: Setting proper AccessibleObject role
17126         * CheckBox.cs: Setting proper AccessibleObject role
17127         * ControlBindingsCollection.cs: Added properties, methods and attributes
17128         * DataFormats.cs: Fixed awkward internal API, and changed to enable
17129           userdefined DataFormats.Format items as well
17130         * ListControl.cs: Removed data_member from the public eye
17131         * OpenFileDialog.cs:
17132           - Made class sealed
17133           - Added missing attributes
17134         * SaveFileDialog.cs: Added missing attributes
17135         * ImageListStreamer.cs: Fixed code that caused warnings
17136         * LinkLabel.cs: Removed unreachable code
17137         * TreeView.cs: Fixed code that caused warnings
17138         * PropertyGridView.cs: Fixed code that caused warnings
17139         * GridColumnStylesCollection.cs: Added missing attributes
17140         * GridTableStylesCollection: Added missing attribute
17141         * PropertyManager: Added .ctor
17142         * SecurityIDType: Added
17143         * DataObject.cs: Implemented class
17144         * LinkArea.cs: Added missing attribute
17145
17146 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
17147
17148         * RadioButton.cs: call base method to allow to fire OnClick event
17149         * UpDownBase.cs: OnMouseUp call base method
17150         * CheckedListBox.cs: call base method before returning
17151         * TrackBar.cs: call base method before returning
17152         
17153
17154 2005-05-10  Peter Bartok  <pbartok@novell.com>
17155
17156         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
17157           for messages
17158
17159 2005-05-10  Peter Bartok  <pbartok@novell.com>
17160
17161         * DataFormats.cs: Implemented
17162         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
17163           XplatUIX11.cs: Added Clipboard APIs
17164         * XplatUIWin32.cs: Implemented Clipboard APIs
17165         * FolderBrowserDialog.cs: Added missing event, attributes
17166
17167 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
17168
17169         * CheckBox.cs: call base method to allow to fire OnClick event
17170
17171 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
17172
17173         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
17174
17175 2005-05-06  Peter Bartok  <pbartok@novell.com>
17176
17177         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
17178         * Screen.cs: Implemented
17179         * HelpNavigator.cs: Added
17180         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
17181           property
17182         * HelpProvider.cs: Implemented all we can do until we have a CHM
17183           help library (which means that "What's This" does work now)
17184
17185 2005-05-06  Jackson Harper  <jackson@ximian.com>
17186
17187         * XplatUIX11.cs: Fix waking up the main loop.
17188                 
17189 2005-05-05  Peter Bartok  <pbartok@novell.com>
17190
17191         * XplatUI.cs: Updated revision
17192         * Form.cs: Removed enless loop
17193         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
17194         * Label.cs (OnPaint): Added call to base.OnPaint()
17195         * ToolTip.cs: Made ToolTipWindow reusable for other controls
17196         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
17197         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
17198         * AxHost.cs: Added
17199         * ButtonBase.cs: Moved base.OnPaint() call to end of method
17200         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
17201           to ToolTip.ToolTipWindow for drawing and size methods; this allows
17202           reuse of ToolTipWindow by other controls
17203         * SizeGrip.cs: Moved base.OnPaint() call to end of method
17204         * XplatUIX11.cs: Now clipping drawing area (experimental)
17205         * PictureBox.cs: Moved base.OnPaint() call to end of method
17206         * Theme.cs: Fixed ToolTip abstracts to match new format
17207         * ErrorProvider.cs: Implemented
17208
17209 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
17210
17211         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
17212         * LinkLabel.cs:
17213                 - Adds cursors
17214                 - Handles focus
17215                 - Implements LinkBehavior
17216                 - Fixes many issues
17217
17218 2005-05-03  Jackson Harper  <jackson@ximian.com>
17219
17220         * ListView.cs: Calculate the scrollbar positioning on resize and
17221         paint, so they get put in the correct place.
17222
17223 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
17224
17225         * ColorDialogs.cs: The small color panels are now handled by
17226           SmallColorControl. This fixes drawing of the focus rectangle
17227           and adds a 3D border.
17228
17229 2005-05-03  Peter Bartok  <pbartok@novell.com>
17230
17231         * Control.cs: Modified version of Jonathan Chamber's fix for
17232           double-buffering
17233
17234 2005-05-03  Jackson Harper  <jackson@ximian.com>
17235
17236         * ListView.cs: Remove redraw variable. Control now handles whether
17237         or not a redraw needs to be done, and will only raise the paint
17238         event if redrawing is needed.
17239
17240 2005-05-03  Jackson Harper  <jackson@ximian.com>
17241
17242         * Splitter.cs: No decorations for the splitter form. Cache the
17243         hatch brush.
17244
17245 2005-05-03  Jackson Harper  <jackson@ximian.com>
17246
17247         * TreeView.cs: Use dashed lines to connect nodes. Use the
17248         ControlPaint method for drawing the focus rect instead of doing
17249         that in treeview.
17250
17251 2005-05-02  Peter Bartok  <pbartok@novell.com>
17252
17253         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
17254
17255 2005-04-29  Jackson Harper  <jackson@ximian.com>
17256
17257         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
17258         entire image buffer. Just clear the clipping rectangle.
17259
17260 2005-04-29  Jackson Harper  <jackson@ximian.com>
17261
17262         * ThemeWin32Classic.cs: Don't draw list view items that are
17263         outside the clipping rectangle.
17264
17265 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
17266
17267         * ListBox.cs: added horizontal item scroll
17268
17269 2005-04-29  Jackson Harper  <jackson@ximian.com>
17270
17271         * ThemeWin32Classic.cs: Remove some old debug code that was
17272         causing flicker with the new double buffering code.
17273
17274 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
17275
17276         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
17277         behave like combobox and comboboxlist (still not sure if this is
17278         correct though).
17279
17280 2005-04-28  Jackson Harper  <jackson@ximian.com>
17281
17282         * ThemeWin32Classic.cs: Don't fill the middle of progress
17283         bars. This fills areas outside of the clip bounds that don't need
17284         to be filled.
17285
17286 2005-04-28  Jackson Harper  <jackson@ximian.com>
17287
17288         * Control.cs: Don't expose functionality to touch the image buffers.
17289         * ProgressBar.cs:
17290         * ListView.cs: We do not need to (and no longer can) manipulate
17291         the image buffers directly. All of this is handled by Control.
17292
17293 2005-04-28  Peter Bartok  <pbartok@novell.com>
17294
17295         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
17296           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
17297           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
17298
17299 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
17300
17301         * Combobox:
17302                 - Adjust control's height for non-simple comboboxes (bug fix)
17303                 - Remove dead code
17304         * MenuAPI.cs: remove unused var
17305         * ScrollBar.cs: remove unsed var
17306                  
17307         * ListBox.cs: unselect items when clearing
17308
17309 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
17310
17311         * ListControl.cs: honors OnPositionChanged and default Selected Item
17312         * ListBox.cs: unselect items when clearing
17313
17314 2005-04-27  Jackson Harper  <jackson@ximian.com>
17315
17316         * X11Keyboard.cs: Initialize a default keyboard and give a warning
17317         if a "correct" keyboard is not found. This will make us not crash,
17318         but might give some users bad keyboard layouts...seems to be the
17319         same thing rewind does.
17320
17321 2005-04-27  Jackson Harper  <jackson@ximian.com>
17322
17323         * BindingManagerBase.cs: Attach the current/position changed
17324         handlers to their respective events.
17325
17326 2005-04-27  Jackson Harper  <jackson@ximian.com>
17327
17328         * Control.cs: Make sure that the first WM_PAINT does a full draw,
17329         not just a blit.
17330         * ThemeWin32Classic.cs: Don't fill the background for picture
17331         boxes. This could overright user drawing.
17332         * ComboBox.cs: Just fill the clipping rect not the entire client
17333         rect when drawing the background. This prevents pieces of the
17334         image buffer from getting overwritten and is theoretically faster.
17335
17336 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
17337
17338         * ComboBox.cs: Databinding support fixes, fire missing events
17339         * ListControl.cs: implement missing methods and properties, fixes
17340         * ThemeWin32Classic.cs: Databiding support on Drawing
17341         * CheckedListBox.cs: Databinding support fixes, fire missing events
17342         * ListBox.cs: Databinding support fixes, fire missing events
17343         
17344 2005-04-25  Peter Bartok  <pbartok@novell.com>
17345
17346         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
17347
17348 2005-04-25  Jackson Harper  <jackson@ximian.com>
17349
17350         * TreeView.cs: Use the horizontal scrollbars height not width when
17351         determining how much of the client area is available.
17352
17353 2005-04-25  Jackson Harper  <jackson@ximian.com>
17354
17355         * Control.cs: Double buffering is handled differently now. As per
17356         the spec, the extra buffer is created in the WM_PAINT message and
17357         passed down to the control's drawing code.
17358         * GroupBox.cs:
17359         * Label.cs:
17360         * CheckBox.cs:
17361         * ProgressBar.cs:
17362         * RadioButton.cs:
17363         * ColorDialog.cs:
17364         * ComboBox.cs:
17365         * PropertyGridView.cs:
17366         * UpDownBase.cs:
17367         * MessageBox.cs:
17368         * MenuAPI.cs:
17369         * ListView.cs:
17370         * ButtonBase.cs:
17371         * SizeGrip.cs:
17372         * ScrollBar.cs:
17373         * ListBox.cs:
17374         * TrackBar.cs:
17375         * ToolBar.cs:
17376         * PictureBox.cs:
17377         * DateTimePicker.cs:
17378         * StatusBar.cs:
17379         * TreeView.cs: Update to new double buffering system.
17380         * MonthCalendar.cs: Uncomment block, as Capture is now
17381         working. Update to new double buffering
17382         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
17383         * PaintEventArgs.cs: New internal method allows us to set the
17384         graphics object. This is used for double buffering.
17385         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
17386         rectangle. The internal paint_area var has been removed from
17387         StatusBar. The clipping rect should be used instead.
17388         * Theme.cs: Give the PictureBox drawing method a clipping rect.
17389         * TabPage.cs: The RefreshTabs method was removed, so just call the
17390         tab controls Refresh method now.
17391         * TabControl.cs: Update to new double buffering. Make sure the
17392         handle is created before sizing the tab pages, otherwise we will
17393         get stuck in a loop.
17394
17395 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
17396
17397         * LinkLabel.cs: Fix typo, bug #74719; patch
17398           from Borja Sanchez Zamorano
17399
17400 2005-04-22  Jackson Harper  <jackson@ximian.com>
17401
17402         * TreeNode.cs: Implement Handle stuff.
17403         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
17404
17405 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
17406
17407         * DataGridTextBoxColumn.cs: call base constructors, fixes
17408         * GridColumnStylesCollection.cs: missing events, methods, and functionality
17409         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
17410         * DataGridTableStyle.cs: implements create default column styles
17411         * DataGridBoolColumn.cs: which types can handle
17412         * DataGrid.cs: missing methods, fixes, new functionality
17413         * DataGridColumnStyle.cs: fixes
17414
17415 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
17416         * FolderBrowserDialog.cs:
17417         - Use a thread to fill the TreeView
17418         - Adjusted some sizes
17419
17420 2005-04-19  Peter Bartok  <pbartok@novell.com>
17421
17422         * LinkLabel.cs: (Re-)create the pieces when setting the Text
17423           property. Fixes #74360.
17424
17425 2005-04-19  Jackson Harper  <jackson@ximian.com>
17426
17427         * XEventQueue.cs: Lock when getting the lockqueue size.
17428         * PictureBox.cs: Call base OnPaint
17429         
17430 2005-04-19  Peter Bartok  <pbartok@novell.com>
17431
17432         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
17433           messages were no longer being processed (this broke BeginInvoke)
17434
17435           
17436 2005-04-18  Jackson Harper  <jackson@ximian.com>
17437
17438         * TreeView.cs: buglet that caused node images to get drawn
17439         regardless of whether or not they were in the clipping rectangle.
17440
17441 2005-04-18  Jackson Harper  <jackson@ximian.com>
17442
17443         * CurrencyManager.cs: There are four rules for GetItemProperties:
17444         - If the type is an array use the element type of the array
17445         - If the type is a typed list, use the type
17446         - If the list contains an Item property that is not an object, use
17447         that property
17448         - use the first element of the list if there are any elements in
17449         the list.
17450         
17451 2005-04-17  Jackson Harper  <jackson@ximian.oom>
17452
17453         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
17454         click. This handles offsets for scrolling properly and reduces
17455         memory. Also fixed GetNode to not offset now that TopNode works
17456         properly.
17457         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
17458         
17459 2005-04-17  Jackson Harper  <jackson@ximian.com>
17460
17461         * CursorConverter.cs: Initial implementation.
17462
17463 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
17464
17465         * ListControl.cs: work towards complex data binding support on ListControl
17466         * CurrencyManager.cs: work towards complex data binding support on ListControl
17467         * ListBox.cs: work towards complex data binding support on ListControl
17468
17469
17470 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
17471
17472         * GridTableStylesCollection.cs: fixes name and constructor
17473         * DataGridTableStyle.cs: fixes
17474         * DataGridBoolColumn.cs: fixes names and constructors
17475         * DataGrid.cs: define methods and properties. Some init implementations
17476         * DataGridCell.cs: define methods and properties. Some init implementations
17477         * GridTablesFactory.cs: Define methods and properties
17478
17479 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
17480
17481         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
17482         graphics port changes.  We still want the coordinates in global screen
17483         coordinates.
17484
17485 2005-04-14  Jackson Harper  <jackson@ximian.com>
17486
17487         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
17488         check plus minus or checkbox clicks unless those features are enabled.
17489
17490 2005-04-14  Jackson Harper  <jackson@ximian.com>
17491
17492         * TreeView.cs: Add methods for setting the top and bottom visible
17493         nodes. TreeNode::EnsureVisible uses these methods.
17494         * TreeNode.cs: Implement EnsureVisible
17495
17496 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
17497
17498         * Form.cs: Pospone menu assignation if the window has not been created yet
17499         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
17500         size and position
17501
17502 2005-04-12  Jackson Harper  <jackson@ximian.com>
17503
17504         * TreeView.cs: Set the TopNode properly when scrolling
17505         occurs. This has the added benifit of reducing the amount of
17506         walking that needs to be done when drawing. Also removed an old
17507         misleading TODO.
17508         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
17509         
17510 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
17511
17512         * Timer.cs: fixes interval setting when the timer is already enabled
17513         
17514 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
17515
17516         * FolderBrowserDialog.cs: First approach
17517
17518 2005-04-09  Peter Bartok  <pbartok@novell.com>
17519
17520         * FolderBrowserDialog: Added
17521
17522 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
17523
17524         * LinkLabel.cs: move drawing code into the theme
17525         * ThemeWin32Classic.cs: drawing code and painting background bugfix
17526         * Theme.cs: define DrawLinkLabel method
17527
17528 2005-04-05  Jackson Harper  <jackson@ximian.com>
17529
17530         * BindingContext.cs: Use weak references so these bad actors don't
17531         stay alive longer then they need to.
17532
17533 2005-04-05  Jackson Harper  <jackson@ximian.com>
17534
17535         * ListControl.cs: Basic implementation of complex databinding.
17536         * ComboBox.cs:
17537         * ListBox.cs: Add calls to ListControl databinding methods.
17538
17539 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
17540
17541         * FileDialog.cs:
17542           - Don't change PopupButtonState to Normal when the
17543             PopupButton gets pressed several times.
17544           - Renamed ButtonPanel to PopupButtonPanel
17545
17546 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
17547
17548         * ColorDialog.cs: Use cached objects instead of creating them
17549         * LinkLabel.cs: Use cached objects instead of creating them
17550         * Splitter.cs: Use cached objects instead of creating them
17551         * FontDialog.cs: Use cached objects instead of creating them
17552         * PropertyGridView.cs: Use cached objects instead of creating them
17553         * MessageBox.cs: Use cached objects instead of creating them
17554         * FileDialog.cs: Use cached objects instead of creating them
17555         * ThemeWin32Classic.cs: Use cached objects instead of creating them
17556         * TreeView.cs: Use cached objects instead of creating them
17557         
17558 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
17559
17560         * Control.cs: use Equals to compare the font since no == op
17561         * ScrollBar.cs: use Equals to compare the font since no == op
17562
17563 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
17564
17565         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
17566
17567 2005-04-01  Jackson Harper  <jackson@ximian.com>
17568
17569         * Binding.cs: Implement IsBinding.
17570         * BindingManagerBase.cs:
17571         * PropertyManager.cs:
17572         * CurrencyManager.cs: Add IsSuspended property.
17573
17574 2005-04-01  Jackson Harper  <jackson@ximian.com>
17575
17576         * Binding.cs: Had some IsAssignableFrom calls backwards.
17577
17578 2005-04-01  Jackson Harper  <jackson@ximian.com>
17579
17580         * Binding.cs: Handle null data members when pulling data.
17581         * PropertyManager.cs: Handle the data member being a property that
17582         does not exist.
17583
17584 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
17585
17586         * DataGridTextBoxColumn.cs: fixes signature
17587         * DataGrid.cs: calls right constructor
17588
17589 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
17590
17591         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
17592         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
17593         * GridTableStylesCollection.cs: implements GridTableStylesCollection
17594         * DataGridTableStyle.cs: implements DataGridTableStyle
17595         * DataGridBoolColumn.cs: implements DataGridBoolColumn
17596         * DataGridTextBox.cs: implements DataGridTextBox
17597         * DataGridColumnStyle.cs: implements DataGridColumnStyle
17598
17599 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
17600
17601         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
17602
17603 2005-03-29  Peter Bartok  <pbartok@novell.com>
17604
17605         * Application.cs:
17606           - Properly implemented CompanyName property
17607           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
17608             returns a path that includes CompanyName, ProductName and
17609             Version (fixes bug #70330)
17610
17611 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
17612
17613         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
17614           fixes bug #72588.
17615
17616 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
17617
17618         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
17619         
17620           - Added ReadOnly CheckBox
17621           - Further refactoring: moved some code from Open-/SaveFileDialog
17622             to FileDialog
17623
17624 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
17625
17626         * OpenFileDialog.cs: Fixed CheckFileExists
17627         * FileDialog.cs:
17628           Moved FileView and DirComboBox outside FileDialog class.
17629           They can now be used outside FileDialog
17630
17631 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
17632
17633         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
17634         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
17635
17636 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
17637
17638         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
17639           - Added missing CreatePrompt property in SaveDialog
17640           - Overall SaveDialog handling should be better now
17641           - Added non standard ShowHiddenFiles property
17642           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
17643           - Added InitialDirectory and RestoreDirectory support
17644
17645 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
17646
17647         * FileDialog.cs: Made dirComboBox usable
17648
17649 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
17650
17651         * FileDialog.cs: Added Filter support (case sensitiv)
17652
17653 2005-03-24  Jackson Harper  <jackson@ximian.com>
17654
17655         * TabControl.cs: Need a couple more pixels for the lines.
17656
17657 2005-03-23  Jackson Harper  <jackson@ximian.com>
17658
17659         * TabControl.cs: Give the tab page focus when it is selected.
17660
17661 2005-03-23  Jackson Harper  <jackson@ximian.com>
17662
17663         * TabControl.cs: Account for the drawing of tabs borders when
17664         invalidating. If the slider was clicked dont do click detection on
17665         the tabs.
17666
17667 2005-03-23  Jackson Harper  <jackson@ximian.com>
17668
17669         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
17670
17671 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
17672
17673         * CategoryGridEntry.cs: Added
17674         * GridItem.cs: Added helper properties
17675         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
17676         * GridEntry.cs: Updated code for collection
17677         * PropertyGrid.cs: Cleaned up some formatting
17678         * PropertyGridView.cs: Added drop down functionality for enums.
17679         * GridItemCollection.cs: Added enumerator logic
17680         * PropertyGridEntry.cs: Added
17681
17682 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
17683
17684         * FileDialog.cs:
17685           - Removed unnecessary commented code
17686           - Fixed handling for entering the filename manually in the combobox
17687
17688 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
17689
17690         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
17691
17692 2005-03-18  Peter Bartok  <pbartok@novell.com>
17693
17694         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
17695           them being touching the border
17696
17697 2005-03-18  Peter Bartok  <pbartok@novell.com>
17698
17699         * TextControl.cs: Quick hack to center text better
17700
17701 2005-03-18  Peter Bartok  <pbartok@novell.com>
17702
17703         * ControlPaint.cs:
17704           - Don't throw NotImplemented exceptions, just print a notice once
17705             instead (requested by Miguel). This makes running existing SWF
17706             apps a bit easier
17707         * Control.cs:
17708           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
17709           - Added context menu trigger on right click
17710         * Panel.cs: Trigger invalidate on resize
17711         * StatusBar.cs:
17712           - Removed old double-buffer drawing
17713           - Added ResizeRedraw style to force proper update of statusbar
17714         * ListView.cs:
17715           - Removed debug output
17716         * ThemeWin32Classic.cs:
17717           - Fixed drawing of status bar, now draws Text property if there
17718             are no defined panels
17719
17720 2005-03-18  Jackson Harper  <jackson@ximian.com>
17721
17722         * ImageList.cs: When the image stream is set pull all the images
17723         from it.
17724         * ImageListStreamer.cs: Implement reading image list streams.
17725
17726 2005-03-18  Peter Bartok  <pbartok@novell.com>
17727
17728         * ThemeWin32Classic.cs (DrawPictureBox):
17729           - Fixed calculations for centered drawing
17730           - Fixed drawing for normal mode, not scaling the image on normal
17731
17732 2005-03-18  Peter Bartok  <pbartok@novell.com>
17733
17734         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
17735           textbox
17736         * FileDialog.cs:
17737           - Made Open/Save button the accept button for FileDialog
17738           - Tied the cancel button to the IButtonControl cancel button
17739           - Save/Open now properly builds the pathname
17740           - Now handles user-entered text
17741           - Preventing crash on right-click if no item is selected
17742           - Fixed Text property, now uses contents of textbox
17743           - Fixed SelectedText property, now just returns the text part that
17744             is selected in the text box
17745
17746 2005-03-18  Jackson Harper  <jackson@ximian.com>
17747
17748         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
17749         rect, make sure to de-adjust the interior rect after drawing the
17750         tab text.
17751
17752 2005-03-18  Peter Bartok  <pbartok@novell.com>
17753
17754         * MenuAPI.cs: Remove menu *before* executing selected action to
17755           prevent the menu from 'hanging around'
17756           
17757 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
17758
17759         * XplatUIOSX.cs: Implemented WorkingArea property
17760
17761 2005-03-17  Peter Bartok  <pbartok@novell.com>
17762
17763         * XplatUIX11.cs: Fixed menu coord calculations
17764         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
17765           for calculating offsets
17766
17767 2005-03-17  Peter Bartok  <pbartok@novell.com>
17768
17769         * Hwnd.cs: Do not consider menu presence for default client
17770           rectangle location/size
17771         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
17772           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
17773           translation functions
17774         * FileDialog.cs: Fixed (what I presume is a) typo
17775
17776 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
17777
17778         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
17779           X access (avoids X-Async errors)
17780
17781 2005-03-16  Jackson Harper  <jackson@ximian.com>
17782
17783         * TabControl.cs: Raise the SelectedIndexChanged event.
17784
17785 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
17786
17787         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
17788           - Removed vertical ToolBar and replaced it with a custom panel
17789             (desktop and home button already work)
17790           - Added Help button (some controls get resized or relocated then)
17791           - Draw correct text depending on Open or Save.
17792           - Fixed some typos...
17793
17794 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
17795
17796         * ScrollBar.cs:
17797           - Only change Maximum and Minimum when need it (bug fix)
17798
17799 2005-03-15  Peter Bartok  <pbartok@novell.com>
17800
17801         * Form.cs: Use Handle for icon, to trigger creation if
17802           the window does not yet exist
17803         * Control.cs:
17804           - CanSelect: Slight performance improvement
17805           - Focus(): Preventing possible recursion
17806           - Invalidate(): Removed ControlStyle based clear flag setting
17807           - WM_PAINT: fixed logic for calling OnPaintBackground
17808           - WM_ERASEBKGND: Fixed logic, added call to new driver method
17809             EraseWindowBackground if the control doesn't paint background
17810         * XplatUIWin32.cs:
17811           - Moved EraseWindowBackground() method to internal methods
17812           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
17813             is sent via SendMessage on BeginPaint call on Win32
17814         * XplatUIX11.cs:
17815           - Added EraseWindowBackground() method
17816           - No longer sends WM_ERASEBKGND on .Expose, but on call to
17817             PaintEventStart, which more closely matches Win32 behaviour
17818           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
17819           - Fixed SetFocus() to properly deal with client and whole windows
17820         * Hwnd.cs: Added ErasePending property
17821         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
17822         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
17823
17824 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
17825
17826         * XplatUIOSX.cs:
17827           - Fix hard loop when timers exist.
17828           - Fix bugs with middle and right click for 3 button mice.
17829
17830 2005-03-11  Peter Bartok  <pbartok@novell.com>
17831
17832         * XplatUIX11.cs:
17833           - get_WorkingArea: Need to call X directly, GetWindowPos only
17834             returns cached data now
17835           - Added sanity check to GetWindowPos hwnd usage
17836
17837 2005-03-11  Jackson Harper  <jackson@ximian.com>
17838
17839         * BindingManagerBase.cs: This method isn't used anymore as
17840         PullData now updates the data in the control.
17841
17842 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
17843
17844         * Form.cs: fixes menu drawing on X11
17845         * MenuAPI.cs:  fixes menu drawing on X11
17846
17847 2005-03-11  Peter Bartok  <pbartok@novell.com>
17848
17849         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
17850           from Jonathan Gilbert; should fix bug #73606
17851         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
17852           in Screen coordinates. Thanks, Jordi.
17853         * Form.cs: Added missing attribute
17854
17855 2005-03-11  Peter Bartok  <pbartok@novell.com>
17856
17857         * Form.cs:
17858           - Rudimentary Mdi support
17859           - Removed outdated FormParent code
17860           - Implemented lots of missing properties and methods, still missing
17861             transparency support
17862           - Added missing attributes
17863           - Implemented support for MaximumBounds
17864           - Added firing of various events
17865         * XplatUI.cs: Added SetIcon() method
17866         * XplatUIDriver.cs: Added SetIcon() abstract
17867         * XplatUIOSX.cs: Stubbed out SetIcon() method
17868         * XplatUIX11.cs:
17869           - Implemented SetIcon() support
17870           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
17871           - Switched to unix line endings
17872         * XplatUIWin32.cs:
17873           - Made POINT internal so for can access it as part of MINMAX
17874           - Implemented SetIcon() support
17875           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
17876             native Mdi support again, might have to go managed)
17877         * Control.cs: Now fires the StyleChanged event
17878         * MdiClient.cs: Added; still mostly empty
17879
17880 2005-03-10  Peter Bartok  <pbartok@novell.com>
17881
17882         * SaveFileDialog.cs: Added emtpy file
17883
17884 2005-03-08  Peter Bartok  <pbartok@novell.com>
17885
17886         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
17887           in turn triggers OnCreateContro) when creating a handle for the
17888           first time.
17889         * TextControl.cs: Fixed endless loop in certain cases when
17890           replacing the current selection
17891
17892 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
17893
17894         * ScrollBar.cs:
17895           - Honors NewValue changes in Scroll events allowing apps to change it
17896           - Adds First and Last Scroll events
17897           - Fixes Thumb events
17898
17899 2005-03-07  Peter Bartok  <pbartok@novell.com>
17900
17901         * Hwnd.cs: Added DefaultClientRectangle property
17902         * XplatUI.cs: Now using the X11 driver Where() method, which provides
17903           more detailed debug information
17904         * XplatUIX11.cs:
17905           - Fixed size-change feedback loop, where we would pull an old size
17906             off the queue and mistakenly change our window's size to an
17907             earlier value
17908           - Now compressing ConfigureNotify events, to reduce looping and
17909             redraw issues
17910         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
17911           is called
17912
17913 2005-03-07  Jackson Harper  <jackson@ximian.com>
17914
17915         * Binding.cs: Push data pushes from data -> property. Check if the
17916         property is readonly when attempting to set it.
17917
17918 2005-03-07  Jackson Harper  <jackson@ximian.com>
17919
17920         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
17921         instead of IsSubclassOf. Pulling data now sets the value on the
17922         control.
17923         * PropertyManager.cs:
17924         * CurrencyManager.cs: Just need to pull data when updating now,
17925         because PullData will set the value on the control.
17926
17927 2005-03-04  Jackson Harper  <jackson@ximian.com>
17928
17929         * Binding.cs: Implement data type parsing and converting on pulled
17930         data. TODO: Are there more ways the data can be converted?
17931
17932 2005-03-04  Jackson Harper  <jackson@ximian.com>
17933
17934         * Binding.cs: Support <Property>IsNull checks. Also bind to the
17935         controls Validating method so we can repull the data when the
17936         control loses focus.
17937
17938 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
17939
17940         * ColumnHeader.cs:
17941           - Fixes null string format
17942           
17943         * ListView.cs:
17944           - Adds enum type checks
17945           - Fixes redrawing and recalc need after changing some properties
17946           - Fixes on focus_item set after the event
17947           - Fixes adding columns after the control has been created
17948           
17949         * ThemeWin32Classic.cs:
17950           - Fixes CheckBox focus rectangle
17951           - Fixes ColumnHeader drawing
17952
17953
17954 2005-03-03  Jackson Harper  <jackson@ximian.com>
17955
17956         * Binding.cs: Bind to <Property>Changed events so we can detect
17957         when properties are changed and update the data.
17958
17959 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
17960
17961         * ImageList.cs:
17962           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
17963           - Fixes ImageList constructor with ImageList container
17964           - Fixes image scaling (wrong parameters at DrawImage)
17965
17966 2005-02-02  Jackson Harper  <jackson@ximian.com>
17967
17968         * Binding.cs: Make property searches case-insensitive. Eliminate
17969         some duplicated code.
17970
17971 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
17972
17973         * ComboBox.cs:
17974                 - Handle focus event
17975                 - Fix scrollbar events
17976                 - Discard highlighted item if remove it
17977                 - Fixes SelectedItem with strings
17978
17979 2005-03-01  Peter Bartok  <pbartok@novell.com>
17980
17981         * Control.cs:
17982           - Fixed Visible property, now follows (once again) parent chain
17983             to return false if any control in the chain is visible=false
17984           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
17985           - Fixed several places where is_visible instead of Visible was used
17986           - Implemented FIXME related to focus selection when setting focused
17987             control to be invisible
17988
17989         * XplatUIWin32.cs: Now using proper method to find out if window is
17990           visible. Thanks to Jordi for pointing it out
17991
17992 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
17993
17994         * ComboBox.cs: show/hide scrollbar instead of creating it
17995
17996 2005-02-27  Jackson Harper  <jackson@ximian.com>
17997
17998         * CurrencyManager.cs: Add PositionChanged stuff.
17999
18000 2005-02-27  Peter Bartok  <pbartok@novell.com>
18001
18002         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
18003         * XplatUIOSX.cs: Added GetMenuOrigin() stub
18004         * XplatUIWin32.cs: Implemented GetMenuOrigin()
18005         * XplatUIX11.cs:
18006           - Implemented GetMenuDC()
18007           - Implemented GetMenuOrigin()
18008           - Implemented ReleaseMenuDC()
18009           - Implemented generation of WM_NCPAINT message
18010           - Implemented generation and handling of WM_NCCALCSIZE message
18011         * Form.cs: Added debug helper message for Jordi's menu work
18012         * Hwnd.cs:
18013           - Modified ClientRect property; added setter, fixed getter to handle
18014             setting of ClientRect
18015           - Added MenuOrigin property
18016
18017 2005-02-26  Peter Bartok  <pbartok@novell.com>
18018
18019         * XplatUIX11.cs:
18020           - Destroys the caret if a window that's being destroyed contains it
18021           - Ignores expose events coming from the X11 queue for windows that
18022             already are destroyed
18023           - Now uses the proper variable for handling DestroyNotify, before we
18024             marked the wrong window as destroyed
18025           - Improved/added some debug output
18026
18027 2005-02-26  Peter Bartok  <pbartok@novell.com>
18028
18029         * X11Keyboard.cs: Fixes to work on 64bit systems
18030
18031 2005-02-26  Peter Bartok  <pbartok@novell.com>
18032
18033         * Control.cs:
18034           - Now calling OnHandleDestroyed from DestroyHandle()
18035             instead of Dispose()
18036           - Removed bogus call to controls.Remove() from DestroyHandle()
18037
18038 2005-02-26  Peter Bartok  <pbartok@novell.com>
18039
18040         * Control.cs: Properly destroy child windows when our handle is
18041           destroyed
18042
18043 2005-02-25  Peter Bartok  <pbartok@novell.com>
18044
18045         * XplatUI.cs:
18046           - Added 'DriverDebug' define to allow tracing XplatUI API calls
18047           - Alphabetized Static Methods and Subclasses
18048
18049         * XplatUIX11.cs:
18050           - Added XException class to allow custom handling of X11 exceptions
18051           - Created custom X11 error handler, tied into XException class
18052           - Added support for MONO_XEXCEPTIONS env var to allow the user
18053             to either throw an exception on X errors or continue running
18054             after displaying the error
18055           - Added handling of DestroyNotify message
18056           - Added handler for CreateNotify message (still disabled)
18057           - Improved (tried to at least) Where method to provide file and lineno
18058         * X11Structs.cs:
18059           - Added XErrorHandler delegate
18060           - Added XRequest enumeration (to suppor translation of errors)
18061
18062 2005-02-25  Jackson Harper  <jackson@ximian.com>
18063
18064         * PropertyManager.cs: Implement editing features
18065         * CurrencyManager.cs:
18066         * Binding.cs: First attempt at UpdateIsBinding
18067         * BindingManagerBase.cs: Call UpdateIsBinding before
18068         pushing/pulling data.
18069
18070 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
18071
18072         * MenuAPI.cs: Respect disabled items
18073         * ThemeWin32Classic.cs
18074                 - Caches ImageAttributes creation for DrawImageDisabled
18075                 - Fixes vertical menu line drawing
18076                 - Draws disabled arrows in disable menu items
18077
18078 2005-02-24  Peter Bartok  <pbartok@novell.com>
18079
18080         * Hwnd.cs:
18081           - Added UserData property to allow associating arbitrary objects
18082             with the handle
18083           - Fixed leak; now removing Hwnd references from static windows array
18084         * XplatUIWin32.cs:
18085           - Fixed Graphics leak in PaintEventEnd
18086           - Removed usage of HandleData, switched over to Hwnd class
18087         * HandleData.cs: Removed, obsoleted by Hwnd.cs
18088
18089 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
18090
18091         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
18092         * ScrollBar.cs: Fixes bug
18093         * TrackBar.cs: removes death code, clipping, mimize refreshes,
18094          keyboard navigation enhancements
18095
18096 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
18097
18098         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
18099         * GroupBox.cs: Add control styles
18100         * Label.cs: Add control styles
18101         * UpDownBase.cs: Add control styles
18102         * ListBox.cs: Add control styles
18103         * XplatUIWin32.cs: Fixes wrong parameter order
18104
18105
18106 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
18107
18108         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
18109
18110 2005-02-23  Jackson Harper  <jackson@ximian.com>
18111
18112         * PropertyManager.cs: Implement property binding. This doesn't
18113         seem to work yet though as (I think) there are some bugs in
18114         System.ComponentModel.PropertyDescriptor.
18115         * BindingContext.cs: Use new PropertyManager constructor.
18116
18117 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
18118
18119         * ProgressBar.cs: use clip region in ProgressBar
18120         * ThemeWin32Classic.cs: use clip region in ProgressBar
18121
18122 2004-02-22  Jackson Harper  <jackson@ximian.com>
18123
18124         * BindingsCollection.cs: Remove some debug code.
18125
18126 2005-02-22  Jackson Harper  <jackson@ximian.com>
18127
18128         * BindingContext.cs:
18129         * ControlBindingsCollection.cs:
18130         * CurrencyManager.cs:
18131         * Binding.cs:
18132         * BindingManagerBase.cs: Initial implementation
18133         * BindingsCollection.cs: Add an internal contains method that the
18134         BindingManagerBase uses to ensure bindings aren't added twice to
18135         the collection.
18136         * PropertyManager.cs: Stubbed out.
18137         * Control.cs:
18138         * ContainerControl.cs: Hook up databinding
18139         
18140 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
18141
18142         * XplatUIOSX.cs:
18143           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
18144           Fixed Invalidate/Update chain.
18145           Fixed tons of other minor bugs (this is almost a complete rewrite).
18146
18147 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
18148
18149         * ComboBox.cs: do subcontrol creation when the control is created
18150
18151 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
18152
18153         * Label.cs: fixes image drawing (image and imagelist)
18154         * ThemeWin32Classic.cs: cache brushes
18155         
18156 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
18157
18158         * Form.cs: Move menu drawing code to Theme class
18159         * ComboBox.cs: Move ComboBox drawing code to Theme class
18160         * MenuItem.cs: Move menu drawing code to Theme class
18161         * MenuAPI.cs: Move menu drawing code to Theme class
18162         * ThemeWin32Classic.cs: New methods
18163         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
18164         * ListBox.cs: Move Listbox drawing code to Theme class
18165         * Theme.cs: New methods
18166
18167 2005-02-20  Peter Bartok  <pbartok@novell.com>
18168
18169         * Control.cs:
18170           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
18171             only process mnemonics on those)
18172           - Fixed event sequence for key handling; first calling
18173             ProcessKeyEventArgs now
18174         * TextBoxBase.cs:
18175           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
18176             for processing non-character keys
18177           - Fixed WM_CHAR to generate proper event sequence before processing
18178         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
18179           generation
18180
18181 2005-02-19  Peter Bartok  <pbartok@novell.com>
18182
18183         * UserControl.cs: Added TextChanged event; added attributes
18184         * SizeGrip.cs: Implemented resizing and optional display of grip
18185         * Form.cs: Fixed attribute
18186         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18187           Changed meaning of ScrollWindow bool argument; instead of the
18188           clear attribute (which will be true usually anyway), it gives the
18189           option of moving child controls as well.
18190         * XplatUIX11.cs:
18191           - Changed to match new ScrollWindow argument
18192           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
18193             now handles the implicit parent window a WM puts around us
18194         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
18195           to work)
18196         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
18197         * TreeView.cs: Adjusted to new ScrollWindow arguments
18198
18199 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
18200
18201         * Form.cs: Menu integration with non-client area
18202         * MenuItem.cs: Menu integration with non-client area
18203         * MenuAPI.cs: Menu integration with non-client area
18204
18205 2005-02-18  Peter Bartok  <pbartok@novell.com>
18206
18207         * MethodInvoker.cs: Added
18208         * MdiLayout.cs: Added
18209         * SendKeys.cs: Started implementation
18210         * ErrorIconAlignment.cs: Added
18211
18212 2005-02-18  Peter Bartok  <pbartok@novell.com>
18213
18214         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
18215         * Form.cs: Added handling for Menu-related Non-client messages
18216
18217 2005-02-17  Peter Bartok  <pbartok@novell.com>
18218
18219         * UpDownBase.cs: Fixed typo, compilation errors
18220         * DomainUpDown.cs: Fixed attribute value
18221
18222 2005-02-16  Miguel de Icaza  <miguel@novell.com>
18223
18224         * UpDownBase.cs: Attach entry events.
18225         Propagate events.
18226         Add ForeColor property, Focused, InterceptArrowKeys (interception
18227         does not work yet).
18228
18229 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
18230
18231         * Form.cs:
18232                 - Redraw non client are on Setmenu
18233                 - Calc proper menu starting point
18234
18235 2005-02-17  Peter Bartok  <pbartok@novell.com>
18236
18237         * Application.cs: Fixed message_filter check
18238
18239 2005-02-17  Peter Bartok  <pbartok@novell.com>
18240
18241         * Application.cs: Now calls registered message filters
18242         * DockStyle.cs: Fixed attribute
18243         * Form.cs: Fixed attribute
18244         * Menu.cs: Fixed attribute
18245         * ToolTip.cs: Fixed attribute
18246         * TreeNode.cs: Added missing attributes and arranged in regions
18247         * PropertyGrid.cs: Fixed signatures
18248         * TreeNodeCollection.cs: Added attributes
18249         * Splitter.cs: Added missing attributes; arranged into regions
18250         * TabPage.cs: Added missing attributes; arranged into regions
18251         * TextBoxBase.cs: Added missing attributes
18252         * TextBox.cs: Added missing attributes
18253         * ArrangeDirection.cs: Added missing attributes
18254         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
18255         * ToolBarButton.cs: Fixed attributes
18256         * AnchorStyles.cs: Fixed attribute
18257         * TrackBar.cs: Fixed attributes
18258         * TabControl.cs: Added missing attributes and arranged into regions
18259         * ToolBar.cs: Fixed attribute
18260         * StatusBar.cs: Fixed signature, organized into regions and added
18261           attributes
18262         * StatusBarPanel.cs: Fixed attributes
18263         * ContentsResizedEventArgs.cs: Implemented
18264         * ContentsResizedEventHandler.cs: Implemented
18265         * DateBoldEventArgs.cs: Implemented
18266         * DateBoldEventHandler.cs: Implemented
18267         * UpDownEventArgs.cs: Implemented
18268         * UpDownEventHandler.cs: Implemented
18269         
18270 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
18271
18272         * Form.cs: first Menu NC refactoring
18273         * MenuAPI.cs: first Menu NC refactoring
18274         
18275 2005-02-16  Peter Bartok  <pbartok@novell.com>
18276
18277         * ImeMode.cs: Added missing attributes
18278         * Menu.cs: Fixed attribute
18279         * GroupBox.cs: Fixed attribute
18280         * Label.cs: Fixed attribute
18281         * ColorDialog.cs (RunDialog): Removed TODO attribute
18282         * ComboBox.cs: Fixed attributes
18283         * ListControl.cs: Added missing attributes
18284         * PropertyGrid.cs: Fixed attributes
18285         * Control.cs: Fixed attributes
18286         * ListViewItem.cs: Added TypeConverter attribute
18287         * NotifyIcon.cs: Fixed attributes
18288         * ListView.cs: Fixed attributes
18289         * ButtonBase.cs: Fixed attribute
18290         * ImageList.cs: Added missing attributes
18291         * ContainerControl.cs: Fixed signature
18292         * CheckedListBox.cs: Fixed attribute; added missing attributes
18293         * Panel.cs: Fixed attributes
18294         * PropertyTabChangedEventArgs.cs: Added missing attribute
18295         * PropertyValueChangedEventArgs.cs: Added missing attribute
18296         * Binding.cs: Fixed attribute
18297         * ListViewItemConverter: Implemented ListViewSubItemConverter class
18298         * ListBox.cs: Fixed attribute; added missing attributes;
18299         * ScrollableControl.cs: Added missing attributes
18300         * PictureBox.cs: Added missing attributes; implemented missing property
18301         * DateTimePicker.cs: Added missing attributes
18302         * Theme.cs (ToolWindowCaptionHeight): Fixed type
18303         * MonthCalendar.cs: Fixed attributes
18304         * StatusBarPanel.cs: Added missing attributes
18305         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
18306
18307 2005-02-16  Peter Bartok  <pbartok@novell.com>
18308
18309         * TextBoxBase.cs: The previous method to enforce height yet remember
18310           the requested high was less than ideal, this is an attempt to do
18311           it better.
18312         * Control.cs: Added comment about possible problem
18313         * Copyright: Updated format
18314         * GridItemType.cs: Fixed swapped values
18315
18316 2005-02-15  Jackson Harper  <jackson@ximian.com>
18317
18318         * BaseCollection.cs: Use property so we never access an
18319         uninitialized list. Also initialize the list in the property.
18320
18321 2005-02-15  Peter Bartok  <pbartok@novell.com>
18322
18323         * GroupBox.cs (ProcessMnemonic): Implemented
18324         * Label.cs (ProcessMnemonic): Implemented
18325         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
18326           hotkeys
18327
18328 2005-02-15  Peter Bartok  <pbartok@novell.com>
18329
18330         * RadioButton.cs (ProcessMnemonic): Implemented
18331         * CheckBox.cs (ProcessMnemonic): Implemented
18332         * Control.cs:
18333           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
18334             handling
18335           - Added internal method to allow calling ProcessMnemonic from other
18336             controls
18337         * ContainerControl.cs:
18338           - Started support for handling validation chain handling
18339           - Implemented ProcessMnemonic support
18340           - Added Select() call to Active, to make sure the active control
18341             receives focus
18342         * Form.cs: Setting toplevel flag for Forms (this was lost in the
18343           FormParent rewrite)
18344         * ThemeWin32Classic.cs:
18345           - DrawCheckBox(): Fixed stringformat to show hotkeys
18346           - DrawRadioButton(): Fixed stringformat to show hotkeys
18347         * CommonDialog.cs: Removed WndProc override, not needed
18348
18349 2005-02-14  Peter Bartok  <pbartok@novell.com>
18350
18351         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
18352           missed those in the rewrite
18353
18354 2005-02-14  Miguel de Icaza  <miguel@novell.com>
18355
18356         * NumericUpDown.cs (Increment, ToString): Add.
18357         (DecimalPlaces): implement.
18358         
18359         Add attributes.
18360         
18361         * UpDownBase.cs: Add the designer attributes.
18362
18363 2005-02-13  Peter Bartok  <pbartok@novell.com>
18364
18365         * Panel.cs: Removed border_style, now in Control
18366         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
18367           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
18368
18369 2005-02-13  Peter Bartok  <pbartok@novell.com>
18370
18371         * MouseButtons.cs: Added missing attributes
18372         * XplatUIStructs.cs: Added enumeration for title styles
18373         * LeftRightAlignment.cs: Added missing attributes
18374         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
18375           it compatible with Graphics.FromHwnd()
18376         * SelectedGridItemChangedEventArgs.cs: Fixed property type
18377         * Keys.cs: Added missing attributes
18378         * SelectionRange.cs: Added missing attributes
18379         * SelectionRangeConverter.cs: Added
18380         * XplatUI.cs:
18381           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
18382             ReleaseMenuDC methods
18383           - Renamed ReleaseWindow to UngrabWindow
18384           - Added proper startup notice to allow version identification
18385         * Form.cs:
18386           - Added missing attributes
18387           - Removed FormParent concept
18388         * Label.cs: Removed border_style field, now in Control
18389         * RadioButton.cs: Now properly selects RadioButton when focus is
18390           received
18391         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
18392         * Control.cs:
18393           - Added missing attributes
18394           - Added borderstyle handling
18395           - Removed FormParent concept support
18396           - Fixed calls to XplatUI to match changed APIs
18397           - Fixed bug that would case us to use disposed Graphics objects
18398           - Removed unneeded internal methods
18399           - PerformLayout(): Fixed to handle DockStyle.Fill properly
18400           - SelectNextControl(): Fixed to properly check common parents
18401         * TextBoxBase.cs: Removed border_style field (now in Control)
18402         * MessageBox.cs:
18403           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
18404             fixed calculations for form size
18405           - Added support for localized strings and icons
18406           - Improved form size calculations, added border
18407         * ListView.cs: Removed border_style field (now in Control)
18408         * X11Structs.cs: Moved several structs from X11 driver here
18409         * X11Keyboard.cs: Changed debug message
18410         * Application.cs: Removed FormParent concept support
18411         * CommonDialog.cs:
18412           - Resetting end_modal flag
18413           - Removed FormParent concept support
18414         * NativeWindow.cs: Removed FormParent concept support
18415         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
18416           Client area and Non-Client whole window to allow support for WM_NC
18417           messages
18418         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
18419           prevent using it until it supports Hwnd as per Geoff Norton's request
18420         * ToolBar.cs: Fixed drawing, was not doing proper drawing
18421         * PictureBox.cs: Removed border_style field, now in Control
18422         * XplatUIWin32.cs: Added new driver methods
18423
18424 2005-02-12  Peter Bartok  <pbartok@novell.com>
18425
18426         * OpacityConverter.cs: Implemented
18427         * Hwnd.cs: Internal class to support drivers that need to emulate
18428           client area/non-client area window behaviour
18429
18430 2005-02-11  Peter Bartok  <pbartok@novell.com>
18431
18432         * KeysConverter.cs: Implemented
18433
18434 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
18435
18436         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
18437         * LinkLabel: Added missing attributes
18438         * MainMenu.cs: fixes ToString
18439         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
18440         * ListBox.cs: fixes event position
18441         * TrackBar.cs: adds missing attributes and events
18442         
18443 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
18444
18445         * MenuItem.cs: Use SystemInformation and bug fixes
18446         * MenuAPI.cs: Use SystemInformation and bug fixes
18447
18448 2005-02-09  Jackson Harper  <jackson@ximian.com>
18449
18450         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
18451         their keystate otherwise things like VK_MENU get stuck "on".
18452
18453 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
18454
18455         * ListBox.cs: Fixes AddRange bug
18456         
18457 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
18458
18459         * ProgressBar.cs
18460                 - Add missing attributes
18461                 - Add missing method
18462                 
18463         * CheckedListBox.cs: Added missing attributes
18464                 - Add missing attributes
18465                 - Remove extra method
18466         
18467         * ComboBox.cs: Added missing attributes
18468         * VScrollBar.cs: Added missing attributes
18469         * ScrollBar.cs:  Added missing attributes
18470         * ListBox.cs: Fixes signature, add missing consts
18471         * LinkArea.cs:   Added missing attributes
18472         
18473
18474 2005-02-08  Peter Bartok  <pbartok@novell.com>
18475
18476         * Menu.cs: Added missing attributes
18477         * MainMenu.cs: Added missing attributes
18478         * GroupBox.cs: Added missing attributes
18479         * Label.cs: Added missing attributes
18480         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
18481         * ColorDialog.cs:
18482           - Added Instance and Options properties
18483           - Added missing attributes
18484         * Cursor.cs: Made Serializable
18485         * NotifyIcon: Added missing attributes
18486         * MenuItem.cs: Added missing attributes
18487         * TextBoxBase.cs: Implemented AppendText() and Select() methods
18488         * Panel.cs: Added Missing attributes
18489         * MonthCalendar.cs: Fixed CreateParams
18490
18491 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
18492         
18493         * LinkLabel.cs:
18494                 - Fixes signature
18495                 - Fixes issues with links
18496                 - Adds the class attributes
18497
18498 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
18499         
18500         * ComboBox.cs:
18501                 - Fixes button when no items available in dropdown
18502                 - Fixes repainting problems
18503                 - Adds the class attributes
18504                 
18505 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
18506
18507         * XplatUIOSX.cs: Detect the menu bar and title bar height from
18508         the current theme.  Cache these on startup.
18509
18510 2005-02-07  Jackson Harper  <jackson@ximian.com>
18511
18512         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
18513         the scrollbar buttons when they are depressed.
18514
18515 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
18516
18517         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
18518         Get the display size from the main displayid.  We currently dont
18519         support multiple display configurations.
18520
18521 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
18522
18523         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
18524
18525 2005-02-07  Miguel de Icaza  <miguel@novell.com>
18526
18527         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
18528
18529 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18530
18531         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
18532
18533 2005-02-04  Jackson Harper  <jackson@ximian.com>
18534
18535         * ThemeWin32Classic.cs: Respect the clipping rect when
18536         drawing. Only fill the intersection of clips and rects so there
18537         isn't a lot of large fills.
18538         * ScrollBar.cs: Pass the correct clipping rect to the theme
18539         engine. Remove some debug code.
18540
18541 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
18542         
18543         * DateTimePicker.cs:
18544                 - Fixed crash on DateTime.Parse, use Constructor instead
18545
18546 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
18547         
18548         * MenuItem.cs:
18549         * MenuAPI.cs:
18550                 - Owner draw support (MeasureItem and DrawItem)
18551
18552 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
18553         
18554         *  Menu.cs:
18555                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
18556                 - Fixes MenuItems.Add range
18557         * MenuItem.cs:
18558                 - MergeMenu and Clone and CloneMenu functions
18559
18560 2005-02-03  Jackson Harper  <jackson@ximian.com>
18561
18562         * ScrollBar.cs: Make abstract
18563         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
18564         is abstract.
18565
18566 2005-02-03  Jackson Harper  <jackson@ximian.com>
18567
18568         * ScrollBar.cs: First part of my scrollbar fixups. This removes
18569         all the unneeded refreshes and uses invalidates with properly
18570         computed rects.
18571
18572 2005-02-03  Peter Bartok  <pbartok@novell.com>
18573
18574         * ComponentModel.cs: Added
18575         * IDataGridEditingService.cs: Added
18576         * Timer.cs: Added missing attributes
18577         * ToolTip.cs: Added missing attributes
18578
18579 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
18580
18581         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
18582
18583 2005-02-03  Peter Bartok  <pbartok@novell.com>
18584
18585         * ListBox.cs: Added missing attributes
18586
18587 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
18588         
18589         * ListBox.cs:
18590                 - Fixes font height after font change
18591                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
18592                 
18593 2005-02-02  Peter Bartok  <pbartok@novell.com>
18594
18595         * HandleData.cs: Introduced static methods to allow class
18596           to be more self-contained and track it's own HandleData objects
18597         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
18598           HandleData to use new static methods
18599
18600 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
18601
18602         * Combobox.cs:
18603                 - Fixes default size and PreferredHeight
18604                 - Missing events
18605                 - ObjectCollection.Insert implementation
18606                 
18607         * ListControl.cs
18608                 - Fixes signature
18609         * ListBox.cs:
18610                 - Several fixes
18611                 - ObjectCollection.Insert implementation
18612                 - No selection after clean
18613                 - Small fixes
18614
18615 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
18616
18617         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
18618
18619 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
18620
18621         * Combobox.cs:
18622                 - Caches ItemHeight calculation for OwnerDrawVariable
18623                 - Handles dropdown properly
18624                 - Fixes several minor bugs
18625
18626 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
18627
18628         * ListBox.cs:
18629                 - Fixes 71946 and 71950
18630                 - Fixes changing Multicolumn on the fly
18631                 - Fixes keyboard navigation on Multicolumn listboxes
18632
18633 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
18634         
18635         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
18636         crash reporter log.
18637
18638 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
18639
18640         * XplatUIOSX.cs: Allow applications to actually exit.
18641
18642 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
18643
18644         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
18645         their parent at creation time rather than lazily later.  Fixes a major
18646         regression we were experiencing.
18647
18648 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
18649
18650         * ThemeWin32Classic.cs: more date time picker painting fixes
18651         * DateTimePicker.cs: more monthcalendar drop down fixes
18652         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
18653
18654 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
18655
18656         * ScrollBar.cs:
18657                 - When moving the thumb going outside the control should stop the moving
18658                 - Adds the firing of missing events
18659                 - Fixes no button show if Size is not specified
18660                 - End / Home keys for keyboard navigation
18661
18662 2005-01-30  Peter Bartok  <pbartok@novell.com>
18663
18664         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
18665           sanity check to prevent theoretical loop
18666         * XplatUIWin32.cs (SetVisible): Removed debug output
18667         * XplatUIX11.cs (SystrayChange): Added sanity check
18668         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
18669         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
18670           behaviour, valid until the X11 client window rewrite is done
18671         * TextBox.cs (ctor): Setting proper default foreground and background
18672           colors
18673
18674 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
18675
18676         * Theme: Added DrawDateTimePicker to interface
18677         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
18678         * DateTimePicker.cs: Created (still needs keys and painting code)
18679         * DateTimePickerFormat.cs: added
18680         * MonthCalendar.cs: fixed CreateParams for popup window mode
18681           
18682 2005-01-29  Peter Bartok  <pbartok@novell.com>
18683
18684         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
18685           this should also the calculations for ligher/darker
18686         * Theme.cs: Fixed defaults for ScrollBar widths/heights
18687
18688 2005-01-29  Peter Bartok  <pbartok@novell.com>
18689
18690         * ArrangeDirection.cs: Added
18691         * ArrangeStartingPositon.cs: Added
18692         * SystemInformation.cs: Implemented
18693         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18694           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
18695           used by SystemInformation class
18696         * X11Strucs.cs: Added XSizeHints structure
18697         * MenuAPI.cs:
18698           - Fixed CreateParams to make sure the menu window is always visible
18699           - TrackPopupMenu: Added check to make sure we don't draw the
18700             menu offscreen
18701
18702 2005-01-29  Peter Bartok  <pbartok@novell.com>
18703
18704         * HandleData.cs: Added method for altering invalid area
18705         * TextBoxBase.cs: Implemented TextLength
18706
18707 2005-01-28  Peter Bartok  <pbartok@novell.com>
18708
18709         * XplatUIX11.cs: Improvement over last patch, not sending
18710           the WM_PAINT directly anymore, instead we scroll any pending
18711           exposed areas and let the system pick out the WM_PAINT later
18712
18713 2005-01-28  Peter Bartok  <pbartok@novell.com>
18714
18715         * SWF.csproj: Deleted, no longer used. Instead,
18716           Managed.Windows.Forms/SWF.csproj should be used
18717         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
18718           directly, to avoid a potential race condition with the next
18719           scroll
18720
18721 2005-01-28  Peter Bartok  <pbartok@novell.com>
18722
18723         * XplatUI.cs: Made class internal
18724
18725 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
18726
18727         * CheckedListBox.cs:
18728                 - Draw focus
18729                 - Fixed Drawing
18730                 - Missing methods and events
18731
18732 2005-01-27  Peter Bartok  <pbartok@novell.com>
18733
18734         * Application.cs (Run): Don't use form if we don't have one
18735
18736 2005-01-27  Peter Bartok  <pbartok@novell.com>
18737
18738         * TextBoxBase.cs (get_Lines): Fixed index off by one error
18739
18740 2005-01-27  Peter Bartok  <pbartok@novell.com>
18741
18742         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
18743         * GridItem.cs: Added; Patch by Jonathan S. Chambers
18744         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
18745         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
18746         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
18747         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
18748         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18749         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
18750         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18751         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18752         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18753         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
18754
18755 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
18756
18757         * Combobox.cs:
18758                 - Draw focus on Simple Combobox
18759                 - Fixes drawing issues
18760                 - fixes 71834
18761
18762 2005-01-27  Peter Bartok  <pbartok@novell.com>
18763
18764         * Form.cs:
18765           - Place window in default location, instead of hardcoded 0/0
18766           - Send initial LocationChanged event
18767         * Control.cs:
18768           - UpdateBounds after creation to find out where the WM placed us
18769           - Make sure that if the ParentForm changes location the Form
18770             is notified
18771         * XplatUIX11.cs: XGetGeometry will not return the coords relative
18772             to the root, but to whatever the WM placed around us.
18773             Translate to root coordinates before returning toplevel
18774             coordinates
18775         * XplatUIWin32.cs: Removed debug output
18776         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
18777           flag to GetWindowPos, to allow translation of coordinates on X11
18778
18779 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
18780
18781         * ListBox.cs: connect LostFocus Event
18782
18783 2005-01-27  Peter Bartok  <pbartok@novell.com>
18784
18785         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18786           XplatUIX11.cs: Extended the Systray API
18787         * Form.cs: Removed debug output
18788         * Application.cs: Fixed focus assignment, always need to call
18789           XplatUI.Activate() since Form.Activate() has rules that may
18790           prevent activation
18791         * NotifyIcon.cs: Should be complete now
18792         * ToolTip.cs: Worked around possible timer bug
18793
18794 2005-01-27  Jackson Harper  <jackson@ximian.com>
18795
18796         * TabControl.cs:
18797         - Only invalidate the effected tabs when the
18798         selected index changes. This reduces drawing and gets rid of some
18799         flicker.
18800         - Only refresh if the tabs need to be shifted, otherwise only
18801         invalidate the slider button.
18802         - On windows the tabs are not filled to right if the slider is
18803         visible.
18804         
18805 2005-01-27  Jackson Harper  <jackson@ximian.com>
18806
18807         * TabControl.cs: Only refresh on mouseup if we are showing the
18808         slider. Also only invalidate the button whose state has changed.
18809
18810 2005-01-26  Peter Bartok  <pbartok@novell.com>
18811
18812         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
18813         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
18814           and SystrayRemove() methods
18815         * XplatUIOSX.cs: Stubbed Systray methods
18816         * XplatUIX11.cs:
18817           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
18818             methods
18819           - Fixed broken XChangeProperty calls (marshalling messed up things)
18820         * X11Structs.cs: Added enums and structs required for Size hinting
18821         * NotifyIcon.cs: Added & implemented
18822
18823 2005-01-26  Jackson Harper  <jackson@ximian.com>
18824
18825         * TabControl.cs: Space vertically layed out tabs properly.
18826
18827 2005-01-26  Peter Bartok  <pbartok@novell.com>
18828
18829         * Form.cs (CreateClientParams): Always set the location to 0,0
18830           since we're a child window.
18831
18832         * Control.cs (SetVisibleCore): Always explicitly setting the location
18833           of a toplevel window, apparently X11 doesn't like to move windows
18834           while they're not mapped.
18835
18836 2005-01-26  Jackson Harper  <jackson@ximian.com>
18837
18838         * TabControl.cs: Implement FillToRight size mode with vertically
18839         rendered tabs.
18840
18841 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
18842
18843         * ControlPaint.cs, ThemeWin32Classic.cs
18844                 - Fixes DrawFocusRectangle
18845
18846 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
18847
18848         * MenuAPI.cs:
18849                 - MenuBar tracking only starts when item is first clicked
18850                 - Fixes menu hidding for multiple subitems
18851                 - Unselect item in MenuBar when item Executed
18852                 - Fixes bug 71495
18853
18854 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
18855
18856         * ListControl.cs:
18857                 - IsInputKey for ListBox
18858         * ListBox.cs:
18859                 - Focus item
18860                 - Shift and Control item selection
18861                 - Implement SelectionMode.MultiExtended
18862                 - Fixes RightToLeft
18863         * ComboBox.cs:
18864                 - IsInputKey implemented
18865                 - Do not generate OnTextChangedEdit on internal txt changes
18866                 
18867 2005-01-23  Peter Bartok  <pbartok@novell.com>
18868
18869         * AccessibleObject.cs: Partially implemented Select()
18870         * MonthCalendar.cs: Added missing attributes and events
18871         * Form.cs: Fixed CreateParams behaviour, now controls derived from
18872           form can properly override CreateParams.
18873         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18874           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
18875           Control performs Invalidate & Update
18876         * NativeWindow (CreateHandle): Added special handling for Form
18877           and Form.FormParent classes to allow overriding of From.CreateParams
18878         * Control.cs:
18879           - ControlNativeWindow: Renamed 'control' variable to more intuitive
18880             name 'owner'
18881           - ControlNativeWindow: Added Owner property
18882           - Removed usage of Refresh() on property changes, changed into
18883             Invalidate(), we need to wait until the queue is processed for
18884             updates, direct calls might cause problems if not all vars for
18885             Paint are initialized
18886           - Added call to UpdateStyles() when creating the window, to set any
18887             styles that CreateWindow might have ignored.
18888           - Added support for Form CreateParent overrides to UpdateStyles()
18889         * MessageBox.cs: Removed no longer needed FormParent override stuff,
18890           CreateParams are now properly overridable
18891         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
18892           CreateParams are now properly overridable
18893
18894 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
18895
18896         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
18897         OnTextBoxChanged.
18898
18899         Capture LostFocus and OnTextBoxChanged.  The later introduces a
18900         recursive invocation that I have not figured out yet.
18901
18902         Reset the timer when not using (it was accumulating).
18903
18904
18905         (OnTextBoxChanged): Set UserEdit to true here to track whether the
18906         user has made changes that require validation.
18907
18908         Reset changing to avoid loops.
18909
18910 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
18911
18912         * NumericUpDown.cs: Display value at startup.
18913
18914         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
18915         ValidateEditText.
18916
18917         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
18918         filled in.  Added some basic parsing of text.
18919
18920         Still missing the OnXXX method overrides, and figuring out the
18921         events that must be emitted.
18922
18923         * UpDownBase.cs: Handle UserEdit on the Text property.
18924         
18925 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
18926
18927         * ComboBox.cs:
18928           - Fixes IntegralHeight
18929           - ToString method
18930
18931 2005-01-21  Jackson Harper  <jackson@ximian.com>
18932
18933         * TabControl.cs: Set the SelectedIndex property when SelectedTab
18934         is set so that the page visibility is updated and the tabs are
18935         sized correctly.
18936
18937 2005-01-21  Jackson Harper  <jackson@ximian.com>
18938
18939         * TabControl.cs: Use cliping rectangle for blitting. Give the
18940         theme the clipping rect so we can do clipping while
18941         drawing. Remove some debug code.
18942
18943 2005-01-21  Jackson Harper  <jackson@ximian.com>
18944
18945         * TabPage.cs: Add a new method so tab pages can force the tab
18946         control to recalculate the tab page sizes.
18947         * TabControl.cs: UpdateOwner needs to make the tab control recalc
18948         sizes.
18949
18950 2005-01-20  Jackson Harper  <jackson@ximian.com>
18951
18952         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
18953
18954 2005-01-20  Jackson Harper  <jackson@ximian.com>
18955
18956         * TreeView.cs: Set the bounds for nodes properly. They were
18957         getting screwed up when checkboxes were not enabled, but images
18958         were.
18959
18960 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
18961
18962         * ListBox.cs:
18963                 - Owner draw support
18964                 - Fixes
18965                 
18966 2005-01-20  Jackson Harper  <jackson@ximian.com>
18967
18968         * XplatUIStructs.cs: More misc keys
18969         * X11Keyboard.cs: Ignore some control keys.
18970
18971 2005-01-20  Jackson Harper  <jackson@ximian.com>
18972
18973         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
18974         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
18975
18976 2005-01-19  Peter Bartok  <pbartok@novell.com>
18977
18978         * Control.cs: Un-selecting the control when it is loosing focus
18979
18980 2005-01-19  Jackson Harper  <jackson@ximian.com>
18981
18982         * TreeView.cs: Hook up to the text controls leave event so we can
18983         end editing when the users clicks outside the text box.
18984         
18985 2005-01-19  Jackson Harper  <jackson@ximian.com>
18986
18987         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
18988         get set in the conversion array.
18989
18990 2005-01-19  Peter Bartok  <pbartok@novell.com>
18991
18992         * Application.cs (ModalRun): Added a call to CreateControl to ensure
18993           focus is properly set
18994         * Button.cs:
18995           - Added missing attributes
18996           - removed styles, those are already set in the base class
18997         * ButtonBase.cs:
18998           - Added missing attributes
18999           - Added clip window styles
19000         * CheckBox.cs: Added missing attributes
19001         * CommonDialog.cs:
19002           - FormParentWindow.CreateParams: Added required clip styles
19003         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
19004           also filters modifier keys
19005         * MessageBox.cs:
19006           - Added assignment of Accept and Cancel button to enable Enter
19007             and Esc keys in MessageBox dialogs
19008           - FormParentWindow.CreateParams: Added required clip styles
19009         * RadioButton.cs: Added missing attributes
19010         * TextControl.cs: No longer draws selection if control does not
19011           have focus
19012         * TextBoxBase.cs:
19013           - Now draws simple rectangle around test area to make it obvious
19014             there's a control. This is a hack until we properly support borders
19015           - A few simple fixes to support selections better, now erases selected
19016             text when typing, and resets selection when using movement keys
19017
19018 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
19019
19020         * UpDownBase.cs: Added some new properties.
19021
19022         * DomainUpDown.cs: Implement a lot to get my test working.
19023
19024 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19025
19026         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
19027
19028 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19029
19030         * OSXStructs (WindowAttributes): Fixed csc complaints
19031
19032 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19033
19034         * XplayUIOSX.cs:
19035           OSXStructs.cs: Initial refactor to move enums and consts into
19036           OSXStructs and use them in the driver for greater readability.
19037
19038 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19039
19040         * XplatUIOSX.cs: Initial support for Standard Cursors.
19041         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
19042
19043 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
19044
19045         * ComboBox.cs: ability to change style when the ctrl is already
19046         created, missing methods and events, bug fixes, signature fixes
19047
19048 2005-01-19  Peter Bartok  <pbartok@novell.com>
19049
19050         * Cursors.cs (ctor): Added ctor to fix signature
19051
19052 2005-01-18  Peter Bartok  <pbartok@novell.com>
19053
19054         * Button.cs: Implemented DoubleClick event
19055         * ButtonBase.cs:
19056           - Fixed keyboard handling to behave like MS, where the press of
19057             Spacebar is equivalent to a mousedown, and the key release is
19058             equivalent to mouseup. Now a spacebar push will give the same
19059             visual feedback like a mouse click.
19060           - Added missing attributes
19061           - Added ImeModeChanged event
19062           - Added support for generating DoubleClick event for derived classes
19063         * CheckBox.cs:
19064           - Implemented DoubleClick event
19065           - Added missing attributes
19066         * CommonDialog.cs: Added missing attribute
19067         * ContextMenu.cs: Added missing attributes
19068         * RadioButton.cs:
19069           - AutoChecked buttons do not allow to be unselected when clicked
19070             (otherwise we might end up with no selected buttons in a group)
19071           - Added missing attributes
19072           - Implemented DoubleClickEvent
19073         * ThreadExceptionDialog.cs: Enabled TextBox code
19074
19075 2005-01-18  Peter Bartok  <pbartok@novell.com>
19076
19077         * Form.cs: Removed debug output
19078         * Button.cs: Added support for DoubleClick method
19079
19080 2005-01-18  Peter Bartok  <pbartok@novell.com>
19081
19082         * Form.cs:
19083           - Added method to parent window that allows triggering size
19084             calculations when a menu is added/removed
19085           - set_Menu: Cleaned up mess from early days of Form and Control,
19086             now properly triggers a recalc when a menu is added/removed
19087           - Added case to select form itself as focused form if no child
19088             controls exist
19089           - Added PerformLayout call when showing dialog, to ensure properly
19090             placed controls
19091         * Control.cs:
19092           - Select(): Made internal so Form can access it
19093           - Focus(): Only call Xplat layer if required (avoids loop), and sets
19094             status
19095         * Application.cs (Run): Removed hack and calls PerformLayout instead
19096           to trigger calculation when Form becomes visible
19097
19098 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
19099
19100         * ComboBox.cs: fixes for ownerdraw
19101
19102 2005-01-18  Peter Bartok  <pbartok@novell.com>
19103
19104         * TextControl.cs:
19105           - Sentinel is no longer static, each Document gets it's own, this
19106             avoids locking or alternatively overwrite problems when more
19107             than one text control is used simultaneously.
19108           - Switched to use Hilight and HilightText brushes for text selection
19109
19110         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
19111
19112 2005-01-18  Peter Bartok  <pbartok@novell.com>
19113
19114         * Control.cs:
19115           - Hooked up the following events:
19116                 o ControlAdded
19117                 o ControlRemoved
19118                 o HandleDestroyed
19119                 o ImeModeChanged
19120                 o ParentChanged
19121                 o TabStopChanged
19122                 o Invalidated
19123                 o SystemColorsChanged
19124                 o ParentFontChanged
19125                 o Move
19126           - Removed debug output
19127           - Added a call to the current theme's ResetDefaults when a color change
19128             is detected
19129         * Form.cs: Now setting the proper ImeMode
19130         * Theme.cs: Defined a method to force recreation of cached resources
19131           and rereading of system defaults (ResetDefaults())
19132         * ThemeWin32Classic.cs: Added ResetDefaults() stub
19133
19134 2005-01-17  Peter Bartok  <pbartok@novell.com>
19135
19136         * Control.cs: Added missing attributes
19137
19138 2005-01-17  Jackson Harper  <jackson@ximian.com>
19139
19140         * TreeNode.cs: Implement editing. Add missing properties selected
19141         and visible.
19142         * TreeView.cs: Implement node editing. Also some fixes to use
19143         Invalidate (invalid area) instead of Refresh when selecting.
19144
19145 2005-01-17  Peter Bartok  <pbartok@novell.com>
19146
19147         * Control.cs:
19148           - Implemented InvokeGotFocus() method
19149           - Implemented InvokeLostFocus() method
19150           - Implemented InvokePaint() method
19151           - Implemented InvokePaintBackground() method
19152           - Implemented InvokeClick() method
19153           - Implemented FindForm() method
19154           - Implemented RectangleToClient() method
19155           - Implemented ClientToRectangle() method
19156           - Implemented ResetBackColor() method
19157           - Implemented ResetCursor() method
19158           - Implemented ResetFont() method
19159           - Implemented ResteForeColor() method
19160           - Implemented ResetImeMode() method
19161           - Implemented ResetLeftToRight() method
19162           - Implemented ResetText() method
19163           - Implemented Scale() methods
19164           - Implemented ScaleCore() method
19165           - Implemented Update() method
19166           - Removed unused variables
19167           - Stubbed AccessibilityNotifyClients and
19168             ControlAccessibleObject.NotifyClients() methods (dunno what to do
19169             with those yet)
19170           - Now setting proper default for RightToLeft property
19171           - Fixed bug in SetClientSizeCore that would cause windows to get
19172             really big
19173           - Now sending Click/DoubleClick events
19174           - Now selecting controls when left mouse button is clicked on
19175             selectable control
19176         * AccessibleEvents.cs: Added
19177         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
19178         * XplatUIOSX.cs: Stubbed UpdateWindow() method
19179         * XplatUIWin32.cs: Implemented UpdateWindow() method
19180         * XplatUIX11.cs: Implemented UpdateWindow() method
19181         * Form.cs: Removed stray semicolon causing CS0162 warning
19182         * ThemeWin32Classic.cs: Fixed unused variable warnings
19183         * ScrollableControl.cs: Now calls base method for ScaleCore
19184         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
19185           style to avoid interference with internal click handler (which is
19186           different than standard Control click handling)
19187         * RadioButton.cs:
19188           - Now unchecks all sibling radio buttons when control is
19189             selected (Fixes #68756)
19190           - Removed internal tabstop variable, using the one inherited from
19191             Control
19192
19193 2005-01-17  Jackson Harper  <jackson@ximian.com>
19194
19195         * NavigateEventArgs.cs: Fix base type.
19196         * LinkLabel.cs: Sig fix
19197         
19198 2005-01-17  Jackson Harper  <jackson@ximian.com>
19199
19200         * TreeView.cs: Only invalidate the effected nodes bounds when
19201         selecting nodes.
19202
19203 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
19204
19205         * XplatUIWin32.cs: fixes Win32 marshaling
19206         * XplatUIX11.cs: fixes method signature
19207
19208 2005-01-17  Peter Bartok  <pbartok@novell.com>
19209
19210         * XplatUIX11.cs: Clean up resources when we no longer need them
19211
19212 2005-01-17  Peter Bartok  <pbartok@novell.com>
19213
19214         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
19215           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
19216           and DestroyCursor() methods.
19217         * Cursor.cs: Partially implemented, now supports standard cursors;
19218           still contains some debug code
19219         * Cursors.cs: Implemented class
19220         * Control.cs:
19221           - WndProc(): Added handling of WM_SETCURSOR message, setting the
19222             appropriate cursor
19223           - Implemented Cursor property
19224           - Replaced break; with return; more straightforwar and possibly
19225             faster
19226           - Now properly setting the result for WM_HELP
19227         * X11Structs.cs: Added CursorFontShape enum
19228         * XplatUIStructs.cs:
19229           - Added StdCursor enum (to support DefineStdCursor() method)
19230           - Added HitTest enum (to support sending WM_SETCURSOR message)
19231         * XplatUIX11.cs:
19232           - Now sends the WM_SETCURSOR message
19233           - Implemented new cursor methods
19234         * XplatUIOSX.cs: Stubbed new cursor methods
19235         * XplatUIWin32.cs:
19236           - Implemented new cursor methods
19237           - Added GetSystemMetrics function and associated enumeration
19238
19239 2005-01-15  Peter Bartok  <pbartok@novell.com>
19240
19241         * Control.cs:
19242           - WndProc(): Now handles EnableNotifyMessage
19243           - SelectNextControl(): Fixed bug where if no child or sibling
19244             controls exist we looped endlessly
19245
19246 2005-01-14  Jackson Harper  <jackson@ximian.com>
19247
19248         * TreeView.cs: Recalculate the tab pages when a new one is added
19249         so that the proper bounding rects are created.
19250
19251 2005-01-14  Jackson Harper  <jackson@ximian.com>
19252
19253         * TreeView.cs: Draw a gray box instead of a grip in the lower
19254         right hand corner when there are both horizontal and vertical
19255         scroll bars.
19256
19257 2005-01-14  Jackson Harper  <jackson@ximian.com>
19258
19259         * Control.cs: When erasing backgrounds use FromHwnd instead of
19260         FromHdc when there is a NULL wparam. This occurs on the X driver.
19261         * XplatUIX11.cs: Set the wparam to NULL.
19262
19263 2005-01-13  Jackson Harper  <jackson@ximian.com>
19264
19265         * PictureBox.cs: Implement missing methods (except ToString, need
19266         to test that on windows) and events. When visibility is changed we
19267         need to redraw the image because the buffers are killed. When size
19268         is changed refresh if the sizemode needs it.
19269
19270 2005-01-13  Peter Bartok  <pbartok@novell.com>
19271
19272         * Control.cs (SelectNextControl): Was using wrong method to select
19273           a control
19274
19275 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
19276
19277         * ComboBox.cs: fixes dropstyle
19278
19279 2005-01-13  Peter Bartok  <pbartok@novell.com>
19280
19281         * Form.cs:
19282           - Implemented Select() override
19283           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
19284           - Now sets keyboard focus on startup
19285         * Control.cs (SelectNextControl): Now properly handles directed=true
19286         * TextBoxBase.cs:
19287           - WndProc: Now passes tab key on to base if AcceptTabChar=false
19288           - Added (really bad) focus rectangle (mostly for testing)
19289         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
19290           to enforce redraw on focus changes
19291         * ContainerControl.cs:
19292           - Fixed detection of Shift-Tab key presses
19293           - Fixed traversal with arrow keys
19294         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
19295           gonna keep this or if it's complete yet
19296         
19297 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
19298
19299         * ComboBox.cs: missing properties, fixes
19300
19301 2005-01-13  Peter Bartok  <pbartok@novell.com>
19302
19303         * Panel.cs (ctor): Setting Selectable window style to off
19304         * Splitter.cs (ctor): Setting Selectable window style to off
19305         * GroupBox.cs (ctor): Setting Selectable window style to off
19306         * Label.cs (ctor): Setting Selectable window style to off
19307
19308 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
19309
19310         * UpDownBase.cs (InitTimer): If the timer has been already
19311         created, enable it.
19312
19313         Use a TextBox instead of a Label.
19314
19315 2005-01-12  Jackson Harper  <jackson@ximian.com>
19316
19317         * TreeView.cs: Refresh the tree after sorting the nodes. Always
19318         draw the connecting node lines (when ShowLines is true).
19319         * TreeNode.cs: The nodes index can now be updated. This is used
19320         when a node collection is sorted.
19321         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
19322         insert or an existing unsorted node collection can be sorted.
19323         
19324 2005-01-12  Peter Bartok  <pbartok@novell.com>
19325
19326         * ContainerControl.cs: Implemented ProcessDialogKeys()
19327
19328 2005-01-12  Peter Bartok  <pbartok@novell.com>
19329
19330         * Control.cs:
19331           - Implemented SelectNextControl() method
19332           - Several focus related bug fixes
19333           - Fixed Docking calculations to match MS documentation and
19334             behaviour
19335
19336 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
19337
19338         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
19339         bug fixes
19340
19341 2005-01-12  Peter Bartok  <pbartok@novell.com>
19342
19343         * Control.cs:
19344           - Fixed broken Contains() method
19345           - Implemented GetNextControl() method. Finally. This is the pre-
19346             requisite for focus handling.
19347
19348 2005-01-12  Peter Bartok  <pbartok@novell.com>
19349
19350         * OSXStrucs.cs: Added
19351
19352 2005-01-12  Peter Bartok  <pbartok@novell.com>
19353
19354         * XplatUIWin32.cs:
19355           - Removed PeekMessageFlags
19356           - Implemented SetWindowStyle() method
19357         * XplatUIStructs.cs: Added PeekMessageFlags
19358         * X11Structs: Added missing border_width field to XWindowChanges struct
19359         * XplatUIX11.cs:
19360           - PeekMessage: Now throws exception if flags which are not yet
19361             supported are passed
19362           - Implemented SetWindowStyle() method
19363           - Fixed SetZOrder to handle AfterHwnd properly
19364         * XplatUI.cs: Added SetWindowStyle() method
19365         * XplatUIDriver.cs: Added SetWindowStyle() abstract
19366         * Control.cs:
19367           - Implemented UpdateStyles() method
19368           - Implemented UpdateZOrder() method
19369         * XplatUIOSX.cs: Added SetWindowStyle() stub
19370
19371 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
19372
19373         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
19374         button mouse).
19375
19376
19377 2005-01-11  Jackson Harper  <jackson@ximian.com>
19378
19379         * TreeView.cs: Still need to draw lines to siblings even if out of
19380         the current node is out of the clip.
19381
19382 2005-01-11  Jackson Harper  <jackson@ximian.com>
19383
19384         * TreeView.cs: When setting the hbar/vbar/grip position use
19385         SetBounds so that perform layout is only called once. Also suspend
19386         and resume layout so layout is only done once for all controls.
19387         - Removed some debug fluff
19388         * SizeGrip.cs: Call base implmentation in overriding methods.
19389         - When visibility is changed the drawing buffers are killed so we
19390         need to redraw.
19391
19392 2005-01-11  Jackson Harper  <jackson@ximian.com>
19393
19394         * TreeView.cs: Calculate the open node count while drawing. This
19395         saves us an entire tree traversal for every paint operation. Use
19396         a member var for the open node count so less vars are passed around.
19397
19398 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
19399
19400         * MonthCalendar.cs:
19401         - fixed selection to use mousemove, not mouse polling on timer
19402         * ThemeWin32Classic.cs
19403         - removed redundant unused variable "no_more_content"
19404         
19405 2005-01-11  Peter Bartok  <pbartok@novell.com>
19406
19407         * XplatUIX11.cs (DoEvents): Needs to return when no more events
19408           are pending, so it now calls PeekMessage instead of GetMessage;
19409           implemented a incomplete version of PeekMessage
19410         
19411 2005-01-11  Peter Bartok  <pbartok@novell.com>
19412
19413         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
19414           I18n issues
19415         * TextBoxBase.cs: Added sending of TextChanged event
19416
19417 2005-01-10  Jackson Harper  <jackson@ximian.com>
19418
19419         * TreeView.cs: Try not to draw outside the clipping rectangle on
19420         each node element.
19421
19422 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
19423
19424         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
19425
19426 2005-01-10  Jackson Harper  <jackson@ximian.com>
19427
19428         * TreeView.cs:
19429         - Implement fast scrolling. Now only the newly
19430         exposed nodes are drawn and the old image is moved using the
19431         XplatUI::ScrollWindow method.
19432         - Factor in height of nodes when calculating whether or not the
19433         node is in the clipping rect.
19434
19435 2005-01-10  Jackson Harper  <jackson@ximian.com>
19436
19437         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
19438
19439 2005-01-10  Peter Bartok  <pbartok@novell.com>
19440
19441         * Application.cs: Added temporary hack to resolve all our resize
19442           required issues on startup. This will get fixed properly at
19443           some point in the future
19444
19445 2005-01-10  Jackson Harper  <jackson@ximian.com>
19446
19447         * SizeGrip.cs: New internal class that is used as a sizing
19448         grip control...hence the name.
19449
19450 2005-01-10  Peter Bartok  <pbartok@novell.com>
19451
19452         * Control.cs: Implemented proper TabIndex handling, now assigning
19453           a tabindex when a control is added to a container
19454         * GroupBox.cs (ctor): Now sets the Container style bit, required
19455           for Control.GetNextControl()
19456
19457 2005-01-09  Jackson Harper  <jackson@ximian.com>
19458
19459         * TextBoxBase.cs: Clear window when scrolling (fixes build).
19460
19461 2005-01-09  Peter Bartok <pbartok@novell.com>
19462
19463         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
19464           XplatUIX11.cs: Added ability to control ScrollWindow expose and
19465           an overload for ScrollWindow to allow only scrolling a rectangle
19466
19467 2005-01-09  Peter Bartok <pbartok@novell.com>
19468
19469         * Form.cs:
19470           - Implemented SetDesktopBounds method
19471           - Implemented SetDesktopLocation method
19472
19473 2005-01-08  Jackson Harper  <jackson@ximian.com>
19474
19475         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
19476         the node count has changed, this removes to VScroll::Refresh calls
19477         when drawing.
19478
19479 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
19480
19481         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
19482
19483 2005-01-07  Jackson Harper  <jackson@ximian.com>
19484
19485         * TreeNode.cs: Just update the single node when it is
19486         checked. Don't refresh after toggling, the Expand/Collapse already
19487         handles this.
19488         * TreeView.cs: Respect clipping a little more when drawing. Try
19489         not to redraw things that don't need to be redrawn. Just hide the
19490         scrollbars when they are no longer needed instead of removing
19491         them, so they don't have to be created again and again.
19492         
19493 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
19494
19495         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
19496         coordinates to window space to place the caret properly, FIXED.
19497         Implement GetWindowState & SetWindowState
19498
19499 2005-01-06  Peter Bartok <pbartok@novell.com>
19500
19501         * Form.cs:
19502           - Implemented ClientSize property
19503           - Implemented DesktopBounds property
19504           - Implemented DesktopLocation property
19505           - Implemented IsRestrictedWindow property
19506           - Implemented Size property
19507           - Implemented TopLevel property
19508           - Implemented FormWindowState property
19509         * Control.cs:
19510           - Implemented GetTopLevel() method
19511           - Implemented SetTopLevel() method
19512         * X11Structs.cs (Atom):
19513           - Added AnyPropertyType definition
19514           - Added MapState definiton and updated XWindowAttribute struct
19515         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
19516         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
19517         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
19518         * XplatUIWin32.cs:
19519           - Implemented GetWindowState() and SetWindowState() methods
19520           - Fixed Win32GetWindowLong return type
19521         * XplatUIX11.cs:
19522           - Introduced central function for sending NET_WM messages
19523           - Implemented GetWindowState() and SetWindowState() methods
19524         * TextBoxBase.cs (set_Lines):
19525           - Now uses Foreground color for text added via Text property (Duh!)
19526           - Added code to remember programmatically requested size (fixes
19527             behaviour when Multiline is set after Size)
19528           - Added AutoSize logic
19529
19530 2005-01-06  Jackson Harper  <jackson@ximian.com>
19531
19532         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
19533
19534 2005-01-06  Jackson Harper  <jackson@ximian.com>
19535
19536         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
19537         set to less then 0.
19538
19539 2005-01-06  Jackson Harper  <jackson@ximian.com>
19540
19541         * ScrollableControl.cs: Lazy init the scrollbars.
19542         
19543 2005-01-06  Jackson Harper  <jackson@ximian.com>
19544
19545         * Theme.cs: Speed up getting pens and solid brushes, by using
19546         their ARGB as a hash instead of tostring and not calling Contains.
19547
19548 2005-01-06  Peter Bartok <pbartok@novell.com>
19549
19550         * Form.cs:
19551           - Implemented OnActivated and OnDeactivate event trigger
19552           - Implemented Activate() method
19553           - Fixed ShowDialog() to activate the form that was active before
19554             the dialog was shown
19555         * XplatUIX11.cs:
19556           - Added global active_window var that tracks the currently active
19557             X11 window
19558           - Now always grabs Property changes from the root window to always
19559             catch changes on the active window property
19560           - Added code to PropertyNotify handler to send Active/Inactive
19561             messages when state changes. This puts X11 and Win32 en par on
19562             WM_ACTIVATE notifications (except for double notifications when
19563             the user clicks away from our modal window to another one of our
19564             windows)
19565
19566 2005-01-05  Jackson Harper  <jackson@ximian.com>
19567
19568         * ImageList.cs: Implment ctor
19569
19570 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
19571
19572         * XplatUIOSX.cs: Implement Activate/SetTopmost
19573
19574 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
19575
19576         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
19577
19578 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
19579
19580         * XplatUIOSX.cs: Implement GetActive/SetFocus.
19581
19582 2005-01-05  Peter Bartok <pbartok@novell.com>
19583
19584         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
19585           XplatUIOSX.cs: Added GetActive method to return the currently
19586           active window for the application (or null, if none is active)
19587         * Form.cs:
19588           - Implemented ActiveForm
19589           - Commented out owner assignment for modal dialogs (causes problems
19590             on Win32, since the owner will be disabled)
19591           - Reworked some Active/Focus handling (still incomplete)
19592         * CommonDialog.cs: Commented out owner assignment for modal dialogs
19593           (causes problems on Win32, since the owner will be disabled)
19594         * IWin32Window: Added ComVisible attribute
19595
19596 2005-01-05  Peter Bartok <pbartok@novell.com>
19597
19598         * ToolTip.cs (WndProc): Enable setting focus now that we have the
19599           required XplatUI functions.
19600
19601 2005-01-05  Peter Bartok <pbartok@novell.com>
19602
19603         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
19604           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
19605           to implement focus and activation handling; still incomplete and
19606           with debug output
19607
19608 2005-01-04  Peter Bartok <pbartok@novell.com>
19609
19610         * TextBoxBase.cs: Changed access level for Document property to
19611           match switch to internal for TextControl
19612
19613 2005-01-04  Peter Bartok <pbartok@novell.com>
19614
19615         * AccessibleObject: Added ComVisible attribute
19616
19617 2005-01-04  Jackson Harper  <jackson@ximian.com>
19618
19619         * X11Keyboard.cs: Remove unneeded var.
19620
19621 2005-01-04  Jackson Harper  <jackson@ximian.com>
19622
19623         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
19624         but PAINT.
19625         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
19626         ClientMessage. This makes apps exit cleanly (more often).
19627         
19628 2005-01-04  Jackson Harper  <jackson@ximian.com>
19629
19630         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
19631         handling focus, return correct colors and fonts,
19632         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
19633         handle selection, horizontal scrolling, and mouse interaction.
19634
19635 2005-01-04  Peter Bartok <pbartok@novell.com>
19636
19637         * ICommandExecutor.cs: Added
19638         * IDataGridColumnStyleEditingNotificationService.cs: Added
19639         * IFeatureSupport.cs: Added
19640         * IFileReaderService.cs: Added
19641         * IDataObject.cs: Added ComVisible attribute
19642         * AmbientProperties.cs: Added
19643         * BaseCollection.cs: Added missing attributes
19644         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
19645         * BaseCollection.cs: Added missing attributes
19646         * Binding.cs: Added TypeConverter attribute
19647         * BindingContext.cs: Added DefaultEvent attribute
19648         * BindingsCollection.cs: Added DefaultEvent attribute
19649         * Button.cs: Added DefaultValue attribute
19650         * DragEventArgs.cs: Added ComVisible attribute
19651         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
19652         * KeyEventArgs.cs: Added ComVisible attribute
19653         * KeyPressEventArgs.cs: Added ComVisible attribute
19654         * MouseEventArgs.cs: Added ComVisible attribute
19655         * NavigateEventArgs.cs: Added
19656         * NavigateEventHandler.cs: Added
19657         * FeatureSupport.cs: Added
19658         * OSFeature.cs: Added
19659         * Theme.cs: Added abstract Version property to support OSFeature
19660         * ThemeWin32Classic.cs: Added Version property to
19661           support OSFeature.Themes
19662         * ProgressBar.cs: Removed OnPaintBackground override, not required since
19663           the proper styles to avoid background drawing are set, also doesn't
19664           match MS signature
19665         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
19666         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
19667         * ScrollEventArgs.cs: Added ComVisible attribute
19668         * SplitterEventArgs.cs: Added ComVisible attribute
19669         * AccessibleSelection.cs: Added Flags attribute
19670         * Appearance.cs: Added ComVisible attribute
19671         * Border3DSide.cs: Added ComVisible attribute
19672         * Border3DStyle.cs: Added ComVisible attribute
19673         * BorderStyle.cs: Added ComVisible attribute
19674         * DragAction.cs: Added ComVisible attribute
19675         * ErrorBlinkStyle.cs: Added
19676         * ScrollEventType.cs: Added ComVisible attribute
19677         * AnchorStyles.cs: Added Editor attribute
19678         * DockStyle.cs: Added Editor attribute
19679         * HorizontalAlignment.cs: Added ComVisible attribute
19680         * HelpEventArgs.cs: Added ComVisible attribute
19681         * PaintEventArgs.cs: Added IDisposable
19682
19683 2005-01-04  Peter Bartok <pbartok@novell.com>
19684
19685         * TextControl.cs: Switched Line, LineTag and Document classes to
19686           internal
19687
19688 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
19689
19690         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
19691         Simple mode, fixes, IntegralHeight, etc.
19692
19693 2005-01-04  Peter Bartok <pbartok@novell.com>
19694
19695         * TextBoxBase.cs: Using proper font variable now
19696
19697 2005-01-04  Peter Bartok <pbartok@novell.com>
19698
19699         * Form.cs (ShowDialog): Set parent to owner, if provided
19700         * GroupBox.cs: Removed unused vars
19701         * TextControl.cs:
19702           - Added GetHashCode() for Document and LineTag classes
19703           - Removed unused variables
19704           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
19705             to allow translation between continuous char position and line/pos
19706         * CheckBox.cs: Removed vars that are provided by base class
19707         * RadioButton.cs: Removed vars that are provided by base class, added
19708           new keyword where required
19709         * LinkLabel.cs: Added new keyword where required
19710         * Control.cs (WndProc): Removed unused variable
19711         * TextBoxBase.cs:
19712           - Finished SelectionLength property
19713           - Implemented SelectionStart property
19714           - Implemented Text property
19715           - Removed unused vars
19716         * MessageBox.cs: Added new keyword where required
19717         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
19718           WndProc signature
19719         * MenuAPI.cs: Added new keyword where required
19720         * ButtonBase.cs: Removed vars that are provided by base class, added
19721           new keyword where required
19722         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
19723           argument to double, to allow compiling with csc 2.0 (Atsushi ran
19724           into this)
19725         * Application.cs (Run): Now triggers the ThreadExit event
19726         * CommonDialog.cs: Added new keyword where required; now properly sets
19727           parent (owner) for dialog
19728         * XplatUIX11.cs: Commented out unused vars
19729         * StatusBar.cs: Fixed signature for Text property
19730         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
19731
19732 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
19733
19734         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
19735         TrackBar.cs, MonthCalendar.cs: remove unused vars
19736
19737 2005-01-03  Jackson Harper  <jackson@ximian.com>
19738
19739         * ThemeWin32Classic.cs:
19740         * X11Keyboard.cs: Remove unused vars.
19741
19742 2005-01-03  Peter Bartok  <pbartok@novell.com>
19743
19744         * TextBox.cs:
19745           - set_Text: Tied into TextControl
19746           - set_TextAlignment: Tied into TextControl
19747         * TextControl.cs:
19748           - Added alignment properties and implemented alignment handling
19749             and drawing (still has a bug, not generating proper expose events)
19750           - Added new Line() constructor to allow passing the line alignment
19751           - Fixed selection setting, properly handling end<start now
19752           - Added aligment considerations to RecalculateDocument()
19753         * TextBoxBase.cs:
19754           - Now properly enforces control height for single line controls
19755           - Added support for CharacterCasing
19756           - Added IsInputKey override
19757           - Fixed Keys.Enter logic
19758           - Added SetBoundsCore override
19759           - Fixed mouse selection handling
19760
19761 2005-01-03  Jackson Harper  <jackson@ximian.com>
19762
19763         * TreeView.cs:
19764           - Collapse and uncheck all nodes when CheckBoxes is disabled.
19765           - Checkboxes are always aligned to the bottom of the node,
19766           regardless of item height.
19767           - Use the node bounds to draw the text so we can center it when
19768           the item height is greater then the font height.
19769           - Node::Bounds are only the text part of the node.
19770         * TreeNode.cs: New method to combine collapsing and unchecking all
19771           nodes recursively.
19772
19773 2005-01-02  Jackson Harper  <jackson@ximian.com>
19774
19775         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
19776         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
19777         tree when a check is changed. TODO: Only refresh the checked node.
19778
19779 2004-12-30  Jackson Harper  <jackson@ximian.com>
19780
19781         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
19782         * TreeNode.cs: When collapsing make sure to never collapse the
19783         root node.
19784
19785 2004-12-29  Jackson Harper  <jackson@ximian.com>
19786
19787         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
19788         
19789 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
19790
19791         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
19792
19793 2004-12-28  Peter Bartok  <pbartok@novell.com>
19794
19795         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
19796           not yet assigned
19797
19798 2004-12-28  Peter Bartok  <pbartok@novell.com>
19799
19800         * Control.cs (WndProc): Added WM_HELP handler, now generates
19801           HelpRequested event
19802         * Form.cs: Added HelpButton property and required support code
19803         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
19804
19805 2004-12-28  Peter Bartok  <pbartok@novell.com>
19806
19807         * CommonDialog.cs:
19808           - Made DialogForm.owner variable internal
19809           - Added check to ensure owner form is set before setting
19810             owner properties in CreateParams
19811
19812 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
19813
19814         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
19815           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
19816           GetCursorPos.  Fix major visibility issues.  Rework the windowing
19817           system to support borderless/titleless windows (implements menus).
19818           Fix GetWindowPos.  Implement initial background color support for
19819           views.
19820
19821 2004-12-28  Peter Bartok  <pbartok@novell.com>
19822
19823         * Form.cs (get_CreateParams): Make sure we have an owner before using
19824           the owner variable. Implement proper default if no owner exists
19825
19826 2004-12-28  Peter Bartok  <pbartok@novell.com>
19827
19828         * In preparation for making Managed.Windows.Forms the default build target
19829           for System.Windows.Forms, the following stubbed files were added.
19830           Dialogs are currently being implemented by contributors and are only
19831           short-term place holders.
19832         * ColorDialog.cs: Initial check-in (minmal stub)
19833         * DataGrid.cs: Initial check-in (minimal stub)
19834         * DataGridLineStyle.cs: Initial check-in (minimal stub)
19835         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
19836         * DataGridTableStyle.cs: Initial check-in (minimal stub)
19837         * FontDialog.cs: Initial check-in (minimal stub)
19838         * FileDialog.cs: Initial check-in (minimal stub)
19839         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
19840         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
19841         * OpenFileDialog: Initial check-in (minimal stub)
19842         * IComponentEditorPageSite.cs: Initial check-in
19843         * Splitter.cs: Initial check-in (for Jackson)
19844         * SplitterEventArgs.cs: Initial check-in (for Jackson)
19845         * SplitterEventHandler.cs: Initial check-in (for Jackson)
19846         * TextBox.cs: Initial check-in; still needs some wiring to
19847           TextControl backend
19848         * Form.cs: Implemented ControlBox property
19849         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
19850         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
19851         * TextControl.cs: Added selection functionality; added todo header
19852         * TextBoxBase.cs:
19853           - Implemented Lines property
19854           - Implemented TextHeight property
19855           - Implemented SelectedText property
19856           - Implemented SelectionLength property
19857           - Implemented SelectAll method
19858           - Implemented ToString method
19859           - Removed and cleaned up some debug code
19860           - Implemented (still buggy) mouse text selection
19861
19862 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
19863
19864         * ComboBox.cs: Complete DropDownList implementation, fixes.
19865
19866 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
19867
19868         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
19869         * ComboBoxStyle.cs: ComboBoxStyle enum
19870         * ComboBox.cs: Initial work on ComboBox control
19871
19872 2004-12-21  Peter Bartok  <pbartok@novell.com>
19873
19874         * Control.cs (ctor, CreateParams): Moved setting of is_visible
19875           forward so that anything that creates a window gets the default,
19876           also no longer uses Visible property in CreateParams to avoid
19877           walking up the parent chain and possibly get the wrong visible
19878           status. Fixed IsVisible to no longer walk up to the parent.
19879
19880 2004-12-21  Peter Bartok  <pbartok@novell.com>
19881
19882         * Form.cs (ShowDialog): Unset modality for the proper window
19883  
19884 2004-12-20  Peter Bartok  <pbartok@novell.com>
19885
19886         * CommonDialog.cs: Initial check-in
19887
19888 2004-12-20  Peter Bartok  <pbartok@novell.com>
19889
19890         * Control.cs (Visible): Now uses the parent window instead of the
19891           client area window for the property
19892
19893         * Form.cs
19894           - ShowDialog(): Now uses the proper window for modality
19895           - The default visibility state for the form parent is now false. This
19896             will prevent the user from seeing all the changes to the form and
19897             its controls before the application hits Application.Run()
19898           - Removed some stale commented out code
19899
19900         * NativeWindow.cs:
19901           - Added FindWindow() method to have a method to check for existence
19902             of a window handle
19903           - Added ability to override default exception handling (for example
19904             when debugging with VS.Net; to do this the ExternalExceptionHandler
19905             define must be set
19906           - Removed some useless debug output
19907
19908         * XplatUIX11.cs:
19909           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
19910             not working as expected
19911           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
19912             property to allow switching back to the modal window if focus is
19913             given to another one of our windows (Application Modal)
19914           - Now only sets override_redirect if we create a window
19915             without WS_CAPTION
19916           - Moved EventMask selection before mapping of newly created window
19917             so we can catch the map event as well
19918           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
19919           - Added various Atom related DllImports
19920           - Implemented Exit() method
19921           - .ctor() : No longer shows window if WS_VISIBLE is not defined
19922             in the CreateParams
19923
19924         * MessageBox.cs: Now properly deals with the FormParent window by
19925           providing an override the FormParent CreateParams property to
19926           set as POPUP instead of OVERLAPPED window.
19927
19928 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
19929
19930         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
19931         Minor code cleanup.
19932
19933 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
19934         
19935         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
19936
19937 2004-12-18  Peter Bartok  <pbartok@novell.com>
19938
19939         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
19940           implementing SetModal() method
19941
19942 2004-12-18  Peter Bartok  <pbartok@novell.com>
19943
19944         * X11Structs.cs (XGCValues): Fixed type of function element
19945         * XplatUI.cs: Added ScrollWindow() method
19946         * XplatUIDriver.cs: Added ScrollWindow() abstract
19947         * XplatUIWin32.cs: Implemented ScrollWindow() method
19948         * XplatUIX11.cs: Implemented ScrollWindow() method
19949         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
19950
19951 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19952
19953         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
19954         Some more keyboard support (INCOMPLETE)
19955
19956 2004-12-17  Peter Bartok  <pbartok@novell.com>
19957
19958         * TextControl.cs:
19959         - Added color attribute to line tags.
19960         - Added color argument to all functions dealing with tags
19961         - Added color argument support to various functions
19962         - Fixed miss-calculation of baseline/shift in certain circumstances
19963
19964         * TextBoxBase.cs: Added new color option to test code
19965
19966 2004-12-17  Jackson Harper  <jackson@ximian.com>
19967
19968         * TreeNode.cs:
19969         * MonthCalendar.cs: Signature fixes
19970
19971 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19972
19973         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
19974         keyboard event moved it.  Create a new graphics context for each paint resolves this
19975
19976 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19977
19978         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
19979         Make caret exist and go blink blink.  Initial keyboard support.
19980         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
19981         works.
19982
19983 2004-12-17  Jackson Harper  <jackson@ximian.com>
19984
19985         * XplatUIStructs.cs: Updated set of virtual keycodes.
19986         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
19987
19988 2004-12-17  Jackson Harper  <jackson@ximian.com>
19989
19990         * XplatUIX11.cs: Prune old keyboard code.
19991
19992 2004-12-17  Jackson Harper  <jackson@ximian.com>
19993
19994         * XplatUIX11.cs: When generating mouse wparams get the modifier
19995         keys from the ModifierKeys property.
19996
19997 2004-12-17  Jackson Harper  <jackson@ximian.com>
19998
19999         * X11Keyboard.cs: Send up/down input when generating
20000         messages. Remove some unused vars.
20001
20002 2004-12-17  Jackson Harper  <jackson@ximian.com>
20003
20004         * TabControl.cs:
20005         * TreeView.cs: get rid of warnings.
20006
20007 2004-12-17  Jackson Harper  <jackson@ximian.com>
20008
20009         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
20010
20011 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
20012
20013         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
20014           CheckedListBox.cs: Implementation
20015
20016 2004-12-17  Peter Bartok  <pbartok@novell.com>
20017
20018         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
20019
20020 2004-12-16  Peter Bartok  <pbartok@novell.com>
20021
20022         * TextControl.cs:
20023           - InsertCharAtCaret(): Fixed start pos fixup
20024           - CaretLine_get: No longer derives the line from the tag, the tag
20025             could be stale if lines in the document have been added or deleted
20026           - RebalanceAfterDelete(): Fixed bug in balancing code
20027           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
20028           - Line.Streamline(): Now can also elminate leading empty tags
20029           - DumpTree(): Added a few more tests and prevented exception on
20030             uninitialized data
20031           - Added Debug section for Combining lines
20032           - Delete(): Now copies all remaining properties of a line
20033           
20034         * TextBoxBase.cs:
20035           - Left mousebutton now sets the caret (and middle button still acts
20036             as formatting tester, which must go away soon)
20037           - Added Debug section for Deleting/Combining lines
20038           - Fixed calculations for UpdateView after Combining lines
20039
20040 2004-12-16  Peter Bartok  <pbartok@novell.com>
20041
20042         * TextControl.cs: Now properly aligns text on a baseline, using the
20043           new XplatUI.GetFontMetrics() method. Simplified several calculations
20044         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
20045           defined
20046
20047 2004-12-16  Peter Bartok  <pbartok@novell.com>
20048
20049         * XplatUI.cs: Added GetFontMetrics() method
20050         * XplatUIDriver.cs: Added GetFontMetrics() abstract
20051         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
20052           into libgdiplus, our private GetFontMetrics function
20053         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
20054         * XplatUIWin32.cs: Implemented GetFontMetrics() method
20055
20056 2004-12-16  Jackson Harper  <jackson@ximain.com>
20057
20058         * XplatUIStruct.cs: Add enum for dead keys
20059         * X11Keyboard.cs: Map and unmap dead keys.
20060
20061 2004-12-16  Jackson Harper  <jackson@ximian.com>
20062
20063         * X11Keyboard.cs: Detect and use the num lock mask.
20064
20065 2004-12-16  Peter Bartok  <pbartok@novell.com>
20066
20067         * Control.cs (CreateGraphics): Added check to make sure the
20068           handle of the window exists before calling Graphics.FromHwnd()
20069
20070 2004-12-16  Peter Bartok  <pbartok@novell.com>
20071
20072         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
20073           contains a lot of code that's not supposed to be there for the
20074           real thing, but required for developing/testing the textbox
20075           backend.
20076
20077 2004-12-16  Peter Bartok  <pbartok@novell.com>
20078
20079         * TextControl.cs:
20080         - Fixed Streamline method
20081         - Added FindTag method to Line
20082         - Added DumpTree method for debugging
20083         - Added DecrementLines() method for deleting lines
20084         - Fixed UpdateView to update the cursor to end-of-line on single-line
20085           updates
20086         - Added PositionCaret() method
20087         - Fixed MoveCaret(LineDown) to move into the last line, too
20088         - Added InsertChar overload
20089         - Fixed InsertChar tag offset calculations
20090         - Added DeleteChar() method
20091         - Added Combine() method for folding lines
20092         - Fixed Delete() method, no longer allocates wasted Line object and
20093           now copies all properties when swapping nodes
20094         - Delete() method now updates document line counter
20095
20096 2004-12-15  Jackson Harper  <jackson@ximian.com>
20097
20098         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
20099         * X11Keyboard.cs: Expose the currently selected modifier keys
20100         through a property.
20101
20102 2004-12-15  Peter Bartok  <pbartok@novell.com>
20103
20104         * TextControl.cs: Initial check-in. Still incomplete
20105
20106 2004-12-15  Jackson Harper  <jackson@ximian.com>
20107
20108         * TreeNode.cs:
20109         * TreeView.cs: Fix build on csc (second time today ;-))
20110
20111 2004-12-15  Jackson Harper  <jackson@ximian.com>
20112
20113         * TreeView.cs: Store the treenodes plus/minus box bounds when it
20114         is calculated and use this for click testing.
20115         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
20116
20117 2004-12-15  Jackson Harper  <jackson@ximian.com>
20118
20119         * TreeView.cs: Pass the nodes image index to the image list when
20120         drawing that image.
20121
20122 2004-12-15  Jackson Harper  <jackson@ximian.com>
20123
20124         * X11Keyboard.cs: Set messages hwnd.
20125         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
20126         post_message calls.
20127
20128 2004-12-15  Jackson Harper  <jackson@ximian.com>
20129
20130         * X11Keyboard.cs: Fix to compile with csc.
20131         
20132 2004-12-15  Jackson Harper  <jackson@ximian.com>
20133
20134         * X11Structs.cs: Add key mask values
20135         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
20136         * X11Keyboard.cs: New file - Extrapolates and interpolates key
20137         down/up foo into WM_CHAR foo
20138         * KeyboardLayouts.cs: Common keyboard layouts
20139         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
20140         post messages into the main queue.
20141
20142 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
20143
20144         * Button.cs: implement ProcessMnemonic
20145         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
20146           brushes everytime
20147         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
20148         * ButtonBase.cs: Show HotkeyPrefix (not the &)
20149
20150 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
20151         
20152         * MonthCalendar.cs: Implemented click-hold for next/previous month
20153           and date selection
20154           
20155 2004-12-11  Peter Bartok  <pbartok@novell.com>
20156
20157         * X11Structs.cs:
20158           - Added XKeyboardState (moved from XplatUIX11.cs)
20159           - Added XCreateGC related enums and structures
20160           - Added GXFunction for XSetFunction
20161
20162         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
20163
20164         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
20165           CaretVisible() calls
20166
20167         * ToolTip.cs: Added code to prevent stealing focus from app windows
20168
20169         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
20170           DestroyCaret, SetCaretPos and CaretVisible)
20171
20172         * XplatUIX11.cs:
20173           - Added implementation for caret functions
20174           - Moved hover variables into a struct, to make it a bit easier
20175             on the eyes and to debug
20176           - Removed XKeyboardState (moved to XplatUIX11.cs)
20177           - Moved Keyboard properties into the properties region
20178
20179         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
20180           call to get a graphics context for our control
20181
20182         * XplatUIOSX.cs: Added empty overrides for the new caret functions
20183
20184         * TreeView.cs: Fixed bug. No matter what color was set it would always
20185           return SystemColors.Window
20186
20187         * XplatUIWin32.cs: Implemented caret overrides
20188
20189 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
20190
20191         * ListBox.cs: fire events, implement missing methods and properties,
20192         sorting.
20193
20194 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
20195
20196         * MonthCalendar.cs: invalidation bug fixing
20197         * ThemeWin32Classic.cs: paint fixing
20198
20199 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
20200
20201         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
20202         prepare the CGContextRef there now.
20203
20204 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
20205
20206         * MonthCalendar.cs:
20207           - optimisationL only invalidate areas that have changed
20208         * ThemeWin32Classic.cs:
20209           - only paint parts that intersect with clip_area
20210
20211 2004-12-09  Peter Bartok  <pbartok@novell.com>
20212
20213         * Application.cs: Undid changes from r37004 which cause problems
20214         on X11
20215
20216 2004-12-09  Ravindra  <rkumar@novell.com>
20217
20218         * ToolBar.cs: Added support for displaying ContextMenu
20219         attached to a button on ToolBar.
20220         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
20221         property.
20222
20223 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
20224
20225         * Label.cs: autosize works in text change and removes unnecessary
20226         invalidate
20227
20228 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
20229
20230         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
20231         remove warnings
20232
20233 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
20234
20235         * XplatUIOSX.cs: Added mouse move/click/grab support
20236         Remove some debugging WriteLines not needed anymore.
20237         Add window resizing/positioning.
20238         Fix visibility on reparenting.
20239
20240 2004-12-08  Peter Bartok  <pbartok@novell.com>
20241
20242         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
20243
20244 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
20245
20246         * XplatUIOSX.cs: Initial checkin
20247         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
20248
20249 2004-12-03  Ravindra <rkumar@novell.com>
20250
20251         * ListView.cs: Added some keybindings and fixed scrolling.
20252         ScrollBars listen to ValueChanged event instead of Scroll
20253         Event. This would let us take care of all changes being
20254         done in the scrollbars' values programmatically or manually.
20255         * ListView.cs (CanMultiselect): Added a check for shift key.
20256         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
20257         * ListViewItem.cs (Clone): Fixed. We need to make a copy
20258         of ListViewSubItemCollection as well.
20259
20260 2004-12-06  Peter Bartok <pbartok@novell.com>
20261
20262         * Control.cs (Parent): Added check and exception to prevent
20263         circular parenting
20264
20265 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
20266
20267         * ListBox.cs: implemented clipping, selection single and multiple,
20268         bug fixing
20269
20270 2004-12-03  Ravindra <rkumar@novell.com>
20271
20272         * ListView.cs (ListView_KeyDown):
20273         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
20274         when CTRL key is pressed.
20275         * ListViewItem.cs (Selected): Fixed setting the property.
20276
20277 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
20278
20279         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
20280
20281         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
20282         MinimizeBox, ShowInTaskbar, TopMost properties.
20283
20284         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
20285         will be implemented).
20286
20287 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
20288
20289         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
20290
20291         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
20292         tests.
20293         
20294         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
20295         
20296         * TreeView.cs: BackColor is Colors.Window.
20297
20298 2004-12-01  Jackson Harper  <jackson@ximian.com>
20299
20300         * TreeView.cs: When resizing the tree if the user is making it
20301         smaller we don't get expose events, so we need to handle adding
20302         the horizontal scrollbar in the size changed handler as well as
20303         the expose handler.
20304
20305 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
20306
20307         * DrawItemState.cs: fixes wrong enum values
20308
20309 2004-12-01  Jackson Harper  <jackson@ximian.com>
20310
20311         * TreeView.cs: Resize the hbar as well as the vbar on resize.
20312
20313 2004-12-01  Jackson Harper  <jackson@ximian.com>
20314
20315         * NodeLabelEditEventArgs.cs:
20316         * NodeLabelEditEventHandler.cs:
20317         * OpenTreeNodeEnumerator.cs:
20318         * TreeNode.cs:
20319         * TreeNodeCollection.cs:
20320         * TreeView.cs:
20321         * TreeViewAction.cs:
20322         * TreeViewCancelEventArgs.cs:
20323         * TreeViewCancelEventHandler.cs:
20324         * TreeViewEventArgs.cs:
20325         * TreeViewEventHandler.cs: Initial implementation.
20326
20327 2004-12-01  Ravindra <rkumar@novell.com>
20328
20329         * ListView.cs (CalculateListView): Fixed scrolling related
20330         calculations. Also, removed some debug statements from other
20331         places.
20332         * ListViewItem.cs: Changed access to 'selected' instance variable
20333         from private to internal.
20334         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
20335
20336 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
20337
20338         * ThemeWin32Classic.cs: remove cache of brush and pens for
20339         specific controls and use the global system, fixes scrollbutton
20340         bugs (for small sizes, disabled, etc)
20341         
20342         * ScrollBar.cs: does not show the thumb for very small controls
20343         (as MS) and allow smaller buttons that the regular size
20344
20345 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
20346
20347         * UpDownBase.cs: Add abstract methods for the interface.
20348         Add new virtual methods (need to be hooked up to TextEntry when it
20349         exists).
20350         Add override methods for most features.
20351         Computes the size, forces the height of the text entry.
20352
20353         * NumericUpDown.cs: Put here the current testing code.
20354
20355         * Set eol-style property on all files that do not have mixed line
20356         endings, to minimize the future problems.  There are still a few
20357         files with mixed endings, and someone should choose whether they
20358         want to move it or not.
20359
20360 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
20361
20362         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
20363         System.Colors
20364         
20365 2004-11-30  Ravindra <rkumar@novell.com>
20366
20367         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
20368         drawing and replaced use of SystemColors by theme colors.
20369         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
20370         * ListView.cs (ListViewItemCollection.Add): Throw exception when
20371         same ListViewItem is being added more than once.
20372
20373 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
20374
20375         * MonthCalendar.cs:
20376           - ControlStyles love to make the control not flicker
20377           
20378 2004-11-30  Peter Bartok  <pbartok@novell.com>
20379
20380         * CharacterCasing.cs: Added
20381
20382 2004-11-29  Peter Bartok  <pbartok@novell.com>
20383
20384         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
20385           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
20386           I am removing these files as they conflict with already completed
20387           work. While it is fantastic to get contributions to MWF, I
20388           respectfully ask that everyone please coordinate their contributions
20389           through mono-winforms-list or #mono-winforms at this time. We're
20390           explicitly avoiding stubbing and don't want controls that don't have
20391           their basic functionality implemented in svn. Please also see
20392           http://www.mono-project.com/contributing/winforms.html
20393
20394
20395 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
20396
20397         * Application.cs (ModalRun): Don't hang after exit.
20398
20399         * Theme.cs: New TreeViewDefaultSize property.
20400
20401         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
20402         with less hardcoded SystemColors constant.
20403         Implemented TreeViewDefaultSize.
20404
20405         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
20406         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
20407
20408
20409 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
20410
20411         * MonthCalendar.cs:
20412           - Fix NextMonthDate and PrevMonthDate click moving calendar
20413
20414 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
20415
20416         * MonthCalendar.cs:
20417           - Fix usage of ScrollChange Property when scrolling months
20418
20419 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
20420
20421         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
20422          - Fixes menu destroying
20423          - Support adding and removing items on already created menus
20424
20425 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
20426
20427         * MonthCalendar.cs:
20428           - Re-worked all bolded dates handling to match win32
20429         * ThemeWin32Classic.cs:
20430           - Fixed rendering with bolded dates
20431
20432 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
20433
20434         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
20435         - Horizontal scroolbar
20436         - Multicolumn
20437         - Fixes
20438
20439
20440 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
20441
20442         * MonthCalendar.cs:
20443           - Fix Usage of MaxSelectionCount from SelectionRange
20444           - Fixed Shift + Cursor Selection
20445           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
20446           - Fixed normal cursor selection to be compat with win32
20447           - Fixed Shift + Mouse Click selection
20448
20449 2004-11-24  Peter Bartok <pbartok@novell.com>
20450
20451         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
20452         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
20453         * XplatUIX11.cs:
20454           - CreatedKeyBoardMsg now updates keystate with Alt key
20455           - Added workaround for timer crash to CheckTimers, Jackson will
20456             develop a proper fix and check in later
20457           - Implemented DispatchMessage
20458           - Removed calling the native window proc from GetMessage (call
20459             now moved to DispatchMessage)
20460
20461         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
20462           the keydata (Fixes bug #69831)
20463
20464         * XplatUIWin32.cs:
20465           - (DispatchMessage): Switched to return IntPtr
20466           - Added DllImport for SetFocus
20467
20468 2004-11-24  Ravindra <rkumar@novell.com>
20469
20470         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
20471         background drawing.
20472         * ListViewItem.cs: Fixed various properties, calculations
20473         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
20474         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
20475         and some internal properties. Fixed MouseDown handler and Paint
20476         method.
20477
20478 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
20479
20480         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
20481
20482 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
20483
20484         * ContainerControl.cs: correct accidental check in of local changes
20485
20486 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
20487
20488         * ThemeWin32Classic.cs:
20489                 - Fixed Drawing Last month in grid (sometimes not showing)
20490         * MonthCalendar.cs:
20491                 - Fixed title width calculation bug (makeing title small)
20492
20493 2004-11-23  Peter Bartok <pbartok@novell.com>
20494
20495         * XplatUIX11.cs:
20496           - Added generation of WM_MOUSEHOVER event
20497           - Added missing assignment of async_method atom
20498           - Fixed WM_ERASEBKGND; now only redraws the exposed area
20499
20500 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
20501
20502         * ThemeWin32Classic.cs:
20503                 - Fixed Drawing of today circle when showtodaycircle not set
20504                 - fixed drawing of first and last month in the grid (gay dates)
20505         * MonthCalendar.cs:
20506                 - Fixed Drawing of today circle
20507                 - Fixed drawing of grady dates
20508                 - Fixed HitTest for today link when ShowToday set to false
20509                 - Fixed DefaultSize to obey ShowToday
20510
20511 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
20512
20513         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
20514         * System.Windows.Forms/Theme.cs
20515         * MonthCalendar.cs: added for MonthCalendar
20516         * SelectionRange.cs: added for MonthCalendar
20517         * Day.cs: added for MonthCalendar: added for MonthCalendar
20518         * DateRangeEventArgs.cs: added for MonthCalendar
20519         * DateRangeEventHandler.cs: added for MonthCalendar
20520
20521 2004-11-22  Ravindra <rkumar@novell.com>
20522
20523         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
20524         property.
20525
20526 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
20527
20528         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
20529         event handler.
20530         
20531         * NumericUpDown.cs: Added new implementation.
20532         * UpDownBase.cs: Added new implementation.
20533
20534         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
20535         implementations.
20536         
20537         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
20538         implementations.
20539
20540         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
20541         methods.
20542
20543 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
20544
20545         * Timer.cs  (Dispose): Should call the base dispose when
20546         overriding.
20547
20548 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
20549
20550         * ScrollBar.cs: updates thumb position when max, min or increment
20551         is changed
20552
20553 2004-11-21  Ravindra <rkumar@novell.com>
20554
20555         * ListView.cs: Implemented item selection, activation and
20556         column header style. Fixed properties to do a redraw, if
20557         required. Added support for MouseHover, DoubleClick, KeyDown
20558         and KeyUp event handling and some minor fixes.
20559         * ListViewItem.cs: Fixed constructor.
20560         * ThemeWin32Classic.cs: Improved drawing for ListView.
20561
20562 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
20563
20564         * ThemeWin32Classic.cs: initial listbox drawing code
20565         * DrawMode.cs: new enumerator
20566         * ListControl.cs: stubbed class
20567         * ListBox.cs: initial implementation
20568         * Theme.cs: new methods definitions
20569         * SelectionMode.cs: new enumerator
20570
20571 2004-11-17  Peter Bartok  <pbartok@novell.com>
20572
20573         * XplatUIWin32.cs: Added double-click events to the class style
20574         * Control.cs (WndProc):
20575           - Added handling of click-count to MouseDown/ MouseUp events.
20576           - Added handling of middle and right mouse buttons
20577           - Removed old debug code
20578
20579 2004-11-17  Jackson Harper  <jackson@ximian.com>
20580
20581         * XplatUIX11.cs: Use the new Mono.Unix namespace.
20582
20583 2004-11-17  Ravindra <rkumar@novell.com>
20584
20585         * ListView.cs: Added event handling for MouseMove/Up/Down.
20586         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
20587         * ThemeWin32Classic.cs: We need to clear the graphics context and
20588         draw column header in a proper state.
20589
20590
20591 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
20592
20593         *  Menu.cs: fixes signature
20594
20595 2004-11-16  Peter Bartok  <pbartok@novell.com>
20596
20597         * XplatUIX11.cs (GetMessage): Implemented generation of
20598           double click mouse messages
20599
20600 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
20601
20602         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
20603         not by menu
20604
20605 2004-11-11  Peter Bartok  <pbartok@novell.com>
20606
20607         * HandleData.cs: Added Visible property
20608         * XplatUIX11.cs (IsVisible): Now uses Visible property from
20609           HandleData
20610         * XplatUIX11.cs: Removed old debug leftovers
20611         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
20612         * Control.cs (WndProc): Removed old debug leftovers,
20613           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
20614           needed WM_SIZE handling
20615
20616 2004-11-11  Jackson Harper  <jackson@ximian.com>
20617
20618         * OwnerDrawPropertyBag.cs:
20619         * TreeViewImageIndexConverter.cs: Initial implementation
20620
20621 2004-11-10  Jackson Harper  <jackson@ximian.com>
20622
20623         * ThemeWin32Classic.cs:
20624         * TabControl.cs: instead of moving tabs by the slider pos just
20625         start drawing at the tab that is offset by the slider. This way
20626         scrolling always moves by exactly one tab.
20627
20628 2004-11-10  Jackson Harper  <jackson@ximian.com>
20629
20630         * TabControl.cs: You can only scroll left when the slider has
20631         already ben moved right.
20632         
20633 2004-11-10  Jackson Harper  <jackson@ximian.com>
20634
20635         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
20636         the clip area.
20637         
20638 2004-11-10  Jackson Harper  <jackson@ximian.com>
20639
20640         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
20641         clip area.
20642         
20643 2004-11-09  Jackson Harper  <jackson@ximian.com>
20644
20645         * TabControl.cs (CalcXPos): New helper method so we can determine
20646         the proper place to start drawing vertical tabs.
20647         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
20648         
20649 2004-11-09  Jackson Harper  <jackson@ximian.com>
20650
20651         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
20652         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
20653         and Bottom, left and right are illegal values for this and
20654         multiline is enabled when the alignment is set to left or right.
20655         (DrawTab): Each alignment block should draw the text itself now
20656         because Left requires special love. Also add rendering for Left
20657         aligned tabs.
20658         
20659 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
20660
20661         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
20662         does not destroy the windows, removes debugging messages
20663
20664 2004-11-09  jba  <jba-mono@optusnet.com.au>
20665
20666         * ThemeWin32Classic.cs
20667         (DrawButtonBase): Fix verticle text rect clipping in windows
20668         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
20669         rendering and incorrect text rect clipping
20670         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
20671         rendering and incorrect text rect clipping
20672         
20673 2004-11-08  Jackson Harper  <jackson@ximian.com>
20674
20675         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
20676         bottom when they are bottom aligned so the bottoms of the tabs get
20677         displayed.
20678         * TabControl.cs (DropRow): Move rows up instead of down when the
20679         tab control is bottom aligned.
20680
20681 2004-11-08 13:59  pbartok
20682
20683         * XplatUIX11.cs:
20684           - Added handling for various window styles
20685           - Added handling for popup windows
20686           - Added SetTopmost handling
20687
20688 2004-11-08 13:55  pbartok
20689
20690         * XplatUIWin32.cs:
20691           - Added argument to SetTopmost method
20692           - Fixed broken ClientToScreen function
20693
20694 2004-11-08 13:53  pbartok
20695
20696         * XplatUIStructs.cs:
20697           - Added missing WS_EX styles
20698
20699 2004-11-08 13:53  pbartok
20700
20701         * XplatUI.cs, XplatUIDriver.cs:
20702           - Added argument to SetTopmost
20703
20704 2004-11-08 13:52  pbartok
20705
20706         * X11Structs.cs:
20707           - Added XSetWindowAttributes structure
20708           - Improved XWindowAttributes structure
20709           - Added SetWindowValuemask enum
20710           - Added window creation arguments enum
20711           - Added gravity enum
20712           - Added Motif hints structure
20713           - Added various Motif flags and enums
20714           - Added PropertyMode enum for property functions
20715
20716 2004-11-08 13:50  pbartok
20717
20718         * Form.cs:
20719           - Fixed arguments for updated SetTopmost method
20720
20721 2004-11-08 13:49  pbartok
20722
20723         * ToolTip.cs:
20724           - Fixed arguments for updated SetTopmost function
20725           - Fixed usage of PointToClient
20726
20727 2004-11-08 13:44  pbartok
20728
20729         * MenuAPI.cs:
20730           - Added Clipping of children and siblings
20731
20732 2004-11-08 13:41  pbartok
20733
20734         * MainMenu.cs:
20735           - Removed SetMenuBarWindow call. We do this in Form.cs
20736
20737 2004-11-08 13:40  jackson
20738
20739         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
20740           scrolling jimmi in the correct location with bottom aligned tabs
20741
20742 2004-11-08 13:36  pbartok
20743
20744         * ContainerControl.cs:
20745           - Implemented BindingContext
20746           - Implemented ParentForm
20747
20748 2004-11-08 12:46  jackson
20749
20750         * TabControl.cs: Put bottom rendered tabs in the right location
20751
20752 2004-11-08 07:15  jordi
20753
20754         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
20755           removes dead code
20756
20757 2004-11-05 17:30  jackson
20758
20759         * TabControl.cs: When selected tabs are expanded make sure they
20760           don't go beyond the edges of the tab control
20761
20762 2004-11-05 14:57  jackson
20763
20764         * TabControl.cs: Reset show_slider so if the control is resized to
20765           a size where it is no longer needed it's not displayed anymore
20766
20767 2004-11-05 13:16  jackson
20768
20769         * TabControl.cs: Make tab pages non visible when added to the
20770           control
20771
20772 2004-11-05 12:42  jackson
20773
20774         * TabControl.cs: Implement SizeMode.FillToRight
20775
20776 2004-11-05 12:16  jackson
20777
20778         * Control.cs: Do not call CreateHandle if the handle is already
20779           created
20780
20781 2004-11-05 11:46  jackson
20782
20783         * TabControl.cs: Remove superflous call to CalcTabRows
20784
20785 2004-11-05 09:07  jackson
20786
20787         * XplatUIX11.cs: Update for Mono.Posix changes
20788
20789 2004-11-05 07:00  ravindra
20790
20791         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
20792           scrolling.
20793
20794 2004-11-04 22:47  jba
20795
20796         * ThemeWin32Classic.cs:
20797           - Fix Button rendering for FlatStyle = Flat or Popup
20798           - Fix RadioButton and CheckBox rendering when Appearance = Button
20799             (normal and flatstyle).
20800           - Correct outer rectangle color when drawing focus rectangle
20801           - Adjust button bounds to be 1 px smaller when focused
20802           - Make button not draw sunken 3d border when pushed (windows compat)
20803           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
20804           - Offset the text in RadioButton and Checkbox when being rendered as
20805           a button.
20806           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
20807           radiobuttons
20808           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
20809           - Fixed disabled text rendering for normally rendered radiobuttons
20810
20811 2004-11-04 10:26  jackson
20812
20813         * TabControl.cs: Recalculate tab rows when resizing
20814
20815 2004-11-04 07:47  jordi
20816
20817         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
20818           collection completion, drawing issues, missing features
20819
20820 2004-11-04 05:03  ravindra
20821
20822         * ScrollBar.cs:
20823                 - We need to recalculate the Thumb area when
20824                 LargeChange/maximum/minimum values are changed.
20825           - We set the 'pos' in UpdatePos() method to minimum, if it's less
20826                 than minimum. This is required to handle the case if large_change is
20827                 more than max, and use LargeChange property instead of large_change
20828                 variable.
20829           - We return max+1 when large_change is more than max, like MS does.
20830
20831 2004-11-04 04:29  ravindra
20832
20833         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
20834                 - Changed default value signatures (prefixed all with ListView).
20835                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
20836                 ListView.
20837           - Fixed calculations for ListViewItem and implemented Clone()
20838           method.
20839
20840 2004-11-04 04:26  ravindra
20841
20842         * Theme.cs, ThemeWin32Classic.cs:
20843                 - Changed default ListView values signatures (prefixed all with
20844                 ListView).
20845           - Fixed default size values for VScrollBar and HScrollBar.
20846                 - Fixed DrawListViewItem method.
20847
20848 2004-11-04 04:05  ravindra
20849
20850         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
20851
20852 2004-11-04 04:04  ravindra
20853
20854         * ImageList.cs: Implemented the missing overload for Draw method.
20855
20856 2004-11-03 19:29  jackson
20857
20858         * TabControl.cs: Handle dropping rows on selection properly
20859
20860 2004-11-03 11:59  jackson
20861
20862         * TabControl.cs: remove debug code
20863
20864 2004-11-03 11:52  jackson
20865
20866         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
20867           the scrolly widgerywoo
20868
20869 2004-11-02 13:52  jackson
20870
20871         * TabControl.cs: Resize the tab pages and tabs when the tab control
20872           is resized
20873
20874 2004-11-02 13:40  jackson
20875
20876         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
20877           selected tab to the bottom
20878
20879 2004-11-02 13:39  jackson
20880
20881         * TabPage.cs: Store the tab pages row
20882
20883 2004-11-02 12:33  jordi
20884
20885         * MenuItem.cs: fixes handle creation
20886
20887 2004-11-02 11:42  jackson
20888
20889         * TabControl.cs: signature fix
20890
20891 2004-11-02 08:56  jackson
20892
20893         * TabControl.cs: Calculate whether the tab is on an edge properly.
20894           Remove top secret debugging code
20895
20896 2004-11-01 19:57  jackson
20897
20898         * TabControl.cs: Add click handling, and proper sizing
20899
20900 2004-11-01 19:47  jackson
20901
20902         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
20903           tab controls
20904
20905 2004-11-01 19:39  jackson
20906
20907         * TabPage.cs: add internal property to store the bounds of a tab
20908           page
20909
20910 2004-10-30 04:23  ravindra
20911
20912         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
20913           values.
20914
20915 2004-10-30 04:21  ravindra
20916
20917         * ListView.cs, ListViewItem.cs: Added support for scrolling and
20918           fixed calculations.
20919
20920 2004-10-30 03:06  pbartok
20921
20922         * XplatUIX11.cs:
20923           - Removed extension of DllImported libs
20924
20925 2004-10-29 09:55  jordi
20926
20927         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
20928           navigation, itemcollection completion, menu fixes
20929
20930 2004-10-27 22:58  pbartok
20931
20932         * XplatUIX11.cs:
20933           - Now throws a nice error message when no X display could be opened
20934
20935 2004-10-26 13:51  jordi
20936
20937         * ListView.cs: removes warning
20938
20939 2004-10-26 03:55  ravindra
20940
20941         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
20942           ThemeWin32Classic.cs: Some formatting for my last checkins.
20943
20944 2004-10-26 03:36  ravindra
20945
20946         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
20947           control and default values.
20948
20949 2004-10-26 03:35  ravindra
20950
20951         * Theme.cs: Added some default values for ListView control.
20952
20953 2004-10-26 03:33  ravindra
20954
20955         * ToolBar.cs: ToolBar should use the user specified button size, if
20956           there is any. Added a size_specified flag for the same.
20957
20958 2004-10-26 03:33  ravindra
20959
20960         * ColumnHeader.cs: Added some internal members and calculations for
20961           ColumnHeader.
20962
20963 2004-10-26 03:32  ravindra
20964
20965         * ListViewItem.cs: Calculations for ListViewItem.
20966
20967 2004-10-26 03:31  ravindra
20968
20969         * ListView.cs: Added some internal members and calculations for
20970           ListView.
20971
20972 2004-10-22 13:31  jordi
20973
20974         * MenuAPI.cs: speedup menus drawing
20975
20976 2004-10-22 13:16  jackson
20977
20978         * XplatUIX11.cs: Make sure to update exposed regions when adding an
20979           expose event
20980
20981 2004-10-22 11:49  jackson
20982
20983         * Control.cs: oops
20984
20985 2004-10-22 11:41  jackson
20986
20987         * Control.cs: Check to see if the window should have its background
20988           repainted by X when drawing.
20989
20990 2004-10-22 11:31  jackson
20991
20992         * XplatUIX11.cs: When invalidating areas only use XClearArea if
20993           clear is true, this way we do not get flicker from X repainting the
20994           background
20995
20996 2004-10-22 11:28  jackson
20997
20998         * XEventQueue.cs: Queue properly
20999
21000 2004-10-21 09:38  jackson
21001
21002         * XEventQueue.cs: Fix access modifier
21003
21004 2004-10-21 09:36  jackson
21005
21006         * XEventQueue.cs: Don't loose messages
21007
21008 2004-10-21 09:22  jackson
21009
21010         * XEventQueue.cs: Don't loose messages
21011
21012 2004-10-20 04:15  jordi
21013
21014         * BootMode.cs: enum need it by SystemInfo
21015
21016 2004-10-19 21:58  pbartok
21017
21018         * XplatUIWin32.cs:
21019           - Small sanity check
21020
21021 2004-10-19 21:56  pbartok
21022
21023         * Form.cs:
21024           - Added private FormParentWindow class which acts as the container
21025             for our form and as the non-client area where menus are drawn
21026           - Added/Moved required tie-ins to Jordi's menus
21027           - Fixed/Implemented the FormStartPosition functionality
21028
21029 2004-10-19 21:52  pbartok
21030
21031         * Control.cs:
21032           - Removed unneeded locals
21033           - Added code to all size and location properties to understand and
21034             deal with the parent container of Form
21035
21036 2004-10-19 21:33  pbartok
21037
21038         * Application.cs:
21039           - Fixed to deal with new Form subclasses for menus
21040
21041 2004-10-19 17:48  jackson
21042
21043         * XEventQueue.cs: commit correct version of file
21044
21045 2004-10-19 16:50  jackson
21046
21047         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
21048
21049 2004-10-19 16:15  jordi
21050
21051         * MenuAPI.cs: MenuBarCalcSize returns the height
21052
21053 2004-10-19 08:31  pbartok
21054
21055         * Control.cs:
21056           - Added missing call to PreProcessMessage before calling OnXXXKey
21057           methods
21058
21059 2004-10-19 00:04  ravindra
21060
21061         * ToolTip.cs: Fixed constructor.
21062
21063 2004-10-18 09:31  jordi
21064
21065         * MenuAPI.cs: menuitems in menubars do not have shortcuts
21066
21067 2004-10-18 09:26  jordi
21068
21069         * MenuItem.cs: fixes MenuItem class signature
21070
21071 2004-10-18 08:56  jordi
21072
21073         * MenuAPI.cs: prevents windows from showing in the taskbar
21074
21075 2004-10-18 00:28  ravindra
21076
21077         * ToolTip.cs: Suppressed a warning message.
21078
21079 2004-10-18 00:27  ravindra
21080
21081         * Control.cs: Default value of visible property must be true.
21082
21083 2004-10-17 23:19  pbartok
21084
21085         * ToolTip.cs:
21086           - Complete implementation
21087
21088 2004-10-17 23:19  pbartok
21089
21090         * XplatUIX11.cs:
21091           - Added EnableWindow method
21092           - Added SetModal stub
21093           - Added generation of WM_ACTIVATE message (still needs testing)
21094           - Added SetTopMost stub
21095           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
21096
21097 2004-10-17 23:17  pbartok
21098
21099         * XplatUIWin32.cs:
21100           - Removed VirtualKeys to XplatUIStructs
21101           - Implemented SetTopMost method
21102           - Implemented EnableWindow method
21103           - Bugfix in ScreenToClient()
21104           - Bugfixes in ClientToScreen()
21105
21106 2004-10-17 22:51  pbartok
21107
21108         * XplatUIStructs.cs:
21109           - Added WS_EX styles to WindowStyles enumeration
21110
21111 2004-10-17 22:50  pbartok
21112
21113         * XplatUI.cs, XplatUIDriver.cs:
21114           - Added method for enabling/disabling windows
21115           - Added method for setting window modality
21116           - Added method for setting topmost window
21117
21118 2004-10-17 22:49  pbartok
21119
21120         * ThemeWin32Classic.cs:
21121           - Added ToolTip drawing code
21122
21123 2004-10-17 22:49  pbartok
21124
21125         * Theme.cs:
21126           - Added ToolTip abstracts
21127
21128 2004-10-17 22:47  pbartok
21129
21130         * Form.cs:
21131           - Fixed Form.ControlCollection to handle owner relations
21132           - Added Owner/OwnedForms handling
21133           - Implemented Z-Ordering for owned forms
21134           - Removed unneeded private overload of ShowDialog
21135           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
21136             so I hope)
21137           - Fixed Close(), had wrong default
21138           - Added firing of OnLoad event
21139           - Added some commented out debug code for Ownership handling
21140
21141 2004-10-17 22:16  pbartok
21142
21143         * Control.cs:
21144           - Fixed/implemented flat list of controls
21145
21146 2004-10-17 22:14  pbartok
21147
21148         * Application.cs:
21149           - Added code to simulate modal dialogs on Win32
21150
21151 2004-10-17 16:11  jordi
21152
21153         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
21154           mouse event
21155
21156 2004-10-17 13:39  jordi
21157
21158         * MenuAPI.cs: menu drawing fixes
21159
21160 2004-10-15 09:10  ravindra
21161
21162         * StructFormat.cs: General Enum.
21163
21164 2004-10-15 09:09  ravindra
21165
21166         * SizeGripStyle.cs: Enum for Form.
21167
21168 2004-10-15 09:08  ravindra
21169
21170         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
21171           in Theme for ListView.
21172
21173 2004-10-15 09:06  ravindra
21174
21175         * ColumnHeader.cs: Flushing some formatting changes.
21176
21177 2004-10-15 09:05  ravindra
21178
21179         * ListViewItem.cs: Implemented GetBounds method and fixed coding
21180           style.
21181
21182 2004-10-15 09:03  ravindra
21183
21184         * ListView.cs: Implemented Paint method and fixed coding style.
21185
21186 2004-10-15 07:34  jordi
21187
21188         * MenuAPI.cs: fix for X11
21189
21190 2004-10-15 07:32  ravindra
21191
21192         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
21193                 - Renamed Paint() method to Draw() for clarity. Also, moved
21194                 DrawImage() to OnPaint().
21195
21196 2004-10-15 07:25  ravindra
21197
21198         * CheckBox.cs, RadioButton.cs:
21199                 - Removed Redraw (), we get it from ButtonBase.
21200                 - Implemented Paint (), to do class specific painting.
21201
21202 2004-10-15 07:16  ravindra
21203
21204         * ButtonBase.cs:
21205                 - Redraw () is not virtual now.
21206                 - Added an internal virtual method Paint (), so that
21207                 derived classes can do their painting on their own.
21208                 - Modified OnPaint () to call Paint ().
21209
21210 2004-10-15 06:43  jordi
21211
21212         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
21213           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
21214
21215 2004-10-15 00:30  ravindra
21216
21217         * MessageBox.cs:
21218                 - MessageBox on windows does not have min/max buttons.
21219                 This change in CreateParams fixes this on Windows. We
21220                 still need to implement this windowstyle behavior in
21221                 our X11 driver.
21222
21223 2004-10-14 05:14  ravindra
21224
21225         * ToolBar.cs:
21226                 - Changed Redraw () to do a Refresh () always.
21227                 - Fixed the MouseMove event handling when mouse is pressed,
21228                 ie drag event handling.
21229                 - Replaced the usage of ToolBarButton.Pressed property to
21230                 ToolBarButton.pressed internal variable.
21231
21232 2004-10-14 05:10  ravindra
21233
21234         * ToolBarButton.cs:
21235                 - Added an internal member 'inside' to handle mouse move
21236                 with mouse pressed ie mouse drag event.
21237                 - Changed 'Pressed' property to return true only when
21238                 'inside' and 'pressed' are both true.
21239                 - Some coding style love.
21240
21241 2004-10-14 00:17  ravindra
21242
21243         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
21244           public method.
21245
21246 2004-10-14 00:15  ravindra
21247
21248         * ButtonBase.cs: Redraw () related improvements.
21249
21250 2004-10-14 00:14  ravindra
21251
21252         * MessageBox.cs: Moved InitFormSize () out of Paint method and
21253           removed unnecessary calls to Button.Show () method.
21254
21255 2004-10-13 17:50  pbartok
21256
21257         * XplatUIX11.cs:
21258           - Formatting fix
21259           - Removed destroying of window until we solve the problem of X
21260             destroying the window before us on shutdown
21261
21262 2004-10-13 16:32  pbartok
21263
21264         * ButtonBase.cs:
21265           - Now Redraws on MouseUp for FlatStyle Flat and Popup
21266
21267 2004-10-13 14:18  pbartok
21268
21269         * XplatUIX11.cs:
21270           - Added code to destroy the X window
21271
21272 2004-10-13 14:18  pbartok
21273
21274         * XplatUIWin32.cs:
21275           - Added code to destroy a window
21276
21277 2004-10-13 14:12  pbartok
21278
21279         * ButtonBase.cs:
21280           - Added the Redraw on Resize that got dropped in the last rev
21281
21282 2004-10-13 09:06  pbartok
21283
21284         * ThemeWin32Classic.cs:
21285           - Path from John BouAntoun:
21286             * Fix check rendering (centre correctly for normal style, offset
21287               correctly for FlatStyle).
21288             * Fix border color usage (use backcolor) for FlatStyle.Popup
21289             * Use checkbox.Capture instead of checkbox.is_pressed when
21290               rendering flatstyle states.
21291
21292 2004-10-12 21:48  pbartok
21293
21294         * ThemeWin32Classic.cs:
21295           - Removed all occurences of SystemColors and replaced them with the
21296             matching theme color
21297
21298 2004-10-12 21:41  pbartok
21299
21300         * ThemeWin32Classic.cs:
21301           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
21302             him using the function for flatstyle drawing
21303           - Changed functions to use the new version of CPDrawBorder3D
21304
21305 2004-10-12 21:15  pbartok
21306
21307         * ControlPaint.cs:
21308           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
21309             match MS documentation. They need to return defined colors if the
21310             passed color matches the configured control color. Thanks to John
21311             BouAntoun for pointing this out.
21312
21313 2004-10-12 20:57  pbartok
21314
21315         * Control.cs:
21316           - Fix from John BouAntoun: Raise ForeColorChanged event when text
21317             color is changed
21318
21319 2004-10-12 20:46  pbartok
21320
21321         * CheckBox.cs:
21322           - Fix from John BouAntoun: Now properly sets the Appearance property
21323
21324 2004-10-12 20:45  pbartok
21325
21326         * ThemeWin32Classic.cs:
21327           - Fixes from John BouAntoun: now handles forecolors and backcolors
21328             for flatstyle rendered controls much better; It also fixes normal
21329             checkbox rendering when pushed or disabled.
21330
21331 2004-10-08 02:50  jordi
21332
21333         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
21334           work
21335
21336 2004-10-07 08:56  jordi
21337
21338         * ThemeWin32Classic.cs: Removes deletion of cached brushes
21339
21340 2004-10-06 03:59  jordi
21341
21342         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
21343           XplatUIWin32.cs: removes warnings from compilation
21344
21345 2004-10-05 12:23  jackson
21346
21347         * RadioButton.cs: Fix ctor
21348
21349 2004-10-05 11:10  pbartok
21350
21351         * MessageBox.cs:
21352           - Partial implementation by Benjamin Dasnois
21353
21354 2004-10-05 10:15  jackson
21355
21356         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
21357           by John BouAntoun
21358
21359 2004-10-05 03:07  ravindra
21360
21361         * ToolBar.cs:
21362                 - Removed a private method, Draw ().
21363                 - Fixed the ButtonDropDown event handling.
21364                 - Fixed MouseMove event handling.
21365
21366 2004-10-05 03:04  ravindra
21367
21368         * ThemeWin32Classic.cs:
21369                 - Added DrawListView method and ListViewDefaultSize property.
21370                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
21371                 - Changed DOS style CRLF to Unix format (dos2unix).
21372
21373 2004-10-05 03:03  ravindra
21374
21375         * Theme.cs:
21376                 - Added DrawListView method and ListViewDefaultSize property.
21377
21378 2004-10-05 02:42  ravindra
21379
21380         * ToolBarButton.cs: Added an internal member dd_pressed to handle
21381           clicks on DropDown arrow.
21382
21383 2004-10-04 22:56  jackson
21384
21385         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
21386           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
21387           Control handle the buffers, derived classes should not have to
21388           CreateBuffers themselves.
21389
21390 2004-10-04 21:20  jackson
21391
21392         * StatusBar.cs: The control handles resizing the buffers now.
21393
21394 2004-10-04 21:18  jackson
21395
21396         * Control.cs: When resizing the buffers should be invalidated. This
21397           should be handled in Control not in derived classes.
21398
21399 2004-10-04 14:45  jackson
21400
21401         * TabPage.cs: oops
21402
21403 2004-10-04 02:14  pbartok
21404
21405         * LeftRightAlignment.cs:
21406           - Initial check-in
21407
21408 2004-10-04 01:09  jordi
21409
21410         * ThemeWin32Classic.cs: fixes right button position causing right
21411           button not showing on horizontal scrollbars
21412
21413 2004-10-02 13:12  pbartok
21414
21415         * XplatUIX11.cs:
21416           - Simplified the Invalidate method by using an X call instead of
21417             generating the expose ourselves
21418           - Added an expose when the window background is changed
21419           - Implemented ClientToScreen method
21420
21421 2004-10-02 13:08  pbartok
21422
21423         * XplatUIWin32.cs:
21424           - Added Win32EnableWindow method (test for implementing modal
21425           dialogs)
21426           - Added ClientToScreen method and imports
21427
21428 2004-10-02 13:07  pbartok
21429
21430         * XplatUI.cs, XplatUIDriver.cs:
21431           - Added ClientToScreen coordinate translation method
21432
21433 2004-10-02 13:06  pbartok
21434
21435         * KeyPressEventArgs.cs:
21436           - Fixed access level for constructor
21437
21438 2004-10-02 13:06  pbartok
21439
21440         * NativeWindow.cs:
21441           - Changed access level for the window_collection hash table
21442
21443 2004-10-02 13:05  pbartok
21444
21445         * Form.cs:
21446           - Added KeyPreview property
21447           - Added Menu property (still incomplete, pending Jordi's menu work)
21448           - Implemented ProcessCmdKey
21449           - Implemented ProcessDialogKey
21450           - Implemented ProcessKeyPreview
21451
21452 2004-10-02 13:02  pbartok
21453
21454         * Control.cs:
21455           - Added private method to get the Control object from the window
21456           handle
21457           - Implemented ContextMenu property
21458           - Implemented PointToScreen
21459           - Implemented PreProcessMessage
21460           - Implemented IsInputChar
21461           - Implemented IsInputKey
21462           - Implemented ProcessCmdKey
21463           - Completed ProcessKeyEventArgs
21464           - Fixed message loop to call the proper chain of functions on key
21465           events
21466           - Implemented ProcessDialogChar
21467           - Implemented ProcessDialogKey
21468           - Implemented ProcessKeyMessage
21469           - Implemented ProcessKeyPreview
21470           - Added RaiseDragEvent stub (MS internal method)
21471           - Added RaiseKeyEvent stub (MS internal method)
21472           - Added RaiseMouseEvent stub (MS Internal method)
21473           - Added RaisePaintEvent stub (MS Internal method)
21474           - Added ResetMouseEventArgs stub (MS Internal method)
21475           - Implemented RtlTranslateAlignment
21476           - Implemented RtlTranslateContent
21477           - Implemented RtlTranslateHorizontal
21478           - Implemented RtlTranslateLeftRight
21479           - Added generation of KeyPress event
21480
21481 2004-10-02 05:57  ravindra
21482
21483         * ListViewItem.cs: Added attributes.
21484
21485 2004-10-02 05:32  ravindra
21486
21487         * ListView.cs: Added attributes.
21488
21489 2004-10-01 11:53  jackson
21490
21491         * Form.cs: Implement the Close method so work on MessageBox can
21492           continue.
21493
21494 2004-09-30 14:06  pbartok
21495
21496         * XplatUIX11.cs:
21497           - Bug fixes
21498
21499 2004-09-30 11:34  jackson
21500
21501         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
21502
21503 2004-09-30 07:26  ravindra
21504
21505         * ListViewItemConverter.cs: Converter for ListViewItem.
21506
21507 2004-09-30 07:26  ravindra
21508
21509         * SortOrder.cs: Enum for ListView control.
21510
21511 2004-09-30 07:25  ravindra
21512
21513         * ColumnHeader.cs: Supporting class for ListView control.
21514
21515 2004-09-30 07:24  ravindra
21516
21517         * ListView.cs, ListViewItem.cs: Initial implementation.
21518
21519 2004-09-30 07:20  ravindra
21520
21521         * ItemActivation.cs: Enum for ListView Control.
21522
21523 2004-09-29 20:29  pbartok
21524
21525         * XplatUIX11.cs:
21526           - Added lookup of pixel value for background color; tries to get a
21527             color 'close' to the requested color, it avoids having to create a
21528             colormap.  Depending on the display this could mean the used color
21529             is slightly off the desired color. Might have to change it to a more
21530             resource intensive colormap approach, but it will work as a
21531           workaround to avoid red screens.
21532
21533 2004-09-29 14:27  jackson
21534
21535         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
21536
21537 2004-09-28 12:44  pbartok
21538
21539         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
21540           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
21541           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
21542           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
21543           TrackBar.cs, VScrollBar.cs:
21544           - Streamlined Theme interfaces:
21545             * Each DrawXXX method for a control now is passed the object for
21546               the control to be drawn in order to allow accessing any state the
21547               theme might require
21548
21549             * ControlPaint methods for the theme now have a CP prefix to avoid
21550               name clashes with the Draw methods for controls
21551
21552             * Every control now retrieves it's DefaultSize from the current
21553             theme
21554
21555 2004-09-28 12:17  jackson
21556
21557         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
21558           drawing
21559
21560 2004-09-24 14:57  jackson
21561
21562         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
21563           Gives us a nice little performance boost.
21564
21565 2004-09-24 12:02  jackson
21566
21567         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
21568           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
21569           Control and supporting classes. Initial checkin
21570
21571 2004-09-23 13:08  jackson
21572
21573         * Form.cs: Temp build fixage
21574
21575 2004-09-23 01:39  ravindra
21576
21577         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
21578           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
21579           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
21580           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
21581           EventHandlers needed by ListView Control.
21582
21583 2004-09-22 14:12  pbartok
21584
21585         * ScrollableControl.cs:
21586           - Implemented DockPadding property
21587           - Implemented AutoScroll property
21588           - Implemented AutoScrollMargin property
21589           - Implemented AutoScrollMinSize property
21590           - Implemented AutoScrollPosition property
21591           - Implemented DisplayRectangle property (still incomplete)
21592           - Implemented CreateParams property
21593           - Implemented HScroll property
21594           - Implemented VScroll property
21595           - Implemented OnVisibleChanged property
21596
21597 2004-09-22 14:09  pbartok
21598
21599         * Form.cs:
21600           - Added Form.ControllCollection class
21601           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
21602             RemoveOwnedForm (still incomplete, missing on-top and common
21603             minimize/maximize behaviour)
21604           - Added StartPosition property (still incomplete, does not use when
21605             creating the form)
21606           - Added ShowDialog() methods (still incomplete, missing forcing the
21607             dialog modal)
21608
21609 2004-09-22 14:05  pbartok
21610
21611         * Application.cs:
21612           - Added message loop for modal dialogs
21613
21614 2004-09-22 14:02  pbartok
21615
21616         * GroupBox.cs:
21617           - Fixed wrong types for events
21618
21619 2004-09-22 14:00  pbartok
21620
21621         * Shortcut.cs, FormWindowState.cs:
21622           - Fixed wrong values
21623
21624 2004-09-22 12:01  jackson
21625
21626         * Control.cs: Text is never null
21627
21628 2004-09-20 22:14  pbartok
21629
21630         * XplatUIWin32.cs:
21631           - Fixed accessibility level for Idle handler
21632
21633 2004-09-20 18:54  jackson
21634
21635         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21636           XplatUIX11.cs: New message loop that uses poll so we don't get a
21637           busy loop
21638
21639 2004-09-17 10:43  pbartok
21640
21641         * ScrollBar.cs:
21642           - Fixed behaviour of arrow buttons. Now properly behaves like
21643             Buttons (and like Microsoft's scrollbar arrow buttons)
21644
21645 2004-09-17 10:14  pbartok
21646
21647         * ScrollBar.cs:
21648           - Added missing release of keyboard/mouse capture
21649
21650 2004-09-17 06:18  jordi
21651
21652         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
21653           Theme.cs: Very early menu support
21654
21655 2004-09-16 17:45  pbartok
21656
21657         * XplatUIWin32.cs:
21658           - Fixed sending a window to the front
21659           - Added overload for SetWindowPos to avoid casting
21660
21661 2004-09-16 17:44  pbartok
21662
21663         * Control.cs:
21664           - Added SendToBack and BringToFront methods
21665
21666 2004-09-16 07:00  ravindra
21667
21668         * Copyright: Added Novell URL.
21669
21670 2004-09-16 07:00  ravindra
21671
21672         * ToolBar.cs: Invalidate should be done before redrawing.
21673
21674 2004-09-15 21:19  ravindra
21675
21676         * ColumnHeaderStyle.cs: Enum for ListView Control.
21677
21678 2004-09-15 21:18  ravindra
21679
21680         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
21681           ListView Control.
21682
21683 2004-09-13 18:26  jackson
21684
21685         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
21686           properly
21687
21688 2004-09-13 18:13  jackson
21689
21690         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
21691           a second thread and post messages into the main threads message
21692           queue. This makes timing much more consistent. Both win2K and XP
21693           have a minimum timer value of 15 milliseconds, so we now do this
21694           too.
21695
21696 2004-09-13 15:18  pbartok
21697
21698         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21699           XplatUIX11.cs:
21700           - Added Z-Ordering methods
21701
21702 2004-09-13 10:56  pbartok
21703
21704         * Form.cs:
21705           - Fixed #region names
21706           - Moved properties and methods into their proper #regions
21707
21708 2004-09-13 10:51  pbartok
21709
21710         * Form.cs:
21711           - Added Accept and CancelButton properties
21712           - Added ProcessDialogKey() method
21713
21714 2004-09-13 08:18  pbartok
21715
21716         * IWindowTarget.cs:
21717           - Initial check-in
21718
21719 2004-09-10 21:50  pbartok
21720
21721         * Control.cs:
21722           - Added DoDragDrop() [incomplete]
21723           - Properly implemented 'Visible' handling
21724           - Added SetVisibleCore()
21725           - Implemented FindChildAtPoint()
21726           - Implemented GetContainerControl()
21727           - Implemented Hide()
21728
21729 2004-09-10 19:28  pbartok
21730
21731         * Control.cs:
21732           - Moved methods into their appropriate #regions
21733           - Reordered methods within regions alphabetically
21734
21735 2004-09-10 18:57  pbartok
21736
21737         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21738           - Added method to retrieve text from window
21739
21740 2004-09-10 18:56  pbartok
21741
21742         * Control.cs:
21743           - Moved some internal functions into the internal region
21744           - Implemented FontHeight
21745           - Implemented RenderRightToLeft
21746           - Implemented ResizeRedraw
21747           - Implemented ShowFocusCues
21748           - Implemented ShowKeyboardCues
21749           - Implemented FromChildHandle
21750           - Implemented FromHandle
21751           - Implemented IsMnemonic
21752           - Implemented ReflectMessage
21753           - All public and protected Static Methods are now complete
21754
21755 2004-09-10 16:54  pbartok
21756
21757         * Control.cs:
21758           - Implemented remaining missing public instance properties
21759           - Alphabetized some out of order properties
21760
21761 2004-09-10 05:51  ravindra
21762
21763         * PictureBox.cs: Added a check for null image.
21764
21765 2004-09-10 00:59  jordi
21766
21767         * GroupBox.cs: remove cvs tag
21768
21769 2004-09-09 05:25  ravindra
21770
21771         * ToolBar.cs: Make redraw accessible from ToolBarButton.
21772
21773 2004-09-09 05:23  ravindra
21774
21775         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
21776           parent redraw.
21777
21778 2004-09-09 02:28  pbartok
21779
21780         * ThemeWin32Classic.cs:
21781           - Improve disabled string look
21782
21783 2004-09-09 01:15  jordi
21784
21785         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
21786           args and handler
21787
21788 2004-09-08 23:56  ravindra
21789
21790         * ItemBoundsPortion.cs: It's enum, not a class!
21791
21792 2004-09-08 23:47  ravindra
21793
21794         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
21795           Enums for Form.
21796
21797 2004-09-08 21:13  ravindra
21798
21799         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
21800           ListView control.
21801
21802 2004-09-08 21:03  ravindra
21803
21804         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
21805           avoid crash.
21806
21807 2004-09-08 21:01  ravindra
21808
21809         * ScrollableControl.cs: Removed unreachable code.
21810
21811 2004-09-08 06:45  jordi
21812
21813         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
21814
21815 2004-09-08 01:00  jackson
21816
21817         * XplatUIX11.cs: Only run the timers when updating the message
21818           queue. This effectively gives X messages a higher priority then
21819           timer messages. Timers still need love though
21820
21821 2004-09-07 14:01  jackson
21822
21823         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
21824           this for us and the handle is no longer valid.
21825
21826 2004-09-07 13:59  jackson
21827
21828         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
21829           loop that manages to not crash. TODO: Add poll and cleanup timers
21830
21831 2004-09-07 11:12  jordi
21832
21833         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
21834
21835 2004-09-07 03:40  jordi
21836
21837         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
21838           fixes, methods, multiple links
21839
21840 2004-09-06 06:55  jordi
21841
21842         * Control.cs: Caches ClientRectangle rectangle value
21843
21844 2004-09-05 02:03  jordi
21845
21846         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
21847           certain situations
21848
21849 2004-09-04 11:10  jordi
21850
21851         * Label.cs: Refresh when font changed
21852
21853 2004-09-02 16:24  pbartok
21854
21855         * Control.cs:
21856           - Added sanity check to creation of double buffer bitmap
21857
21858 2004-09-02 16:24  pbartok
21859
21860         * ButtonBase.cs:
21861           - Fixed selection of text color
21862           - Fixed handling of resize event; now properly recreates double
21863             buffering bitmap
21864           - Added missing assignment of TextAlignment
21865           - Added proper default for TextAlignment
21866
21867 2004-09-02 14:26  pbartok
21868
21869         * RadioButton.cs:
21870           - Added missing RadioButton.RadioButtonAccessibleObject class
21871
21872 2004-09-02 14:26  pbartok
21873
21874         * Control.cs:
21875           - Added missing Control.ControlAccessibleObject class
21876           - Started to implement Select()ion mechanisms, still very incomplete
21877
21878 2004-09-02 14:25  pbartok
21879
21880         * AccessibleObject.cs:
21881           - Added missing methods
21882
21883 2004-09-02 14:23  pbartok
21884
21885         * AccessibleNavigation.cs, AccessibleSelection.cs:
21886           - Initial check-in
21887
21888 2004-09-02 10:32  jordi
21889
21890         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
21891           pool for pens, brushes, and hatchbruses
21892
21893 2004-09-01 15:30  jackson
21894
21895         * StatusBar.cs: Fix typo
21896
21897 2004-09-01 14:44  pbartok
21898
21899         * RadioButton.cs:
21900           - Fixed state
21901
21902 2004-09-01 14:39  pbartok
21903
21904         * Button.cs, RadioButton.cs:
21905           - Functional initial check-in
21906
21907 2004-09-01 14:01  pbartok
21908
21909         * CheckBox.cs:
21910           - Added missing default
21911           - Added missing region mark
21912
21913 2004-09-01 09:10  jordi
21914
21915         * Label.cs: fixes method signatures, new methods, events, fixes
21916           autosize
21917
21918 2004-09-01 07:19  jordi
21919
21920         * Control.cs: Init string variables with an empty object
21921
21922 2004-09-01 04:20  jordi
21923
21924         * Control.cs: fires OnFontChanged event
21925
21926 2004-08-31 20:07  pbartok
21927
21928         * ButtonBase.cs:
21929           - Enabled display of strings
21930
21931 2004-08-31 20:05  pbartok
21932
21933         * Form.cs:
21934           - Added (partial) implementation of DialogResult; rest needs to be
21935             implemented when the modal loop code is done
21936
21937 2004-08-31 19:55  pbartok
21938
21939         * CheckBox.cs:
21940           - Fixed to match the removal of the needs_redraw concept
21941
21942 2004-08-31 19:55  pbartok
21943
21944         * ButtonBase.cs:
21945           - Removed the rather odd split between 'needs redraw' and redrawing
21946           - Now handles the events that require regeneration (ambient
21947             properties and size)
21948
21949 2004-08-31 19:41  pbartok
21950
21951         * Control.cs:
21952           - Added firing of BackColorChanged event
21953           - Added TopLevelControl property
21954           - Fixed handling of WM_ERASEBKGRND message
21955
21956 2004-08-31 12:49  pbartok
21957
21958         * ButtonBase.cs:
21959           - Removed debug
21960           - Minor fixes
21961
21962 2004-08-31 12:48  pbartok
21963
21964         * CheckBox.cs:
21965           - Finished (famous last words)
21966
21967 2004-08-31 04:35  jordi
21968
21969         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
21970           scrolling bugs, adds new methods
21971
21972 2004-08-30 14:42  pbartok
21973
21974         * CheckBox.cs:
21975           - Implemented CheckBox drawing code
21976
21977 2004-08-30 14:42  pbartok
21978
21979         * ButtonBase.cs:
21980           - Made Redraw() and CheckRedraw() virtual
21981           - Improved mouse up/down/move logic to properly track buttons
21982
21983 2004-08-30 09:44  pbartok
21984
21985         * CheckBox.cs:
21986           - Updated to fix broken build. Not complete yet.
21987
21988 2004-08-30 09:28  pbartok
21989
21990         * CheckState.cs:
21991           - Initial checkin
21992
21993 2004-08-30 09:17  pbartok
21994
21995         * Appearance.cs:
21996           - Initial check-in
21997
21998 2004-08-27 16:12  ravindra
21999
22000         * ToolBarButton.cs: Added TypeConverter attribute.
22001
22002 2004-08-27 16:07  ravindra
22003
22004         * ImageIndexConverter.cs: Implemented.
22005
22006 2004-08-27 14:17  pbartok
22007
22008         * Control.cs:
22009           - Removed unneeded stack vars
22010           - First attempt to fix sizing issues when layout is suspended
22011
22012 2004-08-25 15:35  jordi
22013
22014         * ScrollBar.cs: more fixes to scrollbar
22015
22016 2004-08-25 14:04  ravindra
22017
22018         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
22019           Added the missing divider code and grip for ToolBar Control.
22020
22021 2004-08-25 13:20  pbartok
22022
22023         * Control.cs:
22024           - Control now properly passes the ambient background color to child
22025             controls
22026
22027 2004-08-25 13:20  jordi
22028
22029         * ScrollBar.cs: small bug fix regarding bar position
22030
22031 2004-08-25 12:33  pbartok
22032
22033         * Timer.cs:
22034           - Now only calls SetTimer or KillTimer if the enabled state has
22035           changed
22036
22037 2004-08-25 12:33  pbartok
22038
22039         * XplatUIWin32.cs:
22040           - Fixed timer handling, now seems to work
22041           - Improved error message for window creation
22042
22043 2004-08-25 12:32  pbartok
22044
22045         * Control.cs:
22046           - Fixed generation of MouseUp message
22047
22048 2004-08-25 12:29  jordi
22049
22050         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
22051           and fixes for progressbar
22052
22053 2004-08-24 18:43  ravindra
22054
22055         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
22056           in ToolBar control.
22057
22058 2004-08-24 17:15  pbartok
22059
22060         * Panel.cs:
22061           - Added #region
22062           - Added missing events
22063           - Alphabetized
22064
22065 2004-08-24 17:14  pbartok
22066
22067         * StatusBar.cs, PictureBox.cs:
22068           - Now uses Control's CreateParams
22069
22070 2004-08-24 16:36  pbartok
22071
22072         * XplatUIX11.cs:
22073           - Fixed background color handling
22074           - Fixed sending of enter/leave events on a grab
22075
22076 2004-08-24 16:35  pbartok
22077
22078         * X11Structs.cs:
22079           - Refined definitions for CrossingEvent
22080
22081 2004-08-24 12:37  jordi
22082
22083         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
22084           formmating, methods signature, and adds missing events
22085
22086 2004-08-24 12:24  jordi
22087
22088         * Control.cs: fire OnEnabledChanged event
22089
22090 2004-08-24 11:17  pbartok
22091
22092         * XplatUIWin32.cs:
22093           - Implemented SetTimer() and KillTimer()
22094
22095 2004-08-24 11:16  pbartok
22096
22097         * XplatUIX11.cs:
22098           - Now uses Remove instead of Add to kill the timer
22099
22100 2004-08-24 10:16  jackson
22101
22102         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
22103           picture boxes in the theme now. Draw picture box borders and obey
22104           sizing modes
22105
22106 2004-08-24 05:49  jackson
22107
22108         * Timer.cs: Remove top secret debugging code
22109
22110 2004-08-24 05:34  jackson
22111
22112         * PictureBox.cs: Temp hack to make picture boxes draw their full
22113           image
22114
22115 2004-08-24 05:29  jackson
22116
22117         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22118           XplatUIX11.cs: Move timers to the driver level. On X they are
22119           queued by the driver and checked on idle.
22120
22121 2004-08-24 01:07  jackson
22122
22123         * XplatUIX11.cs: Use a queue for async messages instead of passing
22124           them as ClientMessages since that was totally broken. Also simply
22125           check for events and return an idle message if none are found. This
22126           gives us an idle handler, and prevents deadlocking when no messages
22127           are in the queue.
22128
22129 2004-08-23 18:19  ravindra
22130
22131         * XplatUIWin32.cs: Removed the unwanted destructor.
22132
22133 2004-08-23 17:27  pbartok
22134
22135         * ButtonBase.cs:
22136           - Finishing touches. Works now, just needs some optimizations.
22137
22138 2004-08-23 16:53  jordi
22139
22140         * ScrollBar.cs: small fix
22141
22142 2004-08-23 16:45  pbartok
22143
22144         * Application.cs:
22145           - Removed debug output
22146           - Simplifications
22147
22148 2004-08-23 16:43  jordi
22149
22150         * ScrollBar.cs: [no log message]
22151
22152 2004-08-23 16:10  pbartok
22153
22154         * Form.cs:
22155           - Fixed handling of WM_CLOSE message
22156           - Removed debug output
22157
22158 2004-08-23 16:09  pbartok
22159
22160         * Application.cs:
22161           - Added handling of Idle event
22162           - Added handling of form closing
22163           - Fixed reporting of MessageLoop property
22164           - Removed some unneeded code, should provide a bit of a speedup
22165
22166 2004-08-23 15:22  pbartok
22167
22168         * Control.cs:
22169           - Added InitLayout() method
22170           - Added code to properly perform layout when Anchor or Dock property
22171             is changed
22172           - Changed 'interpretation' of ResumeLayout. MS seems to have a
22173             LAMESPEC, tried to do it in a way that makes sense
22174
22175 2004-08-23 14:10  jordi
22176
22177         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
22178           properties and methods
22179
22180 2004-08-23 13:55  pbartok
22181
22182         * Control.cs:
22183           - Properly fixed Jordi's last fix
22184           - Now uses Cursor's Position property instead of calling XplatUI
22185           directly
22186
22187 2004-08-23 13:44  jordi
22188
22189         * PaintEventHandler.cs: Adding missing attribute
22190
22191 2004-08-23 13:39  pbartok
22192
22193         * Cursor.cs:
22194           - Implemented Position property
22195
22196 2004-08-23 13:39  pbartok
22197
22198         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
22199           - Added method to move mouse cursor
22200
22201 2004-08-23 13:39  pbartok
22202
22203         * XplatUIX11.cs:
22204           - Fixed setting of background color
22205           - Added method to move mouse cursor
22206
22207 2004-08-23 13:16  jordi
22208
22209         * Control.cs: avoids null exception
22210
22211 2004-08-22 17:46  jackson
22212
22213         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
22214           PictureBox
22215
22216 2004-08-22 17:40  jackson
22217
22218         * XplatUIX11.cs: Add some missing locks
22219
22220 2004-08-22 15:10  pbartok
22221
22222         * Control.cs, Form.cs:
22223           - Removed OverlappedWindow style from Control, instead it's default
22224             now is child
22225           - Made form windows OverlappedWindow by default
22226
22227 2004-08-22 13:34  jackson
22228
22229         * ScrollBar.cs: Update the position through the Value property so
22230           the OnValueChanged event is raised.
22231
22232 2004-08-22 12:04  pbartok
22233
22234         * SWF.csproj:
22235           - Added Cursor.cs and UserControl.cs
22236
22237 2004-08-22 12:03  pbartok
22238
22239         * Cursor.cs:
22240           - Started implementation, not usable yet
22241
22242 2004-08-22 12:00  pbartok
22243
22244         * UserControl.cs:
22245           - Implemented UserControl (complete)
22246
22247 2004-08-21 19:20  ravindra
22248
22249         * ToolBar.cs: Correcting the formatting mess of VS.NET.
22250
22251 2004-08-21 18:49  ravindra
22252
22253         * ToolBar.cs: Probably this completes the missing attributes in
22254           toolbar control.
22255
22256 2004-08-21 18:03  ravindra
22257
22258         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
22259           Fixed toolbar control signatures.
22260
22261 2004-08-21 16:32  pbartok
22262
22263         * LinkLabel.cs:
22264           - Signature Fixes
22265
22266 2004-08-21 16:30  pbartok
22267
22268         * Label.cs:
22269           - Signature fixes
22270
22271 2004-08-21 16:19  pbartok
22272
22273         * Control.cs, Label.cs:
22274           - Signature fixes
22275
22276 2004-08-21 15:57  pbartok
22277
22278         * ButtonBase.cs:
22279           - Added loads of debug output for development
22280           - Fixed typo in method name
22281
22282 2004-08-21 15:52  pbartok
22283
22284         * ToolBarButtonClickEventArgs.cs:
22285           - Added missing base class
22286
22287 2004-08-21 14:53  pbartok
22288
22289         * Control.cs:
22290           - Updated to match new GrabWindow signature
22291
22292 2004-08-21 14:51  pbartok
22293
22294         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22295           - Added method to get default display size
22296
22297 2004-08-21 14:23  pbartok
22298
22299         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22300           - Added method to query current grab state
22301           - Added argument to allow confining a grab to a window
22302
22303 2004-08-21 14:22  pbartok
22304
22305         * Keys.cs:
22306           - Added [Flags] attribute so that modifiers can be used in bitwise
22307           ops
22308
22309 2004-08-21 14:21  pbartok
22310
22311         * TrackBar.cs, ScrollBar.cs:
22312           - Replaced direct XplatUI calls with their Control counterpart
22313
22314 2004-08-21 13:32  pbartok
22315
22316         * Control.cs:
22317           - Implemented Created property
22318
22319 2004-08-21 13:28  pbartok
22320
22321         * Control.cs:
22322           - Implemented ContainsFocus
22323
22324 2004-08-21 13:26  pbartok
22325
22326         * Control.cs:
22327           - Implemented CausesValidation
22328
22329 2004-08-21 13:21  pbartok
22330
22331         * Control.cs:
22332           - Implemented CanFocus
22333           - Implemented CanSelect
22334           - Implemented Capture
22335
22336 2004-08-21 12:35  pbartok
22337
22338         * XplatUIWin32.cs:
22339           - Fixed bug with Async message handling
22340           - Implemented getting the ModifierKeys
22341
22342 2004-08-21 12:32  jackson
22343
22344         * AsyncMethodResult.cs: Make sure we have the mutex before we
22345           release it. Fixes BeginInvoke on windows
22346
22347 2004-08-21 11:31  pbartok
22348
22349         * XplatUIWin32.cs, XplatUIX11.cs:
22350           - Drivers now return proper mouse state
22351
22352 2004-08-21 10:54  jackson
22353
22354         * Control.cs: Implement EndInvoke
22355
22356 2004-08-21 10:48  jackson
22357
22358         * Timer.cs: Remove unneeded finalizer
22359
22360 2004-08-20 19:52  ravindra
22361
22362         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
22363           in mouse event handling in the ToolBar control.
22364
22365 2004-08-20 19:50  ravindra
22366
22367         * ImageList.cs: Changed draw method to use the arguments passed in
22368           to draw the image.
22369
22370 2004-08-20 18:58  pbartok
22371
22372         * XplatUIStructs.cs:
22373           - Added private message for async communication
22374
22375 2004-08-20 17:38  ravindra
22376
22377         * Control.cs: Made RightToLeft property virtual and removed a
22378           Console.WriteLine.
22379
22380 2004-08-20 14:39  jordi
22381
22382         * ThemeGtk.cs: use style_attach
22383
22384 2004-08-20 14:39  pbartok
22385
22386         * XplatUIWin32.cs:
22387           - Added jackson's Async code from X11 to Win32
22388
22389 2004-08-20 14:09  pbartok
22390
22391         * SWF.csproj:
22392           - Added all new files
22393
22394 2004-08-20 14:09  pbartok
22395
22396         * Control.cs:
22397           - Added call to set window background color
22398
22399 2004-08-20 14:03  pbartok
22400
22401         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
22402           - Added method for setting the window background
22403
22404 2004-08-20 14:02  pbartok
22405
22406         * XplatUIWin32.cs:
22407           - Added method for setting the background color
22408           - Added handling for erasing the window background
22409
22410 2004-08-20 13:45  jordi
22411
22412         * TrackBar.cs: fixes timer, new properties and methods
22413
22414 2004-08-20 13:34  jackson
22415
22416         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
22417           correct thread
22418
22419 2004-08-20 13:22  jackson
22420
22421         * Timer.cs: Timer Tick events are now handed through Controls Async
22422           mechanism so the callbacks are executed in the same thread as X
22423
22424 2004-08-20 13:19  jackson
22425
22426         * XplatUIDriver.cs: Expose functionality to send async messages
22427           through the driver
22428
22429 2004-08-20 13:18  jackson
22430
22431         * Control.cs: Implement Begininvoke
22432
22433 2004-08-20 13:14  jackson
22434
22435         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
22436           messages through the driver
22437
22438 2004-08-20 13:12  jackson
22439
22440         * XplatUIX11.cs: Lock before all X operations. Also added Async
22441           method functionality through XSendEvent
22442
22443 2004-08-20 13:11  jackson
22444
22445         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
22446           This will screw up on 64 bit systems)
22447
22448 2004-08-20 13:10  jackson
22449
22450         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
22451           Async messages through X/Win32
22452
22453 2004-08-19 19:39  pbartok
22454
22455         * XplatUIX11.cs:
22456           - Updated code to match new HandleData.DeviceContext type
22457
22458 2004-08-19 19:38  pbartok
22459
22460         * HandleData.cs:
22461           - Made DeviceContext a generic object to allow usage from various
22462           drivers
22463           - Added support for queueing Windows messages
22464
22465 2004-08-19 19:37  pbartok
22466
22467         * XplatUIWin32.cs:
22468           - Added generation of MouseEnter, MouseLeave and MouseHover events
22469           - Added cleanup on EndPaint
22470
22471 2004-08-19 19:17  pbartok
22472
22473         * Control.cs:
22474           - Added handling of WM_MOUSEHOVER
22475           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
22476           code
22477
22478 2004-08-19 18:55  jordi
22479
22480         * ThemeGtk.cs: fixes button order
22481
22482 2004-08-19 18:12  jordi
22483
22484         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
22485
22486 2004-08-19 17:09  pbartok
22487
22488         * Control.cs:
22489           - Added Right property
22490           - Added RightToLeft property
22491
22492 2004-08-19 16:27  jordi
22493
22494         * ThemeGtk.cs: experimental GTK theme support
22495
22496 2004-08-19 16:26  jordi
22497
22498         * ITheme.cs, Theme.cs: move themes from an interface to a class
22499
22500 2004-08-19 16:25  jordi
22501
22502         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
22503           theme enhancaments
22504
22505 2004-08-19 16:04  pbartok
22506
22507         * XplatUIX11.cs:
22508           - Added colormap basics
22509           - Added a way to re-initialize with a different display handle
22510           - Fixed setting of the window background color
22511           - Added various X11 imports related to colors and colormaps
22512
22513 2004-08-19 15:51  pbartok
22514
22515         * X11Structs.cs:
22516           - Removed packing hints (Paolo suggested this a while back)
22517           - fixed colormap type
22518           - Added default Atom types
22519           - Added Screen and color structs and enums
22520
22521 2004-08-19 15:39  pbartok
22522
22523         * ImageList.cs:
22524           - Added missing Draw() method
22525           - Added missing RecreateHandle event
22526
22527 2004-08-19 15:30  pbartok
22528
22529         * Form.cs:
22530           - Added handling of WM_CLOSE
22531
22532 2004-08-18 13:16  jordi
22533
22534         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
22535           a table
22536
22537 2004-08-18 09:56  jordi
22538
22539         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
22540
22541 2004-08-17 15:31  ravindra
22542
22543         * SWF.csproj: Updated project.
22544
22545 2004-08-17 15:25  pbartok
22546
22547         * Control.cs:
22548           - Drawing improvement; don't call UpdateBounds if we are not visible
22549             (or have been minimized)
22550
22551 2004-08-17 15:24  pbartok
22552
22553         * XplatUIWin32.cs:
22554           - Finished IsVisible
22555           - Added Win32GetWindowPlacement
22556
22557 2004-08-17 15:08  jackson
22558
22559         * Panel.cs: Initial checkin of the Panel
22560
22561 2004-08-17 14:25  pbartok
22562
22563         * Control.cs:
22564           - Fixed broken handling of default window sizes
22565
22566 2004-08-17 13:29  jackson
22567
22568         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
22569           has a large startup time.
22570
22571 2004-08-17 10:25  jackson
22572
22573         * HandleData.cs: union areas properly
22574
22575 2004-08-17 10:12  jackson
22576
22577         * HandleData.cs: union areas properly
22578
22579 2004-08-16 20:00  ravindra
22580
22581         * ToolBar.cs, ToolBarButton.cs: Added attributes.
22582
22583 2004-08-16 18:48  ravindra
22584
22585         * ToolBar.cs: Added attributes.
22586
22587 2004-08-16 17:17  ravindra
22588
22589         * SWF.csproj: Updated project.
22590
22591 2004-08-16 17:16  jackson
22592
22593         * XplatUIX11.cs: Check for more expose events before sending a
22594           WM_PAINT so they can all be grouped together. This makes dragging a
22595           window across another window redraw in a sane way.
22596
22597 2004-08-16 15:47  pbartok
22598
22599         * Control.cs:
22600           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
22601             support OnMouseEnter/Leave()
22602           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
22603             exposure handling
22604
22605 2004-08-16 15:46  pbartok
22606
22607         * XplatUIStructs.cs, XplatUIX11.cs:
22608           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
22609           OnMouseEnter/Leave()
22610
22611 2004-08-16 15:34  jackson
22612
22613         * XplatUIX11.cs: Group multiple expose events in HandleData, make
22614           sure messages get the message field set to WM_NULL if they are not
22615           handled.
22616
22617 2004-08-16 15:24  jackson
22618
22619         * HandleData.cs: HandleData is used for storing message information
22620           for window handles
22621
22622 2004-08-15 17:23  ravindra
22623
22624         * ColorDepth.cs: Added attribute.
22625
22626 2004-08-15 17:23  ravindra
22627
22628         * SWF.csproj: Updated project for ToolBar Control.
22629
22630 2004-08-15 17:20  ravindra
22631
22632         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
22633           control and also dos2unix format.
22634
22635 2004-08-15 17:13  ravindra
22636
22637         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
22638           ToolBarButtonClickEventArgs.cs,
22639           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
22640           ToolBarTextAlign.cs: First Implementation of ToolBar control.
22641
22642 2004-08-15 15:31  pbartok
22643
22644         * ButtonBase.cs:
22645           - First (mostly) working version
22646
22647 2004-08-13 16:15  pbartok
22648
22649         * Control.cs:
22650           - Fixed Anchor default
22651
22652 2004-08-13 15:43  pbartok
22653
22654         * Control.cs:
22655           - Changed GetCursorPos signature
22656
22657 2004-08-13 15:42  pbartok
22658
22659         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
22660           - Changed signature for GetCursorPos
22661
22662 2004-08-13 15:25  pbartok
22663
22664         * XplatUIX11.cs:
22665           - Cleanup
22666           - Fixed resizing/exposure handling
22667
22668 2004-08-13 15:22  jordi
22669
22670         * ThemeWin32Classic.cs: removes redundant code and fixes issues
22671           with tickposition
22672
22673 2004-08-13 14:55  jordi
22674
22675         * TrackBar.cs: change from wndproc to events
22676
22677 2004-08-13 13:00  jordi
22678
22679         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22680           XplatUIX11.cs: implements PointToClient (ScreenToClient)
22681
22682 2004-08-13 12:53  pbartok
22683
22684         * XplatUIWin32.cs:
22685           - Changed GetWindowPos to also provide client area size
22686           - Fixed broken prototypes for several win32 functions
22687
22688 2004-08-13 12:53  pbartok
22689
22690         * XplatUI.cs, XplatUIDriver.cs:
22691           - Changed GetWindowPos to also provide client area size
22692
22693 2004-08-13 12:52  pbartok
22694
22695         * XplatUIX11.cs:
22696           - Added generation of WM_POSCHANGED
22697           - Changed GetWindowPos to also provide client area size
22698
22699 2004-08-13 12:52  pbartok
22700
22701         * Control.cs:
22702           - Added Dispose() and destructor
22703           - Fixed resizing and bounds calculation
22704           - Fixed Layout
22705           - Added memory savings for invisible windows
22706
22707 2004-08-13 12:46  jordi
22708
22709         * TrackBar.cs: adds timer and grap window
22710
22711 2004-08-13 10:25  jackson
22712
22713         * Timer.cs: SWF Timer
22714
22715 2004-08-12 16:59  pbartok
22716
22717         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22718           - Implemented method to get current mouse position
22719
22720 2004-08-12 14:29  jordi
22721
22722         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
22723           enhancement, fix mouse problems, highli thumb, etc
22724
22725 2004-08-12 13:31  pbartok
22726
22727         * Control.cs:
22728           - Fixed Anchoring bugs
22729
22730 2004-08-12 13:01  jackson
22731
22732         * StatusBar.cs: Don't forget things
22733
22734 2004-08-12 12:54  jackson
22735
22736         * ThemeWin32Classic.cs: Handle owner draw status bars
22737
22738 2004-08-12 12:54  jackson
22739
22740         * StatusBar.cs: Implement missing properties, events, and methods.
22741           Handle mouse clicking
22742
22743 2004-08-12 10:19  jackson
22744
22745         * StatusBarPanelClickEventArgs.cs,
22746           StatusBarPanelClickEventHandler.cs: Classes for handling status
22747           bar panel click events
22748
22749 2004-08-12 10:10  jackson
22750
22751         * Control.cs: Add missing properties
22752
22753 2004-08-12 09:46  pbartok
22754
22755         * BindingsManagerBase.cs:
22756           - Name changed to BindingManagerBase.cs
22757
22758 2004-08-12 09:25  jordi
22759
22760         * ScrollableControl.cs: calls ctrlbase instead of exeception
22761
22762 2004-08-11 16:28  pbartok
22763
22764         * InputLanguageChangingEventArgs.cs:
22765           - Never check in before compiling. Fixes the last check-in
22766
22767 2004-08-11 16:26  pbartok
22768
22769         * InputLanguageChangingEventArgs.cs:
22770           - More signature fixes
22771
22772 2004-08-11 16:20  pbartok
22773
22774         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
22775           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
22776           ImageListStreamer.cs, InputLanguage.cs,
22777           InputLanguageChangedEventArgs.cs,
22778           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
22779           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
22780           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
22781           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22782           - Signature fixes
22783
22784 2004-08-11 16:16  pbartok
22785
22786         * Application.cs:
22787           - Fixed Signature
22788           - Added .Net 1.1 method
22789
22790 2004-08-11 15:25  pbartok
22791
22792         * SWF.csproj:
22793           - Fixed BindingManagerBase.cs filename
22794
22795 2004-08-11 15:22  pbartok
22796
22797         * BindingManagerBase.cs:
22798           - Was checked in with wrong filename
22799
22800 2004-08-11 14:50  pbartok
22801
22802         * SWF.csproj:
22803           - Updated
22804
22805 2004-08-11 13:41  jordi
22806
22807         * XplatUIWin32.cs: Fixes ClientRect
22808
22809 2004-08-11 13:19  pbartok
22810
22811         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22812           XplatUIX11.cs:
22813           - We had SetWindowPos and MoveWindow to set window positions and
22814             size, removed MoveWindow. We have GetWindowPos, so it made sense to
22815             keep SetWindowPos as matching counterpart
22816           - Added some X11 sanity checking
22817
22818 2004-08-11 12:59  pbartok
22819
22820         * Control.cs:
22821           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
22822             (It seems that SetBounds is just a front for SetBoundsCore and
22823              SetBoundsCore updates the underlying window system and
22824              UpdateBounds is responsible for updating the variables associated
22825              with the Control and sending the events)
22826           - Major cleanup of Size handling; we now have two sizes, client_size
22827             and bounds. Bounds defines the window with decorations, client_size
22828             without them.
22829
22830 2004-08-11 12:55  pbartok
22831
22832         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22833           - Added method to calculate difference between decorated window and
22834             raw client area
22835
22836 2004-08-11 12:54  pbartok
22837
22838         * Label.cs:
22839           - Forcing redraw on resize
22840
22841 2004-08-11 11:43  pbartok
22842
22843         * ImageList.cs:
22844           - Removed disposing of the actual images when the list is disposed
22845
22846 2004-08-11 09:13  pbartok
22847
22848         * Control.cs:
22849           - Now properly reparents windows
22850
22851 2004-08-11 08:37  pbartok
22852
22853         * Control.cs:
22854           - Duh!
22855
22856 2004-08-11 07:47  pbartok
22857
22858         * Control.cs:
22859           - Rewrote the collection stuff. Might not be as fast now, not
22860             keeping the number of children around and accessible directly, but
22861             it's more straightforward
22862
22863 2004-08-11 07:44  pbartok
22864
22865         * AccessibleObject.cs:
22866           - Fixed to match ControlCollection rewrite
22867
22868 2004-08-11 07:43  pbartok
22869
22870         * ImageList.cs:
22871           - Added missing creation of the collection list
22872
22873 2004-08-10 20:08  jackson
22874
22875         * StatusBar.cs: Get the paint message from WndProc
22876
22877 2004-08-10 19:31  jackson
22878
22879         * ThemeWin32Classic.cs: Create Brushes as little as possible
22880
22881 2004-08-10 19:20  jackson
22882
22883         * UICues.cs: Add Flags attribute
22884
22885 2004-08-10 19:19  jackson
22886
22887         * StatusBarPanel.cs: Signature cleanup
22888
22889 2004-08-10 19:10  jackson
22890
22891         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
22892           Initial implementation of status bar item drawing
22893
22894 2004-08-10 17:27  jordi
22895
22896         * TrackBar.cs: add missing methods, properties, and restructure to
22897           hide extra ones
22898
22899 2004-08-10 16:24  jackson
22900
22901         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
22902           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
22903           attribute
22904
22905 2004-08-10 13:21  jordi
22906
22907         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
22908           enhancements and standarize on win colors defaults
22909
22910 2004-08-10 12:52  jackson
22911
22912         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
22913           ThemeWin32Classic.cs: Implement DrawItem functionality
22914
22915 2004-08-10 12:47  jordi
22916
22917         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
22918
22919 2004-08-10 12:32  jordi
22920
22921         * Control.cs: throw ontextchange event
22922
22923 2004-08-10 11:43  pbartok
22924
22925         * Control.cs:
22926           - Added more to the still unfinished Dock/Anchor layout code
22927
22928 2004-08-10 11:39  pbartok
22929
22930         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
22931           - Added GetWindowPos method
22932
22933 2004-08-10 11:36  pbartok
22934
22935         * XplatUIWin32.cs:
22936           - Implemented several methods
22937
22938 2004-08-10 09:47  jackson
22939
22940         * TrackBar.cs: Allow control to handle buffering
22941
22942 2004-08-10 09:41  jackson
22943
22944         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
22945
22946 2004-08-10 09:24  jackson
22947
22948         * Label.cs, LinkLabel.cs: Let Control handle buffering.
22949
22950 2004-08-10 09:09  jackson
22951
22952         * StatusBar.cs: Let Control handle all the buffering.
22953
22954 2004-08-10 09:08  jackson
22955
22956         * Control.cs: Control will now handle the buffering code, so each
22957           control does not have to implement this.
22958
22959 2004-08-10 08:34  jackson
22960
22961         * XplatUIDriver.cs: Use default colors from the theme
22962
22963 2004-08-09 17:12  pbartok
22964
22965         * ImageList.cs:
22966           - Fixed several bugs Ravindra pointed out
22967
22968 2004-08-09 16:11  pbartok
22969
22970         * Control.cs:
22971           - Added incomplete dock layout code
22972           - Added support for mouse wheel
22973
22974 2004-08-09 16:09  pbartok
22975
22976         * XplatUIX11.cs:
22977           - Added handling for middle and right mousebutton
22978           - Added handling for mouse wheel
22979           - Added handling for key state and mouse state and position
22980           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
22981           messages
22982
22983 2004-08-09 15:40  jackson
22984
22985         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
22986           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
22987           checkin
22988
22989 2004-08-09 15:37  jackson
22990
22991         * StatusBar.cs: Initial implementation of StatusBar
22992
22993 2004-08-09 15:36  jackson
22994
22995         * ITheme.cs: Add support for drawing status bar and getting status
22996           bar item sizes
22997
22998 2004-08-09 15:35  pbartok
22999
23000         * MouseButtons.cs:
23001           - Fixed values
23002
23003 2004-08-09 15:34  jackson
23004
23005         * ThemeWin32Classic.cs: Add support for drawing status bar and get
23006           status bar item sizes
23007
23008 2004-08-09 15:21  jackson
23009
23010         * ThemeWin32Classic.cs: Use known colors for default control
23011           colours
23012
23013 2004-08-09 15:12  jackson
23014
23015         * ThemeWin32Classic.cs: Make the default font static, it is static
23016           in control so this doesn't change functionality and creating fonts
23017           is sloooooow.
23018
23019 2004-08-09 14:56  pbartok
23020
23021         * X11Structs.cs:
23022           - Added GrabMode enum
23023
23024 2004-08-09 14:55  pbartok
23025
23026         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23027           - Removed Run method, was only required for initial development
23028
23029 2004-08-09 14:51  pbartok
23030
23031         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23032           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
23033           capture
23034
23035 2004-08-09 13:48  pbartok
23036
23037         * XplatUIX11.cs:
23038           - Fixed default sizing for child windows
23039
23040 2004-08-09 12:56  pbartok
23041
23042         * XplatUIX11.cs:
23043           - Added generation of WM_DESTROY message
23044           - Added handling of window manager induced shutdown
23045
23046 2004-08-09 11:31  jackson
23047
23048         * ThemeWin32Classic.cs: New names for control properties
23049
23050 2004-08-09 11:25  jackson
23051
23052         * Control.cs: Use new color names
23053
23054 2004-08-09 11:02  jackson
23055
23056         * XplatUI.cs: Get default window properties from the theme
23057
23058 2004-08-09 11:01  jackson
23059
23060         * ITheme.cs: The theme engine now controls default window
23061           properties
23062
23063 2004-08-09 11:00  jackson
23064
23065         * ThemeWin32Classic.cs: Add default window color properties
23066
23067 2004-08-09 10:17  jackson
23068
23069         * ThemeWin32Classic.cs: Use correct default back color
23070
23071 2004-08-09 10:05  jackson
23072
23073         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
23074           the theme now.
23075
23076 2004-08-09 09:56  jackson
23077
23078         * XplatUI.cs: Remove defaults, these are handled by the theme now.
23079
23080 2004-08-09 09:54  jackson
23081
23082         * Control.cs: Get default properties from the theme.
23083
23084 2004-08-09 09:53  jackson
23085
23086         * ITheme.cs: Themes now handle default control properties
23087
23088 2004-08-09 09:53  jackson
23089
23090         * ThemeWin32Classic.cs: Themes now handle default control
23091           properties so coloring will be consistent
23092
23093 2004-08-08 16:54  jordi
23094
23095         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
23096
23097 2004-08-08 15:08  jordi
23098
23099         * XplatUIX11.cs: fixes keyboard crash
23100
23101 2004-08-08 13:47  jordi
23102
23103         * Label.cs: add cvs header info
23104
23105 2004-08-08 12:09  jackson
23106
23107         * ThemeWin32Classic.cs: Add pen_buttonface
23108
23109 2004-08-08 11:52  jordi
23110
23111         * Label.cs, LinkLabel.cs: [no log message]
23112
23113 2004-08-08 11:34  jordi
23114
23115         * ThemeWin32Classic.cs: Use Windows Standard Colours
23116
23117 2004-08-07 17:32  jordi
23118
23119         * TrackBar.cs: throw exceptions of invalid enums values
23120
23121 2004-08-07 17:31  jordi
23122
23123         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
23124           draw method name
23125
23126 2004-08-07 16:56  jackson
23127
23128         * HorizontalAlignment.cs: Initial checkin
23129
23130 2004-08-07 13:16  jordi
23131
23132         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
23133           methods
23134
23135 2004-08-07 13:05  jordi
23136
23137         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
23138           GetSysColor defines
23139
23140 2004-08-06 18:01  pbartok
23141
23142         * ThemeWin32Classic.cs:
23143           - Fixed some rounding issues with float/int
23144
23145 2004-08-06 18:00  jackson
23146
23147         * DockStyle.cs, AnchorStyles.cs:
23148
23149                   Add flags and serializable attributes.
23150
23151 2004-08-06 17:46  pbartok
23152
23153         * XplatUIX11.cs:
23154           - Implemented GetParent
23155
23156 2004-08-06 17:18  pbartok
23157
23158         * TrackBar.cs:
23159           - Fixed some rounding issues with float/int
23160
23161 2004-08-06 17:17  pbartok
23162
23163         * X11Structs.cs, XplatUIX11.cs:
23164           - Fixed Refresh and Invalidate
23165
23166 2004-08-06 15:30  pbartok
23167
23168         * Control.cs, X11Structs.cs, XplatUIX11.cs:
23169           - Fixed recursive loop when resizing
23170           - Improved/fixed redrawing on expose messages
23171
23172 2004-08-06 09:53  jordi
23173
23174         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
23175           keyboard navigation
23176
23177 2004-08-06 08:02  pbartok
23178
23179         * X11Structs.cs, XplatUIX11.cs:
23180           - Fixed reparenting
23181           - Fixed window border creation
23182
23183 2004-08-05 15:38  pbartok
23184
23185         * XplatUIX11.cs:
23186           - Attempted fix for reparenting problems
23187
23188 2004-08-04 15:14  pbartok
23189
23190         * Control.cs:
23191           - Fixed Invalidation bug (calculated wrong client area)
23192           - Added ClientSize setter
23193
23194 2004-08-04 15:13  pbartok
23195
23196         * Form.cs:
23197           - Added AutoScale properties
23198
23199 2004-08-04 15:13  pbartok
23200
23201         * SWF.csproj:
23202           - Added latest files
23203
23204 2004-08-04 14:11  pbartok
23205
23206         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23207           XplatUIX11.cs:
23208           - Added Invalidate handling
23209
23210 2004-08-03 17:09  jordi
23211
23212         * XplatUIDriver.cs: fixes spelling mistake
23213
23214 2004-07-27 09:53  jordi
23215
23216         * TrackBar.cs: fixes trackbar events, def classname, methods
23217           signature
23218
23219 2004-07-27 09:29  jordi
23220
23221         * ScrollBar.cs: fixes scrollbar events
23222
23223 2004-07-27 04:38  jordi
23224
23225         * Control.cs: changes to be able to run winforms samples
23226
23227 2004-07-26 11:42  jordi
23228
23229         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
23230           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
23231
23232 2004-07-26 05:41  jordi
23233
23234         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
23235           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
23236           implementation
23237
23238 2004-07-22 09:22  jordi
23239
23240         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
23241           check link overlapping, implement events, and fixes
23242
23243 2004-07-21 10:28  jordi
23244
23245         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
23246
23247 2004-07-21 10:19  jordi
23248
23249         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
23250           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
23251           LinkLabelLinkClickedEventArgs.cs,
23252           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
23253           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
23254           implementation
23255
23256 2004-07-19 13:09  jordi
23257
23258         * Control.cs, Label.cs: label control re-written: added missing
23259           functionlity, events, and properties
23260
23261 2004-07-19 10:49  jordi
23262
23263         * Control.cs: fixes SetBounds logic
23264
23265 2004-07-19 01:29  jordi
23266
23267         * Control.cs: Call RefreshWindow only if the window has created
23268
23269 2004-07-15 14:05  pbartok
23270
23271         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
23272           - Implemented ImageList and ImageList.ImageCollection classes
23273           - Added ColorDepth enumeration
23274           - Updated SWF VS.Net project
23275
23276 2004-07-15 11:06  jordi
23277
23278         * XplatUIStructs.cs: added MsgButons enum
23279
23280 2004-07-15 11:03  jordi
23281
23282         * Control.cs: added basic mouse handeling events
23283
23284 2004-07-15 03:38  jordi
23285
23286         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
23287           Vertical TrackBar control implementation
23288
23289 2004-07-13 09:33  jordi
23290
23291         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
23292
23293 2004-07-13 09:31  jordi
23294
23295         * Control.cs, Form.cs: commit: new properties and fixes form size
23296           problems
23297
23298 2004-07-09 14:13  miguel
23299
23300         * ProgressBar.cs: Spelling
23301
23302 2004-07-09 11:25  pbartok
23303
23304         * ProgressBar.cs:
23305           - Removed usage of Rectangle for drawing. Miguel pointed out it's
23306           faster
23307
23308 2004-07-09 11:17  miguel
23309
23310         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
23311
23312                 * ProgressBar.cs: Fixed spelling for `block'
23313
23314                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
23315                 style guidelines.
23316
23317                 Avoid using the += on rect.X, that exposed a bug in the compiler.
23318
23319 2004-07-08 23:21  pbartok
23320
23321         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
23322           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
23323           BaseCollection.cs, Binding.cs, BindingContext.cs,
23324           BindingMemberInfo.cs, BindingsCollection.cs,
23325           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
23326           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
23327           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
23328           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
23329           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
23330           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
23331           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
23332           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
23333           FrameStyle.cs, GiveFeedbackEventArgs.cs,
23334           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
23335           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
23336           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
23337           InputLanguageChangedEventArgs.cs,
23338           InputLanguageChangedEventHandler.cs,
23339           InputLanguageChangingEventArgs.cs,
23340           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
23341           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
23342           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
23343           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
23344           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
23345           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
23346           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
23347           QueryAccessibilityHelpEventArgs.cs,
23348           QueryAccessibilityHelpEventHandler.cs,
23349           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
23350           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
23351           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
23352           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
23353           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
23354           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
23355           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
23356           XplatUIX11.cs, lang.cs:
23357           - Initial check-in
23358