- Use the correct active control
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-07-11  Jackson Harper  <jackson@ximian.com>
2
3         * Control.cs: When hiding a control only select the next control
4         if the current control was focused.
5         - Don't handle enter/leave when setting/killing focus, this is
6         done by the container control.
7         - Remove is_selected, it's not needed anymore.
8         - Add utility methods for selecting a child control, and for
9         firing the Enter/Leave events.
10         * ContainerControl.cs: When a control is activated fire the
11         enter/leave events.
12         - Don't wrap when processing the tab key, so that focus can be
13         moved outside of the container.
14         - Use the correct active control
15
16 2006-07-11  Jackson Harper  <jackson@ximian.com>
17
18         * ComboBox.cs: Remove some debug code that was blinding me.
19         * UpDownBase.cs: These controls actually aren't implicit, they are
20         visible to the user.
21
22 2006-07-10  Chris Toshok  <toshok@ximian.com>
23
24         * DataGridTableStyle.cs: just check if the property type is bool.
25         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
26         Don't use CanRenderType.
27
28         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
29         if our text == NullText.  Remove CanRenderType.
30
31         * DataGridBoolColumn.cs: nuke CanRenderType.
32
33         * DataGrid.cs: reenable some code to end the current edit inside
34         of set_CurrentCell.  This fixes the other 1.1.16 regression.
35         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
36         Also, remove the visible_row_count arg from CalcRowHeaders, since
37         we don't need to worry about the actual height of the area.
38
39 2006-07-10  Chris Toshok  <toshok@ximian.com>
40
41         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
42         mode, just return.
43
44         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
45         the real sense of the IsInEditOrNavigateMode property (true =
46         navigate, false = edit).  Also, update OnKeyPress to reflect this.
47
48         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
49         column style exists, we still need to set its property descriptor
50         to match up with our list manager.
51
52 2006-07-10  Chris Toshok  <toshok@ximian.com>
53
54         * ThemeWin32Classic.cs: implement the new row/header painting
55         approach.  The parent row painting will likely go away and
56         replaced with label controls, but the rest seems to work ok (and
57         efficiently).
58
59         * Theme.cs: change the way we draw datagrid rows.  we don't draw
60         the row headers as a block now.  Instead we draw them in the
61         normal draw-row loop.  Add some calls for drawing parent rows and
62         relation rows.
63
64         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
65         a default table style.  Set the defaults from ThemeEngine.Current,
66         not SystemColors.  Fix lots of misc issues with property setters.
67
68         * DataGrid.cs: move loads of style information out of this class
69         as it's being duplicated with DataGridTableStyle.  keep track of a
70         special DataGridTableStyle for the properties we used to mirror
71         here.  Switch all the style properties to access this table style
72         instead of instance fields of this class.  Also add a internal
73         class to represent parent rows (more needs to be stored here, like
74         the selection state from the parent table, as well as the
75         expansion state.)  Also, for datasources with relations, do the
76         right thing for collapse/expand, and add support for the
77         navigation/parent row buttons.
78
79         Lastly, fix the crash in the 1.1.16 build.
80
81         * GridTableStylesCollection.cs: make the explicit interface
82         implementations call the class's methods as opposed to duplicating
83         them.
84
85         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
86         0 so the text doesn't jump around when we move the cursor.
87
88 2006-07-10  Jackson Harper  <jackson@ximian.com>
89
90         * TextBoxBase.cs:
91         * ListBox.cs: Match MS's ToString (this makes debugging focus
92         stuff infinitely easier).
93
94 2006-07-10  Jackson Harper  <jackson@ximian.com>
95
96         * Control.cs (SelectNextControl): When checking the control's
97         parent use this instead of ctrl.parent so that null can be passed
98         to SelectNextControl. (I have unit tests for this).
99         - Remove unused var.
100
101 2006-07-10  Chris Toshok  <toshok@ximian.com>
102
103         * CurrencyManager.cs: correct one regression, the removal of the
104         finalType field.  Also, add a MonoTODO on CanAddRows, implement
105         Refresh() correctly, and fix some event emission in
106         ListChangedHandler.
107
108 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
109
110         * FileDialog.cs: Don't use brackets for new folders if they exist
111           under *nix. Instead use -(number of existing folders +1).
112
113 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
114
115         * FileDialog.cs:
116           - Fixed really nasty bug #78771
117           - Don't block the whole GUI when reading directories with a lot of
118             entries. Use an other thread instead and call BeginInvoke to
119             update the ListView in MWFFileView
120
121 2006-07-07  Chris Toshok  <toshok@ximian.com>
122
123         * Control.cs (Dispose): release any Capture when disposing.
124
125 2006-07-07  Chris Toshok  <toshok@ximian.com>
126
127         * LinkLabel.cs (Select): if we chain up to the parent, set
128         focused_index to -1 so we'll search for the first available link
129         the next time the user tabs into us.  Also, if the direction is
130         backward and focused_index == -1, start the search from the last
131         element.
132
133 2006-07-07  Chris Toshok  <toshok@ximian.com>
134
135         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
136         is beyond the end of the text, don't do anything.
137         (CreateLinkPieces): set our ControlStyles.Selectable based on
138         whether or not we have any links.
139         (Link.Invalidate): use a loop instead of foreach.
140         (Link.set_Start): null out owner.sorted_links so it'll be
141         recreated by CreateLinkPieces.
142
143 2006-07-06  Chris Toshok  <toshok@ximian.com>
144
145         * LinkLabel.cs: revert the SetStyle change.
146
147 2006-07-06  Chris Toshok  <toshok@ximian.com>
148
149         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
150         (OnEnableChanged): s/Refresh/Invalidate
151         (OnGotFocus): if we have a focused index already, refocus it (so
152         if we mouse out/in to the window it'll focus the right link).
153         (OnKeyDown): move the tab handling out of here.
154         (OnLostFocus): don't set focused_index to -1, so we can refocus it
155         when we lose focus.
156         (OnMouseDown): don't Capture here - Control handles it.  Also,
157         focus the active link.
158         (OnMouseUp): don't deal with Capture.
159         (OnPaintBackgroundInternal): remove.
160         (OnTextAlignChanged): CreateLinkPieces before calling the
161         superclass's method.
162         (OnTextChanged): call CreateLinkPieces before calling superclass's
163         method.
164         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
165         move around.
166         (Select): implement this, moving the selection between different
167         links, and call parent.SelectNextControl if we don't have another
168         link to focus in the given direction.
169         (CreateLinkPieces): call Invalidate instead of Refresh.
170         
171 2006-07-06  Chris Toshok  <toshok@ximian.com>
172
173         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
174         new LinkLabel internals.
175
176         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
177         over pieces looking for active/focused/etc links.  also, deal with
178         runs of text (and links) with embedded \n's in them, and use
179         MeasureCharacterRanges instead of MeasureString to figure out the
180         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
181         two-step.
182
183 2006-07-04  Jackson Harper  <jackson@ximian.com>
184
185         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
186         XKB or key auto repeat, do it manually.  Without key auto repeat,
187         when a key is held down we get key press, key release, key press,
188         key release, ... with auto repeat we get key press, key press, key
189         press ..., and then a release when the key is actually released.
190
191 2006-07-03  Jackson Harper  <jackson@ximian.com>
192
193         * TabControl.cs:
194         * ThemeWin32Classic.cs: Tabs do not obey normal background color
195         rules, they are always control color regardless of the background
196         color.
197
198 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
199
200         * FileDialog.cs: Added internal class MWFConfig.
201           Removed Registry support and replaced it with support for the new
202           MWFConfig class. See MWFConfig comments for more information.
203
204 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
205
206         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
207           rectangle. Added some patches from eno from bug #78490 and fixed
208           the arrow position for small up and down CPDrawScrollButtons.
209
210 2006-06-30  Jackson Harper  <jackson@ximian.com>
211
212         * InternalWindowManager.cs: Remove some debug code.
213         * Form.cs: When an MdiParent is set to null, the window is
214         "detatched" and becomes a normal window.
215         * MdiClient.cs: Don't bring the new child form to the front until
216         it is activated (setting it as active does this), this makes the
217         previously active forms titlebar get redrawn as inactive.
218
219 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
220
221         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
222           with later controls
223
224 2006-06-29  Mike Kestner  <mkestner@novell.com>
225
226         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
227         arrow in keynav state.  Fixes #78682.
228
229 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
230
231         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
232           order (fixes #78393)
233
234 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
235
236         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
237           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
238           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
239           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
240           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
241           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
242           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
243           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
244           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
245           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
246           enumerations (FlagsAttribute, SerializableAttribute, added/removed
247           values)
248
249 2006-06-28  Mike Kestner  <mkestner@novell.com>
250
251         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
252
253 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
254
255         * PropertyGrid.cs,
256           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
257           item lines from other area (It also makes BackColor consistent and
258           compatible with .NET). Fixed bug #78564.
259
260 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
261
262         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
263         Patch from Eno for #78555.
264
265 2006-06-27  Chris Toshok  <toshok@ximian.com>
266
267         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
268
269         * DataGridColumnStyle.cs: same.
270
271         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
272         
273         * DataGridDrawingLogic.cs: nuke.
274
275 2006-06-27  Chris Toshok  <toshok@ximian.com>
276
277         * DataGridTableStyle.cs: clean up the constructors, and build the
278         list of child relations for this table.  I have no idea if this is
279         where we should be doing it (it probably isn't), but since we're
280         already iterating over the properties..
281
282         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
283         struct and array for keeping track of row information, similar to
284         what's shown in a hack on
285         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
286
287         * Theme.cs: be consistent about the naming of DataGrid methods,
288         prefering ColumnWidths and RowHeights over columnsWidths and
289         RowsHeights.
290
291         * ThemeWin32Classic.cs: same, and also add support for variable
292         sized rows (and the +/- expansion icons for related rows).
293
294 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
295
296         * TextBoxBase.cs: Applied Eno's patch from #78660
297
298 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
299
300         * Form.cs (ScaleCore): We don't want to scale our form if it's
301           state is minimized or maximized, but we still need to scale our
302           child windows. Also, added try/finally block to ensure layout
303           gets reset (Fixes #78697)
304
305 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
306
307         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
308
309 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
310
311         * Form.cs: Fixed c+p error and added check to resize form if minimum
312           size is bigger than current size (Fixes #78709)
313
314 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
315
316         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
317
318 2006-06-26  Mike Kestner  <mkestner@novell.com>
319
320         * ComboBox.cs: only do Keypress handling in the combo when there  
321         are items in the collection. Fixes #78710.
322
323 2006-06-26  Chris Toshok  <toshok@ximian.com>
324
325         * Binding.cs: make this work bi-directionally.  also, clear up
326         other mixups between Push/Pull Data (e.g. we're supposed to pull
327         data when validating).
328
329         * BindingManagerBase.cs: trim some fully qualified collection
330         types.
331
332         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
333
334 2006-06-23  Chris Toshok  <toshok@ximian.com>
335
336         * PropertyManager.cs: It appears (according to the unit tests)
337         that PropertyManager doesn't use
338         PropertyDescriptor.AddValueChanged to track propery value changes
339         in its datasource, but uses the same scheme as Binding, where it
340         looks for a <Property>Changed event and binds to it.
341
342         Also, according to the docs, IsSuspended always returns false for
343         a property manager with a non-null datasource.
344
345 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
346
347         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
348           need to update the actual DialogResult. (Fixes #78613)
349
350 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
351
352         * Form.cs (ShowDialog): Release any captures before running the
353           new message pump (fixes #78680)
354
355 2006-06-22  Mike Kestner  <mkestner@novell.com>
356
357         * ListView.cs: Layout column widths properly in details mode even 
358         if HeaderStyle.None is set.  Fixes #78691.
359
360 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
361
362         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
363
364 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
365
366         * Control.cs (ContainsFocus): Using new driver method to get focused
367           window, instead of trying to use internal tracking var, which can
368           recursion issues (Fixes #78685)
369         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
370           XplatUIWin32.cs: Added GetFocus method to return focused window
371
372 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
373
374         * ColorDialog.cs: when the mouse button is pressed inside the color
375         matrix, don't let the cursor move out of it until the button is
376         released, which is the behavior on windows. Changed 'colours' by
377         'colors' to use the same word consistently.
378
379 2006-06-21  Chris Toshok  <toshok@ximian.com>
380
381         * DataGrid.cs: add in some basic navigation stuff (navigating to a
382         child relation and back, using a stack).  Also, remove
383         GetDataSource and the code that calls it - it's not needed.  Also,
384         track CurrencyManager.ListName's removal.
385
386 2006-06-21  Chris Toshok  <toshok@ximian.com>
387
388         * CurrencyManager.cs: push some of the original type checking from
389         BindingContext.CreateBindingManager to here, and remove some of
390         the finalType stuff.  Need more tests to make sure I've got the
391         ListName part right, and we might need more in SetDataSource.
392
393         * PropertyManager.cs: add a ctor that takes just the datasource,
394         and no property name.  Make SetDataSource work with a null
395         property_name, and make Current return the data_source if the
396         property descriptor is null.  this makes 'string foo = "hi";
397         BindingContext[foo].Current' return "hi" as it should.
398
399         * RelatedCurrencyManager.cs: make this code more generic - there's
400         no reason the parent manager has to be CurrencyManager, and
401         there's no reason to pass the DataRelation.  It suffices to use a
402         BindingManagerBase and PropetyDescriptor.
403
404         * RelatedPropertyManager.cs: make a similar change here.
405         
406         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
407         flower I knew it could be.
408
409 2006-06-20  Chris Toshok  <toshok@ximian.com>
410
411         * PropertyManager.cs: the PropertyChangedHandler is invoked when
412         data in the source has changed and we need to update the control,
413         so s/PullData/PushData.
414
415         * CurrencyManager.cs: Refresh is meant to update the control from
416         data in the datasource.  So, s/PullData/PushData.
417
418         * BindingContext.cs: add more ugliness (we weren't handling the
419         case where data_source = DataTable and data_member = column_name).
420
421         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
422         from the perspective of the datasource.  PullData pulls from the
423         control, PushData pushes to the control.
424
425 2006-06-20  Chris Toshok  <toshok@ximian.com>
426
427         * BindingContext.cs: rewrite the CreateBindingManager code to
428         handle navigation paths more or less properly.  This could
429         definitely stand some more work, in particular to push the
430         recursion up to the toplevel.  But that relies on fixes in other
431         places (System.Data comes to mind).
432
433         Also, move to a flat hashtable (and encode the twolevel nature of
434         the dictionary into the hash key).  This lets us implement the
435         IEnumerable.GetEnumerator method.
436
437         * RelatedCurrencyManager.cs: new class.  Update our view based on
438         our relation and our parent CurrencyManager's position.
439
440         * CurrencyManager.cs: split out some logic from the ctor into
441         SetView, so it can be called from the new RelatedCurrencyManager
442         subclass.
443
444         * RelatedPropertyManager.cs: new class.  Update our datasource
445         based on the position of our parent CurrencyManager.
446
447         * PropertyManager.cs: split out some logic from the ctor into
448         SetDataSource, so it can be called from the new RelatedDataSource
449         subclass.  Also, make the Current getter return the value
450         of the PropertyDescriptor, not the data_source.
451
452         * Binding.cs: no need to duplicate the string splitting code here.
453
454 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
455
456         * Control.cs:
457           - set_Enabled: OnEnabledChanged is not called if the inherited state 
458             of the control is not altered, even though  we might be changing the
459             internal state of the control (#78458)
460           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
461             OnEnabledChanged, to allow easy altering of any child window state
462           - OnEnabledChanged: Added code to enable/disable driver window state
463           - OnParentEnabledChanged: Instead of firing the event, call 
464             OnEnabledChanged, which will fire the event and also a) set driver
465             window state and pass the enabled state to any grandchildren (#78458)
466
467 2006-06-19  Jackson Harper  <jackson@ximian.com>
468
469         * InternalWindowManager.cs: We don't set the cursor explicitly
470         thats done via the response to NCHITTESTs.
471         - Don't need to adjust for titlebar heights anymore, the
472         coordinates are coming in the correct coordinates now (see peters
473         last patch).
474
475
476 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
477
478         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
479           being translated relative to whole window, instead of client window.
480           That caused broken offsets on mouseclick (and caused gas for our
481           InternalWindowManager)
482
483 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
484
485         * TextControl.cs:
486           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
487           - Undo(): Added replay of cursor move on DeleteChars action; added
488             calling Undo() again if a recorded cursor move is invalid (to
489             ensure that some action is performed on Undo)
490         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
491
492 2006-06-16  Jackson Harper  <jackson@ximian.com>
493
494         * MdiClient.cs: Instead of just sizing maximized windows when
495         there is a resize we also have to adjust the Y of minimized
496         windows, so they stay pinned to the bottom of the mdi container.
497         - Eliminate separate tracking of the active control, we can just
498         get this from the controls collection.
499         - Paint the decorations for the newly activated titlebar so we get
500         a pretty blue bar.
501         * InternalWindowManager.cs:
502         * ThemeWin32Classic.cs: Minimized windows get all three buttons
503         even if they are a tool window.
504         
505 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
506
507         * TextControl.cs (Undo): Handle non-existent cursor locations in the
508           undo buffer, these can happen when text was deleted and the cursor
509           was recorded first. Since we will also have a recorded cursor
510           after the delete this is not an issue. (Fixes #78651)
511
512 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
513
514         * AccessibleObject.cs: Remove dependence on Control.is_selected;
515           instead properly track control states internally (allows us to
516           remove is_selected from Control)
517
518 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
519
520         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
521         whose width is not a multiple of 8.
522
523 2006-06-13  Jackson Harper  <jackson@ximian.com>
524
525         * MdiClient.cs:  Only maximize the next child if the current one
526         is maximized.
527
528 2006-06-13  Chris Toshok  <toshok@ximian.com>
529
530         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
531         modified.  Also, guard against grid or grid_drawing being null in
532         Invalidate.
533
534         * DataGrid.cs: Reformat tons of getters/setters.  In the
535         DataMember setter, just call SetNewDataSource instead of
536         duplicating some of its functionality.  In SetNewDataSource, don't
537         check ListManager for null, since the property getter creates the
538         object if needed.
539
540         * DataGridTableStyle.cs: don't set TableStyle or call
541         SetDataGridInternal on the column here, it's done in
542         GridColumnStylesCollection.Add.
543
544         * GridColumnStylesCollection.cs: fix all the explicit interface
545         implementations to just call our methods.  Nuke AddInternal() and
546         move the body of it to Add().  Also, add a call to
547         column.SetDataGridInternal to Add().
548
549         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
550         base()+duplicate code.  Also, use the Format property instead of
551         format to generate an Invalidate ala MS.  Lastly, create the
552         textbox here, unconditionally.
553         (set_Format): call Invalidate.
554         (get_TextBox): no need to call EnsureTextBox.
555         (Commit): remove the message box.
556         (Edit) remove the call to EnsureTextBox.
557         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
558         (EnterNullValue): no need to check textbox for null.
559         (HideEditBox): no need to check textbox for null.
560         (SetDataGridInColumn): add the textbox to the grid's controls.
561         (EnsureTextBox): nuke.
562         
563 2006-06-13  Jackson Harper  <jackson@ximian.com>
564
565         * MdiWindowManager.cs: Hook up to the maximized menus paint event
566         and redraw the buttons when needed. Unhook when the window is
567         unmaximized.
568         * MainMenu.cs: Add an internal Paint event, the mdi window manager
569         needs this so that it can redraw its buttons when the menu is
570         repainted.
571         * InternalWindowManager.cs:
572         * Form.cs: The method order has changed for DrawMaximizedButtons,
573         so that it can be a PaintEventHandler.
574         
575 2006-06-13  Jackson Harper  <jackson@ximian.com>
576
577         * MdiClient.cs: When we close a maximized mdi window, the next mdi
578         window is activated and maximized, even if it wasn't before.
579         - When  a new window is activated repaint the decorations of the
580         old one, so that it no longer has the Active "look" (the blue
581         titlebar).
582         * InternalWindowManager.cs: Open up CreateButtons to base classes
583         so they can recreate the buttons on state changes.
584         - If a window is maximized give it all three buttons
585         * MdiWindowManager.cs: Create the titlebar buttons when the state
586         is changed, this is needed because a toolwindow will not have all
587         three buttons until it is maximized.
588
589 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
590
591         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
592           Fixed bug #78609.
593
594 2006-06-12  Jackson Harper  <jackson@ximian.com>
595
596         * KeysConverter.cs: Make sure we handle the Ctrl special case
597         if its the only key.
598         
599 2006-06-12  Jackson Harper  <jackson@ximian.com>
600
601         * Theme.cs: Add a method to get the size of a managed window
602         toolbar button.
603         * InternalWindowManager.cs: Remove the ButtonSize property, this
604         should be retrieved from the theme.
605         * MdiWindowManager.cs: Get the button size from the theme
606         * ThemeWin32Classic.cs: Make the method to get the managed window
607         titlebar button size public.
608         - Handle the different button sizes of maximized toolwindows
609         (should match any maximized window).
610         - Get the titlebar height from the theme, not the WM (which gets
611         it from the theme).
612
613 2006-06-12  Jackson Harper  <jackson@ximian.com>
614
615         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
616         event down to the mdi window manager.
617         - Expose some extra stuff to base classes
618         - Make sure to end the Capture on an NC Mouse up, so that we can
619         get double clicks properly, and the sizing doens't stick.
620         - When doing PointToClient contain it in the workable desktop
621         area, this prevents windows from changing size when the cursor is
622         pulled outside of the working area while sizing.
623         * MdiWindowManager.cs: When we get a double click maximize the
624         window.
625         - Reset the cursor after handling mode changes.
626
627 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
628
629         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
630           current desktop, instead of just assuming a 0, 0 origin. This
631           is needed for our internal window manager, to know the top
632           margin of the desktop
633
634 2006-06-12  Chris Toshok  <toshok@ximian.com>
635
636         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
637         we need this to get rid of the selected background in the bool
638         column.
639         (CancelEditing): move the ConcedeFocus call to above the Abort
640         call.  Also, set is_changing to false and invalidate the row
641         header if we were changing before.
642         (ProcessKeyPreviewInternal): remove, since noone outside this
643         class calls it anymore.  Roll the code into ProcessKeyPreview.
644         (EndEdit): remove the internal version.
645         (InvalidateCurrentRowHeader): make private.
646
647         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
648         Keys.Escape handling (and with it the last call to
649         DataGrid.EndEdit from outside the class.)
650
651
652 2006-06-12  Chris Toshok  <toshok@ximian.com>
653
654         * DataGridTextBox.cs (.ctor): isedit defaults to false.
655         (OnKeyPress): set isedit to true.
656         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
657         already handled by the grid.
658
659         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
660         right.  ugh.
661         (set_DataSource): SetDataSource always returns true, so stop
662         putting it in an if statement.
663         (EndEdit): get rid of some {}'s
664         (ProcessGridKey): return true in case Keys.Escape.
665         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
666         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
667         PositionChanged, stopped connecting to CurrentChanged.
668         (GetDataSource): simplify this a bunch.
669         (SetDataSource): change return type from bool to void.
670         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
671         to this, and make sure we don't set ListManager.Position inside
672         set_CurrentCell.
673         (OnListManagerItemChanged): if we're passed an actual index,
674         redraw that row.
675
676         * CurrencyManager.cs (set_Position): don't call PullData here.
677
678 2006-06-09  Jackson Harper  <jackson@ximian.com>
679
680         * TreeNode.cs:  Recalculate the visible order before doing the
681         Expand/Collapse Below calls, because those calls generate an
682         expose.
683         - Reduce calls to the TreeView property, which is mildly expensive
684         by using a local var.
685         * Form.cs: Layout the MDI child windows when creating the parent
686         form.
687         - Don't use the internal constructor anymore
688         * MdiClient.cs: use the parent form width/height (if available)
689         when laying out the child windows, we do this because the
690         mdiclient isn't docked yet when the initial layout is done.
691         - Don't need an internal constructor anymore.
692
693 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
694
695         * FileDialog.cs: handle access errors when trying to create a folder
696         or changing to a directory. No need to initialize out parameters.
697
698 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
699
700         * FileDialog.cs: Append a number when creating a new folder if the
701           folder already exists (use parenthesis instead of square brackets)
702
703 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
704
705         * FileDialog.cs:
706           - Disabled registry support for windows and added better registry
707             error checking for other systems (need to investigate why it
708             works perfectly on my system)
709           - If a folder already exist show an error MessageBox instead of
710             trying to create an indexed name.
711           - Fixed a non intentional typo.
712
713 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
714
715         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
716
717 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
718
719         * FileDialog.cs: When creating a new folder don't crash if the
720           folder already exists.
721
722 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
723
724         * FileDialog.cs: Allmost a complete rewrite.
725           - added a "virtual" file system that handles the differences
726             between unix and windows file systems (especially the directory
727             structure). Moved most of the directory and file handling code
728             into the vfs.
729             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
730             UnixFileSystem and FSEntry.
731           - Recently used folder/directory, size, location and used file names
732             (file name ComboBox) are now stored in the registry and get read
733             before the dialog shows up (fixes part 6 of bug #78446).
734           - Creation of new folders/directories is now possible (context menu
735             or ToolBar). Added TextEntryDialog for this that fills in the gap
736             until ListView.LabelEdit works.
737           - Fixed cursor handling (bug #78527) and focus handling for
738             PopupButtonPanel
739           - Various "Search in" ComboBox enhancements. The content of the
740             dropdown listbox now almost matches ms.
741           - Changed the behaviour when the user switches to SpecialFolder
742             Recent to show the ListView in View.Details.
743           - Beside using the ToolBar to change the View property of the
744             file ListView it is now possible to use the context menu too.
745
746 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
747
748         * ComboBox.cs: Don't create a new ObjectCollection when an item
749           gets inserted. Just insert the item in the existing object_items
750           ArrayList.
751
752 2006-06-08  Jackson Harper  <jackson@ximian.com>
753
754         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
755         that the treeview and root node checks are done also, this fixes a
756         regression i caused in the unit tests.
757
758 2006-06-07  Wade Berrier <wberrier@novell.com> 
759
760         * RichTextBox.cs: More ISO8859-1 -> unicode
761
762 2006-06-07  Mike Kestner  <mkestner@novell.com>
763
764         * ComboBox.cs : use items to hold highlight/selection so that
765         collection insertions don't require synchronization.
766
767 2006-06-07  Jackson Harper  <jackson@ximian.com>
768
769         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
770         routine.  We now always keep the sized edge at the cursor instead
771         of computing movement and adjusting rects.  There is one buglet
772         with this method though when the cursor is moved over area that
773         the window can not expand too (such as the toolbars on the desktop).
774
775 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
776
777         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
778         here. Fixes crash on startup in AlbumSurfer.
779
780 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
781
782         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
783           values
784
785 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
786
787         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
788         statement to avoid calling XNextEvent which will block if another thread
789         took the event that we were expecting. Fixes bug #78605.
790
791 2006-06-07  Mike Kestner  <mkestner@novell.com>
792
793         * ListView.cs : isolated checkbox clicking from the selection logic.
794         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
795
796 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
797
798         * Form.cs: Check that the value passed to Form.DialogResult
799         is a valid enum value.
800
801 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
802
803         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
804         Computer'. Clicking it in the network view goes to 'My Computer'.
805         Added CIFS filesystem type. Display the mount point of filesystems.
806         Avoid duplicate mount points (happens for me with CIFS);
807
808 2006-06-06  Jackson Harper  <jackson@ximian.com>
809
810         * InternalWindowManager.cs: Draw the maximized windows buttons
811         when resizing.
812
813 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
814
815         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
816         all other dialogs. Fixes bug #78585.
817
818 2006-06-06  Mike Kestner  <mkestner@novell.com>
819
820         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
821         Only invalidate checkbox on checkstate changes to avoid flicker.
822         * ListBox.cs : avoid unselect/select when clicking selected item.
823         avoid reselection flicker for already multiselected items.
824         Fixes #78382.
825
826 2006-06-06  Jackson Harper  <jackson@ximian.com>
827
828         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
829         the parent form so that the menu is removed if needed.
830
831 2006-06-06  Mike Kestner  <mkestner@novell.com>
832
833         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
834         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
835
836 2006-06-06  Mike Kestner  <mkestner@novell.com>
837
838         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
839
840
841 2006-06-06  Jackson Harper  <jackson@ximian.com>
842
843         * Control.cs: Use the property (instead of the field) to get the
844         default cursor so it is instantiated correctly.
845         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
846         resizes so we need to manually repaint the window decorations here.
847         - Set the titlebar button locations as soon as they are created,
848         otherwise they are not set correctly on win32.
849         
850 2006-06-06  Chris Toshok  <toshok@ximian.com>
851
852         * CurrencyManager.cs (set_Position): call PullData before
853         OnCurrentChanged.
854         (AddNew): after calling IBindingList.AddNew, update our
855         listposition, and call OnCurrentChanged/OnPositionChanged (without
856         calling PullData).
857         (OnCurrentChanged): remove the call to PullData from here.
858         (OnItemChanged): remove the call to PushData from here.
859         (OnPositionChanged): change the test from == null to != null to
860         match the other methods.
861         (ListChangedHandler): the grossest part of the patch.  Implement
862         this such that it passes the unit tests in CurrencyManagerTest and
863         the output more or less matches that of MS's implementation.
864  
865 2006-06-06  Mike Kestner  <mkestner@novell.com>
866
867         * ListView.cs : only update check state on single click.
868         * ThemeWin32Classic.cs : fix focus drawing for details view without
869         fullrowselect.  Fixes #78454.
870         * XplatUIX11.cs : fix for double click emission.
871
872 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
873
874         * PropertyGridView.cs : Applied Atsushi's patch to fix
875         font dialog bug  (#78197).
876
877 2006-06-05  Jackson Harper  <jackson@ximian.com>
878
879         * TreeNode.cs: Compute the next node for expanding/collapsing
880         correctly. We now factor in nodes without a NextNode
881         correctly. (Fixes somes cases in nunit-gui).
882         * InternalWindowManager.cs: Set the bounds when updating the
883         virtual position of a tool window.
884         
885 2006-06-05  Chris Toshok  <toshok@ximian.com>
886
887         * DataGrid.cs: rename cached_currencymgr to list_manager.
888         (set_CurrentCell): move SetCurrentCell code here, and clean it up
889         some.
890         (CurrentRow, CurrentColumn): single accessors so we can make the
891         cursor movement code a lot easier to understand.
892         (CurrentRowIndex): implement this in terms of CurrentRow.
893         (BeginEdit): clean this up a bit.
894         (CancelEditing): sort out the is_editing/is_changing/is_adding
895         stuff a little.
896         (EndEdit): minor changes.
897         (OnKeyDown): add a comment about a (most likely) unnecessary
898         check.
899         (OnMouseDown): cancel editing when we click on a row header.  And
900         use the CurrentRow setter, not CurrentCell.
901         (ProcessDialogKey): directly call ProcessGridKey.
902         (UpdateSelectionAfterCursorMove): factor out this common block of
903         code (it's used everywhere that we move the cursor by updating row
904         or column).
905         (ProcessGridKey): pretty substantial overhaul.  Use the
906         CurrentRow/CurrentColumn properties to make the code a lot more
907         readable.  Only use the CurrentCell property when we have to
908         modify both row and column at once.  Tab behavior is still broken,
909         and Delete is untested.
910         (Select): if we have no selected rows, set selection_start to
911         @row.
912         (EditCurrentCell): rename EditCell this.  It was only ever invoked
913         with CurrentCell as the arg, so drop the arg and rename it.
914
915         * DataGridColumnStyle.cs: clean up the constructors a little, and
916         drop CommonConstructor().
917
918         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
919         actually get notified when the user hits it.
920         (ProcessKeyMessage): *substantially* simplify this method.
921         There's no reason (that I can see) for the textbox to be making
922         calls into the datagrid at all.  Remove all of them but the ones
923         for Enter handling.  those will take some more work.
924
925         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
926         calling HideEditBox.
927         (HideEditBox): if we have an active textbox, render it invisible
928         without causing a re-layout of the datagrid.
929
930 2006-06-05  Mike Kestner  <mkestner@novell.com>
931
932         * ListView.cs : fix NRE crasher when focuseditem is cleared by
933         collection changes by resetting it to Items[0].  Fixes #78587.
934
935 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
936
937         * MessageBox.cs: if the height of the text is larger than the icon_size,
938         use that. Fixes bug #78575.
939
940 2006-06-05  Jackson Harper  <jackson@ximian.com>
941
942         * TreeView.cs: Fix line drawing when scrolling.  To do this each
943         node is basically responsible for drawing its entire horizontal
944         area.  When drawing a node it draws its parent node lines if
945         needed.
946         - Adjust the clip area to the viewport rectangle
947         - Fix Left/Right key handling to match MS. (It expand/collapses
948         and moves to parents/first child but does not move selection to
949         sibling nodes).
950         - Fix SetTop to work with new bound calculation code
951         - When scrollbars are no longer needed we need to reset scrolling
952         vars and recalculate the visible order so the redraw is correct
953         * TreeNode.cs: We can't expand/collapse nodes with no children.
954
955 2006-06-03  John Luke  <john.luke@gmail.com> 
956
957         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
958         so the colors work without dev packages
959         
960 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
961
962         * Control.cs 
963           - Select: Implemented to just use activate. Seems to match MS 
964             behaviour closest. Documented to only do actual control walking 
965             based on it's parameters if in a container control so I moved 
966             the code there.
967           - Removed selection check logic from our internal Select() method
968         * ContainerControl.cs:
969           - Select: Moved selection logic from Control here, since MS documents
970             that containers obey the bool arguments. No longer calling base
971
972 2006-06-02  Jackson Harper  <jackson@ximian.com>
973
974         * TreeView.cs: If the selected node isn't changed when we get
975         focus update the previously selected node so that we see the
976         selection box.
977
978 2006-06-02  Mike Kestner  <mkestner@novell.com>
979
980         * ComboBox.cs: restructure grab and general mouse event handling.
981         Make the composite control raise mouse events like it was a single
982         control for leaves/enters/motion/up/down events.  fix dropdown list
983         coordinate mangling and refactor it into the scrollbar subclass to
984         reduce code duplication.  Fixes #78282 #78361 and #78457.
985
986 2006-06-02  Mike Kestner  <mkestner@novell.com>
987
988         * ScrollBar.cs: remove Capture setting/clearing, as it happens
989         automatically in the Control.WndProc.
990
991 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
992
993         * FileDialog.cs: fix crash when running SharpChess, which sets the
994         FilterIndex to 2 with only one Filter.
995
996 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
997
998         * ToolBar.cs: add SizeSpecified property.
999         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
1000         try to figure out our real size, otherwise fallback to what the
1001         container says.
1002
1003 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
1004
1005         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
1006         * Control.cs (WndProc): MS always calls the DefWndProc to pass
1007           up the event
1008
1009 2006-06-01  Mike Kestner  <mkestner@novell.com>
1010
1011         * ListView.cs: revamp the focus management in ListView.  It still
1012         causes churn of LostFocus/GotFocus emissions on clicks, but it's
1013         better than not handling focus at all.  Will revisit when pdb feels
1014         the general focus handling is solid.  Fixes #78526.
1015
1016 2006-06-01  Jackson Harper  <jackson@ximian.com>
1017
1018         * TreeView.cs: Set the default border style in the constructor.
1019         - Move painting to use OnPaintInternal instead of capturing
1020         WM_PAINT, this is the correct way of doing things
1021         - UpdateBelow shouldn't invalidate the scrollbar area
1022         - Cap the top on update below in case the node was above the top
1023         of the viewport rectangle.
1024         - ExpandBelow and Collapse below need to obey Begin/End Update.
1025         * TreeNode.cs: Make is_expanded internal so the treenode
1026         collection can change it without firing the whole event chain.
1027         * TreeNodeCollection.cs: When clearing all the child nodes make
1028         sure to recalc the visible order.
1029         - Improve algo for remove the top node
1030
1031 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
1032
1033         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
1034           SendMessage directly calling window procedures, which in turn might
1035           call SetFocus()
1036
1037 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
1038
1039         * Control.cs: Don't handle WM_SETFOCUS if the same window already
1040           has focus (works around X11 sending a FocusIn after our SetFocus)
1041         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
1042
1043 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
1044
1045         * Mime.cs: Fix for the NET_2_0 build.
1046           NameValueCollection needs StringComparer now.
1047
1048 2006-05-31  Chris Toshok  <toshok@ximian.com>
1049
1050         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
1051         return (via an out parameter) the starting X of the column.
1052         (UpdateVisibleColumn): track change to FromPixelToColumn.
1053         (HitTest): add a ColumnResize case here.
1054         (DrawResizeLine): new function, probably poorly named.
1055
1056         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
1057         only need to keep one reference.
1058         (set_ListManager): same.
1059         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
1060         Also, add support for HitTestType.ColumnResize.
1061         (OnMouseMove): add column resize behavior here, and change the
1062         cursor to the correct one as we move around the datagrid.
1063         (OnMouseUp): terminate the column resize if we're resizing.
1064         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
1065         for the current cell.
1066         (ConnectListManagerEvents): use cached_currencymgr.
1067         (DisconnectListManagerEvents): fill this in, using
1068         cached_currencymgr.
1069         (SetCurrentCell): remove cached_currencymgr_events handling.
1070         (SetDataMember): only call DisconnectListManagerEvents if
1071         cached_currencymgr is != null.
1072         (SetDataSource): same.
1073         (OnListManagerCurrentChanged): cached_currencymgr_events ->
1074         cached_currencymgr.
1075
1076 2006-05-31  Jackson Harper  <jackson@ximian.com>
1077
1078         * BindingManagerBase.cs: Remove somedebug code that creeped into
1079         SVN.
1080         * TreeNode.cs: We get the indent level dynamically right now, so
1081         don't track it as a member.
1082         * TreeNodeCollection.cs: Make sure all nodes added to the list
1083         have parents, treeviews/topnodes setup properly.
1084         - Don't attempt to track indent level.
1085
1086 2006-05-30  Jackson Harper  <jackson@ximian.com>
1087
1088         * BindingContext.cs: Create the currency manager tables here.
1089         This allows us to more easily create null tables (when bad data
1090         members are used), and more easily create related currency
1091         managers.
1092         * CurrencyManager.cs: All the table creation stuff is done by the
1093         binding context now.
1094         - Current should throw an exception if listposition is -1.
1095         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
1096         been bound yet.
1097
1098 2006-05-30  Mike Kestner  <mkestner@novell.com>
1099
1100         * ListView.cs: allow reexpansion of zero-width column headers.
1101         Fixes #78528.
1102
1103 2006-05-28  Chris Toshok  <toshok@ximian.com>
1104
1105         * CurrencyManager.cs (get_Current): after the late binding
1106         listposition = -1 fix, we need to guard against it here and return
1107         null, otherwise we raise an exception (which is swallowed
1108         elsewhere, and breaks datagrid databinding.)
1109
1110 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
1111
1112         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
1113           than WM_SYSKEY, don't throw if get something unexpected (#78507)
1114
1115 2006-05-26  Jackson Harper  <jackson@ximian.com>
1116
1117         * ControlPaint.cs:
1118         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
1119         values, it's faster and it's all we care about (we don't care if
1120         the names aren't equal).
1121         * KeyboardLayouts.cs: Eliminate some dead code.
1122         - Lazy init things
1123         * X11Keyboard.cs: Lazy init keyboard detection.
1124         - Cleanup access modifiers a little.
1125
1126 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
1127
1128         * XplatUIX11.cs: Once again, attempting to get layout just right.
1129
1130 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
1131
1132         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
1133           the sizes of each link section, that will result in sizes that
1134           match DrawString's layout (Fixes #78391)
1135
1136 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
1137
1138         * FileDialog.cs: If AddExtension property is true autocomplete the
1139           extensions in SaveFileDialog correctly. Fixes bug #78453.
1140           Set MyNetwork and MyComputer to "C:\" for windows. This should
1141           fix part 8 of bug #78446 for now.
1142
1143 2006-05-26  Chris Toshok  <toshok@ximian.com>
1144
1145         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
1146         invalidate the current row header if we need to, but presumably
1147         we'll invalidate the row corrsponding to the bounds or
1148         editingControl.
1149         (GridHScrolled): switch back to this method, as it's part of the
1150         public api.  *sigh*.
1151         (GridVScrolled): same.
1152         (OnMouseWheel): hack up something that more or less works.  Call
1153         GridHScrolled/GridVScrolled directly, instead of duplicating much
1154         of their code here.
1155         (EnsureCellVisibility): reinstate a bunch of this code, since we
1156         can't just set the scrollbar Value and expect to do all the work
1157         in the ValueChanged handler.  Also, Call Update() after scrolling
1158         in one direction so the other XplatX11.ScrollWindow call has the
1159         proper stuff in the proper places.
1160         (EditCell): set is_editing to true before calling .Edit.
1161
1162         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
1163         don't bother comparing first.
1164         (OnKeyPress): call grid.ColumnStartedEditing before calling
1165         base.OnKeyPress.  this will set is_changing and invalidate the row
1166         header if necessary.
1167         (ProcessKeyMessage): for WM_CHAR messages, call
1168         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
1169         and WM_KEYDOWN.
1170         
1171         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
1172         it's done in the DataGrid.
1173         (NextState): call grid.ColumnStartedEditing, which takes care of
1174         invalidating the row header (and setting is_changing).
1175
1176         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
1177         here.  it's done in the DataGrid.
1178
1179 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1180
1181         * Control.cs: allow changing the cursor when the mouse position is
1182         out of bounds but Capture is set.
1183         * LinkLabel.cs: handle the case when the mouse button is pressed on the
1184         linklabel but released somewhere else.
1185
1186 2006-05-25  Jackson Harper  <jackson@ximian.com>
1187
1188         * TreeView.cs: When we get focus if there is no selected node make
1189         it the top node
1190         - Remove some uneeded setup code from Draw.
1191         * TreeNodeCollection.cs: If the tree doesn't have a top node when
1192         a new node is inserted make the new node the top.
1193         * XplatUIX11.cs:
1194         * Timer.cs: Use Utc time so that no local time zone stuff needs to
1195         be used (should be faster).
1196         
1197 2006-05-25  Chris Toshok  <toshok@ximian.com>
1198
1199         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
1200         problem with the last commit.
1201
1202 2006-05-25  Chris Toshok  <toshok@ximian.com>
1203
1204         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
1205         need the invalidate call here, while scrolling right-to-left via
1206         the left arrow key (i.e. moving the editing cell while scrolling).
1207
1208         * DataGrid.cs (.ctor): remove the initialization of
1209         ctrl_pressed/shift_pressed.  We no longer track them using key
1210         up/down handlers, but by using Control.ModifierKeys.  Also, switch
1211         to using ValueChanged handlers on the scrollbars instead of
1212         Scrolled event handlers.  This simplifies a bunch of the scrolling
1213         code.
1214         (GridHValueChanged): rename from GridHScrolled, and change it to
1215         work with the new event args.
1216         (GridVValueChanged): same.
1217         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
1218         (OnMouseWheel): actually scroll the datagrid.  Don't change the
1219         selected cell.
1220         (ProcessGridKey): correct all the keyboard navigation stuff I
1221         could find.  Ctrl up/down/left/right/home/end work now.
1222         (EnsureCellVisibility): correct method name spelling.  Also,
1223         simplify this a touch by not explicitly calling the
1224         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
1225         scrollbar value.
1226         (OnKeyUpDG): no need for this method now.
1227         
1228 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1229
1230         * LinkLabel.cs: display the OverrideCursor when hovering the label.
1231         Fixes bug #78392.
1232
1233 2006-05-25  Chris Toshok  <toshok@ximian.com>
1234
1235         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
1236         r61019.
1237
1238 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
1239
1240         * Application.cs: Moved setting of is_modal and closing to before
1241           we create the control, to allow the event handlers called as a
1242           result of creation affect closing. Also removed Gonzalo's previous
1243           change to setting DialogResult, the behaviour has been moved to 
1244           Form.ShowDialog()
1245         * Form.cs: 
1246           - ShowDialog(): Removed explicit creation of the form, let RunLoop
1247             handle it instead
1248           - ShowDialog(): If no dialog result is set, we need to return Cancel
1249           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
1250             the close is cancelled
1251
1252 2006-05-25  Jackson Harper  <jackson@ximian.com>
1253
1254         * StatusBar.cs: We only need to update the sizes of the other
1255         panels when we have auto size contents.  Also we are only updating
1256         the contents of the panel, not the borders, so compensate for the
1257         border width (TODO: get this width from the theme somehow).
1258         * TreeView.cs: Scrollable is true by default
1259         - Use invalidate instead of refresh where needed
1260         - Factor the scrollable value into scrollbar updating
1261         - Update the scrollbars if the Scrollable property is altered
1262         - Update the selected node if its ImageIndex is changed
1263         - Handle null nodes in UpdateNode (mainly so we don't have to
1264         check if selected is null when updating it
1265         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
1266         are factored into the visible count
1267         - Use VisibleCount for clarity in the code
1268         - When the font is changed we need to recurse through all the
1269         nodes and invalidate their sizes
1270         
1271 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1272
1273         * Application.cs: set the DialogResult to fixed when the main form is
1274         hidden or destroyed while being modal.
1275
1276 2006-05-25  Miguel de Icaza  <miguel@novell.com>
1277
1278         * Theme.cs: Use Tangoified messagebox icons. 
1279
1280         (GetSizedResourceImage): Also cope with width = 0 and do not
1281         trigger a warning in that case (0 means "give me your icon from
1282         the resouce, no special size needed).
1283
1284 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
1285
1286         * Application.cs: Leave runloop if the the main modal form is 
1287           hidden (fixes #78484)
1288
1289 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1290
1291         * BindingContext.cs : reject null datasource in Contains() and
1292           Item[].
1293         * CurrencyManager.cs : check data_member validity when data_source
1294           is dataset. When it is late binding, the initial position is -1.
1295
1296 2006-05-24  Jackson Harper  <jackson@ximian.com>
1297
1298         * TreeNodeCollection.cs: Dont't recalculate the visible order on
1299         inserted nodes that aren't visible.  This changes the
1300         max_visible_order which confuses scrollbar settings.
1301         - Use the enumerator to get the prev node instead of duplicating
1302         code.
1303         * TreeView.cs: Use new method for setting scrollbar values
1304         - Don't set the bounds every time the scrollbar is updated
1305         - When updating below the root node use an invalidate instead of a
1306         refresh to prevent the child controls (scrollbars) from being
1307         refreshed. (UpdateBelow still needs to be reworked anyways).
1308         - Reenable SetBottom now that visible orders are set correctly,
1309         added some debug code incase we ever get bad values there again.
1310         - Set the scrollbar max to 2 less then the max value, this
1311         compensates for the max value being one above the node count, and
1312         for scrollbars adding one extra "notch".
1313         - When drawing image nodes if there is an imagelist we draw the
1314         first image in the list if the supplied image index is out of the
1315         image list's bounds.
1316         
1317 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
1318
1319         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
1320           we receive a size change from the WM (Fixes #78503)
1321
1322 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
1323
1324         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
1325           rectangle (Fixes #78501)
1326
1327 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
1328
1329         * ButtonBase.cs: 
1330           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
1331             as a bitfield.
1332           - Fixed MouseMove to no longer switch pressed state unless the left
1333             mouse button is pressed. Atsushi provided the original patch (#78485)
1334           
1335 2006-05-24  Jackson Harper  <jackson@ximian.com>
1336
1337         * ScrollBar.cs: New internal methods that allow us to change a
1338         couple values on the scrollbar (the most common case is maximum
1339         and large change) without getting multiple invalidates.
1340
1341 2006-05-24  Chris Toshok  <toshok@ximian.com>
1342
1343         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
1344         (Edit): save off the original state in oldState, and set
1345         grid.is_editing to true.
1346         (OnKeyDown): abort editing if escape is pressed.  also, call
1347         NextState if space is pressed.
1348         (OnMouseDown): call NextState.
1349         (NextState): factor out shared code from OnKeyDown and OnMouseDown
1350         here.  Also, only invalidate the row header once (on the initial
1351         is_changing switch) to save on redraws.
1352
1353 2006-05-24  Chris Toshok  <toshok@ximian.com>
1354
1355         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
1356         if the value in the cell is different than it was before.  This
1357         keeps us from triggering a layout when we move around a datarid
1358         with a highlighted cell.
1359         (Edit): suspend layout when creating/positining the text box, and
1360         resume passing false so we don't ever actually re-layout.
1361         (ReleaseHostedControl): same.
1362         (EnsureTextBox): reformat slightly, and set WordWrap to false.
1363
1364         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
1365         control-key sequences should go to the datagrid - remove that
1366         lock.  Also, modify the conditions under which we move between
1367         cells when moving the cursor within a cell, and remove the "this"
1368         and "base" from field accesses.  We weren't even consistent, given
1369         they all were in the base class.
1370
1371 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
1372
1373         * Binding.cs : (.ctor)
1374           An obvious NRE fix for BindingTest.CtorNullTest().
1375
1376 2006-05-23  Chris Toshok  <toshok@ximian.com>
1377
1378         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
1379         them between lines.  This fixes some quirks editing cells in the
1380         datagrid.
1381
1382 2006-05-23  Jackson Harper  <jackson@ximian.com>
1383
1384         * TreeView.cs: Use begin/end update when doing expand/collapse all
1385         so that we don't get flicker on the scrollbar.
1386
1387 2006-05-23  Jackson Harper  <jackson@ximian.com>
1388
1389         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
1390         treenode calculations to be independant of the painting code. To
1391         do this nodes track a visible order which is calculated by the
1392         treeview.
1393         - Call new methods for expanding/collapsing nodes.  These methods
1394         use scrollwindow so we don't have to update everything below the
1395         node.
1396         * TreeView.cs: Refactored drawing and scrolling code.  We don't
1397         need to update nodes when drawing anymore or calculate scrollbar
1398         stuff.
1399         - Added new methods for expanding/collapsing nodes. These methods
1400         use ScrollWindow so as to not have to redraw all the nodes below.
1401         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
1402         we add/remove nodes or sort.
1403         - Handle removing the selected and the top node properly.
1404
1405 2006-05-23  Chris Toshok  <toshok@ximian.com>
1406
1407         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
1408         maybe this should actually happen in the datagrid code?
1409         (EndEdit): no need to invalidate anything, given that
1410         ReleaseHostedControl causes the datagrid to relayout, which
1411         invalidates everything anyway.
1412
1413         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
1414         in SetCurrentCell).
1415         (set_SelectionBackColor): call InvalidateSelection instead of
1416         Refresh.
1417         (set_SelectionForeColor): same.
1418         (BeginEdit): Flesh this out a bit.
1419         (CancelEditing): only do any of this if we're editing/adding.
1420         (EndEdit): same.
1421         (OnMouseDown): there's no need to cancel editing here, it's done
1422         in SetCurrentCell.
1423         (SetCurrentCell): only invalidate the current row header if it's a
1424         different row than the new one.
1425         (ShiftSelection): fix this to work like MS does.
1426         (ResetSelection): factor out the invalidation of selected_rows to
1427         InvalidateSelection.
1428         (SetDataSource): cancel any editing that's going on.
1429
1430         * DataGridColumnStyle.cs
1431         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
1432         call the non-interface version.
1433
1434         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
1435         header rectangle with the clip rectangle so we don't redraw the
1436         entire header for just a small area.  Gets rid of the last flicker
1437         when horizontally scrolling.
1438         (DataGridPaintRow): same.
1439
1440 2006-05-23  Mike Kestner  <mkestner@novell.com>
1441
1442         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
1443         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
1444         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
1445         Critical bug report.
1446
1447 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
1448
1449         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
1450           and this fixes #78493
1451
1452 2006-05-23  Miguel de Icaza  <miguel@novell.com>
1453
1454         * Theme.cs (GetSizedResourceImage): Scale images if the proper
1455         size is not found.  
1456         
1457         * FileDialog.cs: Do not change the background for the side bar as
1458         it wont work nicely with the theme, and also reduces the artifacts
1459         in rendering the icons (which I want to fix too).
1460
1461         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
1462         resources, not resgen resources. 
1463
1464         (PlatformDefaultHandler): Pull images using the new API.
1465
1466 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
1467
1468         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
1469           a reference to the hwnd and will not remove it unless there are
1470           no pending exposures (fixes #78341)
1471         * XplatUI.cs: Improved debug
1472
1473 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
1474
1475         * MenuAPI.cs : don't handle OnClick event when it was not the left
1476           button. Fixed bug #78487.
1477
1478 2006-05-23  Mike Kestner  <mkestner@novell.com>
1479
1480         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
1481         prefer submenus to the top menu for item lookup, to avoid popping down
1482         top-row items.
1483
1484 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
1485
1486         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
1487           Graphics.FillRectangle as the visual results are really bad (even
1488           on win). We now draw perfect arrows (and perfect shadows when the
1489           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
1490           Pen.DashPattern to draw the dots of each line.
1491
1492 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
1493
1494         * FileDialog.cs: Update the filename combobox when navigating through
1495           the ListView with the cursor keys. Fixes part 7 of bug #78446.
1496
1497 2006-05-22  Mike Kestner  <mkestner@novell.com>
1498
1499         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
1500         Fixes #78463.
1501
1502 2006-05-22  Mike Kestner  <mkestner@novell.com>
1503
1504         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
1505         requests. Fix a misspelled parameter and a copy paste exception error
1506         in Select.
1507
1508 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
1509
1510         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
1511           to get the same width/height (5/13) on X11 as the default font has on
1512           win32. This means that our DefaultFont emSize is smaller than the 
1513           the MS SWF equivalent (even thought the width/height stays the same)
1514
1515 2006-05-20  Jackson Harper  <jackson@ximian.com>
1516
1517         * MdiClient.cs:
1518         * MdiWindowManager.cs:
1519         * InternalWindowManager.cs: Make sure to use the border width from
1520         the theme.
1521
1522 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
1523
1524         * PrintDialog.cs: Implements printer details
1525
1526 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
1527
1528         * FileDialog.cs: Added focus handling for PopupButtonPanel.
1529           Fixes part 1 and 2 of bug #78446
1530
1531 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
1532
1533         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
1534           instead of sticking to the first ever calculated value
1535
1536 2006-05-19  Mike Kestner  <mkestner@novell.com>
1537
1538         * ComboBox.cs: fix mouse motion selection to use MousePosition and
1539         PointToClient, since Capture is set. Fixes #78344.
1540
1541 2006-05-19  Mike Kestner  <mkestner@novell.com>
1542
1543         * ListView.cs: match MS behavior in Details view where items are not
1544         drawn if Columns.Count == 0. 
1545         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
1546         Use a separate pen to draw the check, since changing the width affects
1547         the box as well.  Fixes #78454.
1548
1549 2006-05-18  Miguel de Icaza  <miguel@novell.com>
1550
1551         * ListView.cs: ArgumentOutOfRangeException, single versions of the
1552         exception should throw the name of the invalid argument.
1553
1554         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
1555         there are no files listed. 
1556
1557 2006-05-18  Jackson Harper  <jackson@ximian.com>
1558
1559         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
1560         up.
1561
1562 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
1563
1564         * Control.cs: Brought back our old UpdateZOrder method as a private
1565           function and switched our calls from UpdateZOrder to the new one.
1566           This fixes the Paint.Net canvas disappearing bug.
1567
1568 2006-05-18  Jackson Harper  <jackson@ximian.com>
1569
1570         * Theme.cs:
1571         * ThemeWin32Classic.cs:
1572         * InternalWindowManager.cs: Move the drawing into the theme,
1573         expose everything the theme should need from the window manager.
1574
1575 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
1576
1577         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
1578           from the call to NativeWindow to avoid walking up the parent chain
1579           further than needed (speeds up setting cursors and avoids setting
1580           the wrong cursor if a parent has another cursor defined)
1581         * Cursor.cs: When loading an icon as cursor, MS uses the center of
1582           the icon as hotspot, not what's contained as hotspot in the icon
1583           file. This fixes the perceived drawing offset seen with Paint.Net
1584         
1585 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
1586
1587         * XplatUIX11.cs: 
1588           - Store the calculated rectangle in Hwnd object and use it when 
1589             setting the client size
1590           - Force Toolwindows to always be type Dock, to ensure they're on top
1591
1592 2006-05-18  Mike Kestner  <mkestner@novell.com>
1593
1594         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
1595         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
1596         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
1597         Substantial refactoring to remove confusing nested classes. Coding
1598         standard and Get+Set->property refactorings.  Shift to index based
1599         highlighting in ComboListBox instead of constantly using IndexOf and
1600         Items[]. Add invalidations on resize for DropDownList to fix ugliness
1601         in FileDialog growth.  Draw borders manually since Simple mode needs
1602         to look like two independent controls.  Make listbox border
1603         conditional to DropDownStyle.  Improved OwnerDraw support.
1604
1605 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
1606
1607         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
1608         Don't set the disposed graphics to null, so we can throw the "right"
1609         exception if the graphics is reused later (added a flag to avoid 
1610         double disposing). Some behaviours are different under 2.0 and are
1611         filled under bug #78448.
1612
1613 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
1614
1615         * Control.cs: When double-buffering is enabled, we need to reset
1616           our graphics context between paint calls. Otherwise, any 
1617           transformations and other alterations on the context will 
1618           become cumulative (#77734)
1619
1620 2006-05-18  Mike Kestner  <mkestner@novell.com>
1621
1622         * ListView.cs: do focused item selection like MS on clicks. 
1623         Rework focus handling for ItemControl so LostFocus invalidates as
1624         well.
1625         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
1626         the ListView ItemControl has focus.
1627
1628 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
1629
1630         * XplatUIX11.cs: If client_window ends up being width or height zero
1631           due to border settings, move it off window inside whole_window (#78433)
1632
1633 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
1634
1635         * Mime.cs: Shrink the mime file cache correctly.
1636
1637 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
1638
1639         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
1640
1641 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
1642
1643         * XplatUIX11.cs (AddExpose): More sanity checks
1644
1645 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
1646
1647         * XplatUIX11.cs:
1648           - AddExpose: Don't add expose ranges outside the size of our
1649             window
1650           - Cast opacity values to Int32 to avoid crashes with certain
1651             values
1652           - Added disabled code paths that protect against illegal cross-
1653             thread painting (Developers.exe)
1654
1655 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
1656
1657         * ProgressBar.cs: Invalidate the control when it's resized
1658           since block size is based on control size. (#78388)
1659
1660 2006-05-16  Miguel de Icaza  <miguel@novell.com>
1661
1662         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
1663         of setting the incoming argument to the "reset" value, we set the
1664         this.datamember to string.empty (before we were invalidating the
1665         incoming data).   
1666
1667         Fixes 78420
1668
1669 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
1670
1671         * Form.cs: Only apply transparency settings after the form
1672           is created. (Fixes #77800)
1673
1674 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
1675
1676         * ApplicationContext.cs: Grab the HandleDestroyed event so
1677           we know when to fire OnMainFormClosed 
1678
1679 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
1680
1681         * Application.cs: Introduced sub-class to allow tracking of
1682           threads and centralized triggering of the event mess for
1683           ThreadExit, AppExit, etc..  (#76156)
1684
1685 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
1686
1687         * MimeIcon.cs:
1688           - Do not return a null icon index value for a mime subclass.
1689             Instead try the main mime type class too.
1690           - Seems that some newer distributions don't have a link to some
1691             gnome default icons anymore. So check the default gnome dir too.
1692           
1693
1694 2006-05-16  Jackson Harper  <jackson@ximian.com>
1695
1696         * MdiClient.cs: Don't paint the parent background image if we have
1697         our own background image.
1698
1699 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
1700
1701         * Control.cs:
1702           - PerformLayout: Do not shrink space filled by DockStyle.Fill
1703             controls, all filled controls are supposed to overlap (#78080)
1704           - UpdateZOrder is supposed to update the control's z-order in the
1705             parent's z-order chain. Fixed to behave like that
1706           - BringToFront: Removed obsolete code
1707           - SendToBack: Simplyfied
1708           - SetChildIndex: Trigger layout calculations when Z-order changes
1709             since layout is done by z-order
1710
1711 2006-05-16  Chris Toshok  <toshok@ximian.com>
1712
1713         [ fixes bug #78410 ]
1714         * DataGrid.cs (set_AlternatingBackColor): use
1715         grid_drawing.InvalidateCells instead of Refresh().
1716         (set_BackColor): call grid_drawing.InvalidateCells.
1717         (set_BackgroundColor): use Invalidate instead of Refresh.
1718
1719         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
1720         invalidate the cell area.
1721
1722 2006-05-15  Chris Toshok  <toshok@ximian.com>
1723
1724         [ fixes bug #78011 ]
1725         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
1726         on to DataGridPaintRow.
1727         (DataGridPaintRow): take a clip argument, and only draw the cells
1728         which intersect it.  same with the not_usedarea.
1729
1730         * Theme.cs (DataGridPaintRow) add @clip parameter.
1731
1732         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
1733         XplatUI.ScrollWindow.
1734         (ScrollToRow): same.
1735
1736         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
1737         with last column which was causing a gray swath to appear with the
1738         XplatUI.ScrollWindow code.
1739
1740 2006-05-15  Chris Toshok  <toshok@ximian.com>
1741
1742         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
1743         use XplatUI.ScrollWindow.
1744         (VerticalScrollEvent): use XplatUI.ScrollWindow.
1745
1746 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
1747
1748         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
1749
1750 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
1751
1752         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
1753           file since there are no equivalent X11 cursors
1754
1755 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1756
1757         * MonthCalendar.cs : DateTimePicker should reflect selected date
1758           on mouse*up*, not mouse*down*. Fixed originally reported part of
1759           bug #76474.
1760
1761 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1762
1763         * TabControl.cs : When argument index is equal or more than tab
1764           count, just ignore. Fixed bug #78395.
1765
1766 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
1767
1768         * Control.cs: Dispose all child controls when control is diposed (#78394)
1769
1770 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
1771
1772         * ColorDialog.cs: Finally it is possible to select the color with
1773           the text boxes
1774
1775 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
1776
1777         * PrintDialog.cs: Fix typo
1778
1779 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
1780
1781         * PrintDialog.cs: PrintDialog is not resizable
1782         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
1783           color. Made some ToolBar drawing methods protected virtual.
1784
1785 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
1786
1787         * PrintDialog.cs: Implementation of the PrintDialog
1788
1789 2006-05-12  Chris Toshok  <toshok@ximian.com>
1790
1791         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
1792         thumb, instead use MoveThumb.  This has the side effect of making
1793         most of the other thumb moving machinery use MoveThumb as well.
1794         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
1795         need to actually invalidate the rectangle where the new thumb will
1796         go.
1797         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
1798         We force an Update() after, so it's not as fast as it could be,
1799         but at least there's zero flicker and no droppings.
1800         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
1801         (UpdateThumbPos): add another argument (dirty), which says whether
1802         or not to calculate/add dirty regions which we later invalidate.
1803         For cases where we know we're going to use MoveThumb, we pass
1804         false for this.  Otherwise, pass true.
1805
1806 2006-05-12  Jackson Harper  <jackson@ximian.com>
1807
1808         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
1809         the status bar.
1810         
1811 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
1812
1813         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
1814           and GetClipRegion methods and UserClipWontExposeParent property.
1815         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
1816           overriding UserClipWontExposeParent property, setting to false, since
1817           Win32 handles the required expose messages to draw our clipped parent
1818           areas internally
1819         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
1820           PaintEventStart to set the user clip region if set.
1821         * Control.cs: 
1822           - Now internally tracking the Region for the control since we need to
1823             store it if the handle is not yet created and only set it when it
1824             becomes created. Before setting the region forced handle creation
1825           - Added code to draw the parents underneath a user-clipped region
1826         * Hwnd.cs: Added UserClip property
1827
1828 2006-05-12  Chris Toshok  <toshok@ximian.com>
1829
1830         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
1831         (set_Maximum): same.
1832         (set_Minimum): same.
1833         (set_SmallChange): same.
1834         (OnMouseUpSB): remove the call to refresh when releasing the
1835         thumb.  We shouldn't need it.
1836         
1837 2006-05-12  Miguel de Icaza  <miguel@novell.com>
1838
1839         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
1840         AutoSize set to None, we do not need to relayout everything, we
1841         just need to invalidate the current region.
1842
1843         (Draw): Do not draw the entire ClientArea, just redraw the
1844         clip area being passed.
1845
1846         * MdiClient.cs: Make MdiClient constructor with the Form argument
1847         internal. 
1848
1849 2006-05-12  Jackson Harper  <jackson@ximian.com>
1850
1851         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
1852         parents background image,  but strangely not their own.
1853         - (DrawStatusBarPanel): Take into account horizontal alignment
1854         when drawing the strings and icons.
1855
1856 2006-05-12  Mike Kestner  <mkestner@novell.com>
1857
1858         * ListBox.cs: avoid invalidations for focus when the collection is
1859         empty. 
1860
1861 2006-05-12  Chris Toshok  <toshok@ximian.com>
1862
1863         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
1864         invalidate the entire thumb area.  Call InvalidateDirty which
1865         limits the redraw to the thumb itself and surrounding pixels.
1866
1867         * XplatUIX11.cs (ScrollWindow): optimize copying.
1868         
1869 2006-05-12  Chris Toshok  <toshok@ximian.com>
1870
1871         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
1872         Figure out the positioning/layout in a single pass instead of
1873         multiple recursive invocations.  Speeds up the initial display of
1874         the data grid.  Also, make many things private that were
1875         originally public but unused outside this class.
1876
1877 2006-05-11  Jackson Harper  <jackson@ximian.com>
1878
1879         * MdiClient.cs: Improved layout code.
1880
1881 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
1882
1883         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
1884           not SelectedObject.
1885
1886 2006-05-11  Chris Toshok  <toshok@ximian.com>
1887
1888         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
1889         union of that will always be {0,0,width,height}.
1890
1891 2006-05-11  Jackson Harper  <jackson@ximian.com>
1892
1893         * Form.cs: Match MS's DefaultSize for forms (they must have
1894         changed the size in sp2).
1895
1896 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
1897
1898         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
1899
1900 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
1901
1902         * TextControl.cs : Fixed bug #78109. This incorrect position
1903           comparison caused crash on automatic line split.
1904         * TextBoxBase.cs : reduce duplicate code.
1905
1906 2006-05-10  Jackson Harper  <jackson@ximian.com>
1907
1908         * MdiClient.cs: Active form is only sent to the back when using
1909         the Next form functionality, when a form is clicked the current
1910         active shouldn't be sent to the back.
1911         - Layout the mdi windows when the container is first made visible.
1912         * Form.cs: Give the MdiClient a ref to the containing form when we
1913         create it.
1914         
1915 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
1916
1917         * LinkLabel.cs : link_font could be uninitialized, so populate one
1918           before actual use. Fixed bug #78340.
1919
1920 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
1921
1922         * XplatUIX11.cs : clipboard format native value is IntPtr.
1923           Fixed bug #78283.
1924
1925 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
1926
1927         * Control.cs: 
1928           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
1929             which is passed up the parent chain by DefWndProc
1930           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
1931             to DefWndProc (#77956)
1932         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
1933
1934 2006-05-10  Jackson Harper  <jackson@ximian.com>
1935
1936         * MdiClient.cs: We need to remove the controls from the mdi
1937         collection, when we close the window.
1938         * MdiWindowManager.cs: Special handling of closing mdi windows.
1939         * InternalWindowManager.cs: Make the close method virtual so the
1940         mdi window manager can handle it specially.
1941
1942 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
1943
1944         * DataGrid.cs:
1945           - Recalculate grid when the data source has changed
1946           - Matches styles provided by user from all data sources types
1947         * DataGridTableStyle.cs: For columns that provided by the user set the
1948         with the preferred value is there was unassigned.
1949         * CurrencyManager.cs: throw OnItemChanged event
1950
1951 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
1952
1953         * PictureBox.cs: Don't animate until handle is created. Start animation
1954           when handle is created.
1955
1956 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
1957
1958         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
1959           current codebase.
1960         * XEventQueue.cs: We don't need to provide the extra info
1961
1962 2006-05-10  Jackson Harper  <jackson@ximian.com>
1963
1964         * MdiClient.cs: If the mdi clients parent form has a background
1965         image set, we draw that background image for the mdi area's
1966         background.
1967
1968 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
1969
1970         * TextBoxBase.cs: Set IBeam cursor (#78347)
1971
1972 2006-05-10  Mike Kestner  <mkestner@novell.com>
1973
1974         * ToolBar.cs: fix some text padding issues with ButtonSize
1975         calculation. Update the default size to match MS documentation.
1976         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
1977         button size. Fixes #78296.
1978
1979 2006-05-10  Mike Kestner  <mkestner@novell.com>
1980
1981         * ListBox.cs: use is_visible for scrollbar positioning in case the
1982         control isn't on screen yet.  Fix off by one with Right vs Width
1983         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
1984         
1985 2006-05-10  Jackson Harper  <jackson@ximian.com>
1986
1987         * X11Dnd.cs: Drop to a control with another control on top of it.
1988         * ToolBar.cs: Work on a copy of the buttons list, so that it can
1989         be modified in click handlers. TODO: Look for similar problems in
1990         other controls.
1991
1992 2006-05-09  Jackson Harper  <jackson@ximian.com>
1993
1994         * Form.cs: Window managers need the old window state when setting
1995         window state now.
1996         * InternalWindowManager.cs: Allow the base mdi window manager to
1997         handle more of the MDI only stuff (like maximize buttons).
1998         * MdiWindowManager.cs: Fix some snafus in changing the window
1999         state.  Add all the menu functionality, for both popup and
2000         maximized menus.
2001         * MdiClient.cs: When a new form is selected the currently
2002         activated form is sent to the back, this matches MS.
2003         - Implement a new method to activate the next mdi child window.
2004
2005 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
2006
2007         * Control.cs: 
2008           - Added new InternalCapture method to allow controls to prevent
2009             the capture behaviour on the click handlers
2010           - Switched to use InternalCapture
2011         * ComboBox.cs:
2012           - Using InternalCapture to prevent mouse captures from being released
2013             on mouse button release (Fixes #78100)
2014         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
2015           returns Form borders if a caption is present. (Fixes #78310)
2016
2017 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
2018
2019         * TreeNode.cs: Changed serialization .ctor to not require every field
2020           to be present. (#78265)
2021         * OwnerDrawPropertyBag.cs: Added serialization .ctor
2022
2023 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
2024
2025         * MimeIcon.cs: for is faster than foreach for strings.
2026
2027 2006-05-05  Mike Kestner  <mkestner@novell.com>
2028
2029         * CheckedListBox.cs: update check handling code to not use selected.
2030         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
2031         behavior for visual feedback, motion response, shift/ctrl handling,
2032         and properly deal with all 4 selection modes. Updates to bounds
2033         handling logic.  Add scroll wheel support. [Fixes #77842]
2034
2035 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
2036
2037         * ListView.cs:
2038           - Moved adding of Implicit controls into .ctor. That way, subsequent
2039             creation of the controls will not cause them to think they are 
2040             toplevel windows (fixes #78200 header problem)
2041           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
2042           - Switched visibility setting of header control to use internal field
2043             to avoid triggering handle creation
2044           - Now checking if handle is created before causing a refresh when items
2045             are added (This makes us now match handle creation time with MS)
2046         * Splitter.cs: Removed loading of private splitter cursor, switched to
2047           Cursors version now that that is loading the right ones
2048         * Cursors.cs: Load proper splitter cursors from resources
2049         * Cursor.cs: Added second method of loading resource cursors for the 
2050           VS.Net users amongst us
2051
2052 2006-05-05  Mike Kestner  <mkestner@novell.com>
2053
2054         * ListView.cs: give header_control a minimum size based on the
2055         ListView size.
2056
2057 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
2058
2059         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
2060           window seems to do that with metacity, so set that type. (#78120)
2061
2062 2006-05-05  Mike Kestner  <mkestner@novell.com>
2063
2064         * ListViewItem.cs: fix Details mode checkbox layout bug.
2065         * ThemeWin32Classic.cs: draw a ListView column header for unused space
2066         at the end of the header, if it exists. [Fixes for #78200]
2067
2068 2006-05-04  Jackson Harper  <jackson@ximian.com>
2069
2070         * MdiClient.cs: Add a helper property to get the container form.
2071         * MdiWindowManager.cs: We have to make sure to use the menu origin
2072         when drawing the icons and buttons, this fixes maximized window
2073         icons/buttons on win32.
2074         * InternalWindowManager.cs: Reset the restore captions when a
2075         window goes from Maximized to Minimized and vice versa. Move the
2076         DrawMaximizedButtons into the MdiWindowManager source, tool
2077         windows can't be maximized. NOTE: This could use a little
2078         refactoring if time ever permits.
2079         
2080 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
2081
2082         * TextBox.cs: Add MWFCategoryAttributes
2083         * TextBoxBase.cs: Add MWFCategoryAttributes
2084         * Form.cs: Add MWFCategoryAttributes
2085
2086 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
2087
2088         * Control.cs: Add MWFCategoryAttributes
2089         * ScrollableControl.cs: Add MWFCategoryAttributes
2090
2091 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
2092
2093         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
2094           Divider is true. Fix a little glitch in PropertyToolBar
2095           drawing code
2096
2097 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
2098
2099         * Control.cs:
2100           - Dispose: Call base.Dispose, this causes the disposed event
2101             to be fired (and probably other, more important stuff)
2102           - SetVisibleCore: Set is_visible to true after creating the
2103             window so that the window still gets created invisible (if
2104             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
2105             to generate a WM_ACTIVE message
2106         * Form.cs: Call Dispose when we want to destroy the window, instead of
2107           just destroying the handle (Dispose will do that for us)
2108         * XplatUIX11.cs:
2109           - RootWindow also needs a queue, so we can properly process the
2110             property change events from RootWindow (like Activate)
2111           - Generatic synthetic WM_ACTIVE message when the active window is
2112             being destroyed
2113
2114 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
2115
2116         * LinkLabel.cs: Trigger a recalc of our label dimensions when
2117           bounds are changed
2118
2119 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
2120
2121         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
2122           for determining width and height (image might not be assigned if
2123           we're drawing an imagelist)
2124
2125 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
2126
2127         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
2128         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
2129           height from system
2130         * Theme.cs: No longer returns hardcoded menu height, instead calls
2131           new driver method
2132         * Form.cs (OnLoad): Scaling happens before triggering Load events 
2133           on MS (# 78257)
2134
2135 2006-05-01  Mike Kestner  <mkestner@novell.com>
2136
2137         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
2138
2139 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
2140
2141         * TextBoxBase.cs: Removed Fixme
2142         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
2143
2144 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
2145
2146         * XplatUIX11.cs:
2147           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
2148             the rectangle relative to the parent, considering borders. We
2149             don't really want that.
2150           - ScrollWindow: Fixed warning to be more understandable
2151         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
2152           scrollbars and scroll only the visible area
2153         * RichTextBox.cs: Removed debug output
2154
2155 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
2156
2157         * NumericUpDown.cs (Text): Just use base
2158         * UpDownBase.cs: Ensure txtView is created before using it
2159
2160 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
2161
2162         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
2163           casting to IntPtr to avoid 64bit overflow errors
2164
2165 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
2166
2167         * Control.cs:
2168           - AllowDrop: Don't force handle creation.
2169           - CreateHandle: Added call to tell driver if we're allowed to drop
2170
2171 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
2172
2173         * FileDialog.cs: Remember the last directory not only for the
2174           current instance but also for new FileDialog instances.
2175
2176 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
2177         
2178         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
2179           broke sending async messages
2180
2181 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
2182
2183         * XplatUIX11.cs:
2184           - ScrollWindow: Fixed method. We finally generate expose events again
2185             for scrolled areas. This was causing 'garbage' when scrolling
2186             textbox and other controls that used ScrollWindow
2187           - Switched from using the regular queue for paint events to the MS 
2188             model of 'generating' paint events when the queue is empty.
2189             We use the new XQueueEvent.Paint subclass to store which windows
2190             need painting.
2191           - AddExpose now takes the x/y/width/height of the exposed area
2192             and inserts the window into the paint queue if not already there
2193           - InvalidateWholeWindow: Switched to use new AddExpose method
2194           - UpdateMessageQueue: Added which queue to monitor for paint events
2195           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
2196             the unlikely case nothing above handles it. We reset the expose
2197             pending states to get them off the queue.
2198           - GetMessage: Now pulls a paint event if no other events are in the
2199             queue
2200           - Invalidate: Switched to new AddExpose method
2201           - PeekMessage: Updated to understand pending paint events
2202           - UpdateWindow: Fixed logic bug. We were only updating if the window
2203             didn't need updating. Also switched to sending WM_PAINT directly,
2204             like MS does.
2205         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
2206           and random access Remove(). The random access is needed to handle
2207           UpdateWindow() where a WM_PAINT is sent directly without accessing
2208           the queue.
2209         * ScrollBar.cs: Added Update() calls to cause immediate updates to
2210           allow for better feedback when scrolling. Scrollbars are small and
2211           the immediate update should make it 'feel' more responsive without
2212           slowing things down. ScrollBar still needs it's invaliate logic
2213           updated to not always invalidate the whole bar on certain changes.
2214
2215 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2216
2217         * Control.cs:
2218         (BackColor): if the control does not support a transparent background,
2219         return the default backcolor when the parent backcolor is transparent.
2220
2221 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
2222
2223         * Application.cs: Updated to new StartLoop/GetMessage API
2224         * RichTextBox.cs: Provide some output on RTF parsing errors
2225         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
2226           new queue_id argument to GetMessage and PeekMessage to allow faster
2227           handling of per-thread queues in drivers.
2228         * Hwnd.cs: Added Queue tracking and property
2229         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
2230         * XEventQueue.cs: Added thread trackingA
2231         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
2232         * XplatUIX11.cs:
2233           - Implemented new per-thread queue
2234           - GetMessage: Fixed return/break behaviour on several cases. We were
2235             returning stale messages in some cases, instead of just processing
2236             the next message
2237
2238 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
2239
2240         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
2241
2242 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
2243
2244         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
2245           fixed off-by-one comparisons between Width/Height and Right/Bottom.
2246
2247 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
2248
2249         * PropertyGridView.cs: Fix drop down width.
2250
2251 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
2252
2253         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
2254           a mess in DrawToolBar, so I removed one of them.
2255
2256 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
2257
2258         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
2259           needed (clip). Otherwise we get artifacts.
2260
2261 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
2262
2263         * FixedSizeTextBox.cs: Added constructor to allow specifying which
2264           dimension is fixed
2265         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
2266           and switched FixedSizeTextBox to only be fixed vertical (#78116)
2267         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
2268           if it matches the scale base font (avoids unneeded scaling)
2269
2270 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
2271
2272         * X11DesktopColors.cs: One gtk_init_check should be enough
2273
2274 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
2275
2276         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
2277           match MS behaviour
2278
2279 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
2280
2281         * TextBoxBase.cs: 
2282           - Generate OnTextChanged for Backspace even if we're only deleting
2283             the current selection
2284           - When setting the Text property, only select all text if the
2285             control does not have focus when it is being set. Otherwise
2286             just place the cursor at the beginning of the control
2287
2288 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
2289
2290         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
2291           Added a little helper to draw PropertyGrid ToolBar with a different
2292           border and a different BackColor.
2293         * PropertyGrid.cs: Some background parts didn't get painted with the
2294           correct background color. Added a class that helps us to draw the
2295           correct border for PropertyGridView and a class that helps us to
2296           draw ToolBars with a different backcolor
2297         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
2298
2299 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
2300
2301         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
2302         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
2303
2304 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
2305
2306         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
2307           into the palette entries. Also, since we're working on a copy
2308           we needed to copy the palette back onto the bitmap.
2309         * Cursor.cs: Same fix as XplatUIWin32.cs.
2310
2311 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
2312
2313         * ImageListStreamer.cs: Need to read the var (or we're off)
2314
2315 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
2316
2317         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
2318           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
2319           TextBoxBase.cs: Unused var fixes
2320         * AxHost.cs: Small 2.0 fix
2321         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
2322           as it seems that is what at least Metacity expects. This will make
2323           icons show up on 64bit platforms. We still have some 64bit size
2324           issues, though, since the startup app window size still won't match.
2325
2326 2006-04-25  Mike Kestner  <mkestner@novell.com>
2327
2328         * *.cs: cleanup newly reported exception var unused warnings.
2329
2330 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
2331
2332         * ThemeWin32Classic.cs: Button image alignment now matches exactly
2333           ms
2334
2335 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
2336
2337         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
2338           image. The image position is always the same, no matter if the
2339           button is pressed or not.
2340
2341 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
2342
2343         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
2344           selection and set the correct filename for SaveFileDialog.
2345           Patch by Emery Conrad.
2346
2347 2006-04-24  Mike Kestner  <mkestner@novell.com>
2348
2349         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
2350         check for item.X outside the ClientRect instead of item.Y. Fixes
2351         #78151.
2352
2353 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2354
2355         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
2356         trust that value blindly and do some sanity check. Fixes bug #77814.
2357
2358 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2359
2360         * ImageListStreamer.cs: save the mask as a 1bpp image.
2361
2362 2006-04-21  Mike Kestner  <mkestner@novell.com>
2363
2364         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
2365         pass Checked and Indeterminate to the Theme Engine. Improve
2366         encapsulation with ListBox.
2367         * ListBox.cs: Keep a StringFormat instead of calculating it every item
2368         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
2369         nested types.  Move all CheckState functionality to CheckedListBox.
2370         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
2371         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
2372         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
2373         single base list. Fix scrollbar sizing and placement to mirror MS.
2374         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
2375         used.
2376         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
2377         for CheckedListBox by using new DrawItemState info.  Center the
2378         checkboxes on the items. Use new StringFormat property.
2379
2380 2006-04-18  Jackson Harper  <jackson@ximian.com>
2381
2382         * Form.cs: MdiChildren don't do default locations the same way as
2383         regular forms.  This prevents a crash when trying to position the
2384         mdi windows.
2385
2386 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
2387
2388         * PropertyGridTextBox.cs: Formatting, copyright
2389         * PropertiesTab.cs: Formatting
2390         * PropertyGrid.cs: Formatting
2391         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
2392           click toggling of values
2393           
2394 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
2395
2396         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
2397         * Control.cs (.ctor): verify_thread_handle is static, don't reset
2398           every time a control is created
2399         * Application.cs: Removed obsolete EnableRTLMirroring method
2400
2401 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
2402
2403         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
2404         SelectedIndex to -1. Fixes bug #78121.
2405
2406 2006-04-17  Jackson Harper  <jackson@ximian.com>
2407
2408         * Binding.cs: Handle null values for Current and BindingContext.
2409         This occurs when binding is a little delayed.
2410         * CurrencyManager.cs: return null for Current when there are no
2411         items in the list.
2412         - Hookup to the listchanged event on the DataView and update
2413         bindings when the list is changed.  This fixes late binding of
2414         controls.
2415
2416 2006-04-17  Jackson Harper  <jackson@ximian.com>
2417
2418         * X11Dnd.cs:
2419         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
2420         Ringenbach.
2421
2422 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
2423
2424         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
2425           place
2426         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
2427           with the correct ButtonState
2428
2429 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
2430
2431         * XplatUIX11.cs: Improved distinguishing between window types to
2432           tell the WM a type closer to what the app wants (Fixes #78107)
2433
2434 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
2435
2436         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
2437           GrabHandle
2438
2439 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
2440
2441         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
2442           drawing code to reflect the size grip changes
2443
2444 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2445
2446         * ImageListStreamer.cs: fix handling of the mask that follows the main
2447         bitmap when deserializing and serialize it properly. The generated mask
2448         should better be a 1bpp image, but I'll do that later.
2449
2450 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
2451
2452         * FileDialog.cs: Show something in the DirComboBox on *nix if the
2453           path doesn't fit into some of our Current.Places
2454
2455 2006-04-13  Jackson Harper  <jackson@ximian.com>
2456
2457         * ComboBox.cs: Use borders instead of drawing our own decorations,
2458         try to obey correct rules for heights.
2459         * Theme.cs:
2460         * ThemeNice.cs:
2461         * ThemeClearLooks.cs:
2462         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
2463         this is now handled by borders.
2464         - Remove unused DrawListBoxDecorationSize method.
2465         
2466 2006-04-13  Mike Kestner  <mkestner@novell.com>
2467
2468         * MenuAPI.cs: null guarding for the disbled click check fixes crash
2469         reported by Alex.
2470
2471 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
2472
2473         * ThemeWin32Classic.cs: 
2474           - Fixed CPDrawStringDisabled
2475           - Corrected drawing of disabled menu items
2476           - Fixed drawing of disabled radio buttons (bug #78095)
2477           - Draw check in a disabled CheckBox with color ControlDark 
2478
2479 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
2480
2481         * Form.cs: Use the provided width when calculating the menu size;
2482           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
2483           and ClientSize.Width won't be updated yet
2484         * Application.cs: Use Visible instead of Show() to make form visible,
2485           this way we create the handle later and menusize is considered
2486
2487 2006-04-12  Mike Kestner  <mkestner@novell.com>
2488
2489         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
2490         reporting.
2491
2492 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
2493
2494         * TextBox.cs: Implemented context menu
2495
2496 2006-04-12  Mike Kestner  <mkestner@novell.com>
2497
2498         * ListView.cs: implement box selection. fixes #77838.
2499         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
2500
2501 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
2502
2503         * XplatUIX11.cs: Added setting of window type when transient window
2504           is created (metacity would move it otherwise)
2505         * X11Structs.cs: Added WINDOW_TYPE atoms
2506         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
2507           background (the control is Opaque but still wants transparent
2508           backgrounds)
2509
2510 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
2511
2512         * Control.cs: Added OnPaintBackgroundInternal to allow controls
2513           that set Opaque but don't mean it (like all ButtonBase-derived
2514           controls) to still draw their background
2515         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
2516           the background
2517
2518 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
2519
2520         * Control.cs (PaintControlBackground): Set the graphics object
2521           on our PaintEvent to null to prevent it from being disposed
2522           when the PaintEvent gets disposed
2523
2524 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
2525
2526         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
2527         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
2528
2529 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
2530
2531         * Control.cs: 
2532           - Added transparency check to BackColor property. Transparent
2533             backgrounds are only allowed if the control styles permit it
2534           - Added recursive painting of parent control background and
2535             foreground if a control with a transparent backcolor is drawn
2536             (Thanks to Tim Ringenback for providing his 'hack' as a base
2537              for this patch) Fixes #77985 and #78026.
2538           - Added Opaque style check before calling OnPaintBackground, no
2539             need to draw the background if the control is opaque
2540           - Removed ControlAccessibleObject owner variable (inherited from
2541             base, no need to define again)
2542           - Added some documentation links explaining the drawing events
2543             and styles
2544
2545 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
2546
2547         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
2548           that the affected control is the located at the left border of our
2549           parent (Fixes #77936)
2550
2551 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
2552
2553         * TextBoxBase.cs: When rendering disabled or readonly controls,
2554           draw the background with 'Control' instead of 'Window' color as
2555           long as the user hasn't specifically set a color
2556
2557 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
2558
2559         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
2560           since that won't be updated if the user types text (only if it's
2561           programatically set)
2562
2563 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
2564
2565         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
2566           layout changes do to app-triggered resizes will have the proper
2567           display rectangle for layout
2568
2569 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
2570
2571         * ThemeWin32Classic.cs:
2572           - Make use of the SystemBrushes and SystemPens wherever possible
2573           - Corrected some highlight colors
2574           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
2575             drawing
2576         * Theme.cs: Added Empty field to CPColor struct
2577
2578 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
2579
2580         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
2581           is displayed when calculating the display rectangle. Thanks to Mike
2582           for teaching me the err of my ways.
2583
2584 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
2585
2586         * ScrollableControl.cs:
2587           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
2588             (instead of 0,0) and we now return the real width/height instead of
2589             just the clientrectangle, adjusted for padding. The rectangle is
2590             now cached and created by the new CalculateDisplayRectangle method.
2591           - Created new CalculateDisplayRectange method, which basically does
2592             what get_DisplayRectangle() did originally, but now using the 
2593             right edge instead of DisplayRectangle to determine the size of
2594             our scrollbars
2595           - get_Canvas(): Fixed it to properly calculate canvas for 
2596             right/bottom controls which seem to be placed to the right/bottom
2597             of any controls that have a fixed location
2598           - Removed TODO that's taken care of
2599           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
2600             and SetDisplayRectLocation according to new MSDN2 docs
2601           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
2602             event when that is called, this is added for compatibility
2603           - ScrollControlIntoView(): Implemented.
2604           - Switched scrollbars to be implicit, they shouldn't be selectable
2605         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
2606           call it when the active control is set/changed
2607         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
2608         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
2609           implicit_control variable (used for native Win32 message generation)
2610         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
2611           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
2612         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
2613         * XplatUIStructs.cs: Added ScrollBarCommands enum
2614
2615 2006-04-10  Jackson Harper  <jackson@ximian.com>
2616
2617         * ButtonBase.cs:
2618         * CheckedListBox.cs:
2619         * ComboBox.cs:
2620         * DataGrid.cs:
2621         * DataGridView.cs:
2622         * Form.cs:
2623         * GroupBox.cs:
2624         * ListBox.cs:
2625         * PrintPreviewControl.cs:
2626         * ProgressBar.cs:
2627         * PropertyGrid.cs:
2628         * Splitter.cs:
2629         * StatusBar.cs:
2630         * TrackBar.cs:
2631         * UpDownBase.cs: Fixup base event overrides.
2632         
2633 2006-04-06  Mike Kestner  <mkestner@novell.com>
2634
2635         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
2636         all user-initiated value changes to min <= value <= max-thumbsz+1.
2637         (set_Value): check for vert/horiz when calculating new thumb position.
2638         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
2639         like MS does.
2640         (OnMouseMoveSB): refactor the thumb dragging code and refine
2641         invalidation logic to reduce flicker.
2642         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
2643         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
2644         (UpdateThumbPosition): small code readability cleanup
2645
2646 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
2647
2648         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
2649           different
2650
2651 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
2652
2653         * ThemeNice.cs: Use a better graphics effect when a button is pressed
2654
2655 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
2656
2657         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
2658         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
2659           This dramatically reduces the number of Pen.Dispose calls. 
2660           Where possible call ResPool methods only once instead of calling it
2661           over and over again (for example for the same color).
2662
2663 2006-04-06  Mike Kestner  <mkestner@novell.com>
2664
2665         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
2666         Also remove an unused private field on the collection. Fixes #77972.
2667
2668 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
2669
2670         * ThemeNice.cs: Added ToolBar drawing code
2671
2672 2006-04-06  Mike Kestner  <mkestner@novell.com>
2673
2674         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
2675         I'm assuming that means we need to look up the toplevel for the
2676         provided control. Fixes the crash trace in #77911 but exposes another
2677         crash in some strange reflection usage in NDocGui.
2678
2679 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
2680
2681         * ThemeNice.cs: Gave it a little silver touch and added Images
2682           method
2683         * FontDialog.cs: FontDialog is not resizable
2684         * FileDialg.cs: Added SizeGripStyle.Show
2685
2686 2006-04-05  Jackson Harper  <jackson@ximian.com>
2687
2688         * KeyboardLayouts.cs: Remove warning.
2689
2690 2006-04-05  Jackson Harper  <jackson@ximian.com>
2691
2692         * Control.cs: Enable OnPaintInternal so we can use it for drawing
2693         all of our controls instead of Paint +=.
2694         * ListBox.cs:
2695         * ListView.cs:
2696         * MenuAPI.cs:
2697         * MessageBox.cs:
2698         * NotifyIcon.cs:
2699         * ProgressBar.cs:
2700         * ScrollBar.cs:
2701         * Splitter.cs:
2702         * StatusBar.cs:
2703         * TabControl.cs:
2704         * TextBoxBase.cs:
2705         * ToolBar.cs:
2706         * TrackBar.cs:
2707         * UpDownBase.cs:
2708         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
2709         use OnPaintInternal. Remove Width/Height and Visible checks in
2710         paint handler, this is done at a higher level now.
2711         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
2712         * PaintEventArgs.cs: Add a handled flag so controls that don't
2713         want anymore painting after OnPaintInternal can make sure OnPaint
2714         isn't called.
2715
2716 2006-04-05  Mike Kestner  <mkestner@novell.com>
2717
2718         * Form.cs: fix the menu WndProc hacks to respect the native enabled
2719         state of the form, so that we don't process events when Modal dialogs
2720         are up. Fixes #77922.
2721
2722 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
2723
2724         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
2725           checking is done.
2726
2727 2006-04-05  Mike Kestner  <mkestner@novell.com>
2728
2729         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
2730
2731 2006-04-05  Mike Kestner  <mkestner@novell.com>
2732
2733         * ListView.cs (HeaderMouseMove): null guarding for the over column
2734         when setting up the drag_to_index.  Fixes #78015.
2735
2736 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
2737
2738         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
2739           in the taskbar. Transient windows seem to accomplish that.
2740
2741 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
2742
2743         * Form.cs:
2744           - Re-enabled CreateParams.X/Y code for FormStartPosition
2745           - Added code for manual placement when creating the Control
2746           - Incomplete patch to treat MDI forms differently when
2747             setting the ClientSizeCore. (Still need to figure out handling
2748             x/y coords there)
2749         * XplatUIX11.cs:
2750           - When we're explicitly setting the X/Y position of a non-Child
2751             window, let the WM know. Metacity really wants this.
2752
2753 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
2754
2755         * ThemeNice.cs: Added CPDrawButton
2756
2757 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
2758
2759         * ThemeNice.cs: Changed the color for focused buttons and activated
2760           the arrows for small scroll buttons.
2761
2762 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
2763
2764         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
2765           anymore. Changed some method modifiers to protected (virtual)
2766         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
2767           changes
2768         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
2769           Updated drawing of menus, buttons and progressbars; added
2770           CPDrawBorder3D 
2771
2772 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2773
2774         * ImageListStreamer.cs: implemented serialization/deserialization
2775         of the images.
2776
2777 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
2778
2779         * ThemeWin32Classic.cs:
2780           - Removed all the DrawFrameControl stuff; CPDrawButton,
2781             CPDrawCheckBox and CPDrawRadioButton are now handled directly
2782             inside the methods
2783           - Updated and corrected the drawing code of CPDrawButton,
2784             CPDrawCheckBox and CPDrawRadioButton to better match ms
2785           - Updated theme checkbox and radiobutton code to use the CP*
2786             methods
2787
2788 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
2789
2790         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
2791           bug is fixed
2792
2793 2006-03-31  Jackson Harper  <jackson@ximian.com>
2794
2795         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
2796         sometimes.
2797         * UpDownBase.cs: Don't CreateGraphics manually, use a
2798         Refresh. Ideally we would invalidate the correct areas here.
2799
2800 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
2801
2802         * XplatUIX11.cs: 
2803           - We now track the mapping state of windows. If a window (or 
2804             one of it's parents) is not mapped we no longer permit
2805             WM_PAINT messages to be generated since we'd otherwise get 
2806             lots of BadMatch X errors. Jackson did all the work figuring
2807             out the problem.
2808           - Destroying the caret if the window it's contained in is 
2809             destroyed. Can't use regular DestroyCaret method since it
2810             might fall into a drawing function (trying to remove the
2811             caret) and with that generate new BadMatch errors. Again,
2812             Jackson tracked this down.
2813           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
2814             make sure we send the messages to all windows. (The old code
2815             would send the WM_DESTROY to the window, and then all child
2816             windows would be 'gone' because the WM_DESTROY handle lookup
2817             would no longer find the destroyed window)
2818         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
2819         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
2820
2821 2006-03-31  Jackson Harper  <jackson@ximian.com>
2822
2823         * ScrollableControl.cs: Dont recalc if we are not visible.
2824
2825 2006-03-31  Mike Kestner  <mkestner@novell.com>
2826
2827         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
2828         the visibility branch.
2829
2830 2006-03-31  Jackson Harper  <jackson@ximian.com>
2831
2832         * ScrollBar.cs: Cap values when incrementing/decrementing.
2833
2834 2006-03-31  Mike Kestner  <mkestner@novell.com>
2835
2836         * MenuAPI.cs: setup menu.tracker for popup/context menus.
2837         * ToolTip.cs: guard against timer expirations with no active control.
2838         Not sure why it happened.
2839
2840 2006-03-31  Mike Kestner  <mkestner@novell.com>
2841
2842         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
2843         text.
2844         * ToolTip.cs: Position the tooltip based on where the cursor is at
2845         popup time, not at MouseEnter time.  Add a Down state so that we don't
2846         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
2847         positioning offset. Lookup DisplaySize at positioning time, since it
2848         can theoretically change during invocation.
2849         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
2850         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
2851
2852 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
2853
2854         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
2855           Fixes behaviour when the Text property of the box is String.Empty
2856
2857 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
2858
2859         * XplatUIX11.cs: Only send mouseleave for our client windows, not
2860           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
2861           a window)
2862
2863 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
2864
2865         * FileDialog.cs: Visual enhancement for the popup buttons in 
2866           PopupButtonPanel
2867
2868 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
2869
2870         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
2871           code
2872
2873 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
2874
2875         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
2876           highlighted menu items to match ms
2877
2878 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
2879
2880         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
2881
2882 2006-03-30  Mike Kestner  <mkestner@novell.com>
2883
2884         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
2885         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
2886         go active to account for HotLight to Selected transition.
2887         * MenuItem.cs: add internal Selected prop. Fill out the Status
2888         property by calculating it from item info. Add HotLight,
2889         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
2890
2891 2006-03-30  Mike Kestner  <mkestner@novell.com>
2892
2893         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
2894
2895 2006-03-29  Jackson Harper  <jackson@ximian.com>
2896
2897         * Form.cs: Implement TODO.
2898
2899 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
2900
2901         * PrintPreviewDialog.cs: Implemented missing methods and events; still
2902           missing proper dialog setup in the constructor
2903
2904 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
2905
2906         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
2907         * Control.cs:
2908           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
2909           - Fixed ResetBindings and removed TODO
2910           - Added check for cross-thread calls to get_Handle()
2911           - Added Marshaller attribute for set_Font to satisfy class status
2912         * FontDialog.cs: Removed TODOs that seemed implemented
2913         * UpDownBase.cs: Removed unneeded TODO and Fixme
2914         * MessageBox.cs: Implemented support for Default button and removed TODO
2915         * FileDialog.cs: Removed obsolete TODO
2916         * DomainUpDown.cs: Removed obsolete TODO
2917         * ButtonBase.cs: Removed obsolete TODO
2918         * XplatUIWin32.cs: Removed obsolete TODO
2919         * Form.cs:
2920           - Removed obsolete TODO
2921           - Calling CheckAcceptButton when the acceptbutton is changed to allow
2922             internal status updates
2923           - Making sure the active control is selected when the control is created
2924         * CurrencyManager.cs: Removed obsolete TODO
2925
2926 2006-03-29  Mike Kestner  <mkestner@novell.com>
2927
2928         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
2929         of PrintPreviewDialog and RichTextBox.
2930
2931 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
2932
2933         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
2934           DarkDark, Light and LightLight colors for a specific color
2935         * ThemeWin32Classic.cs:
2936           - Use Button drawing code to draw RadioButtons and CheckBoxes with
2937             Appearance = Button 
2938           - Make use of the new ResPool helper CPColor
2939           - Draw ProgressBar and StatusBar with correct 3D borders
2940
2941 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
2942
2943         * ColorDialog.cs: Return selected color. Fixes bug #77940.
2944
2945 2006-03-28  Mike Kestner  <mkestner@novell.com>
2946
2947         * ListView.cs: fix Icon layout to plan for scrollbar widths when
2948         calculating col/row counts.
2949
2950 2006-03-28  Mike Kestner  <mkestner@novell.com>
2951
2952         * ColumnHeader.cs:
2953         * ListView.cs:
2954         * ListViewItem.cs:
2955         * Menu.cs: 
2956         switch to explicit interface method implementation for some methods
2957         corcompare identifies as inconsistent with MS.
2958
2959 2006-03-28  Mike Kestner  <mkestner@novell.com>
2960
2961         * MainMenu.cs: 
2962         * Menu.cs:
2963         add a few missing methods from the class status output.
2964
2965 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
2966
2967         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
2968           correct.
2969
2970 2006-03-28  Mike Kestner  <mkestner@novell.com>
2971
2972         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
2973
2974 2006-03-27  Mike Kestner  <mkestner@novell.com>
2975
2976         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
2977         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
2978
2979 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
2980
2981         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
2982
2983 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
2984
2985         * ThemeWin32Classic.cs:
2986           - GroupBox: Inserted a little gap between the text and the lines
2987             on the right side
2988           - Made the code in CPDrawBorder3D more readable
2989           - Corrected the drawing location of the up and down arrows in 
2990             CPDrawScrollButton
2991
2992 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
2993
2994         * ControlPaint.cs: Corrected line widths in DrawBorder for
2995           ButtonBorderStyle Inset and Outset
2996
2997 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
2998
2999         * ThemeWin32Classic.cs:
3000           - Rewrote the totally broken CPDrawBorder3D method. That was
3001             one of the main problems for the terrific ThemeWin32Classic
3002             look
3003           - Updated and corrected Button drawing
3004           - Correct the dimensions of the SizeGrip to match ms ones
3005           - Removed a small drawing glitch in DrawComboBoxEditDecorations
3006         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
3007           Border3DStyle.Sunken to match ms.
3008
3009 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
3010
3011         * ThemeWin32Classic.cs: First small part of the "de-uglify
3012           ThemeWin32Classic" effort, SizeGrip
3013
3014 2006-03-24  Jackson Harper  <jackson@ximian.com>
3015
3016         * XplatUIX11.cs: Give a max idle time of one second, this matches
3017         MS and forces an Idle event every second when there are no other
3018         events in the queue.
3019
3020 2006-03-24  Mike Kestner  <mkestner@novell.com>
3021
3022         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
3023         * ListView.Item.cs: fix layout issues with null image lists and images
3024         smaller than checkbox size.
3025         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
3026         mode like MS does.  It's weird, but consistent.  ;-)
3027         Fixes #77890.
3028
3029 2006-03-24  Mike Kestner  <mkestner@novell.com>
3030
3031         * ListView.cs: Scroll wheel support for the item control.  Fixes
3032         #77839.
3033
3034 2006-03-23  Jackson Harper  <jackson@ximian.com>
3035
3036         * ScrollableControl.cs: Special case negative sized areas, not
3037         zero.
3038         * MonthCalendar.cs: Save the rect of the clicked date so we can
3039         use it for invalidation.
3040         - Try to cut down on the number of invalidates
3041         - Invalidate the rect the mouse is over and was over when moving
3042         the mouse, so we get the focus box following the cursor.
3043
3044 2006-03-23  Mike Kestner  <mkestner@novell.com>
3045
3046         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
3047         focus rectangle drawing. Fixes #77835.
3048
3049 2006-03-23  Mike Kestner  <mkestner@novell.com>
3050
3051         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
3052         the if and else if and reverting back to the original == check on the
3053         None conditional.
3054
3055 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
3056
3057         * FontDialog.cs: Update the example panel if the selected index of
3058           the fontListBox changes.
3059
3060 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
3061
3062         * FileDialog.cs: Make FileDialog remember which directory it was in
3063           last in the same execution.
3064
3065 2006-03-22  Mike Kestner  <mkestner@novell.com>
3066
3067         * FileDialog.cs: make the DropDownMenu on the toolbar display
3068         RadioChecks since they are mutually exclusive and that's what MS does.
3069
3070 2006-03-22  Mike Kestner  <mkestner@novell.com>
3071
3072         * Theme.cs: add Color param to CPDrawMenuGlyph.
3073         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
3074         checks and radio marks and arrows are visible on highlighted items.
3075         * ControlPaint.cs: update to use new Theme signature.
3076
3077 2006-03-22  Mike Kestner  <mkestner@novell.com>
3078
3079         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
3080         is active. Fixes #77870.
3081
3082 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
3083
3084         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
3085           to be focused/selected after startup
3086
3087 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
3088
3089         * ColorDialog.cs: 
3090           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
3091             CustomColors and ShowHelp properties
3092           - Some internal rewrites to get better results when using the
3093             ColorMatrix
3094
3095 2006-03-22  Mike Kestner  <mkestner@novell.com>
3096
3097         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
3098         HoverSelection.  Fixes #77836.
3099
3100 2006-03-22  Mike Kestner  <mkestner@novell.com>
3101
3102         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
3103         ToggleButtons.  (De)Sensitize the Back button around a stack count of
3104         1, not 0.  Update ButtonSize based on a pixel count of the win32
3105         control.  Adjust the toolbar size/location for new button size.
3106
3107 2006-03-22  Jackson Harper  <jackson@ximian.com>
3108
3109         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
3110         true.
3111         * ScrollBar.cs: When doing increments and decrements we need to
3112         set the Value property so that ValueChanged gets raised. A
3113         possible optimization here would be to make an internal SetValue
3114         that doesn't invalidate immediately.
3115         * ToolTip.cs: Tooltips get added to their container (when
3116         supplied) so they get disposed when the container is disposed.
3117         - Don't create tooltips for String.Empty. This prevents all these
3118         little 2-3 pixel windows from showing up when running nunit-gui
3119         and driving me mad.
3120         * Form.cs: Don't set topmost when setting the owner if the handles
3121         haven't been created yet.  The topmost set will happen when the
3122         handles are created.
3123
3124 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
3125
3126         * XplatUIX11.cs:
3127           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
3128           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
3129             visible (to allow them to recalculate their sizes)
3130
3131 2006-03-21  Mike Kestner  <mkestner@novell.com>
3132
3133         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
3134         methods. Removed a ton of redundant code.  Still not really happy with
3135         the border rendering, but I think that's mainly because of the
3136         ControlDarkDark being black instead of a dark grey. Depending on how 
3137         close we want to be, we might want to revisit those color choices.
3138         Among the new features added during the refactor were DropDownArrow
3139         pressed rendering, Disabled image rendering.  Proper flat appearance
3140         boundary rendering.  Removed the Divider and Wrapping dividers since I
3141         can't figure out any combination of themes and conditions to make the
3142         MS control draw a horizontal line on a toolbar despite what the
3143         Divider property docs indicate.
3144         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
3145         conditions and incorrect layout.  Updated to coding standard.
3146         * ToolBarButton.cs: refactored layout and positioning code from
3147         ToolBar to here.  Invalidate wherever possible instead of forcing
3148         redraws of the whole toolbar. 
3149         (Known remaining issues: explicit ButtonSize smaller than provided
3150         images.)
3151
3152 2006-03-21  Mike Kestner  <mkestner@novell.com>
3153
3154         * ContextMenu.cs (Show): use the position parameter instead of just
3155         showing at the MousePosition.
3156
3157 2006-03-21  Jackson Harper  <jackson@ximian.com>
3158
3159         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
3160         control handle this.
3161         * TreeNodeCollection.cs: If we are clearing the root node we need
3162         to reset top_node so calcs can still happen.
3163         * ThemeWin32Classic.cs: This is a Flags so we need to check
3164         properly.
3165         
3166 2006-03-21  Jackson Harper  <jackson@ximian.com>
3167
3168         * DataGrid.cs: Create columns when the binding context has been
3169         changed.
3170         * X11Structs.cs: Keysyms are uints.
3171         - Add size to fix build.
3172
3173 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
3174
3175         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
3176           XplatUIOSX.cs: 
3177           - Added ResetMouseHover method to allow controls to retrigger
3178             hovering if they need it more than once
3179           - Implemented MouseHoverTime and MouseHoverSize properties
3180         * Timer.cs: Start() must reset the interval
3181         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
3182           properties
3183
3184 2006-03-21  Jackson Harper  <jackson@ximian.com>
3185
3186         * X11Keyboard.cs: improved layout detection. Move the nonchar
3187         tables into this file.
3188         * KeyboardLayouts.cs: Move the tables into resource files.
3189
3190 2006-03-21  Mike Kestner  <mkestner@novell.com>
3191
3192         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
3193
3194 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
3195
3196         * Mime.cs: Various speed optimizations. Looking up mime types
3197           is now 2 times faster than before
3198
3199 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
3200
3201         * CreateParams.cs: Added internal menu field
3202         * Control.cs: 
3203           - Switched call order for UpdateBounds; now we always call
3204             the one that also takes ClientSize, and we're calculating the 
3205             client size via driver method in the others. The previous
3206             method of tracking client size by difference wasn't working
3207             for forms where even the starting client size wouldn't match
3208             the overall form size (due to borders) (Part of fix for #77729)
3209           - CreateParams(): Do not use parent.Handle unless the handle is
3210             already created. Causes havoc with Nexxia and throws off our
3211             creation of controls
3212         * XplatUIX11.cs:
3213           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
3214           - Switched handling of ConfigureNotify over to new PerformNCCalc 
3215             method (consolidates code)
3216           - Changed RequestNCRecalc to use new PerformNCCalc method
3217           - Added calls to RequestNCRecalc when menus and borders are changed
3218             to allow app to set NC size. (Part of fix for #77729) This matches
3219             when MS send a WM_NCRECALC on Win32 windows.
3220           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
3221             (Part of fix for #77729). This matches what MS does, they also
3222             send that message when the form is made visible.
3223           - XException.GetMessage: Improved usability of X errors by including
3224             a translation of the window into Hwnd and Control class
3225           - Improved debug info for window creation, reparenting and destruction
3226           - Created helper method WindowIsMapped() [Currently not used]
3227         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
3228         * Form.cs:
3229           - CreateParams: Now setting our menu on the new internal menu field
3230           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
3231             avoid calculating the same property twice
3232         * Hwnd.cs:
3233           - Improved usability of ToString() for debugging purposes
3234           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
3235             determine the height of the menu, instead of just the font. This
3236             required to also create a graphics context and to keep a bmp 
3237             around (for performance reasons)
3238
3239 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
3240
3241         * MenuAPI.cs: Added OnMouseUp method
3242         * Form.cs:
3243           - Now remembering the requested client size, avoids size errors
3244           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
3245             instead of base if the menu is active. This is required due to
3246             control now capturing and releasing on down/up and it would
3247             prematurely release our menu capture
3248
3249 2006-03-17  Jackson Harper  <jackson@ximian.com>
3250
3251         * KeyboardLayouts.cs: Add the czech layouts.
3252
3253 2006-03-16  Jackson Harper  <jackson@ximian.com>
3254
3255         * Control.cs: Use the viewport space when sizing not the controls
3256         client size, so things like ScrollableControl that effect the
3257         viewport size (when scrollbars are added) are computed correctly.
3258         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
3259         of ManagerEntrys.
3260         - Handle creating BindingManagers for null data sources.
3261         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
3262         source, otherwise when rows are added they are added to the 'fake'
3263         datasource and we will crash when trying to set the position in
3264         those rows.
3265         - Use Implicit scrollbars on the datagrid so they arent
3266         selectable.
3267         
3268 2006-03-16  Jackson Harper  <jackson@ximian.com>
3269
3270         * Binding.cs:
3271         * InternalWindowManager.cs:
3272         * MdiWindowManager.cs:
3273         * X11Keyboard.cs: I really want Mike to love me again (fix
3274         compiler warnings).
3275
3276 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
3277
3278         * DataGrid.cs:
3279           - OnMouseDown: Switch to editing mode when clicking on the cell
3280                          even if we're clicking on the cell that's currently 
3281                          selected
3282           - ProcessGridKey: Left/Right now wrap like MS.Net does
3283           - ProcessGridKey: Tab now knows to add a new row when tab is
3284                             pressed in the cell of the last column of the 
3285                             last row
3286           - ProcessGridKey: Enter now adds another row  if pressed in the last
3287                             row and selectes the new row, same column cell
3288           - ProcessGridKey: Home/End navigate columns, not rows, like 
3289                             originally implemented
3290           - Broke ProcessKeyPreview code out into an extra Internal method
3291             so it can be called from the edit code
3292         * DataGridTextBox.cs (ProcessKeyMessage):
3293           - Switched to accept Tab keypresses
3294           - Added F2 handling to allow jumping to the end of the edited cell
3295           - Added logic to allow moving caret left/right inside edited cell
3296             and making the edited cell jump when the caret hits cell borders
3297           - Tab and Enter are now passed to the datagrid after being handled
3298         * TextBoxBase.cs:
3299           - Removed capture code now that Control handles it
3300           - set_SelectionStart now ensures caret is visible
3301
3302 2006-03-16  Jackson Harper  <jackson@ximian.com>
3303
3304         * TrackBar.cs: Debackwards the increment/decrement for handling
3305         mouse clicks on the bar with vertical trackbars.
3306         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
3307         bottom to match MS.
3308
3309 2006-03-16  Mike Kestner  <mkestner@novell.com>
3310
3311         * ListView.cs: make shift/ctrl keyboard and mouse selection 
3312         consistent with the MS control. Fix a bug in
3313         SelectedListViewItemCollection.Clear that was pissing me off for the
3314         better part of a day because the collection was being altered
3315         underneath us as we walked the list.
3316
3317 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
3318
3319         * Control.cs: Not sure how we could miss this so long, but it seems
3320           that MS.Net has Capture set all the way from before calling 
3321           OnMouseDown through sending the mouse events until after
3322           OnMouseUp. This will fix DataGrid's selection being set to end
3323           at the location of the MouseUp.
3324
3325 2006-03-15  Jackson Harper  <jackson@ximian.com>
3326
3327         * BindingContext.cs: Check the binding after its added so that it
3328           can initialize the binding managers and hookup to events.
3329         * Binding.cs: Data members seem to sometimes include rows/cols in
3330           the format Row.Column we now take this into account.
3331           - Hookup to the position changed event so we can update the
3332           control when the position has changed in the data set.
3333         * CurrencyManager.cs: Take into account the row/col naming
3334           convention when creating dataset tables.
3335         * BindingContext.cs: Using a newer better way of storing
3336           datasource/datamember pairs.  Hopefully this better matches MS for
3337           looking up binding managers.
3338
3339
3340 2006-03-15  Jackson Harper  <jackson@ximian.com>
3341
3342         * BindingContext.cs: The currency manager needs the data member
3343         name, if the member is a data set we use the name to find the
3344         correct table.
3345         * CurrencyManager.cs: When creating the list prefer an IList over
3346         an IListSource.
3347         - Attempt to create a DataTable from a DataSet (TODO: might need
3348         some better error checking here, although MS doesn't seem to have much)
3349         - If we have a DataTable create a view and use it as our list.
3350
3351 2006-03-15  Mike Kestner  <mkestner@novell.com>
3352
3353         * ListView.cs: keep a matrix of the icon mode layout to facilitate
3354         keyboard navigation. Support Up/Down/Left/Right selection correctly
3355         for all 4 View modes.
3356         * ListViewItem.cs: add internal row/col fields for icon layouts.
3357
3358 2006-03-15  Jackson Harper  <jackson@ximian.com>
3359
3360         * TabControl.cs: Redraw the tabs when we resize so their newly
3361         calculated sizes are drawn on screen.
3362         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
3363         composite characters.
3364         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
3365         - filter events so that composite characters can be created
3366         patches by peter
3367         * X11Structs.cs: Add XIMProperties enum.
3368
3369 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
3370
3371         * Control.cs (BringToFront, SendToBack): Don't use window or handle
3372           unless it's created
3373
3374 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
3375
3376         * Control.cs (PerformLayout): We don't need to consider visiblity
3377           for anchoring, only for docking. This fixes 'whacky' alignment
3378           in listbox and other controls that use implicit scrollbars after
3379           the previous PerformLayout patch
3380         * ListBox.cs: Switched to use implicit scrollbars
3381           
3382 2006-03-14  Mike Kestner  <mkestner@novell.com>
3383
3384         * ToolBar.cs: 
3385         * VScrollBar.cs:
3386         - chain up the "new event" overrides to base and use
3387         OnEvent to raise them.  Part of fix for bug #76509.
3388
3389 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
3390
3391         * FileDialog.cs: Do not select an item in the parent directory
3392           on backspace
3393
3394 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
3395
3396         * Control.cs (PerformLayout): It would seem that we considered
3397           invisible windows for our layout. Not quite the right thing
3398           to do. Now we don't any longer, thereby fixing bug #76889.
3399
3400 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
3401
3402         * Control.cs (CanFocus): I goofed. A control can have focus 
3403           even though it's not selectable. Made it match MS docs.
3404
3405 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
3406
3407         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
3408           center by default (fixes #76895)
3409         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
3410           all uses of Border3DSides.All with the explicit ORd together
3411           Left|Right|Top|Bottom because I assume that nobody was aware 
3412           that All also implies a center fill. Most places I checked had
3413           a fill right above.
3414         * ProgressBarStyle.cs: Added
3415
3416 2006-03-13  Mike Kestner  <mkestner@novell.com>
3417
3418         * ListView.cs: fix breakage in drag shadow header positioning 
3419         from Peter's csc compilation fix.
3420
3421 2006-03-13  Mike Kestner  <mkestner@novell.com>
3422
3423         * ListView.cs: fix NRE produced by backspacing twice in a focused
3424         FileDialog.
3425
3426 2006-03-13  Mike Kestner  <mkestner@novell.com>
3427
3428         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
3429
3430 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
3431
3432         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
3433           be changed
3434         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
3435           the allowed size before making programmatic size changes
3436
3437 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
3438
3439         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
3440           set, metacity is broken and will still use the emty sizes in 
3441           the struct. (Fix for #77089)
3442
3443 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
3444
3445         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
3446           WindowExStyles and marked both enums as Flags
3447         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
3448           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
3449           to match WindowStyles split
3450         * XplatUIX11.cs:
3451           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
3452           - Updated to match WindowStyles split
3453         * XplatUIWin32.cs:
3454           - Fixed FosterParent creation, was using ExStyle on the Style field
3455             (This should help with Popup focus issues)
3456           - Updated to match WindowStyles split
3457
3458 2006-03-13  Jackson Harper  <jackson@ximian.com>
3459
3460         * MdiWindowManager.cs: Use the system menu height. Fixes some
3461         strange sizing issues.
3462
3463 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
3464
3465         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
3466         * TextBoxBase.cs:
3467           - Scroll to caret after inserting text (#77672)
3468           - Make scroll range one pixel higher, fixes off-by-one error (and
3469             makes underlines visible on the last line)
3470
3471 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
3472
3473         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
3474           the keyboard state from being stuck with keys in 'pressed' state when
3475           focus is switched away via keyboard
3476         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
3477           reset the keyboard if no X11 KeyUp events are expected to come
3478         * X11Structs.cs: Switched type of Visible to bool to match driver
3479
3480 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
3481
3482         * TextControl.cs:
3483           - Switched caret to be just 1 pixel wide, matches MS and looks less
3484             clunky
3485           - Moved caret display 1 pixel down from the top of the control
3486             to improve view
3487           - InsertCharAtCharet: Update the selection start if moving the caret
3488             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
3489           - No longer always creating the caret when the caret methods are
3490             called. Only the actual ShowCaret/HideCaret will do that now
3491           - Only setting caret visible if the owner control has focus
3492           - UpdateView: Added invalidation-shortcut logic for center and right 
3493             aligned text. Previously we'd update all according to the left
3494             logic which caused drawing errors. Also fixed height of invalidated
3495             areas, now properly invalidating the whole area (was off-by-one)
3496           - owner_HandleCreated: Always generate the document when the
3497             handle is created; this ensures that 
3498         * TextBoxBase.cs:
3499           - Fixed situation where caret would disappear under the right
3500             window border, also improved scrolling behaviour on left-
3501             aligned textboxes
3502           - Fixed right-aligned textboxes to have a border to the
3503             right instead of the caret being under the right border
3504         * XplatUIX11.cs:
3505           - Switched from 'nested' to simple visible/not visible tracking 
3506             for caret (part of fix for #77671)
3507           - No longer passing through translated FocusIn/FocusOut messages
3508             since we were notifying too often and the wrong windows. Instead
3509             we just notify our focussed window of receiving or loosing focus
3510         * XplatUIWin32.cs: Switched from 'nested' show/hide 
3511           counting for caret to simple visible yes/no behaviour (part of 
3512           fix for #77671)
3513
3514 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
3515
3516         * Mime.cs: Remove debug code...
3517
3518 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
3519
3520         * MimeGenerated.cs: Removed
3521         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
3522           and subclasses) from /usr/(local/)share/mime and
3523           $HOME/.local/share/mime.
3524
3525 2006-03-10  Jackson Harper  <jackson@ximian.com>
3526
3527         * MdiWindowManager.cs: Recalc the NC area when a window is
3528         maximized/restored so that the menu area is drawn on forms that
3529         don't have a menu.
3530
3531 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
3532
3533         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3534           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
3535           us to force a WM_NCCALCRESIZE message being sent. This is needed
3536           for MDI maximizing.
3537
3538 2006-03-10  Jackson Harper  <jackson@ximian.com>
3539
3540         * Form.cs: We need to use the ActiveMenu when calculating menu
3541         height.
3542         - Fix nullref when the window manager hasn't been created yet.
3543         * Control.cs: Fix nullref when we try to bring a control to the
3544         front that has no parent.
3545         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
3546         height.
3547         - Add a dummy item to the maximized menu so it always has the
3548         correct height. Otherwise when there are no menus we don't get our
3549         icon and buttons.
3550         
3551
3552 2006-03-10  Jackson Harper  <jackson@ximian.com>
3553
3554         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
3555         stuff.
3556         * Form.cs: Make the window_state internal so the window managers
3557         can track it.
3558         - When an MDI child is maximized let its window manager create the
3559         main menu (so it can add its icon).
3560         - Notify the window managers of state changes
3561         - Let the window manager paint its buttons and handle button
3562         clicks on the menu when it is maximized.
3563         * InternalWindowManager.cs: Move the prev_bounds into the mdi
3564         window manager, since tool windows don't use it, only mdi windows.
3565         - Tell the main form that we don't want it to handle NCPAINT
3566         itself to avoid extra painting.
3567         - Handle clicks on a maximized windows menu.
3568         - Handle window state changes
3569         - Handle minimize/maximize clicks correctly by setting the window state.
3570         * MdiWindowManager.cs: Add an icon menu that (the menu you get
3571         when clicking on the forms icon).
3572         - New method to create a forms maximized menu. This is its normal
3573         menu + an icon.
3574         - Handle window state changes.
3575         - Handle sizing of maximized windows.  Maximized windows are just
3576         drawn bigger then the parent visible area. All controls are still
3577         there, they are just outside the visible area (this matches windows).
3578         * MdiClient.cs: No scrollbars when a child window is maximized.
3579         - Let the children windows figure out how big they should be when
3580         sizing maximized windows.
3581         - Implement a version of ArrangeIconicWindows somewhat similar to
3582         Windows version.  There are some little differences, but I don't
3583         think any app will rely on the layout of minimized mdi windows.
3584
3585 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
3586
3587         * Padding.cs: Several fixes to allow compiling with csc 2.0
3588
3589 2006-03-09  Jackson Harper  <jackson@ximian.com>
3590
3591         * Menu.cs:
3592         * MenuItem.cs: Cheap hack so we can add items to the list without
3593         the events being raised.  This allows adding mdi items during
3594         drawing. TODO: Should probably find a better time to add the items.
3595
3596 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
3597
3598         * ThemeWin32Classic.cs:
3599           - CheckBox_DrawText: Added logic to not wrap if not enough space
3600             is available (Fix for bug #77727)
3601           - RadioButton_DrawText: Added logic not to wrap if not enough
3602             space is available (Fix for bug #77727). Also removed some
3603             duplicate code, DrawString always drawing the regular text
3604             before hitting the if statement.
3605
3606 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
3607
3608         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
3609
3610 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
3611
3612         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
3613         * ContainerControl.cs: Partial implementation of some 2.0 scaling
3614           methods. Moved the new 2.0 properties into alphabetical order with
3615           other properties and added MonoTODO tags
3616
3617 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
3618
3619         * AutoScaleMode.cs: Added. Fix build.
3620
3621 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
3622
3623         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
3624           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
3625           and was requiring premature handle creation for calls from above
3626         * Form.cs, Control.cs: Removed handle arguments from calls to
3627           CalculateClientRect()
3628
3629 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
3630
3631         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
3632           drag_column.column_rect is MarshalByRef and can't be used that way
3633
3634 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
3635
3636         * AxHost.cs: Added deserialization constructor for 
3637           AxHost+State (fixes 77743)
3638
3639 2006-03-09  Mike Kestner  <mkestner@novell.com>
3640
3641         * ListView.cs: 
3642         - Added column drag reordering for details view.
3643         - fixed behavior when mouse is dragged off column and
3644         AllowColumnReorder is false.
3645         * ColumnHeader.cs: clone the format too in Clone.
3646         * Theme.cs: add DrawListViewHeaderDragDetails method.
3647         * ThemeWin32Classic.cs:
3648         - impl new method for drawing drag column shadows and targets.
3649         - support column offset for details mode in DrawListViewItem.
3650
3651 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
3652
3653         * TextControl.cs: Reset the char_count when the document is cleared
3654           (Fixes bug reported on mono-winforms mailing list)
3655
3656 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
3657
3658         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
3659           of calling base we simply process the key ourselves, since both
3660           DefWindowProc and the handled method would set m.Result. 
3661           (Fixes #77732)
3662
3663 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
3664
3665         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
3666           method also moves the window; instead implemented a copy of
3667           Control.ScaleCore (Part of fix for #77456)
3668         * TextBoxBase.cs: 
3669           - Created new CreateGraphicsInternal method to allow providing
3670             a graphics context when no handle is created without triggering
3671             handle creation. (Part of fix for #77456)
3672           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
3673         * TextControl.cs: 
3674           - Switched Constructor to require TextBoxBase instead of Control (to
3675             allow uncast access to CreateGraphicsInternal)
3676           - Safeguarded use of owner.Handle property. No longer accessing it
3677             unless the handle is already created.
3678           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
3679           - Now triggering a recalc when owning control becomes visible
3680         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
3681           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
3682           premature handle creation (Part of fix for #77456)
3683         * Control.cs:
3684           - We now only destroy our double-buffering buffers when the
3685             control is resized or disposed, but not when visibility
3686             changes. (The code even re-created them twice every time)
3687           - Now requiring a redraw of the buffer on visibility changes
3688             (fixes bug 77654 part 2)
3689           - Not passing OnParentVisibleChanged up unless the control
3690             is visible
3691           - CanFocus: Fixed to match MS documentation
3692           - Focus: Fixed to return actual focus state and to check if
3693             setting focus is legal before setting it
3694
3695 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
3696
3697         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
3698           when to draw focus rectangle by looking at parent focus and
3699           selected state instead. This fixes TabPages on Linux sometimes
3700           having none or multiple focus rectangles.
3701         * XplatUIX11.cs (SetFocus): 
3702           - Don't set the focus if the same window already has focus
3703           - Use SendMessage instead of PostMessage (like it's Win32
3704             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
3705             to match MS behaviour
3706         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
3707           are not selectable.
3708
3709 2006-03-07  Jackson Harper  <jackson@ximian.com>
3710
3711         * PictureBox.cs: Revert line I accidently committed last week.
3712
3713 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
3714
3715         * Control.cs: 
3716           - Added new IsRecreating and ParentIsRecreating properties to
3717             allow testing if RecreateHandle has been called on ourselves
3718             or one of our parents
3719           - WndProc(WM_DESTROY): If our control handle is being recreated
3720             we immediately need to create the handle when receiving the
3721             destroy, that way our child windows find a valid parent handle
3722             when they themselves are being recreated upon WM_DESTROY receipt
3723             (fix for bug #77654 part 1)
3724         * XplatUIX11.cs:
3725           - DestroyWindow: WM_DESTROY must be sent to our own window before
3726             notifying any child windows. MS documents that child windows
3727             are still valid when WM_DESTROY is received. (Control now relies on
3728             this behaviour)
3729           - Added some fine-grain debug options
3730
3731 2006-03-06  Jackson Harper  <jackson@ximian.com>
3732
3733         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
3734         box and base calculations off this.
3735         * MdiChildContext.cs:
3736         * MdiWindowManager.cs: Don't need to ensure scrollbars here
3737         anymore.
3738         
3739 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
3740
3741         * Splitter.cs: In situations where the affected control is added
3742           to the parent's control list after the splitter, we would not
3743           populate affected. Now we try populating it on mousedown, if
3744           it's not already set, and force it to be re-set whenever our
3745           parent changes.
3746
3747 2006-03-03  Matt Hargett  <matt@use.net>
3748
3749         * Control.cs: implement Control.Padding
3750         * Padding.cs: -Padding.All returns -1 when constructing with the
3751         implicit default ctor
3752         -Padding.ToString() matches MS.NET
3753         * ContainerControl.cs: implement
3754         ContainerControl.AutoScaleDimensions
3755         * ListControl.cs: implement ListControl.FormattingEnabled
3756         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
3757         * ButtonBase.cs:
3758         * TabPage.cs: Implement UseVisualStyleBackColor.
3759         * PictureBox.cs: Implement PictureBox.InitialImage.
3760
3761 2006-03-03  Mike Kestner  <mkestner@novell.com>
3762
3763         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
3764         event declarations to proxy to base event.
3765         * ListViewItem.cs: update to use ItemControl.
3766         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
3767         * ThemeWin32Classic.cs: update to new ListView theme API and fix
3768         column header label rendering for 0 width columns.
3769
3770 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
3771
3772         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
3773           that causes the control to be created. Fixes #77476.
3774
3775 2006-03-02  Jackson Harper  <jackson@ximian.com>
3776
3777         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
3778         expose_pending.
3779
3780 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
3781
3782         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
3783           passed in for the EventArgs (fixes #77690)
3784
3785 2006-03-01  Jackson Harper  <jackson@ximian.com>
3786
3787         * ScrollBar.cs: Refresh afterbeing resized.
3788
3789 2006-02-28  Mike Kestner  <mkestner@novell.com>
3790
3791         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
3792         Clean up a tracker compile warning.
3793         * MenuItem.cs: add internal PerformPopup method.
3794         [Fixes #77457]
3795
3796 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
3797
3798         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
3799           implicit expose) when the text is set to null
3800
3801 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
3802
3803         * RichTextBox.cs (FlushText): When newline is true, we always
3804           need to split the line, even if no text is on it and we may
3805           never eat newlines. (Fixes #77669)
3806
3807 2006-02-28  Mike Kestner  <mkestner@novell.com>
3808
3809         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
3810         and set Selected instead.
3811         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
3812         collections.
3813
3814 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
3815
3816         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
3817
3818 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
3819
3820         * FontDialog.cs:
3821           - Got rid of the panel. All controls are now directly added to
3822             the dialog form
3823           - It is now possible to set a font with the Font property
3824           - MinSize and MaxSize property do now what they should
3825           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
3826           - Searching and selecting a font with the font textbox works now,
3827             the same applies to the style and size textbox
3828           - Draw the correct 3D border in the example panel
3829           - Fixed a little mem leak (unused fonts didn't get disposed)
3830           - Many other internal updates/rewrites...
3831           - Fix typo
3832
3833 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
3834
3835         * TextControl.cs: 
3836           - InsertRTFFromStream: Added 'number of characters inserted' argument
3837           - set_SelectedRTF: Now using the number of characters to calculate
3838             the new location for the selection and cursor (x/y cannot be used
3839             due to potentially already wrapped text)
3840
3841 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
3842
3843         * TextControl.cs: Added property and implemented means to allow 
3844           disabling recalculation of a document (can be used to speed up
3845           multiple inserts and is needed to make RTF inserts predictable, see
3846           bug #77659)
3847         * RichTextBox.cs: Using the new NoRecalc property of Document to
3848           keep x/y insert locations predictable. Also makes it faster inserting
3849           large chunks of RTF
3850
3851 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
3852
3853         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
3854           it's easier for a child control to handle the other messages without
3855           having to duplicate the special functionality
3856         * TextBoxBase.cs
3857           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
3858             code to handle processing the key ourselves, in order to get 
3859             access to the result of KeyEventArgs.Handled. We now only call 
3860             ProcessKey if they key hasn't been handled already. Fixes #77526.
3861           - set_Text: If null or empty string is given, just clear the 
3862             document. Fixes part of #77526
3863
3864 2006-02-27  Jackson Harper  <jackson@ximian.com>
3865
3866         * SizeGrip.cs: Paint the background color before painting the grip
3867         so things look right.
3868         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
3869
3870 2006-02-27  Mike Kestner  <mkestner@novell.com>
3871
3872         * ListView.cs:
3873           - Restructure layout and invalidation model to remove a ton of
3874           flicker from the control and speed up performance in general.
3875           - Add manual column resize, flickers like crazy, but I already have
3876           some ideas on how I'll fix that. (#76822)
3877           - Merge the three Icon-based views into a single layout method.
3878           - Move item selection interaction logic from the item since 
3879           interaction with the collections is more appropriate to the view.
3880           - Deselection on non-item clicks.
3881         * ListViewItem.cs:
3882           - Encapsulate most of the layout. Add some internal props to trigger
3883           layout.  Move to a model where Items invalidate themselves instead
3884           of just invalidating the whole control every time something changes.
3885           - Invalidate on Text/Caption changes.
3886           - switch to an offset based layout model to avoid having to absolute
3887           position every element on item moves.
3888           - correct checkbox layout to conform to MS layout.
3889         * ThemeWin32Classic.cs:
3890           - refactor some column header drawing code.
3891           - fix string justification for column headers (#76821)
3892           - make SmallIcon labels top justified for compat with MS impl.
3893         * ThemeClearlooks.cs:
3894           - adjust to new ListViewItem internal checkbox bounds api.
3895
3896 2006-02-27  Jackson Harper  <jackson@ximian.com>
3897
3898         * Control.cs:  Change where implicit controls fall in the zorder.
3899         They are now on top of all children.
3900         - Synced AddImplicit code with Add
3901         - Removed unused enumerator.
3902         * SizeGrip.cs: Remove the TODO as its been TODONE.
3903
3904 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
3905
3906         * TextControl.cs(Insert): Combine the last lines unless the insertion
3907           string ends with \n\n, otherwise we leave one line too many (Fixes
3908           something I noticed with the testapp for #77526; the bug itself was
3909           already fixed in the previous checkin)
3910
3911 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
3912
3913         * RichTextBox.cs:
3914           - SelectionColor and SelectionFont methods no longer set absolute
3915             styles. Instead, the keep font or color respectively (This 
3916             resolves a long-standing FIXME in the code)
3917           - When flushing RTF text, the insert code now considers text trailing
3918             behind the insertion point (Fixes the bug where when replacing
3919             the selected text via SelectedRTF the remainder of the line behind 
3920             the selection would stay on the first insertion line)
3921         * TextBoxBase.cs:
3922           - AppendText now updates the selection points after inserting text
3923           - AppendText now ensures that the last tag (sometimes 0-length) of
3924             the document is used for the style information (Fixes part of 
3925             bug #77220)
3926         * TextControl.cs:
3927           - Created new FontDefiniton class to allow describing partial style
3928             changes
3929           - StreamLine() now takes a lines argument, to allow it to decide
3930             whether an encountered zero-length tag is the last in the document
3931             (which must be kept to not loose the font/color contained in it,
3932             for later appends)
3933           - Created Combine() and Split() methods for Marker structs, to 
3934             support marker updates due to reformatted documents (soft line
3935             wraps)
3936           - Implemented Document.CaretTag setter
3937           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
3938             of the last line (Not the cause, but also exposed by bug #77220)
3939           - Added LineTag argument to InsertString method, to allow callers
3940             to force a certain tag to be used (required to force use of the
3941             trailing zero-length tag of a document)
3942           - Now updating markers in Combine(), to avoid stale tag markers
3943           - Added some method descriptions to aid maintenance
3944           - Implemented new FormatText concept, allowing additive/subtractive
3945             formatting by only specifying the components that are to be 
3946             changed. This was needed for resolving the RTB.SelectedColor/
3947             RTB.SelectedFont fixmes
3948           - Added Break() support method to allow breaking up linetags (used
3949             for partial formatting)
3950           - Added GenerateTextFormat() method. It is used for partial 
3951             formatting and allows to generate a full font/color from given
3952             attributes and an existing tag.
3953
3954 2006-02-26  Jackson Harper  <jackson@ximian.com>
3955
3956         * XplatUIX11.cs:  Use the correct caption height.
3957         - Translate hittest coordinates to screen coords to match MS.
3958         * XplatUIWin32.cs: When we create MDI windows we need to reset
3959         some of the style flags, so we get a nice blank window, and can
3960         draw all the decorations ourselves.
3961         - Set a clipping rectangle on the non client paint event, the
3962         window manager drawing code needs one.
3963         * Form.cs: The window manager needs to know when the window state
3964         has been updated.
3965         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
3966         don't need to factor in border and title sizes in these
3967         methods. TODO: Remove the args and fix the call points.
3968         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
3969         properly.
3970         - Let the driver set the cursors.
3971         - Improve active window handling
3972         - Correct sizes for title bars and buttons.
3973         - Match MS drawing better
3974         * MdiWindowManager.cs: We don't need to handle border style
3975         updates specially anymore.
3976         - Check for scrollbars when windows are done moving
3977         - Handle Active properly.
3978         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
3979         correctly. I am spewing the exception though, so we don't hide the
3980         bugs.
3981         
3982 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
3983
3984         * DataGridViewRowPostPaintEventArgs.cs,
3985           DataGridViewCellPaintingEventArgs.cs,
3986           DataGridViewRowCollection.cs,
3987           DataGridViewRowPrePaintEventArgs.cs,
3988           DataGridViewCell.cs: Clear a few warnings and implement a few
3989           exceptions that should be thrown.
3990
3991 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
3992
3993         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
3994           'inheriting' our parent's (non-default) cursor. (Part of
3995            the fix for #77479)
3996
3997 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
3998
3999         * XplatUIX11.cs: Fixed cast to make csc happy
4000
4001 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
4002
4003         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
4004           it's for the client area (part of fix for #77479 and needed
4005           for MDI window cursor handling)
4006         * XplatUIX11.cs
4007           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
4008             the appropriate default cursors and also passing the message
4009             up the parent chain 
4010           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
4011             for non-client areas
4012
4013 2006-02-15  Jackson Harper  <jackson@ximian.com>
4014
4015         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
4016         is a real MDI window
4017
4018 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
4019
4020         * X11DesktopColors.cs: Instead of checking the desktop session
4021           string for "KDE" check if it starts with "KDE"
4022
4023 2006-02-10  Jackson Harper  <jackson@ximian.com>
4024
4025         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
4026         systems).
4027
4028 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
4029
4030         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
4031           errors
4032         * ColorDialog.cs:
4033           - Got rid of the panel. All controls are now directly added to
4034             the dialog form
4035           - Changed to mono coding style
4036
4037 2006-02-10  Jackson Harper  <jackson@ximian.com>
4038
4039         * InternalWindowManager.cs: We don't need the set visibility to
4040         false hack anymore now that peter has written beautiful shutdown
4041         code.
4042
4043 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
4044
4045         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
4046           where already explicitly destroyed
4047
4048 2006-02-10  Jackson Harper  <jackson@ximian.com>
4049
4050         * MdiClient.cs: Handle the case where windows are too high or to
4051         the left and we need scrollbars.
4052
4053 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
4054
4055         * MimeIcon.cs: Added some icons
4056         * FileDialog.cs:
4057           - Fixed bug #77477
4058           - Got rid of the panel. All controls are now directly added to
4059             the dialog form
4060           - Changed to mono coding style
4061           - On Linux "My Computer" and "My Network" will now show some
4062             more usefull information. A new class, MasterMount, gathers
4063             this information from /proc/mount. Updated MWFFileView to make
4064             use of this information
4065           - Fixed a bug that caused FileDialog to crash when
4066             ".recently_used" file had a zero size
4067           - FilterIndex does now what it should
4068           - Some Refactoring
4069         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
4070             FileDialog changes
4071
4072 2006-02-09  Jackson Harper  <jackson@ximian.com>
4073
4074         * ComboBox.cs: Don't touch if null.
4075
4076 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
4077
4078         * Cursor.cs: 64bit safeness fix
4079         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
4080
4081 2006-02-09  Jackson Harper  <jackson@ximian.com>
4082
4083         * Form.cs: If a form is made into an MDI form update the styles so
4084         all the props can get set correctly.
4085         - Kill the mdi_container when we dont need it anymore.
4086         * InternalWindowManager.cs: Add missing NOT
4087
4088 2006-02-08  Jackson Harper  <jackson@ximian.com>
4089
4090         * InternalWindowManager.cs: Respek clipping when drawing MDi
4091         decorations.
4092
4093 2006-02-08  Jackson Harper  <jackson@ximian.com>
4094
4095         * Hwnd.cs: Add bits to track non client expose events.
4096         * XplatUIX11.cs: Track non client expose events on the hwnd. This
4097         gives us a proper invalid rect and will allow for some nice
4098         optimizations with NC client drawing
4099         - MDI windows are children windows, so move their style handling
4100         into the child window block.
4101         * InternalWindowManager.cs: Remove a state reset that was
4102         getting invoked at the wrong time. Fixes managed windows getting
4103         into a 'stuck' captured state.
4104
4105 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
4106
4107         * TextControl.cs (Document.ctor): Now initializing 
4108           selection_anchor. Fixes #77493
4109
4110 2006-02-07  Jackson Harper  <jackson@ximian.com>
4111
4112         * TrackBar.cs: The increment/decrements were backwards.
4113
4114 2006-02-07  Mike Kestner  <mkestner@novell.com>
4115
4116         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
4117         to the instance itself.
4118
4119 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
4120
4121         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
4122           on ulongs and pointers, the size differs between 32bit and 64bit
4123           systems. 
4124
4125 2006-02-07  Mike Kestner  <mkestner@novell.com>
4126
4127         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
4128         for 64 bit platforms to work around a metacity bug. 
4129
4130 2006-02-07  Jackson Harper  <jackson@ximian.com>
4131
4132         * TrackBar.cs: Process the input keys we need, and hookup to
4133         KeyDown instead of using WndProc, so we get key messages.
4134
4135 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
4136
4137         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
4138           machine we're on. 
4139         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
4140           we need to translate the XdndVersion atoms array before sending it
4141
4142 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
4143
4144         * XplatUIX11.cs: 
4145           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
4146             number of bits for the property, not the number of bytes. The
4147             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
4148             but would not crash since it specified 8 bits instead of 4 bits)
4149           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
4150             defined as XID -> long in the C headers)
4151           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
4152             references since those are now IntPtr to begin with
4153           - Switched all Atom.XXX 'int' casts to IntPtr casts
4154           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
4155           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
4156           - Added XChangeActivePointerGrab DllImport (for X11DnD)
4157         * X11Structs.cs:
4158           - Changed 'int' type for Atoms in XEvent structures to IntPtr
4159           - Changed atom in HoverStruct to be IntPtr
4160         * X11DnD.cs:
4161           - Removed local DllImports, switched code to use those from XplatUIX11
4162           - Removed/fixed casts related to the switch of Atom to be a IntPtr
4163
4164 2006-02-06  Mike Kestner  <mkestner@novell.com>
4165
4166         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
4167         method signatures in the import region.  There may still be some
4168         lingering struct marshaling issues, as I didn't drill down into those.
4169         Yet.
4170
4171 2006-02-06  Jackson Harper  <jackson@ximian.com>
4172
4173         * ComboBox.cs: Dont manually set the top_item, this is computed
4174         when the scrollbar position is set.
4175
4176 2006-02-06  Mike Kestner  <mkestner@novell.com>
4177
4178         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
4179         startup crashes on amd64.  There's other fixes needed.  All pinvoke
4180         usage of Atom needs to be mapped to IntPtr for example.  And there are
4181         likely other int/long issues to be addressed.
4182
4183 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
4184
4185         * FileDialog.cs: One more...
4186
4187 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
4188
4189         * FileDialog.cs: Next try
4190
4191 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
4192
4193         * FileDialog.cs: First part of fix for #77464
4194
4195 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
4196
4197         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
4198           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
4199           AcceptButton border drawing.
4200
4201 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
4202
4203         * Form.cs: Moved positioning of form after auto scaling is applied,
4204           otherwise it would possibly use wrong form size.
4205
4206 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
4207
4208         * Control.cs (RecreateHandle): No need to re-create any child
4209           controls, the child windows will get destroyed automatically by
4210           the windowing system or driver, and re-created when the handle
4211           is being accessed the first time. Fixes #77456
4212         * Form.cs: No longer setting the form to closing if the handle is 
4213           being recreated. This seems like the right thing to do, don't
4214           have a bug or testcase for this, though.
4215
4216 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
4217
4218         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
4219           controls to avoid unwanted side effects
4220
4221 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
4222
4223         * Control.cs: 
4224           - ScaleCore needs to scale the bounds, not the ClientSize of the 
4225             control. Fixes #77416.
4226           - DefaultSize is 0,0 for control
4227         * TextBoxBase.cs: 
4228           - DefaultSize is 100, 20
4229           - SetBoundsCore: Now enforcing the height, no matter if the provided
4230             height is more or less than the preferred one, as long as AutoSize
4231             is on
4232         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
4233
4234 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
4235
4236         * Control.cs:
4237           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
4238             call unless both performLayout is true *and* we have a pending
4239             layout change
4240           - ResumeLayout: MS does not completely nest Suspend and Resume,
4241             they bottom out at 0, fixed our code to match that.
4242           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
4243             SetBoundsCore, we were updating even when we shouldn't. This fixes
4244             swf-anchors mis-anchoring when resizing the app fast and lots.
4245           - UpdateDistances: Now only setting the left and top distance if 
4246             we have a parent and are not suspended, this is based on
4247             a suggestion by Don Edvaldson in bug #77355.
4248           - OnVisibleChanged: Fixed logic when to create the control. We may
4249             not create the control if we have no parent or if it's not visible;
4250             switched to using Visible property instead of is_visible field 
4251             since the property also considers parent states. This fixes a bug
4252             when starting Paint.Net
4253
4254 2006-02-02  Jackson Harper  <jackson@ximian.com>
4255
4256         * Form.cs: If the forms handle hasn't been created yet don't call
4257         into xplatui to make it top most, just set the topmost flag on the
4258         form in CreateParams
4259         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
4260
4261 2006-02-01  Jackson Harper  <jackson@ximian.com>
4262
4263         * ScrollableControl.cs: Refactored the Recalculate method a
4264         little, this wasn't handling all the variants of bottom and right
4265         bars needed to be added and added/removed based on their
4266         counterparts being added/removed (which changes the drawable
4267         size). Also we special case client widths and heights of 0 and
4268         don't add the scrollbar for those.
4269
4270 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
4271
4272         * XplatUIX11.cs: 
4273           - Added method to get AbsoluteGeometry(); currently unused, but might
4274             be used in the future, if we try again to figure out toplevel
4275             coordinates with some more crappy window managers
4276           - Added FrameExtents() method to retrieve the WM set decoration size
4277           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
4278             to deal with at least KDE, FVWM and metacity (Fixes #77092)
4279         * Hwnd.cs: 
4280           - Added whacky_wm tracking var for metacity
4281           - Added logic to have default menu height if the actual menu height
4282             has not yet been calculated (part of fix for #77426)
4283         * Form.cs: Keep track whether client size has been set and re-set 
4284           it if a menu is added/removed afterwards (Fixes #77426)
4285
4286 2006-01-31  Jackson Harper  <jackson@ximian.com>
4287
4288         * Control.cs: When a new Site is set on the component attempt to
4289         pull the AmbientProperties from it.
4290
4291 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
4292
4293         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
4294           in the background of the owning form. Fixes #77332
4295
4296 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
4297
4298         * MimeIcon.cs: Fix for #77409
4299
4300 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
4301
4302         * XplatUIX11GTK.cs: Initial import
4303
4304 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
4305
4306         * FixedSizeTextBox: fixes class signature
4307
4308 2006-01-30  Jackson Harper  <jackson@ximian.com>
4309
4310         * FixedSizeTextBox.cs: New internal class that represents a
4311         textBox that will not be scaled.
4312         * TreeView.cs:
4313         * ComboBox.cs:
4314         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
4315         standard TextBox.
4316                 
4317 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
4318
4319         * XplatUIX11.cs: Retrieve default screen number instead of
4320           assuming 0. Attempted fix for #77318
4321
4322 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
4323
4324         * XplatUIWin32.cs: 
4325           - GetWindowPos: When a window is parented by FosterParent, use 
4326             the desktop instead of FosterParent as the base to get coordinates
4327           - CreateWindow: Don't make FosterParent the parent window for Popups
4328             if we don't want a taskbar entry, Popups automatically don't get one
4329         * Hwnd.cs: Need to call remove to actually remove the key from the
4330           hash table
4331
4332 2006-01-30  Mike Kestner  <mkestner@novell.com>
4333
4334         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
4335
4336 2006-01-30  Jackson Harper  <jackson@ximian.com>
4337
4338         * TreeView.cs:
4339         * TreeNode.cs: Raise events no matter how the treenode is
4340         checked. Patch by Don Edvalson.
4341
4342 2006-01-30  Jackson Harper  <jackson@ximian.com>
4343
4344         * TreeNode.cs: Signature fix.
4345
4346 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
4347
4348         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
4349
4350 2006-01-20  Mike Kestner  <mkestner@novell.com>
4351
4352         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
4353         event forwarding when menus are active.
4354         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
4355         Most of the patch is pdb's with a little rework.
4356
4357 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
4358
4359         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
4360           Removed GetMenuDC and ReleaseMenuDC methods; replaced
4361           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
4362         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
4363         * InternalWindowManager.cs: Added use of PaintEventStart/End to
4364           handling of WM_NCPAINT message, now passing the PaintEventArgs to
4365           the PaintWindowDecorations method
4366         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
4367         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
4368         * MenuAPI.cs: Made tracker window invisible
4369         * XplatUIWin32.cs:
4370           - Removed GetMenuDC and ReleaseMenuDC methods
4371           - Implemented the client=false path for PaintEventStart and
4372             PaintEventEnd
4373
4374 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
4375
4376         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
4377         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
4378           styles
4379         * Form.cs: 
4380           - MaximizeBox, MinimizeBox: Recreate the handle when setting
4381             the style
4382           - CreateParams: Reworked the styles to match MS look'n'feel,
4383             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
4384             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
4385
4386 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
4387
4388         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
4389           window is not mapped, since otherwise every form that's being 
4390           created is considered minimized, which is wrong.
4391         * Form.cs: Catching the exception and returning our internal value
4392           instead
4393
4394 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
4395
4396         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
4397           SetWindowMinMax() to have means to tell the driver about the minimum,
4398           maximum and maximized state window sizes. (Part of the fix for #76485)
4399         * Form.cs:
4400           - Implemented tracking of minimum and maximum window size, now calling
4401             new SetWindowMinMax() driver method to tell the driver (Part of the
4402             fix for #76485)
4403           - Finished handling of WM_GETMINMAXINFO method, now setting all values
4404             (Completes fix for #76485)
4405           - Calling new SetWindowMinMax driver method when the handle for a 
4406             form is created, to make sure the driver knows about it even if
4407             the values have been set before the window was created
4408           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
4409             to avoid messing up our anchoring calculations (partial fix
4410             for #77355)
4411         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
4412         * XplatUIX11.cs:
4413           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
4414           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
4415             (and presumably other freedesktop.org compliant WMs). Left the
4416             assumption unmapped=minimized, needed for SetVisible to work.
4417           - Now setting the window state when creating windows
4418           - Fixed SetVisible to consider/set the window state when mapping
4419             a Form. We cannot set the state before it's mapped, and we cannot
4420             use Form.WindowState once it's mapped (since it would ask the
4421             driver and get 'normal'. Therefore, we grab the state before
4422             mapping, map, and then set state.
4423           - Implmemented SetWindowMinMax method; Metacity does not seem to
4424             honor the ZoomHints, though.
4425         * XplatUIWin32.cs:
4426           - Removed MINMAXINFO (moved to XplatUIStructs)
4427           - Added SetWindowMinMax stub (on Win32 the only way to set that
4428             information is in response to the WM_GETMINMAXINFO message, which
4429             is handled in Form.cs)
4430           - Added logic to SetVisible to set the proper window state when a 
4431             form is made visible (fixes #75720)
4432
4433 2006-01-26  Jackson Harper  <jackson@ximian.com>
4434
4435         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
4436         same way we handle them with Invoke.
4437
4438 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
4439
4440         * Form.cs:
4441           - Added tracking of window state so CreateParams can return
4442             the appropriate style
4443           - Moved setting of WS_CAPTION style in CreateParams to allow
4444             styles without caption
4445         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
4446           control if the TextBox property is accessed. Fixes #77345
4447         * Control.cs:
4448           - get_Created: now uses is_disposed and is_created to determine
4449             return value (suggested by Jackson)
4450           - CreateHandle: No longer exits if the handle is being recreated
4451           - RecreateHandle: If the handle is not yet created call the 
4452             appropriate method to create either control or handle. If the
4453             control is already created CreateHandle will simply exit instead
4454             of just creating the handle
4455         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
4456           now SendMessage WM_DESTROY directly to the control when DestroyWindow
4457           is called.
4458         * XplatUIX11.cs: 
4459           - When DestroyWindow is called, instead of waiting for the 
4460             DestroyNotification from X11, we directly post it to the WndProc
4461             and immediately dispose the hwnd object.
4462             Same applies to DestroyChildWindows, and this obsoletes the
4463             expose_pending tracking. Contrary to Win32 behaviour we destroy our
4464             child windows before our own, to avoid X11 errors.
4465           - Removed the direct sending of WM_PAINT on UpdateWindow
4466         * XplatUIWin32.cs:
4467           - Reworked DoEvents and GetMessage to allow access to internal queue
4468             even when trying non-blocking access to the queue.  Fixes #77335. 
4469             Based on a patch suggestion by Don Edvalson. The new private
4470             GetMessage can now also be used as a backend for a PeekMessage
4471             frontend version.
4472         * XplatUI.cs: Improved debug output for CreateWindow
4473
4474 2006-01-25  Jackson Harper  <jackson@ximian.com>
4475
4476         * Help.cs: Allow param to be null. Patch by Don Edvalson.
4477
4478 2006-01-24  Jackson Harper  <jackson@ximian.com>
4479
4480         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
4481         when we have a MaxDropItems lower then the selected index.
4482
4483 2006-01-24  Jackson Harper  <jackson@ximian.com>
4484
4485         * Control.cs: Don't allow selection of non visible controls, allow
4486         selection of controls without parents.
4487
4488 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
4489
4490         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
4491         * DataGridDrawingLogic.cs: Add editing row only when is necessary
4492
4493 2006-01-23  Jackson Harper  <jackson@ximian.com>
4494
4495         * UpDownBase.cs: Make the textbox handle all the selection and
4496         tabbing. This fixes tabing to updown controls.
4497
4498 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
4499
4500         * TextBoxBase.cs: fixes exception thown the object was null
4501
4502 2006-01-23  Jackson Harper  <jackson@ximian.com>
4503
4504         * ButtonBase.cs: Just use the base CreateParams. They set
4505         visibility and enabled correctly.
4506         * ComboBox.cs:
4507         * TrackBar.cs:
4508         * MonthCalendar.cs: Lets let the base set as much of the
4509         createparams as possible so we don't have duplicate code all over
4510         the place.
4511
4512 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
4513
4514         * ThemeGtk.cs: Added TrackBar and some experimental code to
4515           get double buffering back
4516
4517 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
4518
4519         * DataGrid.cs: Allows row number set internally higher than the last
4520         when creating a new row. Restores the editing functionality.
4521
4522 2006-01-20  Mike Kestner  <mkestner@novell.com>
4523
4524         * MimeIcon.cs: delay Image creation until the icons are accessed
4525         instead of creating 190 scaled images on GnomeHandler startup.
4526
4527 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
4528
4529         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
4530           first call base before processing the event. Fixes #77279
4531
4532 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
4533
4534         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
4535           that the stride for the GDI bitmap would match the stride of
4536           a DIB or a Cursor.
4537
4538 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
4539
4540         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
4541
4542 2006-01-19  Jackson Harper  <jackson@ximian.com>
4543
4544         * ComboBox.cs: Hookup the text controls keydown event so we get
4545         those when the text control has the focus.
4546
4547 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
4548
4549         * Label.cs: Now using the base events instead of defining new ones;
4550           this allows us to just call the base properties without having to
4551           duplicate all base property logic 
4552
4553 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
4554
4555         * Label.cs: A label by default is not a tabstop (Fixes one of our
4556           failing nunit tests)
4557
4558 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
4559
4560         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
4561         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
4562
4563 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
4564
4565         * Cursor.cs: Reimplemented creating cursor bitmaps without using
4566           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
4567           This fixes #77218
4568         * XplatUIWin32.cs: 
4569           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
4570             constructor creates images that can't be saved. Part of the fix
4571             for #76103
4572           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
4573           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
4574             bug fix for handling window state in forms properly)
4575
4576 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
4577
4578         * ThemeGtk.cs: Simplify ScrollBar drawing
4579
4580 2006-01-18  Jackson Harper  <jackson@ximian.com>
4581
4582         * Splitter.cs: Set the default dock style for the splitter control
4583         in the constructor.
4584
4585 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
4586
4587         * ThemeGtk.cs: Corrected StateType and ShadowType for
4588           gtk_paint_box
4589
4590 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
4591
4592         * Control.cs: Make use of Theme.DoubleBufferingSupported
4593         * ThemeGtk.cs:
4594           - Added drawing for flat style buttons
4595           - Added ScrollBar drawing
4596
4597 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
4598
4599         * ThemeClearlooks.cs: Removed some unneeded code.
4600         * ThemeGtk.cs: First part of ThemeGtk enhancements.
4601
4602 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
4603
4604         * LinkLabel.cs: We need to update the hover drawing when
4605           leaving the control as well.
4606
4607 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
4608
4609         * DataGrid.cs: Clicking on non empty areas in the columns
4610            area was giving an exception
4611
4612 2006-01-17  Jackson Harper  <jackson@ximian.com>
4613
4614         * ThemeWin32Classic.cs:
4615         * ListView.cs: Do not draw/clip the headers when the header style
4616         is None.
4617
4618 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
4619
4620         * DataGrid.cs: Fixes 77260
4621         
4622 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
4623
4624         * DataGrid.cs: Clicking on a column on a empty grid was giving
4625           an exception
4626
4627 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
4628
4629         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
4630           or any keypress will crash the grid.
4631
4632 2006-01-17  Mike Kestner  <mkestner@novell.com>
4633
4634         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
4635         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
4636         invisible/previously-visible items.
4637         [Fixes #76909]
4638
4639 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
4640
4641         * ThemeClearlooks.cs:
4642         - Added CL_Draw_Button method; now other theme controls that are 
4643           not derived from button or do not have a button can draw buttons
4644           too
4645         - Updated ComboBox drawing
4646         - Beautified RadioButton drawing
4647         - Corrected drawing of bottom and left tabs
4648         - Beautified DateTimePicker and MonthCalendar
4649         - Added CPDrawButton and CPDrawRadioButton
4650
4651 2006-01-16  Jackson Harper  <jackson@ximian.com>
4652
4653         * ComboBox.cs: Set the initial value of the scrollbar to the
4654         current index. Reduce the numbers of refreshs and IndexOfs called.
4655
4656 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
4657
4658         * FileDialog.cs: When the file listview is focused hitting the
4659           backspace key moves the fileview to the parent directory
4660
4661 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
4662
4663         * Form.cs: 
4664           - Added RecreateHandle call when changing taskbar visibility to 
4665             trigger reparenting in Win32 driver (Fixes #75719)
4666           - If a window has minimize or maximize buttons, it cannot have
4667             a help button
4668         * XplatUIWin32.cs:
4669           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
4670             the toplevel form with FosterParent (A toolwindow not on the
4671             taskbar) (Fixes #75719)
4672           - Made FosterParent a toolwindow
4673
4674 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
4675
4676         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
4677
4678 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
4679
4680         * ToolTip.cs: If SetToolTip is called from a control and the mouse
4681           is currently over that control, make sure that tooltip_window.Text
4682           gets updated
4683
4684 2006-01-13  Mike Kestner  <mkestner@novell.com>
4685
4686         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
4687
4688 2006-01-13  Jackson Harper  <jackson@ximian.com>
4689
4690         * TreeView.cs: On MS GetNodeAt never actually factors in the X
4691         value passed.  Also redraw the selected node when we recieve
4692         focus, so tabbing between trees works correctly.
4693
4694 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
4695
4696         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
4697           ~/.gconf/%gconf-tree.xml, so use
4698           .gconf/desktop/gnome/interface/%gconf.xml
4699
4700 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
4701
4702         * TextControl.cs: Draw text in gray if control is disabled
4703
4704 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
4705
4706         * TreeView.cs: Draw the focus rectangle outside the highlight, to
4707           make sure it's always visible. Fixes #76680.
4708
4709 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
4710
4711         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
4712
4713 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
4714
4715         * PageSetupDialog.cs: Added.
4716         * PrintDialog.cs: Attributes.
4717         * PrintPreviewControl.cs: Updates.
4718         * PrintPreviewDialog.cs: Updates.
4719         
4720 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
4721
4722         * Control.cs: Undid my selection check fix, since it's not needed
4723         * TextBoxBase.cs:
4724           - Now considering the presence of hscroll/vscroll when sizing
4725             vscroll/hscroll respectively. Fixed bug #77077
4726           - Added Left/Up/Down/Right to IsInputKey list to prevent
4727             ContainerControl from stealing them. This fixes what I broke
4728             with my last checkin.
4729
4730 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
4731
4732         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
4733           I finally understand how the property can be set without a setter :-)
4734
4735 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
4736
4737         * Application.cs:
4738           - Switched RunLoop to use static Message.Create to create a 
4739             Message object
4740           - Added PreProcessMessage call in runloop for keyboard events; this
4741             is part of the fix for #77219, I overlooked this originally in the
4742             MSDN doc for PreProcessMessage
4743         * Control.cs:
4744           - Removed call to PreProcessMessage from handling of keyboard 
4745             messages; it's supposed to be done in the message pump
4746           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
4747             per MSDN documentation.
4748           - IsInputChar: All chars are input chars by default; removed the 
4749             parent calling chain, MS does not document that
4750           - PreProcessMessage: If IsInputChar is true, we want to return false
4751             to allow dispatching of the message
4752           - When selecting the next control, now also check that we're not
4753             selecting ourselves again and therefore return a false positive.
4754         * TextBoxBase.cs:
4755           - Tried to match return values for IsInputKey and ProcessDialogKey
4756             to what MS returns; moved processing of our special keys outside
4757             ProcessDialogKey since MS does not seem to return true on those.
4758           - Moved code that previously was in ProcessDialogKey into new private
4759             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
4760           - Reworked handling of WM_CHAR to not have to duplicate code from
4761             Control.cs anymore, instead we simply call down to base.
4762            
4763 2006-01-12  Jackson Harper  <jackson@ximian.com>
4764
4765         * ComboBox.cs: We always need to refresh the text area when
4766         EndUpdate is called. Fixes the combobox in the file dialog.
4767         * Control.cs: Don't create the creator_thread until the controls
4768         handle is created.  Also in InvokeRequired we check if the
4769         creator_thread is null. This gives the effect of InvokeRequired
4770         returning true if the controls handle is not created yet, and
4771         matches MS.
4772
4773 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
4774
4775         * XplatUI.cs:
4776           - Added StartLoop() driver method. This is used to allow drivers to
4777             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
4778             loop for a particular thread
4779           - Added EndLoop() driver method. This is called once the message
4780             pump for the thread is shut down
4781           - Added SupportsTransparency method to allow the driver to indicate
4782             opacity support for windows
4783         * Form.cs:
4784           - Removed TODO attribute, completed AllowTransparency property
4785           - Added documented logic to Opacity
4786         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
4787           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
4788           versions of CompatibleTextRendering
4789         * X11Structs.cs: Added opacity atom to our atom enumeration
4790         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
4791           of a form might be set before it's reparented by the WM, and we need
4792           the opacity value without calling up to Form)
4793         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
4794           SupportsTransparency() driver methods
4795         * Application.cs: Now calling StartLoop and EndLoop driver methods
4796         * XplatUIX11.cs:
4797           - Added opacity atom registration
4798           - Added StartLoop()/EndLoop() methods. They're empty right now but
4799             will need to get implemented when we switch to a per-thread queue
4800           - Implemented SupportsTransparency() method
4801           - Implemented SetWindowTransparency() method
4802           - Added support for setting the opacity value when a window is
4803             reparented (since the opacity needs to be set on the WM frame)
4804         * XplatUIOSX.cs, XplatUIWin32.cs:
4805           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
4806
4807 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
4808
4809         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
4810
4811 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
4812
4813         * FileDialog.cs: Added ToolTip for MWFFileView
4814         * MimeIcon.cs: Rewrote GnomeHandler.
4815           - Get currently used gnome icon theme from
4816             ($HOME)/.gconf/%gconf-tree.xml
4817           - Make use of inherited icon themes
4818           - Support SVG icon themes like Tango via librsvg
4819
4820 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4821
4822         Revert's Jackson's revert which broke 2.0 builds.   Fix both
4823         builds. 
4824         
4825         * Application.cs: Move the use_compatible_text_rendering outside
4826         the NET_2_0 define.  If we ever need to use the
4827         use_compatible_text_rendering on the individual controls they will
4828         access the variable from the common shared code paths.
4829
4830 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
4831
4832         * XplatUI.cs:
4833           - Added more granular debug options
4834           - Added method to print both window text and id
4835           - Switched debug output to use new Window() debug method
4836           - Added IsEnabled() driver method
4837           - Added EnableWindow() driver method
4838         * Form.cs:
4839           - Removed end_modal; no longer needed, new loop handles termination
4840             via 'closing' variable
4841           - If form is modal, setting DialogResult will now initiate loop
4842             termination via 'closing' variable
4843           - Added support for is_enabled/WS_DISABLED to CreateParams
4844           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
4845             does all the work
4846           - Removed code that's now in RunLoop from ShowDialog()
4847           - Added various documented sanity checks to ShowDialog()
4848           - Added handling of WM_DESTROY message; we set 'closing' on getting
4849             the message to indicate the message pump to terminate
4850           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
4851             send by the Application.ExitThread method. (We send the message
4852             to destroy the window after all other events have been
4853             processed through the queue, instead of destroying the handle 
4854             directly)
4855           - Moved code from Close() method to WM_CLOSE handler; added logic
4856             to only send close-related events if the form is not displayed
4857             modal
4858         * Splitter.cs (..ctor): Fixed typo in resource name
4859         * Control.cs:
4860           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
4861             brush now
4862           - set_Cursor: Now only setting calling into XplatUI if the handle for
4863             the control is already created; this avoids implict handle creation
4864             or crashes if it's not created
4865           - set_Enabled: Now setting the enabled state via the new driver method
4866             instead of just tracking it
4867           - CreateParams: Added logic to set WS_DISABLED based on enabled state
4868           - CreateControl: Reordered event firing and method calls to more
4869             closely fire events in the order MS does. Now setting the
4870             enabled state in the driver when creating the control.
4871           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
4872             match MS order
4873         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
4874           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
4875         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
4876         * Hwnd.cs:
4877           - Added tracking of window enabled state (get_Enabled/set_Enabled)
4878           - Added EnabledHwnd property to easily allow a driver to find the
4879             handle of the first enabled window in the parent chain (this is
4880             used by drivers to pass up input events of disabled windows)
4881         * XplatUIDriver.cs: Added IsEnabled() method
4882         * Application.cs:
4883           - Removed crude and obsolete exiting tracking variable
4884           - Removed internal ModalRun(); replaced by RunLoop()
4885           - Implemented private CloseForms() method to allow closing all 
4886             windows owned by a particular (or all) threads
4887           - Exit() now properly closes all windows without forcing the message
4888             pump to quit
4889           - Removed obsolete InternalExit() method
4890           - Changed Run() methods to use new RunLoop() message pump
4891           - Implemented new RunLoop() method for both modal and non-modal forms
4892         * CommonDialog.cs:
4893           - get_CreateParams: Added setting of WS_DISABLED
4894           - Simplified ShowDialog(); now all the work is done in RunLoop(),
4895             invoked via Form.ShowDialog()
4896         * NativeWindow.cs: We don't remove the window from the collection when
4897           the handle is destroyed; there might still be messages for it in the
4898           queue (mainly the resulting WM_DESTROY); instead it will be removed
4899           when Control calls InvalidateHandle in the WM_DESTROY handler
4900         * XplatUIX11.cs:
4901           - CreateWindow: Added logic to handle the WS_DISABLED window style
4902           - EnableWindow: Implemented based on Hwnd.Enabled
4903           - GetMessage: Reset PostQuitState so the method can be called again
4904           - Implemented support for disabled windows (passing messages to the
4905             first enabled parent) in handling all input messages
4906           - Added optimizations for handling Expose events
4907           - Implemeted new driver method IsEnabled()
4908           - Now always resetting paint pending tracking vars when we start paint
4909           - Re-implemented UpdateWindow via just sending a WM_PAINT message
4910         * XplatUIOSX.cs: Added IsEnabled method stub
4911         * XplatUIWin32.cs: Implemented new IsEnabled() method
4912
4913 2006-01-11  Jackson Harper  <jackson@ximian.com>
4914
4915         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
4916         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
4917         variables a little.
4918         * ColorDialog.cs: Clear out the old form before adding the new
4919         panel.  
4920
4921 2006-01-11  Jackson Harper  <jackson@ximian.com>
4922
4923         * X11Dnd.cs: Make sure to add all the text formats when adding
4924         strings to the data object.
4925         * TreeNodeCollection.cs: When adding to a sorted tree we need to
4926         do some redrawing too.  Also change the UpdateNode to an
4927         UpdateBelow so the newly added node gets painted.
4928         
4929 2006-01-11  Miguel de Icaza  <miguel@novell.com>
4930
4931         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
4932         LinkLabel.cs, PropertyGrid.cs: Implement the
4933         UseCompatibleTextRendering property for 2.x
4934
4935         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
4936
4937 2006-01-11  Jackson Harper  <jackson@ximian.com>
4938
4939         * TreeView.cs: Use the property for setting the selected node so
4940         the correct events get raised.
4941         * TreeNode.cs: Update the tree when the fore/back colours of a
4942         node are set.
4943
4944 2006-01-10  Jackson Harper  <jackson@ximian.com>
4945
4946         * TreeView.cs: Allow setting SelectedNode to null.
4947
4948 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
4949
4950         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
4951
4952 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
4953
4954         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
4955
4956 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
4957
4958         * PrintDialog.cs: Added attributes and set default property values.
4959
4960 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
4961
4962         * PrintControllerWithStatusDialog.cs: 
4963         Added PrintControllerWithStatusDialog.
4964
4965 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
4966
4967         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
4968         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
4969
4970 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
4971
4972         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
4973
4974 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
4975
4976         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
4977         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
4978
4979 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
4980
4981         * MimeIcon.cs: Added internal class SVGUtil.
4982
4983 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
4984
4985         * FileDialog.cs: Don't crash if there are two files with the
4986           same name but different locations.
4987
4988 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
4989
4990         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
4991         dates across multiple month grids. Used to not highlight entire 
4992         month, but does now.
4993         
4994 2006-01-06  Jackson Harper  <jackson@ximian.com>
4995
4996         * MonthCalendar.cs: Removed DoEvents call to prevent a running
4997         message loop. Change timer intervals to numbers that seem more
4998         natural.
4999
5000 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
5001
5002         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
5003           object for location info since screen object is now implemented.
5004
5005 2006-01-05  Jackson Harper  <jackson@ximian.com>
5006
5007         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
5008         * AsyncMethodResult.cs: We no longer use a WeakReference for the
5009         AsyncMethodResult, this is because we ALWAYS want the
5010         ManualResetEvent to get set.
5011         * Control.cs: When disposing use an async invoke to call shutdown
5012         code, so that thigns don't block on the finalizer thread.  Also
5013         check if we even have a message loop before trying to send
5014         messages, if we don't then don't bother sending messages.
5015         - No more weak references for async methods
5016         * XplatUIDriver.cs: No more weak references for async methods.
5017
5018 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
5019
5020         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
5021           returns two FontFamily with the same name
5022
5023 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
5024
5025         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
5026           drawing disabled text. Instead using the ColorGrayText color
5027
5028 2006-01-04  Jackson Harper  <jackson@ximian.com>
5029
5030         * TreeNode.cs: redraw the node when its image index is changed.
5031
5032 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
5033
5034         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
5035           time I checked there are no others like it.
5036
5037 2006-01-04  Jackson Harper  <jackson@ximian.com>
5038
5039         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
5040         this gives the behavoir I was looking for.
5041         * Control.cs: Special case Invoking EventHandlers, this matches MS
5042         and fixes part of bug #76326.
5043
5044 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
5045
5046         * ThemeClearlooks.cs, FileDialog.cs:
5047           - Reflect the latest Theme class changes
5048           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
5049             with DateTime
5050             
5051 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
5052
5053         * Theme.cs: Cache UI resource images and resize them if needed
5054
5055 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
5056
5057         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
5058           is called. This fixes the crash in Nexxia when setting the font
5059           attributes in the chat. [However, RTF needs a look-over to make sure
5060           that all SelectionXXX methods handle the special case that selection
5061           is empty and therefore the change must be applied to all text starting
5062           at the cursor/selection start]
5063
5064 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
5065
5066         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
5067           XplatUIOSX.cs: Added SendMessage and PostMessage methods
5068         * X11Keyboard.cs: Switched to new way of calling PostMessage
5069
5070 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
5071
5072         * Theme.cs: Added theme interface for images to allow the theme to
5073           control what images are used for things like FileDialog, MessageBox
5074           icons, etc.
5075         * MessageBox.cs: Now uses the new Theme icon/image interfaces
5076
5077 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
5078
5079         * FileDialog.cs:
5080           - Removed some dead code
5081           - Opening a recently used file does work now
5082           - Small UI enhancements
5083           - Refactoring
5084
5085 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
5086
5087         * FileDialog.cs: Forgot too add __MonoCS__
5088
5089 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
5090
5091         * FileDialog.cs: We are able to read recently used files now let's
5092           go on and write them.
5093
5094 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
5095
5096         * FileDialog.cs: Breathe some life into "last open"/"recently used"
5097           button
5098         * MimeIcon.cs: Do a check for the top level media type also
5099
5100 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
5101
5102         * ThemeClearlooks.cs:
5103           - Added CPDrawStringDisabled
5104           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
5105             some chars if the text doesn't fit into text_rect
5106           - DrawListViewItem: If View = View.LargeIcon center the image;
5107             rewrote the drawing of ListViewItem.Text if View = 
5108             View.LargeIcon
5109
5110 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
5111
5112         * MimeIcon.cs: Use default KDE icon theme if there is no
5113           "48x48" directory for the current icon theme, fixes #77114
5114         * Mime.cs: Disable not working and actually not used code. 
5115         * ThemeWin32Classic.cs:
5116           - Replace "new SolidBrush" in GetControlBackBrush and
5117             GetControlForeBrush with ResPool.GetSolidBrush
5118           - Changed DrawListViewItem from private to protected virtual
5119         * FileDialog.cs:
5120           - Added form.MaximizeBox = true
5121           - Don't throw an exception if there is a broken symbolic link
5122
5123 2005-12-23  Jackson Harper  <jackson@ximian.com>
5124
5125         * TabControl.cs: Give the panels focus, keyboard navigation is
5126         fixed so this works correctly now.
5127         - We need these key events also.
5128         * ToolBar.cs: Remove some of the poor mans double buffering.
5129         
5130 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
5131
5132         * ComboBox.cs: The internal TextBox now returns the focus.
5133
5134 2005-12-23  Jackson Harper  <jackson@ximian.com>
5135
5136         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
5137
5138 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
5139
5140         * Control.cs: Removed debug code
5141         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
5142           implicit children
5143
5144 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
5145
5146         * Control.cs: When creating the control, update the Z-order after
5147           all it's children are created, too. (Fixes nexxia not showing
5148           picturebox bug)
5149
5150 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
5151
5152         * Control.cs: Do not update the anchoring distances if layout is
5153           suspended, instead do it once layout is resumed
5154
5155 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
5156
5157         * Control.cs: 
5158           - After many hours of debugging, for both Jackson and
5159             myself, it turns out that it helps to set the parent of a control
5160             if you want to actually see it onscreen. In the spirit of that
5161             discovery, we're now setting the parent of the control and
5162             it's children when the control's handle is created. This fix
5163             will make Lutz Roeder's Reflector run happily. 
5164           - now just creating the handle instead of the whole control when
5165             getting a graphics context for the control.
5166
5167 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
5168
5169         * ScrollableControl.cs: When calculating the canvas, don't consider
5170           the scrollbar widths. Instead, predict if horizontal scrollbar
5171           will affect canvas when deciding on vertical display and vice versa.
5172
5173 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
5174
5175         * RichTextBox.cs: Set default RTF font for documents that don't
5176           have a font table (Fixes #77076)
5177
5178 2005-12-22  Jackson Harper  <jackson@ximian.com>
5179
5180         * TextBoxBase.cs: It's difficult to do, but you can have an empty
5181         clipboard. This prevents a NullRef in that case.
5182         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
5183         clipboard. PRIMARY is for the currently selected text only. (We
5184         should implement PRIMARY at some point.
5185
5186 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
5187
5188         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
5189           a Unicode function with a structure that was defined in Ansi way.
5190           This fixes #76942.
5191
5192 2005-12-21  Jackson Harper  <jackson@ximian.com>
5193
5194         * StatusBar.cs: Statusbar handles its fore/back colours on it's
5195         on. Because thats how it rolls. (and this avoids it using ambient
5196         colours).
5197         * ThemeWin32Classic.cs: Use the proper back color for filling.
5198         * Menu.cs: Use the system menu bar color for drawing menu
5199         bars. Using the window back color will bring ambient colours into
5200         the picture.
5201
5202 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
5203
5204         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
5205           Bitmaps were created and not disposed.
5206
5207 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
5208
5209         * Control.cs (CreateControl): Don't do anything if the control is
5210           already created, otherwise we'd fire the OnCreated event more than
5211           once
5212
5213 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
5214
5215         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
5216           will always match. Instead return -1. Fixes #76464.
5217
5218 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
5219
5220         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
5221           neither the beginning nor the end of the line (Fixes bug #76479)
5222
5223 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
5224
5225         * Control.cs:
5226           - ControlNativeWindow.ControlFromHandle(): Now handling situation
5227             where handle is invalid
5228           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
5229             instead of slower linear search
5230         * NativeWindow.cs: Don't remove the window from the hashtable until
5231           after the driver has destroyed it (since the driver might use
5232           Control.FromHandle to lookup the control object
5233         * Hwnd.cs: Added DestroyPending property to track if a window is 
5234           already destroyed as far as the driver is concerned and only hasn't
5235           yet notified the control
5236         * XplatUIX11.cs:
5237           - Activate(): Check if the window is still valid before using the 
5238             handle
5239           - Implemented DestroyChildWindow() method to mark child windows as
5240             destroyed when a window is destroyed. This prevents situations 
5241             where we might call an X method based on queued events for a
5242             window that already has been destroyed but we haven't yet pulled
5243             the destroy method from the queue.
5244           - Added a call to the new DestroyChildWindow() method to the drivers
5245             DestroyWindow code. Also now marking the destroyed window itself
5246             as pending
5247
5248 2005-12-20  Jackson Harper  <jackson@ximian.com>
5249
5250         * StatusBar.cs:
5251         * StatusBarPanel.cs: Don't calculate panel sizes on draw
5252         anymore. Just do them when needed, also track the rects of panels
5253         so that we can optimize refreshing more in the future.
5254
5255 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
5256
5257         * ColorDialog.cs: Fixed focus drawing in small color controls
5258
5259 2005-12-19  Jackson Harper  <jackson@ximian.com>
5260
5261         * InternalWindowManager.cs:
5262         * MdiWindowManager.cs: Cleanup some coordinate system changes so
5263         moving windows works properly.
5264
5265 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
5266
5267         * Control.cs: 
5268           - Removed call to InitLayout() from SetBoundsCore(); doc says
5269             it's only called when a control is added to a container
5270           - Split InitLayout logic, moved to separate UpdateDistances() method
5271             since we need to perform those calculations more often than just
5272             when adding the control to a container. (Needed to fix #77022)
5273           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
5274           - Reduced the OnBindingContextChanged events count, don't send them
5275             unless the control is created, we still aren't totally matching
5276             MS, but I can't quite figure out some of their rules
5277
5278 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
5279
5280         * ThemeClearlooks.cs: Corrected distance between ProgressBar
5281           stripes
5282
5283 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
5284
5285         * ThemeClearlooks.cs:
5286           - Updated ProgressBar drawing
5287           - Corrected drawing of ScrollBars and scroll buttons
5288           - Some temporary fixes for minor pixel artefacts
5289
5290 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
5291
5292         * Control.cs:
5293           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
5294             cause events to be sent in the same order as MS does.
5295           - Added ChangeParent() method to trigger various OnXXXChanged events
5296             that need to be fired when a parent changes (This is a reworking
5297             of the patch from r54254, with the X11 errors fixed)
5298           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
5299             since on MS we get OnLayoutChanged events when calling Clear()
5300           - Changed Enabled property to consider parent state as well, if a
5301             parent is not enabled, the control will not be either
5302           - Changed Parent property to simply call Controls.Add() since that
5303             now does all the work required, this way we avoid code duplication
5304           - Threw in a few OnBindingsContextChanged calls to try and match
5305             when MS sends them. We seem to send a few too many, though.
5306           - Added call to CreateControl when adding the control to a parent.
5307             We were never calling CreateControl. Still needs some work, in
5308             some places we treat HandleCreated and ControlCreated as equal, 
5309             which is wrong
5310           - Removed obsolete commented out code from UpdateZOrder()
5311
5312 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
5313
5314         * ThemeClearlooks.cs: Updated TrackBar drawing.
5315
5316 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
5317
5318         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
5319
5320 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
5321
5322         * FileDialog.cs: Add the Help button and the open readonly
5323           checkbox only if needed
5324
5325 2005-12-16  Jackson Harper  <jackson@ximian.com>
5326
5327         * Control.cs: Make sure we have an active menu before trying to
5328         process commands on it. Prevents menu-less forms from crashing
5329         when Alt is pressed.
5330         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
5331         Dieter Bremes.
5332         * RichTextBox.cs: Expand statement to help out gmcs and fix the
5333         2.0 build.
5334
5335 2005-12-16  Jackson Harper  <jackson@ximian.com>
5336
5337         * InternalWindowManager.cs: Don't translate tool windows screen
5338         coordinates. This fixes windows 'bouncing' around when being moved.
5339
5340 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
5341
5342         * TextBoxBase.cs:
5343           - MaxLength now treats 2^31-1 equal to unlimited length (this is
5344             not quite MS compatible, MS uses that number only for single line
5345             and 2^32-1 for multi-line, but I figure it won't hurt keeping
5346             the limit at 2GB)
5347           - Now enforcing the MaxLength limit when entering characters
5348           - Added argument to internal Paste() method to track if it's called
5349             from programatically or via keyboard, since keyboard driven pastes
5350             need to enforce max-length
5351           - Added logic to Paste to only paste as many chars as MaxLength 
5352             allows
5353         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
5354         * TextControl.cs:
5355           - Added Length property to return number of characters in document
5356           - Added private CharCount property which only tracks actual chars
5357             in the document (no linefeeds) and fires event when CharCount
5358             changes
5359           - Added tracking of character count to all methods that alter it
5360           - Added LengthChanged event to allow applications to subscribe
5361             to any changes to the document
5362
5363 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
5364
5365         * TextBox.cs: 
5366           - Removed local password_char field (moved to TextBoxBase)
5367           - Now setting the document's password var when password is
5368             set
5369         * TextBoxBase.cs:
5370           - Added password_char field (needed here so MultiLine can
5371             access it)
5372           - Added logic to MultiLine property setter to set the document's
5373             variable when password display is allowed
5374           - Removed debug code and made some debug code conditional
5375         * TextControl.cs:
5376           - Added RecalculatePasswordLine() method to handle special password
5377             char only lines
5378           - Added PasswordChar property, also added related tracking vars
5379           - Draw() method now uses local text var for grabbing text to draw,
5380             this var is set to line.text unless we're doing password display,
5381             then it is set to the pre-generated all-password-chars line
5382           - Added calling RecalculatePasswordLine() method for password lines
5383
5384 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
5385
5386         * Hwnd.cs: 
5387           - Added Reparented property to allow tracking of Window Manager
5388             reparenting actions (which affect X/Y calculations of toplevel 
5389             windows)
5390           - Made ToString() print window handles in hex
5391         * XplatUIX11.cs:
5392           - AddConfigureNotify(): Now uses reparented state off Hwnd to
5393             determine if X/Y needs offsetting
5394           - AddConfigureNotify(): Fixed offset calculations
5395           - Now adds ReparentNotify messages into the queue
5396           - Now processes ReparentNotify messages and causes a 
5397             WM_WINDOWPOSCHANGED message to be sent upstream if a window
5398             is reparented (as most likely it's X/Y coordinates are changed
5399             due to that)
5400
5401 2005-12-14  Jackson Harper  <jackson@ximian.com>
5402
5403         * XplatUIX11.cs: Tool windows still need to respek focus.
5404
5405 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
5406
5407         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
5408           have a working release
5409
5410 2005-12-13  Jackson Harper  <jackson@ximian.com>
5411
5412         * Form.cs: Update styles after setting the border style regardless
5413         of whether or not the window is using a window manager.
5414
5415 2005-12-13  Jackson Harper  <jackson@ximian.com>
5416
5417         * Form.cs: We now hook into an internal window manager instead of just an
5418         MDI subsystem, this is so we can have properly behaving tool windows.
5419         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
5420         * InternalWindowManager.cs: New internal class that acts as a
5421         window manager for tool windows and as a base for mdi windows.
5422         * MdiWindowManager.cs: New class that acts as a window manager for
5423         mdi windows.
5424
5425 2005-12-12  Jackson Harper  <jackson@ximian.com>
5426
5427         * Control.cs: Updates so we match behavoir for for implicit
5428         controls. Fixes explosions in MDI.
5429
5430 2005-12-12  Jackson Harper  <jackson@ximian.com>
5431
5432         * Control.cs: Implement Invalidate (Region).
5433
5434 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
5435
5436         * Control.cs: 
5437           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
5438             the same events as MS does. MS fires events for each property 
5439             except, for unknown reasons, Cursor, when the control is reparented. 
5440             I can't seem to totally match add/remove since MS also fires some 
5441             VisibleChanged events, which makes no sense. Consolidated the
5442             parenting code into a separate method so it can be called from
5443             both Add and Remove. set_Parent no longer needs any special logic
5444             as it calls the parent's add method which implicitly fires
5445             all events
5446           - Removed some obsolete code and debug output
5447           - Enabled state is inherited from parents, if this is enabled
5448
5449 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
5450
5451         * Form.cs: Removed commented out code
5452
5453 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
5454
5455         * Control.cs:
5456           - Added internal version of Invoke, with additional argument 
5457             indicating if we're calling it from a Dispose() handler. That
5458             way we can avoid BeginInvoke throwing an exception if we're
5459             calling for an already destroyed window.
5460           - Added a dispose argument to BeginInvokeInternal, and made the
5461             check if a valid window handle chain exists conditional on
5462             it not being a dispose call
5463           - Removed code in DestroyHandle to destroy our children. Since we
5464             now handle the WM_DESTROY message we will catch all our children
5465             being destroyed.
5466           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
5467         * Form.cs:
5468           - Added a field to track the application context of the form.
5469           - No need to set closing variable as response to WM_CLOSE, instead
5470             we destroy the window. We also call PostQuitMessage if the form
5471             has an application context (which makes it the main app form,
5472             which, when closed terminates the app)
5473         * XplatUI.cs:
5474           - Dropped Exit() method, it's naming was confusing
5475           - Added PostQuitMessage() which causes GetMessage to return false
5476             once the message queue is empty
5477         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
5478           PostQuitMessage()
5479         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
5480           no longer a valid XplatUI method, but left it in since it's used
5481           internally. Added empty PostQuitMessage() method.
5482         * MenuAPI.cs: Replaced call to Exit() with call to
5483           PostQuitMessage, even though this is probably no longer needed.
5484         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
5485         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
5486         * Application.cs:
5487           - Replaced call to XplatUI.Exit() with PostQuitMessage()
5488           - Removed old debug code that would call XplatUI for exception
5489             display, enabled standard exception handling (Still not enabled
5490             though, until NativeWindow's ExternalExceptionHandler define
5491             is removed
5492         * NativeWindow.cs:
5493           - Added internal method to allow control to update NativeWindow
5494             after a window has been destroyed
5495           - Added handling of already destroyed windows when calling i
5496             DestroyWindow
5497           - Added removal of handle from list on ReleaseHandle
5498         * XplatUIX11.cs:
5499           - Dropped GetMessageResult var and related code
5500           - Added PostQuitState to field to track if PostQuitMessage has been
5501             called
5502           - Dropped Exit() method
5503           - Added PostQuitMessage() method
5504           - GetMessage now will return false if PostQuitState is set and no
5505             more messages are in the queue.
5506           - Expose handler will no longer generate WM_PAINT messages if we are
5507             in PostQuitState since it's very likely any windows have already
5508             been destroyed, and since Hwnd won't get updated until we have
5509             processed the DestroyNotify we'd be causing X errors.
5510         
5511 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
5512
5513         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
5514           Thanks to Mike for pointing out the err of my ways.
5515
5516 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
5517
5518         * Control.cs(PreProcessMessage): Moved menu handling back, but
5519           after all other key handling, to match MS (who handles Menu in
5520           DefWndProc)
5521         * Menu.cs (WndProc): Removed my brainfart
5522
5523 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
5524
5525         * Control.cs(PreProcessMessage): Removed special menu handling 
5526         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
5527
5528 2005-12-07  Mike Kestner  <mkestner@novell.com>
5529
5530         * Control.cs : special case SYSKEYUP so that we can adjust keynav
5531         state according in tracker.
5532         * Menu.cs : promote tracker field to base class and provide a tracker
5533         lookup capability.  Add/Remove shortcuts dynamically if the top menu
5534         has a tracker. Unparent items that are removed from the collection.
5535         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
5536         * Theme*.cs: add always_show_hotkeys field to support configurability
5537         of mnemonic display.  win32 doesn't show mnemonics until Alt is
5538         pressed.
5539
5540 2005-12-07  Jackson Harper  <jackson@ximian.com>
5541
5542         * MdiChildContext.cs: Use Control.ResetCursor.
5543         * Control.cs: ResetCursor needs to set the property so that the
5544         correct XplatUI call gets made.
5545
5546 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
5547
5548         * Control.cs: More fixes to make our key events match MS. We
5549           were not setting the modifier state on KeyData, and we were
5550           not generating any events when Alt was pressed with a key
5551           since handling of WM_SYSxxx was missing for the OnKey methods.
5552
5553 2005-12-07  Jackson Harper  <jackson@ximian.com>
5554
5555         * MdiChildContext.cs: reenable the sizing code.
5556         - When the mouse leaves a window reset its cursor.
5557
5558 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
5559
5560         * ThemeClearlooks.cs: Reflect latest Hwnd changes
5561
5562 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
5563
5564         * Hwnd.cs: Now using the theme 3d bordersize to calculate
5565           widths of Fixed3D borders
5566
5567 2005-12-07  Jackson Harper  <jackson@ximian.com>
5568
5569         * MdiClient.cs: Fix warnings. Earn Mike's love.
5570
5571 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
5572
5573         * ThemeClearlooks.cs:
5574           - Adjusted mouse over button color
5575           - Added first parts of CheckBox drawing
5576           - Added correct color for selected text background
5577           - Fixed ComboBox drawing
5578           - Added CPDrawBorder3D and CPDrawBorder
5579
5580 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
5581
5582         * XplatUIX11.cs: Added call to XBell for AudibleAlert
5583
5584 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
5585
5586         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
5587           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
5588           alert users via sound. We could add an enum arg with different
5589           types of alerts in the future
5590
5591 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
5592
5593         * Control.cs: Fix behaviour problems pointed out by Mike
5594
5595 2005-12-05  Mike Kestner  <mkestner@novell.com>
5596
5597         * StatusBarPanel.cs: add Invalidate method and hook it into all the
5598         prop setters.  Calls parent.Refresh for now, but could be maybe be
5599         optimized with an internal method on StatusBar at some point.
5600         [Fixes #76513]
5601
5602 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
5603
5604         * RichTextBox.cs: Implemented get_SelectionColor
5605
5606 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
5607
5608         * ThemeClearlooks.cs:
5609           - Removed dead code
5610           - Draw black button border only if button is Form.AcceptButton
5611           - Draw correct button color for pressed RadioButton if the mouse 
5612             has entered the button
5613           - Updated ProgressBar drawing!
5614           - Updated CPDrawSizeGrip drawing
5615           - Updated StatusBarPanel drawing
5616
5617 2005-12-05  Mike Kestner  <mkestner@novell.com>
5618
5619         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
5620         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
5621
5622 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
5623
5624         * ThemeClearlooks.cs: Initial check-in, activate with
5625           export MONO_THEME=clearlooks
5626         * ThemeEngine.cs: Added ThemeClearlooks
5627
5628 2005-12-03  Mike Kestner  <mkestner@novell.com>
5629
5630         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
5631         [Fixes #76897]
5632
5633 2005-12-02  Jackson Harper  <jackson@ximian.com>
5634
5635         * Form.cs: If the child form has no menu the default main menu is
5636         used as the active menu.
5637
5638 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
5639
5640         * ListBox.cs: Check if any items exist before trying to resolve 
5641           coordinates into items
5642
5643 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
5644
5645         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
5646           as the second color for the background hatch
5647
5648 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
5649
5650         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
5651         * RichTextBox.cs: FormatText position arguments are 1-based, now making
5652           sure that what we pass to FormatText is always 1-based. Fixes #76885
5653
5654 2005-11-29  Miguel de Icaza  <miguel@novell.com>
5655
5656         * NumericUpDown.cs (EndInit): When we are done initializing,
5657         reflect any updates on the UI.
5658
5659 2005-12-02  Jackson Harper  <jackson@ximian.com>
5660
5661         * ImplicitHScrollBar.cs:
5662         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
5663         their container controls.
5664         * TreeView.cs: Use the new implicit scrollbars.
5665
5666 2005-12-02  Jackson Harper  <jackson@ximian.com>
5667
5668         * TreeView.cs: Make top_node internal so the TreeNodeCollections
5669         can play with it.
5670         * TreeNodeCollection.cs: If we remove the topnode we need to
5671         update topnode to the next node in line.
5672         - When clearing nodes go through the same process as removing
5673         them, so they get depareneted and checked if they are top node.
5674
5675 2005-12-01  Jackson Harper  <jackson@ximian.com>
5676
5677         * TreeView.cs: When imagelists are used the image area is
5678         selectable as well as the text.
5679         - If there are no selected nodes select the first one.
5680         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
5681         so don't do it more then we need to.
5682
5683 2005-12-01  Jackson Harper  <jackson@ximian.com>
5684
5685         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
5686         that arrows can be scaled.
5687
5688 2005-12-01  Jackson Harper  <jackson@ximian.com>
5689
5690         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
5691         fail. Patch by Dieter Bremes
5692
5693 2005-11-30  Jackson Harper  <jackson@ximian.com>
5694
5695         * Form.cs: Property is 2.0 only
5696         * PrintDialog.cs: Signature fix.
5697
5698 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
5699
5700         * TextControl.cs: 
5701           - No longer artificially moves text 2 pixels down (now that we have
5702             borders this is no longer needed)
5703           - Added calcs for left, hanging and right indent
5704
5705 2005-11-23  Mike Kestner  <mkestner@novell.com>
5706
5707         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
5708
5709 2005-11-30  Jackson Harper  <jackson@ximian.com>
5710
5711         * MdiChildContext.cs: Set the cloned menus forms, as these don't
5712         get cloned as part of CloneMenu ().
5713         * Menu.cs: Make sure the parent of the items get set correctly
5714         when they are added.  And the owners are notified of the changes.
5715         * Form.cs: Create an ActiveMenu property, so that when MDI is used
5716         we can change the menu being displayed/handled by the form without
5717         changing the menu assosciated with the form.
5718         - Don't let Mdi children draw/handle menus.
5719         
5720 2005-11-30  Jackson Harper  <jackson@ximian.com>
5721
5722         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
5723         a MenuChanged event. Just to make the API a little more
5724         consistent.
5725         * MainMenu.cs:
5726         * MenuItem.cs: Use the new OnMenuChanged
5727         * MdiChildContext.cs: Handle menu merging.
5728         * Form.cs: Implement MergedMenu.
5729         
5730 2005-11-30  Jackson Harper  <jackson@ximian.com>
5731
5732         * Menu.cs: We were misusing Add. Add goes behind the specified
5733         index according to the docs, and does not replace the specified
5734         index. So I added an Insert method.
5735
5736 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
5737
5738         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
5739           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
5740           is for Jackson
5741         * RichTextBox.cs: Added calls to base for DnD events
5742
5743 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
5744
5745         * TextControl.cs:
5746           - Fixed drag-selection related crash; style fixes
5747           - Implemented undo class
5748             o Implemented method to capture document state for specified
5749               range in document tree
5750             o Implemented method to restore captured document state
5751             o Implemented cursor tracking
5752             o Implemented basic undo stack
5753           - Added undo cursor tracking to methods altering cursor location
5754           - Added undo tracking to selection deletion (still missing
5755             other text-altering hookups)
5756         * RichTextBox.cs:
5757           - Added SelectionLength property
5758           - Implemented CanPaste()
5759           - Implemented Paste()
5760           - Added missing protected methods
5761           - Fixed RTF->Document conversion; now uses font index 0 and color 
5762             index 0 as the default font for the parsed text
5763           - Fixed RTF<->Document font size translation
5764           - Fixed RTF generation, now properly handles cross-tag boundaries
5765             for single line selection
5766           - No longer always appends blank line to generated RTF
5767           - Removed TODOs
5768           - Added missing attributes
5769           - Hooked up undo-related methods
5770         * TextBoxBase.cs:
5771           - Implemented Copy()
5772           - Implemented Paste()
5773           - Implemented Cut()
5774           - Fixed caret mis-behaviour on backspace across line-boundaries
5775
5776 2005-11-29  Jackson Harper  <jackson@ximian.com>
5777
5778         * MdiClient.cs: Add a method for activating mdi children. Very
5779         basic right now. I imagine someday it might need more girth.
5780         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
5781         children windows names are added to the menu item.
5782         * ThemeWin32Classic.cs: Draw the arrow if the item is an
5783         mdilist. This happens regardless of whether or not there are any
5784         mdi windows to see in the list, and according to my tests happens
5785         before the items are even added. Also happens if there isn't even
5786         an mdi client to get windows from.
5787
5788 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
5789
5790         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
5791         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
5792
5793 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
5794
5795         * DataGridTableStyle.cs:
5796           - Create always the styles for the missing columns even if they are
5797             provided by the user (not default table style)
5798         * DataGrid.cs:
5799           - Fixes bug 76770
5800           - Fixes SetDataBinding (always re-attach source)
5801           - Fixes SetNewDataSource (only clear styles if they are not for 
5802             this source)
5803          -  Expands OnTableStylesCollectionChanged to handle style refresh 
5804             and remove properly
5805
5806 2005-11-29  Jackson Harper  <jackson@ximian.com>
5807
5808         * FileDialog.cs: Implement missing bits, remove some dead
5809         code.
5810         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
5811         creation of the panel so that the options set on the dialog are
5812         seen when the panel is created.
5813         * TreeView.cs: raise a click when items are clicked.
5814         
5815 2005-11-29  Jackson Harper  <jackson@ximian.com>
5816
5817         * MdiClient.cs: Pass some signature methods through to base.
5818
5819 2005-11-28  Jackson Harper  <jackson@ximian.com>
5820
5821         * ListView.cs: Raise the click event when items are clicked.
5822
5823 2005-11-28  Jackson Harper  <jackson@ximian.com>
5824
5825         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
5826         a nullref.
5827
5828 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
5829
5830         * ThemeNice.cs: - Removed 1 pixel bitmaps
5831           - Use SmoothingMode.AntiAlias where it makes sense
5832             (ScrollButton arrow for example)
5833           - Enhanced Button focus drawing
5834           - Fixed ComboBox drawing (no artefacts anymore, focus
5835             rectangle is back again, reduced size of ComboButton, etc.)
5836           - Fixed RadioButton focus drawing for Appearence.Button
5837           - Slight ScrollButton redesign
5838           - Some LinearGradientBrush size fixes
5839           - GroupBoxes have now rounded edges
5840           - Fixed StatusBar drawing
5841
5842 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
5843
5844         * ThemeNice.cs: - Remove dead code
5845           - use correct background colors for menus, etc.
5846           - Fake pixel drawing with 1 pixel bitmaps
5847
5848 2005-11-24  Jackson Harper  <jackson@ximian.com>
5849
5850         * MdiClient.cs: Size the scrollbars when resizing the window.
5851         - Resize the maximized windows when the client is resized
5852         * Form.cs: Make the child context available
5853         
5854 2005-11-23  Jackson Harper  <jackson@ximian.com>
5855
5856         * MdiChildContext.cs: Don't size windows if they are maximized.
5857
5858 2005-11-23  Mike Kestner  <mkestner@novell.com>
5859
5860         * ContextMenu.cs: use MenuTracker.
5861         * Control.cs: remove menu handle usage.
5862         * Form.cs: remove menu handle usage.
5863         * Hwnd.cs: remove menu handle usage.
5864         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
5865         motion and clicks to the new Tracker handlers.
5866         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
5867         and handle usage.
5868         * MenuAPI.cs: refactored to combine popup and menubar event handling.
5869         Killed the MENU and MENUITEM data types and associated collections
5870         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
5871         MenuTracker class that exposes the leftovers from the old MenuAPI
5872         static methods. Restructured Capture handling so that only one grab is
5873         done for the entire menu hierarchy instead of handing off grabs to
5874         submenus. Tracker now has an invisible control to Capture when active.
5875         * MenuItem.cs: add sizing accessors, kill Create
5876         and handle usage.
5877         * Theme.cs: remove menu handle and MENU(ITEM) usage.
5878         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
5879         MENU(ITEM). remove menu handle usage, use Menu directly.
5880         * XplatUIDriver.cs: remove menu handle usage.
5881         * XplatUIOSX.cs: remove menu handle usage.
5882         * XplatUIWin32.cs: remove menu handle usage.
5883         * XplatUIX11.cs: remove menu handle usage.
5884
5885 2005-11-22  Jackson Harper  <jackson@ximian.com>
5886
5887         * Hwnd.cs: Don't compute the menu size for
5888         DefaultClientRectangle.
5889         - Reenable menu sizes being computed for GetClienRectangle.
5890         * Form.cs: Remove comment of trechery
5891         
5892 2005-11-22  Jackson Harper  <jackson@ximian.com>
5893
5894         * Hwnd.cs: The adjustments for the menu bar are made when it is
5895         attached to the form.
5896
5897 2005-11-19  Jackson Harper  <jackson@ximian.com>
5898
5899         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
5900         (just like on windows).
5901
5902 2005-11-19  Jackson Harper  <jackson@ximian.com>
5903
5904         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
5905         use real buttons anymore because they are in non client area. The
5906         one TODO here is that I need to somehow invalidate a section of
5907         the non client area.
5908
5909 2005-11-18  Jackson Harper  <jackson@ximian.com>
5910
5911         * Control.cs: Put the enum check back in now that MDI doesnt have
5912         to use this to set border styles.
5913         * Form.cs: Only set mdi child windows borders if the handle has
5914         been created.
5915         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
5916         this directly on to the driver.
5917         - Get the move start position before adjusting for the titlebar
5918         height, this fixes the windows "skipping" when they are first
5919         moved.
5920
5921 2005-11-18  Jackson Harper  <jackson@ximian.com>
5922
5923         * XplatUIX11.cs: Just compute the mdi borders separately as they
5924         don't totally match up with normal form borders.
5925
5926 2005-11-18  Jackson Harper  <jackson@ximian.com>
5927
5928         * Control.cs: Set WS_ styles for borders, so that the driver does
5929         not have to retrieve the control instance to figure out what kind
5930         of borders it should have.
5931         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
5932         driver can know its an mdi child easily.
5933         * XplatUIX11.cs: Get the border styles and whether the window is
5934         MDI from the Styles and ExStyles params instead of having to get a
5935         control. This prevents a chicken and egg problem.       
5936
5937 2005-11-18  Jackson Harper  <jackson@ximian.com>
5938
5939         * MdiClient.cs: Fix typo so scrollbars show up correctly.
5940
5941 2005-11-18  Jackson Harper  <jackson@ximian.com>
5942
5943         * MdiClient.cs: Calculate when to add and remove scrollbars
5944         correctly.
5945         * MdiChildContext.cs: Adjust the y position to take the titlebar
5946         into account.
5947         - No height for FormBorderStyle.None
5948
5949 2005-11-18  Jackson Harper  <jackson@ximian.com>
5950
5951         * Control.cs: Allow non enum values to be used for
5952         InternalBorderStyle.  MDI does this to set a special border style.
5953         - New utility methods for converting points to/from client coords
5954         - Add the newly created control to the Controls collection before
5955         updating its style. This way UpdateStyle can walk the control
5956         heirarchy to find the control if needed.
5957         so I don't need to create a new Point object all the time.
5958         * Form.cs: Let MDI windows handle their border styles.
5959         - Set styles on MDI windows so the correct title style is derived.
5960         * MdiChildContext.cs: Move all the painting and window handling
5961         into the non client area.
5962         - Use correct sizing and put correct buttons on frames based on
5963         the FormBorderStyle.
5964         - Notify the mdi client about scrolling
5965         - Need to handle the buttons ourselves now, because they are all
5966         in non client areas and we can't add controls there.
5967         * MdiClient.cs: Halfway to scrolling, this implementation is
5968         somewhat broken though, we need to check to make sure other
5969         windows aren't causing scrolling before removing the bars. Also
5970         the bars need to be drawn on top, maybe I can switch implicit
5971         controls to be on top.
5972         * Hwnd.cs: caption_height and tool_caption_height are now
5973         properties of an hwnd, this way they can be set by the driver
5974         based on the type of window they are.  In X11 the window manager
5975         handles the decorations so caption_height is zero unless its an
5976         MDI window.
5977         - Add 3 pixel borders for MDI windows (0xFFFF).
5978         - Get rid of some code duplication, have DefaultClientRectanle
5979         just call GetClientRectangle.
5980         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
5981         Hwnd now.
5982         - Set border styles differently for mdi windows.
5983         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
5984         Hwnd now.
5985         
5986 2005-11-15  Mike Kestner  <mkestner@novell.com>
5987
5988         * Menu.cs: when adding an item to the collection, if item is already 
5989         parented, remove it from the parent.
5990
5991 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
5992
5993         * X11DesktopColors.cs: Added KDE support
5994
5995 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
5996
5997         * XplatUIWin32.cs: 
5998           - Clipboard methods now can translate Rtf format
5999           - No longer removes clipboard contents whenever a new format is added
6000             to allow placing multiple formats on the clipboard
6001         * Clipboard.cs: Clipboard now supports getting a IDataObject and
6002           will place all formats contained in it onto the clipboard. Also
6003           now cleans the clipboard before placing a new object onto it
6004         * RichTextBox.cs:
6005           - Implemented set_Rtf
6006           - Implemented set_SelectedRtf
6007           - Created InsertRTFFromStream() method to allow single code base
6008             for all properties and methods that insert RTF into document
6009           - Removed debug output
6010         * TextControl.cs:
6011           - Fixed Delete(int) to fix up line numbers
6012           - Fixed ReplaceSelection to combine start and end line
6013           - Fixed serious DeleteChars bug that would leave the document tree
6014             broken
6015           - Improved DumpTree with several logic checks to detect broken
6016             document trees
6017           - Removed debug lines
6018           - Fixed Caret.WordForward/WordBack moving code, now always also 
6019             updates caret.tag (fixes crash when word-selecting across tag
6020             boundaries via keyboard)
6021           - Added Insert() method for inserting multiline text into documents
6022           - Fixed DeleteChars() calculation errors that would cause a broken
6023             tag chain with multiple tag lines
6024           - DeleteChars() no longer crashes on multi-tag lines if not all tags
6025           - Split() no longer moves caret if split is at caret location
6026           - ReplaceSelection() now updates the cursor and re-displays it
6027           - ReplaceSelection() now uses new Insert() method to avoid code
6028             duplication
6029           - FormatText() can now handle formatting partial lines
6030         * TextBoxBase.cs:
6031           - Append now uses new TextControl.Insert() method (this avoids 
6032             duplicate code)
6033           - Implemented Ctrl-X (Cut) (
6034           - Implemented Ctrl-C (Copy)
6035           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
6036             regeneration when pasting text; roundtripping Copy&Paste within
6037             edit control still fails due to some calculation bugs in GenerateRTF)
6038           - The Delete key will now remove the current selection if it is visible
6039         * TextBox.cs: Removed debug lines
6040         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
6041           driver to be initialized and can't therefore be done via a static ctor)
6042
6043 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
6044
6045         * TextControl.cs: Added backend code for finding char arrays and strings
6046         * TextBoxBase.cs:
6047           - Added mouse wheel scroll support
6048           - Added support for VScroll and HScroll events
6049         * RichTextBox.cs:
6050           - Implemented all seven Find() variants
6051           - Implemented GetCharFromPosition()
6052           - Implemented GetCharIndexFromPosition()
6053           - Implemented GetLineFromIndex()
6054           - Implemented GetPositionFromCharIndex();
6055           - Implemented SaveFile for PlainText and UnicodeText
6056           - Fixed set_Font, now setting a new font applies that font to
6057             the whole document
6058           - Implemented generic Document to RTF converter
6059           - Implemented SaveFile for RichText format (still missing unicode
6060             conversion for non-ansi chars)
6061           - Implemented get_Rtf
6062           - Implemented get_SelectedRtf
6063
6064 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
6065
6066         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
6067           to allow any captures to be released before triggering OnClick. This
6068           way a click handler may capture the mouse without interference.
6069         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
6070           This way we send them even though X may not allow a grab (if the window
6071           isn't visible, for example)
6072
6073 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
6074
6075         * DataGridViewRowEventArgs.cs: DataGridView implementation
6076         * DataGridViewElement.cs: DataGridView implementation
6077         * DataGridViewComboBoxCell.cs: DataGridView implementation
6078         * DataGridViewDataErrorContexts.cs: DataGridView implementation
6079         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
6080         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
6081         * ImageLayout.cs: DataGridView implementation
6082         * DataGridViewComboBoxColumn.cs: DataGridView implementation
6083         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
6084         * DataGridViewSelectionMode.cs: DataGridView implementation
6085         * IDataGridViewEditingControl.cs: DataGridView implementation
6086         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
6087         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
6088         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
6089         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
6090         * DataGridViewColumnSortMode.cs: DataGridView implementation
6091         * DataGridView.cs: DataGridView implementation
6092         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
6093         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
6094         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
6095         * Padding.cs: DataGridView implementation
6096         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
6097         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
6098         * DataGridViewRowEventHandler.cs: DataGridView implementation
6099         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
6100         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
6101         * DataGridViewButtonCell.cs: DataGridView implementation
6102         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
6103         * DataGridViewEditMode.cs: DataGridView implementation
6104         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
6105         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
6106         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
6107         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
6108         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
6109         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
6110         * DataGridViewCellEventHandler.cs: DataGridView implementation
6111         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
6112         * DataGridViewCellStyleConverter.cs: DataGridView implementation
6113         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
6114         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
6115         * DataGridViewColumnEventArgs.cs: DataGridView implementation
6116         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
6117         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
6118         * QuestionEventArgs.cs: DataGridView implementation
6119         * IDataGridViewEditingCell.cs: DataGridView implementation
6120         * DataGridViewTriState.cs: DataGridView implementation
6121         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
6122         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
6123         * DataGridViewColumnCollection.cs: DataGridView implementation
6124         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
6125         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
6126         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
6127         * DataGridViewColumn.cs: DataGridView implementation
6128         * DataGridViewCellBorderStyle.cs: DataGridView implementation
6129         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
6130         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
6131         * DataGridViewRow.cs: DataGridView implementation
6132         * DataGridViewImageCellLayout.cs: DataGridView implementation
6133         * DataGridViewImageCell.cs: DataGridView implementation
6134         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
6135         * DataGridViewCheckBoxCell.cs: DataGridView implementation
6136         * DataGridViewHeaderCell.cs: DataGridView implementation
6137         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
6138         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
6139         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
6140         * DataGridViewTextBoxColumn.cs: DataGridView implementation
6141         * QuestionEventHandler.cs: DataGridView implementation
6142         * DataGridViewCellStyleScopes.cs: DataGridView implementation
6143         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
6144         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
6145         * DataGridViewCell.cs: DataGridView implementation
6146         * DataGridViewCellEventArgs.cs: DataGridView implementation
6147         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
6148         * DataGridViewCellStyle.cs: DataGridView implementation
6149         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
6150         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
6151         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
6152         * TextFormatFlags.cs: DataGridView implementation
6153         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
6154         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
6155         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
6156         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
6157         * DataGridViewButtonColumn.cs: DataGridView implementation
6158         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
6159         * HandledMouseEventArgs.cs: DataGridView implementation
6160         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
6161         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
6162         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
6163         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
6164         * DataGridViewRowCollection.cs: DataGridView implementation
6165         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
6166         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
6167         * DataGridViewHitTestType.cs: DataGridView implementation
6168         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
6169         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
6170         * DataGridViewColumnEventHandler.cs: DataGridView implementation
6171         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
6172         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
6173         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
6174         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
6175         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
6176         * DataGridViewContentAlignment.cs: DataGridView implementation
6177         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
6178         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
6179         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
6180         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
6181         * DataGridViewPaintParts.cs: DataGridView implementation
6182         * DataGridViewCellCollection.cs: DataGridView implementation
6183         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
6184         * DataGridViewImageColumn.cs: DataGridView implementation
6185         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
6186         * DataGridViewElementStates.cs: DataGridView implementation
6187         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
6188         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
6189         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
6190         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
6191         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
6192         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
6193         * DataGridViewRowHeaderCell.cs: DataGridView implementation
6194         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
6195         * DataGridViewTextBoxCell.cs: DataGridView implementation
6196         * DataGridViewBand.cs: DataGridView implementation
6197         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
6198         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
6199         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
6200         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
6201         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
6202         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
6203         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
6204         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
6205         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
6206         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
6207         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
6208
6209 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
6210
6211         * ThemeWin32Classic.cs: 
6212           - Draw the outside focus rectangle around buttons
6213           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
6214             doesn't use end caps for every dash of a line anymore. This
6215             workaround ignores the forecolor.
6216
6217 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
6218
6219         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
6220           endian safe.
6221
6222 2005-11-07  Jackson Harper  <jackson@ximian.com>
6223
6224         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
6225
6226 2005-11-07  Jackson Harper  <jackson@ximian.com>
6227
6228         * ScrollableControl.cs: Calculate the maximum and change vars
6229         (more) correctly so that scrollbars appear as a sensible size.
6230
6231 2005-11-04  Jackson Harper  <jackson@ximian.com>
6232
6233         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
6234         collection.
6235         * TreeView.cs: When the tree is sorted null out the top_node so
6236         that it is recalculated.
6237         - Use dotted lines instead of dashed lines to match MS better.
6238
6239 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
6240
6241         * ListView.cs: 
6242           - Implements key search for items. Useful when browsing files with FileDialog
6243           - When changing view mode or when clear the items reset scrollbar positions
6244
6245 2005-11-04  Jackson Harper  <jackson@ximian.com>
6246
6247         * CurrencyManager.cs: Implement the MetaDataChanged event, the
6248         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
6249         as to what the method may do as there is no real way of creating a
6250         derived CurrencyManager and calling the method. 
6251
6252 2005-11-03  Jackson Harper  <jackson@ximian.com>
6253
6254         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
6255         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
6256         method which seems to just be used internally to refresh the tabs.
6257
6258 2005-11-03  Jackson Harper  <jackson@ximian.com>
6259
6260         * TabControl.cs: Implement the remove method. Fix some broken
6261         comments.
6262
6263 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
6264
6265         * DateTimePicker.cs:
6266           - Added missing DateTimePickerAccessibleObject class
6267           - Added missing events
6268           - Added OnFontChanged method
6269         * Form.cs: Added missing attributes
6270         * TreeView.cs: Added missing attributes
6271
6272 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
6273
6274         * GridItemCollection.cs: Fix signatures
6275
6276 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
6277
6278         * XplatUI.cs: Updated build rev/date
6279         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
6280           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
6281         * Application.cs: Trigger context-specific ExitThread events
6282
6283 2005-11-03  Jackson Harper  <jackson@ximian.com>
6284
6285         * Menu.cs:
6286         * MainMenu.cs:
6287         * GridTableStylesCollection.cs:
6288         * Timer.cs:
6289         * TabPage.cs:
6290         * HelpProvider.cs:
6291         * StatusBar.cs:
6292         * MonthCalendar.cs: Signature fixes
6293
6294 2005-11-03  Jackson Harper  <jackson@ximian.com>
6295
6296         * TreeNodeCollection.cs: Remove should not be virtual.
6297         * TreeView.cs: Implement the last of the missing methods.
6298
6299 2005-11-03  Jackson Harper  <jackson@ximian.com>
6300
6301         * TreeNodeConverter.cs: Implement to get off my class-status back.
6302
6303 2005-11-03  Jackson Harper  <jackson@ximian.com>
6304
6305         * TreeView.cs: Hookup the bits for drag and drop.
6306         * TreeNode.cs: Don't cache the tree_view or index anymore, now
6307         that nodes can be moved from tree to tree easily this just causes
6308         all sorts of problems.
6309         * TreeNodeCollection: Don't need to give treenodes an index and
6310         treeview anymore when they are added, these are computed on the
6311         fly. Also make sure to remove a node before its added.
6312
6313 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
6314
6315         * TextControl.cs:
6316           - Added CaretSelection enum
6317           - Added comparison methods to Marker struct, makes selection code
6318             more readable
6319           - Added SelectionStart and SelectionEnd as 'moveable' location for
6320             the CaretDirection enum and handler
6321           - Added selection_prev variable to track optimized invalidation for
6322             word and line selection
6323           - Added SelectionVisible property (returns true if there is a valid 
6324             selection)
6325           - Switched CaretHasFocus to only display the caret if there is no
6326             visible selection
6327           - Avoiding StringBuilder.ToString to retrieve a single char, instead
6328             using the direct character index; should be much faster
6329           - Added various conditional debug statements
6330           - Fixed invalidation calculation for selection ranges
6331           - Added ExpandSelection() method to support word and line selection
6332           - Switched SetSelectionToCaret to use new Marker compare overloads
6333           - Added central IsWordSeparator() method to determine word 
6334             separators/whitespace and FindWordSeparator() to streamline common
6335             usage of IsWordSeparator()
6336         * TextBoxBase.cs:
6337           - Removed unneeded grabbed variable, it was just mirroring
6338             Control.Capture
6339           - No longer firing OnTextChanged event when Text setter is called,
6340             since the base will fire the event for us
6341           - Added handling of Ctrl-Up/Down selection
6342           - Added handling of Shift-Cursorkey selection
6343           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
6344             words
6345           - Added handling of Shift and Ctrl-Shift-Home/End selection
6346           - Removed some debug output
6347           - Added handling for single/double/tripple-click to place caret/
6348             select word/select line respectively (Fixes bug #76031)
6349           - Added support for drag expansion of word/line selection
6350         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
6351           current selection
6352
6353 2005-11-02  Jackson Harper  <jackson@ximian.com>
6354
6355         * X11Dnd.cs: If the drag is going to and from a MWF window just
6356         copy the data instead of sending it out through the X Selection
6357         mechanism.
6358
6359 2005-11-02  Jackson Harper  <jackson@ximian.com>
6360
6361         * X11Dnd.cs:
6362         * XplatUIX11.cs: When in a drag we don't want motion notify
6363         messages to get passed on to the other controls. This prevents
6364         mouse move messages from showing up in the drag source.
6365
6366 2005-11-02  Jackson Harper  <jackson@ximian.com>
6367
6368         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
6369         the correct button is release to end a drag.
6370         * XplatUIX11.cs: Make the button state internal so the drag system
6371         can access it.  Dragging needs to know about all button releases,
6372         not just left button.
6373
6374 2005-11-02  Miguel de Icaza  <miguel@novell.com>
6375
6376         * Form.cs (Icon): If the icon is null, reset the icon to the
6377         default value. 
6378
6379         * Cursor.cs: When writing the AND-mask bitmap do not include the
6380         number of colors, but hardcode those to two (black and white),
6381         fixes the loading of color cursors (Paint Dot Net).
6382
6383         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
6384         turn off autoscaling.
6385
6386         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
6387
6388 2005-11-02  Jackson Harper  <jackson@ximian.com>
6389
6390         * X11Dnd.cs: Make sure to send a status message if the pointer
6391         enters a control that can not accept a drop, otherwise the cursor
6392         isn't updated correctly. Also tried to compress the lines of code
6393         a bit.
6394
6395 2005-11-02  Jackson Harper  <jackson@ximian.com>
6396
6397         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
6398         set actions correctly.  This isn't perfect as XDND and win32 have
6399         some differences on how you allow actions. I'll clear this up by
6400         adding a path for drag from MWF to MWF windows.
6401         * XplatUIX11.cs: Hook into the dnd system.
6402
6403 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
6404
6405         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
6406         previously shown but they are no longer need it. Very obvious when 
6407         browsing files with FileDialog.
6408
6409 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
6410
6411         * Control.cs: We always need to call OnPaintBackground. We pretty much
6412           ignore AllPaintingInWmPaint and always do the painting there, whether 
6413           it's set or not, since we always ignore the WM_ERASEBKGND message 
6414           (which we don't generate on X11). This fixes #76616.
6415         * Panel.cs: Removed unneeded background painting. This happens properly
6416           in Control.cs already
6417
6418 2005-10-31  Mike Kestner  <mkestner@novell.com>
6419
6420         * Menu.cs: Add items to collection before setting their index.
6421         * MenuItem.cs : add range checking with ArgumentException like MS.
6422         [Fixes #76510]
6423
6424 2005-10-31  Jackson Harper  <jackson@ximian.com>
6425
6426         * ListBox.cs: Invalidate if the area is visible at all not just
6427         contained in the visible rect. Fixes unselection of semi visible
6428         items.
6429
6430 2005-10-31  Jackson Harper  <jackson@ximian.com>
6431
6432         * Control.cs: Consistently name the dnd methods. Make them
6433         internal so we can override them to match some MS behavoir
6434         internally.
6435         * Win32DnD.cs: Use the new consistent names.
6436
6437 2005-10-31  Jackson Harper  <jackson@ximian.com>
6438
6439         * TreeView.cs: Don't draw the selected node when we lose focus.
6440
6441 2005-10-31  Jackson Harper  <jackson@ximian.com>
6442
6443         * X11Dnd.cs: We still need to reset the state even though a full
6444         reset isn't being done, otherwise status's still get sent all over
6445         the place.
6446
6447 2005-10-31  Jackson Harper  <jackson@ximian.com>
6448
6449         * Control.cs: Make the dnd_aware flag internal so the dnd
6450         subsystem can check it. Catch exceptions thrown in dnd handlers to
6451         match MS behavoir.
6452         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
6453         * X11Dnd.cs: Handle null data in the converters. Set the XDND
6454         version when sending a XdndEnter. Use the control/hwnd dnd_aware
6455         flags to reduce the number of dnd enters/status's sent.
6456
6457 2005-10-31  Jackson Harper  <jackson@ximian.com>
6458
6459         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
6460
6461 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
6462
6463         * PictureBox.cs: Fixes 76512
6464
6465 2005-10-28  Jackson Harper  <jackson@ximian.com>
6466
6467         * X11Dnd.cs: Early implementation to support winforms being a drag
6468         source for data on X11. Also restructured the converters so they
6469         can go both ways now.
6470         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
6471         
6472 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
6473
6474         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
6475           clipboard requests
6476
6477 2005-10-27  Jackson Harper  <jackson@ximian.com>
6478
6479         * TreeNode.cs: Implement serialization so my DnD examples will work.
6480
6481 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
6482
6483         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
6484           TreeView.cs: Don't dispose objects that are not owned.
6485           
6486 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
6487
6488         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
6489           should retrieve the current cursor and report that, but XplatUI
6490           doesn't (yet) have an interface for that (and I'm not sure I even
6491           can, on X11)
6492         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
6493           until any message loop processing is done (and the WM_SETCURSOR
6494           replaces the cursor to the proper one)
6495         * XplatUIX11.cs: 
6496           - Fixed override behaviour, we can't set the cursor globally on X11, 
6497             just for our windows.
6498           - Invalidating the System.Drawing X11 display handle when we are
6499             shutting down
6500         * Control.cs: Fix to make csc happy
6501
6502 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
6503
6504         * TextBoxBase.cs: 
6505           - get_Text: Add last line (without trailing newline) to returned
6506             value (Fixes 76212)
6507           - get_TextLength: Count last line in returned length
6508           - ToString: Call Text property instead of duplicating code
6509
6510 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
6511
6512         * ImageList.cs: Dispose ImageAttributes objects.
6513
6514 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
6515
6516         * ImageList.cs: Use attribute constructors with less arguments where
6517           possible.
6518
6519 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
6520
6521         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
6522           Use typeof instead of strings when assembly is referenced. Added
6523           some more comments.
6524
6525 2005-10-21  Jackson Harper  <jackson@ximian.com>
6526
6527         * ListView.cs: Raise a double click event. Also tried to somewhat
6528         fix when the selectedindexchanged event is raised. Its still
6529         broken though.
6530
6531 2005-10-21  Jackson Harper  <jackson@ximian.com>
6532
6533         * TreeView.cs: New method to invalidate the plus minus area of a
6534         node without invalidating the whole node (maybe this can be used
6535         in some more places).
6536         * TreeNodeCollection.cs: When adding to an empty node we need to
6537         invalidate its plus minus area so the little block shows up.
6538         
6539 2005-10-21  Jackson Harper  <jackson@ximian.com>
6540
6541         * TreeView.cs: Make sure that when we invalidate a node the bounds
6542         are big enough to cover the selected box and the focus
6543         rectangle. Use a different colour for the lines connecting nodes
6544         so they show up with all themes.
6545
6546 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
6547
6548         * NativeWindow.cs: Don't call anything that could call into the driver,
6549           we might be on a different thread.
6550
6551 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
6552
6553         * Control.cs(Dispose): Since Dispose might run on a different thread,
6554           make sure that we call methods that could call into the driver via
6555           invoke, to avoid thread issues
6556
6557 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
6558
6559         * XplatUI.cs: Removed finalizer
6560         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
6561           not allowing to be called on the finalizer thread.
6562
6563 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
6564
6565         * ImageList.cs:
6566           - Reverted r51889 and r51891.
6567           - Added ImageListItem class that stores unmodified image items and image
6568             properties required to create list images until handle is created.
6569           - Added AddItem and moved image creation logic to AddItemInternal.
6570           - Added CreateHandle method that creates images based on unmodified items.
6571           - Added DestroyHandle that changes state to store unmodified items.
6572           - Add and AddStrip methods no more create handle.
6573           - ReduceColorDepth has no return value.
6574           - Dispose destroys handle.
6575           - Modified other methods to reflect the above changes.
6576           - Implemented key support.
6577           - Added profile 2.0 members and attributes.
6578           - Added private Reset and ShouldSerialize methods that provide the same
6579             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
6580             them as they are private.
6581           - Added some more comments about implementation details.
6582
6583 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
6584
6585         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
6586
6587 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
6588
6589         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
6590
6591 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
6592
6593         * DataGridDrawingLogic.cs: Fixes column hit calcultation
6594         * DataGridColumnStyle.cs: Remove debug message
6595
6596 2005-10-20  Jackson Harper  <jackson@ximian.com>
6597
6598         * TreeView.cs: We can always get input keys regardless of whether
6599         or not editing is enabled. They are used for navigation.
6600
6601 2005-10-20  Jackson Harper  <jackson@ximian.com>
6602
6603         * TreeNode.cs: Use the viewport rect for determining if a node
6604         needs to be moved for visibility. Don't use Begin/End edit. This
6605         calls a full refresh when its done.
6606         * TreeView.cs: New SetBottom works correctly.  Make the viewport
6607         rect property internal so the treenodes can see it. When clicking
6608         on a node we need to ensure that its visible because it might just
6609         be partly visible when clicked.
6610
6611 2005-10-20  Jackson Harper  <jackson@ximian.com>
6612
6613         * TreeNodeCollection.cs: Remove debug code.
6614
6615 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
6616
6617         * Datagrid.cs: Implements column sorting in Datagrid
6618         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
6619
6620 2005-10-20  Jackson Harper  <jackson@ximian.com>
6621
6622         * TreeNodeCollection.cs: Remove items properly. Update the correct
6623         area after removing them.
6624
6625 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
6626
6627         * Datagrid.cs: Should not call base.OnPaintBackground
6628
6629 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
6630
6631         * XplatUIX11.cs (GetMessage):
6632           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
6633             window instead of client window
6634           - Now properly calculates NC_xBUTTONUP message coordinates
6635           - ScreenToMenu now properly calculates it's coordinates of whole 
6636             window, since menus are in the whole window, not in the client
6637             window
6638           - Added WholeToScreen coordinate translation method
6639
6640 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
6641
6642         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
6643           want to return a message, loop back to the beginning of the function
6644           and grab the next real message to process instead.
6645
6646 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
6647
6648         * Splitter.cs: Properly set limits if no filler control is used
6649
6650 2005-10-19  Jackson Harper  <jackson@ximian.com>
6651
6652         * ColorDialog.cs: Don't show the help button if it is not enabled
6653         instead of disabling it (this is what MS does). Don't create the
6654         panel until the dialog is run, otherwise the vars (such as
6655         ShowHelp) are not set yet.
6656
6657 2005-10-19  Jackson Harper  <jackson@ximian.com>
6658
6659         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
6660         are reduced when adding nodes.
6661         * TreeNode.cs:
6662         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
6663         tree.
6664         
6665 2005-10-19  Jackson Harper  <jackson@ximian.com>
6666
6667         * FolderBrowserDialog.cs: End editing our treeview so the window
6668         actually gets refreshed.
6669
6670 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
6671
6672         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
6673           Obsoleted handling of WM_ERASEBKGND, now always draws our background
6674           inside of WM_PAINT
6675
6676 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
6677
6678         * MenuAPI.cs: Returns after Hidding window
6679         * XplatUIX11.cs: Added TODO found while debugging menu issues
6680
6681 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
6682
6683         * XplatUIX11.cs: Do not re-map the whole window when it's size
6684           becomes non-zero unless it's supposed to be actually visible
6685
6686 2005-10-18  Jackson Harper  <jackson@ximian.com>
6687
6688         * TreeView.cs: We don't need to keep a count anymore.
6689         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
6690         use the Grow method.
6691
6692 2005-10-18  Jackson Harper  <jackson@ximian.com>
6693
6694         * TreeNodeCollection.cs: Insert is not supported on arrays, so
6695         implement it manually here.
6696
6697 2005-10-18  Jackson Harper  <jackson@ximian.com>
6698
6699         * ImageList.cs: Dont kill the list when the colour depth is
6700         changed, just change the colour depth of all the images.
6701         - Same goes for setting the image size. Just resize them all
6702         instead of killing the list softly.
6703
6704 2005-10-18  Jackson Harper  <jackson@ximian.com>
6705
6706         * Control.cs: Don't invalidate empty rectangles.
6707
6708 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
6709
6710         * ListViewItem.cs:
6711           - Adds checked item to the Checked/Item lists (where empty before)
6712           - Do not add items to the Selected lists if they are already present
6713         * ListView.cs:
6714           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
6715           - When deleting items make sure that we delete them for the Selected
6716           and Checked list also.
6717
6718 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
6719
6720         * Label.cs: Dispose objects no longer used
6721         * ThemeWin32Classic.cs: Dispose objects no longer used
6722
6723 2005-10-18  Jackson Harper  <jackson@ximian.com>
6724
6725         * TabControl.cs: Don't refresh the whole control when the tabs are
6726         scrolled, we just need to refresh the tab area.
6727
6728 2005-10-17  Jackson Harper  <jackson@ximian.com>
6729
6730         * XplatUIX11.cs: Compress code a little bit. Only calculate the
6731         after handle when we need it.
6732
6733 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
6734
6735         * Control.cs: When the parent size changes, recalculate anchor 
6736           positions. Partial fix for #76462
6737
6738 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
6739
6740         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
6741           drawn. Fixes #76462
6742
6743 2005-10-17  Jackson Harper  <jackson@ximian.com>
6744
6745         * MonthCalendar.cs: Don't create the numeric up down until our
6746         handle is created. Otherwise our handle is created in the
6747         constructor and we don't know if we are a WS_CHILD or WS_POPUP
6748         yet.
6749
6750 2005-10-17  Jackson Harper  <jackson@ximian.com>
6751
6752         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
6753         correctly.
6754
6755 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
6756         * TreeNode.cs : small logical fix (was using local var instead of field)
6757         
6758 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
6759
6760         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
6761
6762 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
6763
6764         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
6765
6766 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
6767
6768         * Control.cs: 
6769           - Re-implemented anchoring code. My first version was really broken.
6770             This fixes bug #76033. Unlike the previous implementation we will
6771             no longer have round errors since all numbers are calculated from
6772             scratch every time. Removed various anchor-related obsolete vars.
6773           - InitLayout no longer causes layout event firing and layout to be 
6774             performed
6775
6776 2005-10-16  Jackson Harper  <jackson@ximian.com>
6777
6778         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
6779         which was broken).
6780
6781 2005-10-16  Jackson Harper  <jackson@ximian.com>
6782
6783         * TabControl.cs: Remove debug code.
6784
6785 2005-10-16  Jackson Harper  <jackson@ximian.com>
6786
6787         * XEventQueue.cs: Increase the default queue size (very simple
6788         apps needed to grow the queue).
6789         * Hwnd.cs: No finalizer so we don't need to suppress
6790         finalization. Compute the invalid area manually so a new rectangle
6791         does not newto be created.
6792         * ScrollableControl.cs: Don't set any params (otherwise visibility
6793         isn't set correctly).
6794         * MdiChildContext.cs: New constructor takes the mdi parent so it
6795         doesn't have to be computed and avoids a crash on windows. Draw
6796         the window icon properly, and allow the text to be seen.
6797         * Form.cs: Use new MdiChildContext constructor. Make sure the
6798         child context isn't null in wndproc.
6799         * TabControl.cs: Don't set focus, this is muddling keyboard
6800         behavoir. Expand the tab rows when a window size increase will
6801         allow extra tabs to be seen. Don't allow tabs smaller than the
6802         width of a window to be scrolled out of view.
6803         * TreeNode.cs:
6804         * TreeView.cs: Use measure string to calculate a nodes width, the
6805         width is cached and only updated when the text or the font is
6806         changed. Don't check for expand/collapse clicks on the first level
6807         nodes if root lines are disabled.
6808         
6809 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
6810
6811         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
6812
6813 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
6814
6815         * DataGridBoolColumn.cs: fixes warning
6816
6817 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
6818
6819         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
6820         to match more to match more precisely the MS Net behavior
6821
6822 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
6823
6824         * Hwnd.cs: Added field to track if window is mapped
6825         * XplatUIX11.cs: 
6826           - Unmap windows if they become 0-size, re-map when 
6827             they are >0 again; fixes #76035
6828           - Re-set our error handler after initializing X11Desktop
6829             to override any error handlers Gtk or whatever was called
6830             may have set.
6831
6832 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
6833
6834         * CheckedListBox.cs: Removed unused vars
6835         * ListView.cs: Fixed signatures
6836         * RichTextBox.cs: Removed unused vars
6837         * TextBoxBase.cs: Removed unused vars
6838         * XplatUIWin32.cs: Removed unused vars
6839         * XplatUIX11.cs: Removed unused vars
6840         * XplatUI.cs: Updated version and date to latest published
6841
6842 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
6843
6844         * Cursor.cs: Added private .ctor to work around a bug in
6845           resourceset (Thanks to Geoff Norton for the help on this)
6846         * SplitterEventArgs.cs: Made fields accessible so we don't
6847           waste boatloads of objects and can reuse the same one
6848           in Splitter
6849         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
6850           any captions and borders when generating screen coordinates
6851         * Splitter.cs: Reimplemented control, now fully complete, uses
6852           rubberband drawing, supports and obeys all properties, has
6853           proper cursors
6854
6855 2005-10-13  Miguel de Icaza  <miguel@novell.com>
6856
6857         * Form.cs (Form): Setup default values for autoscale and
6858         autoscale_base_size;  Make these instance variables, not static
6859         variables. 
6860
6861         (OnLoad): on the first load, adjust the size of the form.
6862
6863 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
6864
6865         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
6866           width argument to DrawReversibleRectangle()
6867         * XplatUIWin32.cs, XplatUIX11.cs: 
6868           - Implemented width for DrawReversibleRectangle()
6869           - Added logic to DrawReversibleRectangle that recognizes a zero
6870             width or height and only draws a line in that situation
6871         
6872 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
6873
6874         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
6875         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
6876         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
6877           method (it uses our FosterParent window to get a graphics context)
6878
6879 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
6880
6881         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
6882           and SetWindowBackground methods
6883         * Control.cs:
6884           - Setting proper ControlStyles
6885           - We no longer call XplatUI.SetWindowBackground and XplatUI.
6886             EraseWindowBackground, instead we draw the window background
6887             ourselves in PaintControlBackground. This behaviour is
6888             required to match MS, where, when OnPaintBackground is not
6889             called, the background is not drawn.
6890           - Removed unneeded Refresh() in set_Text
6891         * Hwnd.cs: Dropped the ErasePending support. No longer needed
6892         * XplatUIX11.cs:
6893           - Created DeriveStyles method to translate from CreateParams to
6894             FormBorderStyle and TitleStyle, also handles BorderStyle (which
6895             matches FormBorderStyle enum values)
6896           - Consolidated SetHwndStyles and CalculateWindowRect border/title
6897             style calculations into single DeriveStyles method
6898           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
6899             from redrawing the whole window on any resize or expose.
6900           - Fixed CreateWindow usage of SetWindowValuemask. Before not
6901             all styles were applied to our whole/client window appropriately
6902           - Removed EraseWindowBackground() and SetWindowBackground() methods
6903           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
6904             no longer clear/redraw the background through X
6905           - Removed handling of erase_pending bit, we have no use for it (or
6906             so it seems)
6907         * XplatUIOSX.cs:
6908           - Removed generation and handling of WM_ERASEBKGND message
6909           - Removed EraseWindowBackground() and SetWindowBackground() methods
6910           - Removed handling of hwnd.ErasePending flag
6911         * XplatUIWin32.cs:
6912           - Removed EraseWindowBackground() and SetWindowBackground() methods
6913           - We no longer call EraseWindowBackground on PaintEventStart, we 
6914             ignore the fErase flag, erasing is handled in Control in the
6915             background handler
6916         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
6917           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
6918           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
6919           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
6920           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
6921           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
6922           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
6923
6924 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
6925
6926         * PropertyGrids.cs: Get sub properties
6927         * PropertyGridView.cs: Fix drawing code
6928
6929 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
6930
6931         * ListBox.cs: Fixes 76383
6932
6933 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
6934
6935         * DataGridTextBoxColumn.cs: Sets location and size before attachment
6936         * ThemeWin32Classic.cs: Fixes border drawing and calculations
6937         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
6938
6939
6940 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
6941
6942         * ComboBox.cs: Fixes border drawing
6943
6944 2005-10-10  Miguel de Icaza  <miguel@novell.com>
6945
6946         * MimeIcon.cs: Ignore errors if the file can not be read.
6947
6948 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
6949
6950         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
6951          - Fixed border calculations
6952          - Fixed horizontal scrolling in single column listboxes
6953          - Fixed drawing issues
6954
6955 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
6956
6957         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
6958           FormBorderStyle enum
6959         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
6960           code to determine FormBorderStyles from CreateParams
6961         * Form.cs:
6962           - Fixed bug where we'd set the wrong window styles if we were
6963             not creating an MDI window
6964           - Added call to XplatUI.SetBorderStyle when form borders are set
6965         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
6966         * Hwnd.cs:
6967           - Removed obsolete edge style
6968           - Switched from BorderStyle to FormBorderStyle
6969         
6970 2005-10-10  Jackson Harper  <jackson@ximian.com>
6971
6972         * Form.cs: Use the property to get the window handle instead of
6973         accessing it directly. Prevents a null reference exception.
6974
6975 2005-10-10  Jackson Harper  <jackson@ximian.com>
6976
6977         * TreeView.cs: Don't adjust the rect given to DrawString now that
6978         our libgdiplus draws correctly.
6979
6980 2005-10-08  Jackson Harper  <jackson@ximian.com>
6981
6982         * TreeView.cs: Don't try to find the clicked on node if there are
6983         no nodes in the tree.
6984
6985 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
6986
6987         * RichTextBox.cs:
6988
6989           restore
6990
6991 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
6992
6993         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
6994           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
6995           ErrorProvider.cs:
6996           Use ResPool for brushes and dispose System.Drawing objects that
6997           are not used anymore.
6998
6999 2005-10-07  Jackson Harper  <jackson@ximian.com>
7000
7001         * MdiChildContext.cs: Use the new borders instead of drawing them
7002         ourselves.
7003
7004 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
7005
7006         * Calling UpdateBounds after changing the window's BorderStyle 
7007         since the style can change the ClientSize
7008
7009 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
7010
7011         * Control.cs: Made PaintControlBackground virtual
7012         * Panel.cs: Overriding PaintControlBackground instead of using paint
7013           event; paint event method was interfering with 'real' users of the
7014           event.
7015
7016 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
7017
7018         * ThemeWin32Classic.cs: remove border drawing since it is handled
7019         by the base control class now and was causing double border drawing.
7020
7021 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
7022
7023         * Panel.cs: Redraw our background on paint. Not a pretty solution,
7024           but it does seem to match MS behaviour. This fixes bug #75324
7025
7026 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
7027
7028         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
7029           somewhat hackish looking
7030
7031 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
7032
7033         * TextBoxBase.cs:
7034           - We now accept Enter even if AcceptEnter is false, if the containing
7035             form does not have an AcceptButton configured (fixes bug #76355)
7036           - Calculations are now fixed to no longer use Width/Height, but
7037             ClientSize.Width/Height, since we now support borders (this was
7038             a result of fixing borders and therefore bug #76166)
7039           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
7040             true (fixes bug #76354)
7041         
7042 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
7043
7044         * Control.cs: 
7045           - Defaulting BorderStyle and setting it in XplatUI when our window 
7046             is created
7047           - Added enum check to InternalBorderStyle setter
7048         * XplatUIX11.cs: 
7049           - Added drawing of window borders
7050           - Now properly calculates WM decorations offset for toplevel 
7051             windows (fixes bug #74763)
7052         * XplatUIWin32.cs: 
7053           - Implemented BorderStyles for windows (we're letting win32 draw 
7054             the border for us)
7055           - Fixed the signature for SetWindowLong
7056         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
7057           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
7058           setting borders
7059         * UpDownBase.cs: Remove drawing of borders, this is handled by
7060           the driver, outside the client area
7061         * ListView.cs: Removed bogus border calculations. The control should
7062           be oblivious to borders, since those are not part of the client
7063           area. 
7064         * X11DesktopColors.cs: Commented out (currently) unneeded variables
7065         * ThemeWin32Classic.cs: Removed border calculations from ListView 
7066           drawing code
7067
7068 2005-10-06  Jackson Harper  <jackson@ximian.com>
7069
7070         * MdiChildContext.cs: Clear out the old virtual position remove
7071         all the unneeded calls to CreateGraphics.
7072
7073 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
7074
7075         * TextControl.cs: Use proper color for highlighted text; fixes #76350
7076
7077 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
7078
7079         * Form.cs: 
7080           - Added loading and setting of our new default icon
7081           - Only set icon if window is already created
7082
7083 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
7084
7085         * Label.cs:
7086           - Do not explicitly set the foreground and background colors, to
7087             allow inheriting from parents (fixes #76302)
7088           - Use Control's InternalBorderStyle property to deal with borders
7089
7090 2005-10-06  Jackson Harper  <jackson@ximian.com>
7091
7092         * MdiChildContext.cs: Use the new xplatui function to draw a
7093         reversible rect.
7094
7095 2005-10-06  Jackson Harper  <jackson@ximian.com>
7096
7097         * Form.cs: Add the parent before creating the child context cause
7098         we need the parent when setting up the child.
7099
7100 2005-10-06  Jackson Harper  <jackson@ximian.com>
7101
7102         * FolderBrowserDialog.cs: redo the tree population code so a
7103         second thread isn't used. Should be a lot faster and more stable
7104         now.
7105
7106 2005-10-05  Jackson Harper  <jackson@ximian.com>
7107
7108         * TreeView.cs: There are no expand/collapse boxes if the node has
7109         no children.
7110
7111 2005-10-05  Jackson Harper  <jackson@ximian.com>
7112
7113         * X11DesktopColors.cs: Get menu colours for the gtk theme.
7114
7115 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
7116
7117         * FileDialog.cs: Fix InitialDirectory
7118
7119 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
7120
7121         * ComboBox.cs:
7122                 - Fixes changing between styles
7123                 - Fixes simple mode
7124                 - Fixes last item crashing when navigating with keyboard
7125
7126 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
7127
7128         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
7129
7130 2005-10-05  Jackson Harper  <jackson@ximian.com>
7131
7132         * TreeView.cs: If updating the root node do a full refresh.
7133         * TreeNode.cs: The root node should be expanded by default. Also
7134         added a utility prop to tell if we are the root node.
7135         * TreeNodeCollection.cs: Only refresh if the node we are being
7136         added to is expanded. Also added a comment on a potential
7137         optimization.
7138         
7139 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
7140
7141         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
7142           in dispose method. Fixes #76330
7143
7144 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
7145
7146         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
7147
7148                 - Implements vertical and horizontal scrolling using XplatUI
7149                 - Fixes keyboard navagation
7150                 - Fixes EnsureVisible
7151                 - Drawing fixes
7152                 - Handles and draws focus properly
7153
7154
7155 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
7156
7157         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
7158           Create handle. NET_2_0: Destroy handle when value is null.
7159
7160 2005-10-03  Jackson Harper  <jackson@ximian.com>
7161
7162         * ScrollBar.cs: My last scrollbar patch was broken. This is a
7163         revert and a new patch to prevent the thumb from refreshing so
7164         much.
7165
7166 2005-10-02  Jackson Harper  <jackson@ximian.com>
7167
7168         * ScrollBar.cs: Don't update position if it hasn't actually
7169         changed. This occurs when you hold down the increment/decrement
7170         buttons and the thumb gets to the max/min.
7171
7172 2005-10-01  Jackson Harper  <jackson@ximian.com>
7173
7174         * Form.cs:
7175         * MdiChildContext.cs:
7176         * MdiClient.cs: Implement ActiveMdiChild in Form.
7177
7178 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
7179
7180         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
7181
7182 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
7183
7184         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
7185           be found
7186
7187 2005-09-30  Jackson Harper  <jackson@ximian.com>
7188
7189         * ListBox.cs: Don't do a full refresh unless some data has
7190         actually changed.
7191
7192 2005-09-30  Jackson Harper  <jackson@ximian.com>
7193
7194         * TreeView.cs: Make sure that the checkboxes size is factored in
7195         even when not visible.
7196
7197 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
7198
7199         * FileDialog.cs: Fix Jordi's build break
7200
7201 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
7202
7203         * FileDialog.cs: 
7204                 - Use standard the Windows colours for the combobox as espected
7205                 - Dispose objects that use resouces when no longer need them
7206
7207 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
7208
7209         * X11DesktopColors.cs: Initial incomplete implementation
7210         * XplatUIX11.cs: Added call to initialize X11DesktopColors
7211
7212 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
7213
7214         * Theme.cs: 
7215           - Switched Theme color names to match the names defined in 
7216             System.Drawing.KnownColors. Life's hard enough, no need to make 
7217             it harder.
7218           - Added setters to all theme color properties so themes can set
7219             their color schemes. The setters also propagate the color changes
7220             to System.Drawing.KnownColors via reflection
7221         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
7222           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
7223           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
7224           use the new, more logical theme color names
7225         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
7226           post-NT colors
7227         * ThemeWin32Classic.cs:
7228           - Removed code to set the old classic Windows colors. Instead it
7229             now relies on the colors returned by System.Drawing.KnownColors
7230             which will be either modern static colors (Unix) or colors
7231             read from the user's configuration (Win32)
7232           - Updated to use the new, more logical theme color names
7233           - Switched DataGrid drawing code to use only Theme colors instead of
7234             a mix of System.Drawing.KnownColors and Theme colors
7235           - DrawFrameControl(): Removed code that fills the button area, the
7236             fill would overwrite any previous fill done by a control. This
7237             fixes bug #75338 
7238           - Added DrawReversibleRectangle() stub
7239         * ScrollableControl.cs: Set visible state to false when scrollbars
7240           are removed (pdn fix)
7241         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
7242           DrawReversibleRectangle() method to allow drawing primitive 
7243           'rubber bands'
7244         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
7245
7246 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
7247
7248         * ImageList.cs: Add(Icon): Create handle.
7249
7250 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
7251
7252         * ListView.cs:
7253         * ThemeWin32Classic.cs:
7254                 - Fixes detail mode
7255                 - Sets clippings
7256                 - Issues with drawing
7257
7258 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
7259
7260         * ImageList.cs: Moved RecreateHandle back to ImageList as event
7261           source has to be the ImageList.
7262
7263 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
7264
7265         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
7266
7267 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
7268
7269         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
7270
7271 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
7272
7273         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
7274
7275 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
7276         * GridItem.cs: Fixed TODOs
7277         * GridItemCollection.cs: Added ICollection interface
7278
7279 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
7280
7281         * ImageList.cs: Resize icons when needed.
7282
7283 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
7284
7285         * ListViewItem.cs
7286                 - Fixes GetBounds and returns on screen rects
7287         * ListView.cs:
7288                 - Fixes vertical and horzintal scrolling of items
7289         * ThemeWin32Classic.cs:
7290                 - Fixes drawing
7291                 
7292 2005-09-29  Raja R Harinath  <harinath@gmail.com>
7293
7294         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
7295
7296 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
7297
7298         * ImageList.cs: Added comments about handle creation. Moved Handle,
7299           HandleCreated and OnRecreateHandle implementations to ImageCollection.
7300           Handle is created in Add methods.
7301
7302 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
7303          
7304         * DataGridDrawingLogic.cs: 
7305                 - Takes rows into account on Colum calculations
7306                 - Returns the column when clickig
7307         * DataGrid.cs:
7308                 - Fixes default HitTestInfo values
7309                 - Fixes HitTestInfo.ToString
7310                 - Fixes ResetBackColor          
7311         
7312 2005-09-28  Jackson Harper  <jackson@ximian.com>
7313
7314         * MdiChildContext.cs: Obey rules for fixed sized windows (no
7315         sizing or cursor changes). Also added some temp code to draw the
7316         titlebars text (Makes dev a little easier).
7317
7318 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
7319
7320         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
7321
7322 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
7323          
7324         * ListBox.cs: Fixes bug 76253
7325
7326 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
7327
7328         * ImageList.cs: Added comments about the current implementation. Added
7329           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
7330           Format32bppArgb to preserve transparency and can use Graphics.FromImage
7331           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
7332           with Bitmap.LockBits for better performance. Revised the whole file to
7333           match MS.NET behaviour and provide better performance. Non-public
7334           interface members are calling public members even when they throw
7335           NotSupportedException for better maintainability. Moved ColorDepth,
7336           ImageSize, ImageStream and TransparentColor implementations to
7337           ImageCollection for better performance as these properties are not used
7338           by ImageList.
7339         * ImageListStreamer.cs: Added a new internal constructor that takes an
7340           ImageList.ImageCollection and serializes Images based on
7341           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
7342           match ImageList property name.
7343
7344 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
7345
7346         * ListBox.cs: Fixes IndexFromPoint for last item
7347
7348 2005-09-27  Jackson Harper  <jackson@ximian.com>
7349
7350         * Form.cs: Set the position of new mdi children correctly.
7351
7352 2005-09-27  Jackson Harper  <jackson@ximian.com>
7353
7354         * MdiClient.cs: New mdi children need to be added to the back of
7355         the controls collection so the zorder is set correctly. Also add a
7356         count of all the child windows that have been created.
7357
7358 2005-09-27  Jackson Harper  <jackson@ximian.com>
7359
7360         * Form.cs (CreateParams): Setup MDI forms correctly.
7361
7362 2005-09-27  Jackson Harper  <jackson@ximian.com>
7363
7364         * MdiChildContext.cs:
7365         * MonthCalendar.cs:
7366         * UpDownBase.cs:
7367         * ListBox.cs:
7368         * ListView.cs:
7369         * TextBoxBase.cs:
7370         * TreeView.cs:
7371         * ScrollableControl.cs:
7372         * ComboBox.cs: Add implicit controls using the new implict control
7373         functionality in ControlCollection. Also try to block multiple
7374         control add in a suspend/resume layout to save some cycles.
7375         
7376 2005-09-27  Jackson Harper  <jackson@ximian.com>
7377
7378         * Control.cs: Add functionality to the controls collection to add
7379         'implicit controls' these are controls that are created by the
7380         containing control but should not be exposed to the user. Such as
7381         scrollbars in the treeview.
7382         * Form.cs: The list var of the ControlsCollection is no longer
7383         available because of the potential of implicit controls getting
7384         ignored by someone accessing the list directly.
7385
7386 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
7387
7388         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
7389           loose it's parent. (Fixed bug introduced in r49103 when we added
7390           setting the child parent to null on Remove)
7391
7392 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
7393
7394         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
7395         * Splitter.cs: Added missing attributes for BorderStyle property.
7396         * TextBoxBase.cs: Marked Calculate* methods internal.
7397         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
7398         MS.NET.
7399
7400 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
7401          
7402         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
7403
7404 2005-09-25  Jackson Harper  <jackson@ximian.com>
7405
7406         * TreeView.cs: Update the node bounds correctly regardless of
7407         whether the node is visible.
7408
7409 2005-09-25  Jackson Harper  <jackson@ximian.com>
7410
7411         * ImageList.cs: Don't dispose the image after it is added to the
7412         image list. Only reformat images that need to be resized.
7413
7414 2005-09-25  Jackson Harper  <jackson@ximian.com>
7415
7416         * ImageList.cs: Don't set the format when changing the image.
7417
7418 2005-09-25  Jackson Harper  <jackson@ximian.com>
7419
7420         * TreeView.cs: We can't just assume the node has a font. Use the
7421         treeviews font if no node font is available.
7422
7423 2005-09-25  Jackson Harper  <jackson@ximian.com>
7424
7425         * TreeView.cs: Allow the scrollbars to be reset with negative
7426         values.
7427         - Don't add scrollbars to negative sized windows.
7428
7429 2005-09-23  Jackson Harper  <jackson@ximian.com>
7430
7431         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
7432         old Mono.Posix. Also remove some stray code that shouldn't have
7433         been committed.
7434
7435 2005-09-23  Jackson Harper  <jackson@ximian.com>
7436
7437         * TreeView.cs: Attempt at proper sizing of the horizontal
7438         scrollbar. Also don't resize the scrollbars unless they are
7439         visible.
7440
7441 2005-09-23  Jackson Harper  <jackson@ximian.com>
7442
7443         * TreeView.cs: We don't need to expand the invalid area when the
7444         selection changes, as this is all drawn in the node's bounding
7445         box. The area needs to be expanded (previous typo was contracting
7446         it) when the focus rect moves.
7447
7448 2005-09-23  Jackson Harper  <jackson@ximian.com>
7449
7450         * TreeView.cs: Display the selection box under the correct
7451         circumstances. We were rendering white text with no selection box
7452         before.
7453
7454 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
7455
7456         * TextControl.cs(Split): Now updates selection start/end if it points 
7457           into a line that's being split. Fixes a FIXME and bug #75258
7458
7459 2005-09-23  Jackson Harper  <jackson@ximian.com>
7460
7461         * Binding.cs:
7462         * ListControl.cs: Don't use the path when retrieving binding
7463         managers from the binding context. My bat sense tells me that the
7464         path is only used on insertion.
7465
7466 2005-09-22  Jackson Harper  <jackson@ximian.com>
7467
7468         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
7469
7470 2005-09-22  Jackson Harper  <jackson@ximian.com>
7471
7472         * Splitter.cs: There are special cursors used for splitting.
7473         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
7474
7475 2005-09-22  Jackson Harper  <jackson@ximian.com>
7476
7477         * Splitter.cs: Change the cursor appropriately when the splitter
7478         is moused over, so the user actually knows there is a splitter
7479         there.
7480
7481 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
7482
7483        * Label.cs : Fix ToString method to give same output as MS.NET
7484
7485 2005-09-22  Jackson Harper  <jackson@ximian.com>
7486
7487         * TreeView.cs: Create the scrollbars when the handle is created
7488         and add them right away, just make them invisble. Also account for
7489         the window being shrunk vertically to the point that the vert
7490         scrollbar needs to be added.
7491         - Remove some 0.5 adjustments to get around anti aliasing issues.
7492         
7493 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
7494          
7495         * MainMenu.cs: Fixes default value
7496         * MenuItem.cs: Fixes default value
7497
7498 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
7499
7500         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
7501
7502 2005-09-21  Jackson Harper  <jackson@ximian.com>
7503
7504         * Control.cs: Don't try to set the border style on the window if
7505         it hasn't been created. When the window is created the border
7506         style will be used.
7507
7508 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
7509
7510         * Control.cs (Update): Don't call XplatUI if we don't have a
7511           window handle yet
7512
7513 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
7514
7515         * ContainerControl.cs: Instead of throwing an exception, print
7516           a one-time warning about Validate not being implemented
7517         * XplatUIWin32.cs: Removed debug output
7518
7519 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
7520
7521         * Control.cs: Only set XplatUI background if we expect the windowing
7522           system to handle the background. This stops controls that draw their
7523           own background from flickering
7524
7525         * XplatUIX11.cs: Support custom visuals and colormaps for window 
7526           creation. This allows, amongst other things, using MWF X11 windows 
7527           with OpenGL.
7528
7529 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
7530
7531         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
7532           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
7533           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
7534           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
7535           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
7536           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
7537           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
7538           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
7539           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
7540           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
7541           GridColumnStylesCollection.cs, 
7542           IDataGridColumnStyleEditingNotificationService.cs,
7543           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
7544           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
7545           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
7546           TreeNodeCollection.cs, AmbientProperties.cs, 
7547           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
7548           DataObject.cs, ErrorProvider.cs, Splitter.cs,
7549           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
7550           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
7551           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
7552           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
7553           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
7554           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
7555           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
7556           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
7557           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
7558           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
7559           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
7560           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
7561           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
7562           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
7563           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
7564           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
7565           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
7566           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
7567           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
7568           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
7569           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
7570           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
7571           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
7572           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
7573           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
7574           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
7575           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
7576           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
7577           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
7578           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
7579           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
7580           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
7581           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
7582           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
7583           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
7584
7585 2005-09-21  Jackson Harper  <jackson@ximian.com>
7586
7587         * TreeNode.cs: Call Before/After Expand not Collapse when
7588         expanding.
7589
7590 2005-09-20  Jackson Harper  <jackson@ximian.com>
7591         
7592         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
7593
7594 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
7595          
7596         * ListViewItem.cs:
7597                 - Fixes bug 76120
7598                 - Fixes proper storing of subitems
7599                 - Fixes not updated items
7600
7601 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
7602
7603         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
7604           things if our window handle isn't created yet. Also disabled 
7605           debug for TextBoxBase
7606
7607 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
7608
7609         * MenuAPI.cs: Remove filtering of events to allow menu usage
7610
7611 2005-09-20  Miguel de Icaza  <miguel@novell.com>
7612
7613         * Cursor.cs: Allow null to be passed to Cursor.Current.
7614
7615 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
7616
7617         * ThemeWin32Classic.cs:
7618           - Change some private methods/fields to protected virtual so that 
7619             they can be accessed and overriden in derived classes
7620           - First refactoring of some methods. Derived themes now don't 
7621             need to duplicate the complete code from ThemeWin32Classic
7622         * ThemeNice.cs:
7623           - Added nice StatusBar
7624           - Derive from ThemeWin32Classic and not Theme
7625           - Removed duplicate ThemeWin32Classic code
7626
7627 2005-09-20  Miguel de Icaza  <miguel@novell.com>
7628
7629         * Control.cs (ControlCollection.Add): If the value null is passed
7630         the control is ignored. 
7631
7632         Optimize this loop.
7633
7634 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
7635
7636         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
7637           PostQuitMessage state.
7638         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
7639
7640 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
7641
7642         * Application.cs: Our constructor will never get called, move 
7643           initialization to fields; fixes bug #75933
7644
7645 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
7646
7647         * FileDialog.cs :
7648                 - Allow files to be selected properly using file name
7649                 combo box.
7650                 - Add ability to change diretory (absolute / relative)
7651                 using file name combo box.
7652
7653 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
7654          
7655         * ListBox.cs: 
7656                 - Fixes Multicolumn listboxes item wrong calculations
7657                 - Allows to click when only one item is in the listbox
7658                 - Fixes crash when no items using keyboard navigation
7659
7660 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
7661
7662         * ComboBox.cs: Reverted almost everything from the latest patch which
7663           broke ComboBox
7664
7665 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
7666         
7667         * ToolTip.cs:
7668                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
7669         * ComboBox.cs:
7670                 - When DropDownStyle is Simple, it does not show scrollbar 
7671                 to the last item of the list.
7672                 - When DropDownStyle is Simple, it crashed when the list was 
7673                 scrolled down with the down cursor key.
7674                 - Fixed a bug that when DropDownStyle is DropDownList, the 
7675                 selected item was not shown.
7676                 - The position of the selected item was not preserved when 
7677                 the next dropdown happened.
7678         * ThemeWin32Classic.cs:
7679                 - Items were wrapped at the right end.
7680         * CheckedListBox.cs:
7681                 - Fixed Add method
7682         * ListBox.cs:
7683                 - Items should be fully shown.
7684                 - When resizing and vertical scrollbar disappeared, the item 
7685                 of index 0 should be on the top of the list.
7686                 - GetItemRectangle should consider the size of ver. scrollbar
7687         * StatusBar.cs:
7688                 - SizingGrip area should not be allocated when it is not 
7689                 displayed.
7690                 - Now it reflects MinWidth of the containing panel and 
7691                 fixed a crash that happens when its width becomes so small.
7692
7693 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
7694
7695         * CheckedListBox.cs: Fixes bug 76028
7696         * ListBox.cs: Fixes bug 76028
7697
7698 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
7699
7700         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
7701         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
7702
7703 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
7704
7705         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
7706
7707 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
7708
7709         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
7710
7711 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
7712
7713         * IRootGridEntry.cs: Added
7714         * PropertyGridCommands.cs: Added
7715         * PropertiesTab.cs: Added missing methods and property
7716         * PropertyGridView.cs: Made class internal
7717         * PropertyGridTextBox.cs: Made class internal
7718
7719 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
7720
7721         * MimeIcon.cs: Try to check some other environment variables
7722           if "DESKTOP_SESSION" returns "default"
7723
7724 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
7725
7726         * ThemeNice.cs: Corrected background colors (e.g. menus)
7727         * ColorDialog.cs: Use correct background colors for controls
7728
7729 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
7730
7731         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
7732
7733 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
7734
7735         * RichTextBox.cs: Added initial implementation
7736         * lang.cs: Removed. Was accidentally checked in long time ago
7737         * TODO: Removed. Contents were obsolete
7738
7739 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
7740                                                                                 
7741         * PropertiesTab.cs : Added
7742
7743 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
7744                                                                                 
7745         * PropertyGrid.cs : Update
7746         * PropertyGridView.cs : Update
7747         * System.Windows.Forms.resx : Added images and strings
7748
7749 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
7750
7751         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
7752  
7753 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
7754
7755         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
7756           a busy loop right after the Ungrab the X11 display is otherwise 
7757           blocked
7758
7759 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
7760
7761         * ThemeWin32Classic.cs: Optimise the use of clipping
7762
7763 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
7764
7765         * DataGrid.cs: fixes recursion bug
7766
7767 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
7768
7769         * ThemeNice.cs: 
7770           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
7771           - Cleanup
7772
7773 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
7774
7775         * ThemeNice.cs: Draw nice ProgressBars
7776
7777 2005-09-01  Miguel de Icaza  <miguel@novell.com>
7778
7779         * VScrollBar.cs: Another buglet found by Aaron's tool. 
7780
7781         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
7782         bug finder.
7783
7784 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
7785
7786         * ThemeNice.cs:
7787           - Added nicer menu drawing
7788           - Updated DrawTab
7789           - some refactoring
7790
7791 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
7792
7793         * CreateParams.cs (ToString): Made output match MS
7794         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
7795             handle is already created (to avoid forcing window creation)
7796         * XplatUIX11.cs: Set window text to caption after creating window,
7797           in case Text was set before window was created
7798         * Form.cs: Use this.Text instead of a static string as caption
7799
7800 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
7801
7802         * NotifyIcon.cs: Don't set the window to visible; this screws
7803           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
7804           OnPaint without a bitmap)
7805         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
7806           happen very often anyway; we could add the check to the WM_PAINT 
7807           event generation code
7808
7809 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
7810
7811         * NotifyIcon.cs: Fill the icon area with a background color, to 
7812           avoid 'residue' when transparent icons are drawn
7813         * XplatUIX11.cs:
7814           - Handle whole_window == client_window when destroying windows
7815           - SystrayAdd(): Set client_window to whole_window value to
7816             get mouse and other events passed to NotifyIcon
7817
7818 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
7819
7820         * Form.cs: Set proper default for Opacity property
7821         * NotifyIcon.cs:
7822           - ShowSystray(): Don't bother creating telling the OS
7823             about the systray item if no icon is provided
7824           - Now handles WM_NCPAINT message to deal with whole/client window
7825             split
7826           - Create window as visible to not get caught by Expose optimization
7827         * Hwnd.cs: Removed debug message
7828         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
7829           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
7830             PaintEventStart/End to use new client argument
7831         * TextBoxBase.cs:
7832           - Commented out debug messages
7833           - Switched PaintEventStart/End to use new client argument
7834         * XplatUI.cs: Added client window bool to PaintEventStart()/
7835           PaintEventEnd() calls, to support drawing in non-client areas
7836         * XplatUIDriver.cs: 
7837           - Added client window bool to PaintEventStart()/PaintEventEnd() 
7838             calls, to support drawing in non-client areas
7839           - Added conditional compile to allow using MWF BeginInvoke 
7840             on MS runtime
7841         * XplatUIX11.cs:
7842           - Added some conditional debug output
7843           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
7844             whole/client window split
7845           - Implemented handling of client argument to PaintEventStart()/End()
7846         * Control.cs:
7847           - Throw exception if BeginInvoke() is called and the window handle
7848             or one of the window's parent handles is not created
7849           - Added conditional compile to allow using MWF BeginInvoke on
7850             MS runtime
7851           - get_Parent(): Only sets parent if handle is created. This avoids
7852             forcing window handle creation when parent is set.
7853           - Now fires Layout and Parent changed events in proper order
7854           - Switched to use Handle instead of window.Handle for Z-Order setting,
7855             the get_Parent() patch above causes us to possibly get null for 'window'
7856           - Implemented handling of client argument to PaintEventStart()/End()
7857           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
7858             default handling)
7859           - Now sends a Refresh() to all child windows when Refresh() is called
7860
7861 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
7862
7863         * Form.cs: Added (non-functional) Opacity property
7864         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
7865
7866 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
7867         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
7868           use export MONO_THEME=nice to activate it.
7869           Currently supported controls:
7870           - Button
7871           - ComboBox
7872           - ScrollBar
7873           - TabControl (TabAlignment.Top only, other will follow)
7874         * ThemeEngine.cs: Add theme nice
7875         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
7876           if enabled
7877
7878 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
7879
7880         * Splitter.cs: Resize docked control and its neighbor.
7881
7882 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
7883         -- Making Windows with Menus layout correctly --
7884         * Form.cs : The first leg of the fix
7885                 Menu setter - adjust Client Size as needed to make space for the menu
7886                 SetClientSizeCore - doesn't call base version to be able to pass the 
7887                         menu handle to XplatUI.CalculateWindowRect
7888         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
7889         * XplatUIX11.cs: The critical second leg of the fix
7890                 GetWindowPos needs to use a recalculated client_rect
7891                 so that resizing the window doesn't break layout of child controls. 
7892                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
7893                 Lots of \t\n killed
7894
7895 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7896
7897         * Label.cs: Now properly recalculates width and height on Font and Text
7898           changes if AutoSize is set
7899
7900 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
7901         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
7902
7903 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
7904
7905         * ImageList.cs: Makes ToString method compatible with MS
7906
7907 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
7908
7909         * MenuAPI.cs: fixes bug 75716
7910
7911 2005-08-11 Umadevi S <sumadevi@novell.com>
7912         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
7913
7914 2005-08-11 Umadevi S <sumadevi@novell.com>
7915         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
7916
7917 2005-08-10  Umadevi S <sumadevi@novell.com>
7918         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
7919
7920 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
7921
7922         * Menu.cs: fixes bug 75700
7923         * MenuAPI.cs: fixes navigation issues
7924
7925 2005-08-09  Umadevi S <sumadevi@novell.com>
7926         * CheckedListBox.cs - simple fix for GetItemChecked.
7927
7928 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
7929
7930         * ComboBox.cs: Serveral fixes
7931         * ListBox.cs: Serveral fixes
7932
7933 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
7934
7935         * ComboBox.cs: Fixes FindString methods and GetItemHeight
7936         * ListBox.cs: Fixes FindString methods
7937
7938 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
7939
7940         * DataGrid.cs: fixes bugs exposed by new tests
7941
7942 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
7943
7944         * Mime.cs: Compile Mono assembly references only if compiling
7945           with Mono (Allows to build with VS.Net again)
7946
7947 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
7948
7949         * Control.cs (PaintControlBackground): Draw background image
7950         corrrectly.
7951         (CheckForIllegalCrossThreadCalls): Stubbed.
7952         
7953         * Form.cs (OnCreateControl): Center when should be centered.
7954         
7955         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
7956
7957 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
7958
7959         * Binding.cs: Binding to properties should be case unsensitive
7960
7961 2005-07-18 vlindos@nucleusys.com
7962
7963         * DataGrid.cs: fixes setmember order
7964
7965 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
7966
7967         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
7968         * FileDialog.cs: FileDialog is now resizable and uses the new
7969           MimeIconEngine
7970
7971 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
7972
7973         * DataGridTextBoxColumn.cs: default value
7974         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
7975         * GridTableStylesCollection.cs: fixes checking MappingName
7976         * DataGridDrawingLogic.cs: fixes drawing logic issues
7977         * DataSourceHelper.cs: rewritten to make compatible with more data sources
7978         * DataGrid.cs: fixes    
7979
7980 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
7981
7982         * MimeGenerated.cs: Use case sensitive comparer for
7983           NameValueCollections
7984
7985 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
7986
7987         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
7988         * ThemeWin32Classic.cs: bug fixes, code refactoring
7989         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
7990         * DataGrid.cs: bug fixes, code refactoring
7991         * DataGridTextBox.cs: bug fixes, code refactoring
7992         * DataGridColumnStyle.cs:  bug fixes, code refactoring
7993         * Theme.cs:  bug fixes, code refactoring
7994
7995 2005-07-01  Peter Bartok  <pbartok@novell.com> 
7996
7997         * TextControl.cs: Quick fix for the reported crash on ColorDialog
7998           and other text box usage
7999
8000 2005-07-01  Jackson Harper  <jackson@ximian.com>
8001
8002         * TabControl.cs: Make sure the bottom of the tab covers the pages
8003         border.
8004
8005 2005-06-30  Peter Bartok  <pbartok@novell.com> 
8006
8007         * Form.cs (ShowDialog): Assign owner of the dialog
8008         * TextBoxBase.cs: Always refresh caret size when deleting, caret
8009           might have been moved to a tag with different height
8010
8011 2005-06-30  Jackson Harper  <jackson@ximian.com>
8012
8013         * Form.cs: Don't create an infinite loop when setting focus
8014         * MenuItem.cs: Don't dirty the parents if we don't have any
8015
8016 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
8017
8018         * LibSupport.cs: Rename
8019
8020 2005-06-29  Peter Bartok  <pbartok@novell.com>
8021
8022         * TextBoxBase.cs: Re-align caret after deleting a character
8023         * TextControl.cs:
8024           - DeleteChars(): Ensure that tag covers the provided position
8025           - StreamLine(): Drop reference for dropped tag
8026
8027 2005-06-29  Peter Bartok  <pbartok@novell.com> 
8028
8029         * TextControl.cs: 
8030           - Selections now work properly, anchoring at the initial location
8031             and properly extending in either direction (SetSelectionToCaret(),
8032             SetSelectionStart() and SetSelectionEnd())
8033           - No longer redraws the whole control on selection change, now
8034             calculates delta between previous and new selection and only
8035             invalidates/redraws that area
8036           - Fixed FindPos() math off-by-one errors
8037           - Changed DeleteChars() to verify the provided tag covers the
8038             provided position, selections may have a tag that doesn't cover
8039             the position if the selection is at a tag border
8040           - Fixed off-by-one errors in DeleteChars()
8041           - Added missing streamlining check in DeleteChars() to remove
8042             zero-length tags
8043           - Implemented Invalidate() method, now properly calculates exposures
8044             between two given lines/positions
8045           - Implemented SetSelection()
8046           - Obsoleted and removed FixupSelection()
8047           - Improved RecalculateDocument() logic, removing code duplication
8048
8049 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8050
8051         * LibSupport.cs: changes to match different input/output arguments.
8052
8053 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8054
8055         * LibSupport.cs: added libsupport.so init routine.
8056
8057 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
8058         
8059         * ControlBindingsCollection.cs
8060                 - Throws an exception on null datasource when adding
8061                 - Checks for duplicated bindings when adding
8062
8063 2005-06-28  Jackson Harper  <jackson@ximian.com>
8064
8065         * TreeView.cs (OnKeyDown): Support left and right properly
8066         (navigates as well as expanding and collapsing.
8067         - Add support for Multiply, this expands all the selected nodes
8068         children.
8069         - Fix some tabbing.
8070
8071 2005-06-28  Jackson Harper  <jackson@ximian.com>
8072
8073         * TreeView.cs: Implement keyboard navigation, currently supports,
8074         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
8075         support for toggling checkboxes with the space bar.
8076
8077 2005-06-28  Jackson Harper  <jackson@ximian.com>
8078
8079         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
8080         tree.
8081
8082 2005-06-28  Jackson Harper  <jackson@ximian.com>
8083
8084         * TreeView.cs: Add missing event.
8085
8086 2005-06-27  Peter Bartok  <pbartok@novell.com> 
8087
8088         * TextControl.cs:
8089           - Made line ending size configurable (now allows for counting 
8090             lineendings as \n or \r\n)
8091           - Added margin to viewport to keep caret visible on right side
8092           - Fixed translation routines for line/pos to documentpos to consider
8093             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
8094           - Fixed some line-endings to be unix style
8095           - Fixed Document.FormatText to perform it's calculations 1-based
8096           - Added descriptions for a few methods that might otherwise get 
8097             used wrong
8098           - Added NOTE section with some basic conventions to remember at 
8099             the top of the file
8100           - Major fixup for RichTextBox selection drawing:
8101             * Fixed crashes when multiple tags on a single line were selected
8102             * fixed selection box drawing not overlaying text
8103             * fixed bogus offset calculation for tags not starting at index 1
8104             * Switched behaviour from using multiple Substrings of a 
8105               StringBuilder.ToString() to using multiple 
8106               StringBuilder.ToString(start, length) statements, hoping this is
8107               faster (kept original version commented out in the code, in case
8108               original version was faster)
8109         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
8110           alignment != Left
8111         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
8112           call it as well
8113
8114 2005-06-27  Jackson Harper  <jackson@ximian.com>
8115
8116         * TabControl.cs: Move to the left and right with the arrow
8117         keys. These keys don't cycle beyond first and last like
8118         tab. Refresh all the tabs when scrolling them to the left or
8119         right.
8120
8121 2005-06-27  Jackson Harper  <jackson@ximian.com>
8122
8123         * TabControl.cs:
8124           - ToString: Added method
8125           - CreateParams: Remove TODO and comment
8126           - OnKeyDown: Cycle through bounds properly.
8127           - SelectedIndex: Scroll to the right or left if we need to
8128           display the newly selected tab.
8129
8130 2005-06-23  Jackson Harper  <jackson@ximian.com>
8131
8132         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
8133         set.
8134
8135 2005-06-23  Jackson Harper  <jackson@ximian.com>
8136
8137         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
8138         CTRL-SHIFT-TAB, and HOME, END are there any others?
8139
8140 2005-06-23  Jackson Harper  <jackson@ximian.com>
8141
8142         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
8143
8144 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
8145         
8146         * DataGridTextBoxColumn.cs: fixes and enhancements
8147         * ThemeWin32Classic.cs: fixes and enhancements
8148         * DataGridBoolColumn.cs:  fixes and enhancements
8149         * DataGridDrawingLogic.cs:  fixes and enhancements
8150         * CurrencyManager.cs: fixes and enhancements
8151         * DataGrid.cs: fixes and enhancements
8152         * DataGridColumnStyle.cs:  fixes and enhancements
8153
8154 2005-06-22  Jackson Harper  <jackson@ximian.com>
8155
8156         * TabControl.cs: Add some missing methods that just call into the
8157         base. Make the TabPageCollection's IList interface behave in the
8158         same manner as the MS implementation.
8159
8160 2005-06-22  Peter Bartok  <pbartok@novell.com> 
8161
8162         * TextControl.cs: Added sanity check
8163         * TextBoxBase.cs: 
8164           - Fixed wrapping behaviour, don't set wrap on single line controls
8165             (this fixes the breakage of colordialog introduced in an earlier
8166              checkin)
8167           - Added rudimentary support for autoscrolling right-aligned controls
8168             (still needs fixing, also, center alignment scroll is missing)
8169
8170 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
8171         
8172         * ScrollBar.cs: Fixes thumbpos on Maximum values
8173
8174 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
8175         
8176         * PropertyGridView.cs: Pass context information to UITypeEditors 
8177
8178 2005-06-21  Peter Bartok  <pbartok@novell.com> 
8179
8180         * TextBoxBase.cs:
8181           - Now calling PositionCaret with absolute space coordinates
8182           - Enabled vertical scrolling
8183           - Better tracking of scrollbar changes, tied into WidthChange
8184             event
8185           - Improved cursor tracking
8186           - Removed debug output
8187         * TextControl.cs:
8188           - PositionCaret coordinates are now works in absolute space, not 
8189             the canvas
8190           - Improved tracking of document size
8191           - Added events for width and height changes
8192
8193 2005-06-21  Peter Bartok  <pbartok@novell.com>
8194
8195         * Form.cs: Set focus to active control when form is activated
8196         * TextControl.cs: 
8197           - Added word-wrap functionality to RecalculateLine() 
8198           - Added some short function descriptions for VS.Net to aid in
8199             writing dependent controls
8200           - Added Caret property, returning the current coords of the caret
8201           - Added ViewPortWidth and ViewPortHeight properties
8202           - Added Wrap property
8203           - Added CaretMoved event
8204           - Removed some old debug code
8205           - Split() can now create soft splits
8206           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
8207           - Added method to format existing text
8208           - Fixed size/alignment calculations to use viewport
8209           - RecalculateDocument now can handle changing line-numbers while
8210             calculating lines
8211
8212         * TextBox.cs:
8213           - Added some wrap logic, we don't wrap if alignment is not left
8214           - Added casts for scrollbar var, base class switched types to
8215             also support RichTextBoxA
8216           - Implemented handling of scrollbar visibility flags
8217
8218         * TextBoxBase.cs:
8219           - Switched scrollbars type to RichTextBoxScrollBars to support
8220             RichTextBox
8221           - Added tracking of canvas width/height
8222           - Switched scrollbars to be not selectable (to keep focus on text)
8223           - Added central CalculateDocument() method to handle all redraw
8224             requirements
8225           - Added ReadOnly support
8226           - Added WordWrap support
8227           - Fixed handling of Enter key (we now treat it as a DialogKey)
8228           - Fixed caret positioning when h or v scroll is not zero
8229           - Fixed placing/generation of vertical scrollbar
8230           - Added CalculateScrollBars() method to allow updating scrollbar
8231             limits and visibility
8232           - Fixed handling of horizontal scroll
8233           - Added handling of vertical scroll
8234           - Implemented auto-'jump' when caret moves to close to a left or
8235             right border and there is text to be scrolled into view (currently
8236             there's the potential for a stack overflow, until a bug in
8237             scrollbar is fixed)
8238
8239 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
8240         
8241         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
8242
8243 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
8244
8245         * Mime.cs:
8246         - added inodes.
8247         - return application/x-zerosize for files with size zero
8248           (if no extension pattern matches).
8249         - check matches collection for strings too.
8250         - return only the first mime type if the name value
8251           collection has more than one mime type.
8252
8253 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
8254         
8255         * PropertyGrid.cs: Cleaned up some TODOs
8256         * PropertyGridView.cs: Added support for UITypeEditors
8257
8258 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
8259         
8260         * DataGrid.cs: clears cached value
8261
8262 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
8263
8264         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
8265         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
8266         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
8267         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
8268         
8269 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
8270
8271         * ThemeWin32Classic.cs: fixes colour
8272
8273 2005-06-15  Peter Bartok  <pbartok@novell.com>
8274
8275         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
8276         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
8277         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
8278         * Control.cs: Added some MWFCategory and MWFDescription attributes
8279         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
8280
8281 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
8282
8283         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
8284         usage
8285
8286 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
8287
8288         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
8289         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
8290         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
8291         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
8292         * DataGrid.cs: default datagrid settings for Default Styles, fixes
8293         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
8294
8295 2005-06-13  Jackson Harper  <jackson@ximian.com>
8296
8297         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
8298         isn't printed when the user enables dropping. (X11 does accept
8299         drops).
8300         
8301 2005-06-13  Jackson Harper  <jackson@ximian.com>
8302
8303         * TreeView.cs: Remove some TODOS.
8304
8305 2005-06-13  Jackson Harper  <jackson@ximian.com>
8306
8307         * Form.cs: Hook into the mdi framework.
8308         * MdiClient.cs: Use the base control collections add method so
8309         parents get setup correctly. Set the default back colour and dock
8310         style.
8311         * MdiChildContext.cs: New class, this bad actor handles an
8312         instance of an MDI window. Right now there is only basic
8313         support. You can drag, close, and resize windows. Minimize and
8314         Maximize are partially implemented.
8315
8316 2005-06-13  Jackson Harper  <jackson@ximian.com>
8317
8318         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
8319         freaky when both vals are negative. NOTE: There are probably other
8320         places in XplatUIX11 that this needs to be done.
8321
8322 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
8323
8324         * DataGrid.cs: implement missing methods, move KeyboardNavigation
8325         * DataGridColumnStyle.cs: fixes signature
8326
8327 2005-06-12  Jackson Harper  <jackson@ximian.com>
8328
8329         * XplatUIX11.cs: Use sizing cursors similar to the ones on
8330         windows.
8331
8332 2005-06-11  Jackson Harper  <jackson@ximian.com>
8333
8334         * StatusBarPanel.cs: Signature cleanups. Implement
8335         BeginInit/EndInit.
8336
8337 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
8338
8339         * DataGridTextBoxColumn.cs: Honors aligment
8340         * GridColumnStylesCollection.cs: Contains is case unsensitive
8341         * GridTableStylesCollection.cs: several fixes
8342         * DataGridTableStyle.cs: default column creation
8343         * DataGridDrawingLogic.cs: fixes
8344         * CurrencyManager.cs: ListName property
8345         * DataGrid.cs: multiple styles support
8346         * DataGridColumnStyle.cs: fixes
8347         
8348
8349 2005-06-10  Peter Bartok  <pbartok@novell.com>
8350
8351         * Control.cs(Select): Moved SetFocus call to avoid potential
8352           loops if controls change the active control when getting focus
8353         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
8354           the up/down buttons
8355
8356 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
8357
8358         * ImageListConverter.cs: Implemented
8359
8360 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
8361
8362         * MonthCalendar.cs: Wired in NumericUpDown control for year
8363
8364 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
8365
8366         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
8367           DoubleClick events, since they are not meant to be fired.
8368
8369 2005-06-09  Peter Bartok  <pbartok@novell.com>
8370
8371         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
8372           Jonathan's standalone controls into MWF, implemented missing
8373           events, attributes and methods; added xxxAccessible classes
8374         * AccessibleObject.cs: Made fields internal so other classes
8375           can change them if needed
8376
8377 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
8378
8379         * UpDownBase.cs: Complete implementation
8380         * NumericUpDown.cs: Complete implementation
8381         * DomainUpDown.cs: Complete implementation
8382
8383 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
8384
8385         * DataGridTextBoxColumn.cs: drawing fixes
8386         * DataGridCell.cs: fixes ToString method to match MSNet
8387         * DataGridTableStyle.cs: fixes
8388         * DataGridBoolColumn.cs: fixes, drawing
8389         * DataGridDrawingLogic.cs: fixes, new methods
8390         * DataGridTextBox.cs: Keyboard and fixes
8391         * DataGrid.cs:
8392                 - Keyboard navigation
8393                 - Scrolling fixes
8394                 - Row selection (single, multiple, deletion, etc)
8395                 - Lots of fixes
8396         
8397 2005-06-07  Jackson Harper  <jackson@ximian.com>
8398
8399         * ThemeWin32Classic.cs: Clear the background area when drawing
8400         buttons.
8401
8402 2005-06-06  Peter Bartok  <pbartok@novell.com>
8403
8404         * ImageListStreamer.cs: Fixed signature for GetData
8405         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
8406         * ComboBox.cs:
8407           - Added missing ChildAccessibleObject class
8408           - Added missing OnXXXFocus overrides, switched to using those
8409             instead of the event handler
8410         * Control.cs:
8411           - Added Parent property for ControlAccessibleObject
8412           - Fixed signatures
8413           - Fixed attributes
8414           - Added ResetBindings()
8415         * ListBindingConverter.cs: Implemented some methods
8416         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
8417         * ImageList.cs: Implemented basic handle scheme, removed TODOs
8418         * ContainerControl.cs: Fixed signature, now subscribing to the
8419           ControlRemoved event instead of overriding the handler, LAMESPEC
8420         * CurrencyManager.cs: Added missing attribute
8421         * MonthCalendar.cs: Added missing properties
8422
8423 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
8424
8425         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
8426         
8427 2005-06-06  Gaurav Vaish and Ankit Jain
8428
8429         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
8430         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
8431         
8432 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
8433
8434         * Control.cs: fixes CreateParams Width / Height.
8435
8436 2005-06-05  Peter Bartok  <pbartok@novell.com>
8437
8438         * Win32DnD.cs: Removed compilation warnings
8439
8440 2005-06-05  Peter Bartok  <pbartok@novell.com>
8441
8442         * Control.cs (CreateParams): Since we don't know if one of the
8443           properties we use is overridden, lets make sure if we fail accessing
8444           we continue with a backup plan
8445
8446 2005-06-05  Peter Bartok  <pbartok@novell.com>
8447
8448         * Win32DnD.cs:
8449           - Removed debug output
8450           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
8451             struct
8452           - Plugged resource leak
8453         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
8454           MS size
8455
8456 2005-06-05  Peter Bartok  <pbartok@novell.com>
8457
8458         * XplatUIWin32.cs: Removed DnD code
8459         * Win32DnD.cs: Implemented drop source and drop target functionality
8460
8461 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8462
8463         * UpDownBase.cs: remove duplicate addition of event, enable some code
8464         that was commented out.
8465         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
8466         Validate input when a key is pressed. It works fine now for every
8467         combination of Hexadecimal. Only missing some drawing love when sharing
8468         space with other controls.
8469
8470 2005-06-04  Peter Bartok  <pbartok@novell.com>
8471
8472         * Control.cs:
8473           - We need to pass a window for DragDrop, so enable callback events
8474           - Added DnD callback events when being a DragSource
8475         * XplatUI.cs (StartDrag): Added window handle argument
8476         * XplatUIDriver.cs (StartDrag): Added window handle argument
8477         * QueryContinueDragEventArgs: Made fields internally accessible so
8478           drivers can set them
8479         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
8480           can set them
8481
8482 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
8483
8484         * DataGridTextBoxColumn.cs: column text editing
8485         * DataGridTableStyle.cs: Respect columns styles created by the user
8486         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
8487         * DataGridBoolColumn.cs: bool column editing
8488         * DataGrid.cs: fixes to scrolling, properties, etc
8489         * DataGridTextBox.cs: handle keyboard
8490         * DataGridColumnStyle.cs: fixes
8491
8492 2005-06-02  Jackson Harper  <jackson@ximian.com>
8493
8494         * ImageListStreamer.cs: Somewhat broken implementation of
8495         GetObjectData. The RLE needs some work to match MS properly.
8496
8497 2005-06-02  Jackson Harper  <jackson@ximian.com>
8498
8499         * X11Dnd.cs: Attempting to keep at least one file in MWF
8500         monostyled.
8501
8502 2005-06-02  Peter Bartok  <pbartok@novell.com>
8503
8504         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
8505           that way
8506
8507 2005-06-02  Peter Bartok  <pbartok@novell.com>
8508
8509         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
8510         * XplatUI.cs: Added DoDragDrop() method
8511         * XplatUIDriver.cs: Added DoDragDrop() method
8512
8513 2005-06-02  Jackson Harper  <jackson@ximian.com>
8514
8515         * Splitter.cs: Implement BorderStyle.
8516
8517 2005-06-02  Jackson Harper  <jackson@ximian.com>
8518
8519         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
8520         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
8521         X11 using XDND.
8522
8523 2005-06-02  Peter Bartok  <pbartok@novell.com>
8524
8525         * DataObject.cs:
8526           - Added Data setter
8527           - Fixed broken insertion code for SetData, now also
8528             overwrites any existing entry of the same format name
8529         * Hwnd.cs: Added list of pointers that automatically gets
8530           freed when the window is disposed
8531         * XplatUI.cs: Call driver initialization method when loading
8532           a driver
8533         * Control.cs:
8534           - OnDragLeave takes EventArgs, not DragEventArgs
8535           - Added setting of WS_EX_ACCEPTFILES style when dropping is
8536             supported
8537           - Forces style update when drop state changes
8538         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
8539           not perfect since we cannot (yet) call the IDataObject.GetData()
8540           method, we keep getting 0x80004005 error, dunno why)
8541
8542 2005-06-02  Peter Bartok  <pbartok@novell.com>
8543
8544         * DragEventArgs.cs: Make fields internal so we can cache the
8545           object and re-set the fields from XplatUI
8546
8547 2005-06-02  Jackson Harper  <jackson@ximian.com>
8548
8549         * Control.cs: Add some internal methods so the DnD subsystem can
8550         raise DnD events. Also call into the driver when AllowDrop is set.
8551         * XplatUI.cs:
8552         * XplatUIDriver.cs: New method for setting whether or not a window
8553         is allowed to accept drag and drop messages.
8554                 
8555 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
8556         
8557         * ScrollBar.cs: Make sure that values sent in Scroll events
8558         are always between Maximum and Minimum.
8559
8560 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
8561
8562         * Menu.cs: Call MenuChanged when menuitem visibility has been
8563         changed.
8564         * MenuItem.cs: Rebuild menu when item is (not) visible.
8565         * MainMenu.cs: MainMenu has special MenuChanged.
8566         * Theme.cs: Caption and FrameBorderSize are not fixed.
8567         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
8568         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
8569         * XplatUIX11.cs,
8570         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
8571         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
8572
8573 2005-05-30  Jackson Harper  <jackson@ximian.com>
8574
8575         * DataFormat.cs: We can't statically initialize this stuff because
8576         it calls into the xplatui and could create a loop. So we lazy init
8577         it.
8578
8579 2005-05-28  Jackson Harper  <jackson@ximian.com>
8580
8581         * Control.cs: Proper implementation of Product(Name/Version).
8582
8583 2005-05-27  Jackson Harper  <jackson@ximian.com>
8584
8585         * DataObject.cs: Dont crash if no data is found.
8586
8587 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
8588         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
8589                 as per status page, guessing it should be set to true
8590
8591 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
8592
8593         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
8594         * DataGridTableStyle.cs: set proper formatting text, def header text
8595         * ThemeWin32Classic.cs: new themable paramaters
8596         * DataGridBoolColumn.cs: paint check box, get data, fixes
8597         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
8598         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
8599         * DataGridColumnStyle.cs: fixes
8600         * Theme.cs: new themable paramaters
8601                 
8602 2005-05-26  Peter Bartok  <pbartok@novell.com>
8603
8604         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
8605
8606 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
8607         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
8608
8609 2005-05-24  Peter Bartok  <pbartok@novell.com>
8610
8611         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
8612           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
8613           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
8614           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
8615           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
8616           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
8617           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
8618           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
8619           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
8620           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
8621           missing attributes, etc
8622         * DataGridPreferredColumnWidthTypeConverter.cs: Added
8623
8624 2005-05-24  Peter Bartok  <pbartok@novell.com>
8625
8626         * Help.cs: Added, implemented trivial functions, throws up MessageBox
8627           when user tries to get help
8628         * DataObject.cs, DataFormats.cs, LinkArea.cs,
8629           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
8630           to suppress warnings
8631         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
8632           avoid unreachable code warning
8633
8634 2005-05-20  Peter Bartok  <pbartok@novell.com>
8635
8636         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
8637
8638 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
8639
8640         * DataGridTextBoxColumn.cs: Basic painting methods
8641         * DataGridTableStyle.cs: Set table style in the column
8642         * ThemeWin32Classic.cs: Use Theme for colors
8643         * DataGridDrawingLogic.cs: Implement more drawing
8644         * DataGrid.cs: drawing, theming, enhacements, fixes
8645         * DataGridColumnStyle.cs: fixes, drawing
8646         * Theme.cs: theming for Datagrid
8647
8648 2005-05-20  Peter Bartok  <pbartok@novell.com>
8649
8650         * Cursor.cs: Implemented GetObjectData() method
8651
8652 2005-05-20  Peter Bartok  <pbartok@novell.com>
8653
8654         * Cursors.cs: Added setting of cursor name
8655         * Cursor.cs:
8656           - Implemented constructors
8657           - Implemented Draw and DrawStretched
8658           - Implemented Current property
8659           - Implemented == and != operators
8660           - Implemented Dispose()
8661           - Implemented ToString
8662           - Added missing attributes
8663         * XplatUIX11.cs:
8664           - Added missing reset for OverrideCursor when DoEvents is called
8665           - Fixed creation of cursor, logic was wrong
8666         * XplatUIWin32.cs:
8667           - Added missing reset for OverrideCursor when DoEvents is called
8668           - Fixed creation of cursor, bit arrays were swapped
8669         * Clipboard.cs: Removed obsolete MonoTODO attribute
8670
8671 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
8672
8673         * ComboBox.cs: fixes OnSelectedItemChanged
8674         * ControlBindingsCollection.cs: fixes item range check
8675
8676 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
8677
8678         * UpDownBase.cs:
8679                 - Calc preferred height properly
8680                 - Implement missing properties
8681                 
8682         * NumericUpDown.cs: Implement missing events
8683
8684 2005-05-19  Jackson Harper  <jackson@ximian.com>
8685
8686         * TabControl.cs: New method that resizes the tab pages before
8687         redrawing them. This as needed as the control is double buffered
8688         and sizing will not be recalculated unless ResizeTabPages is
8689         called.
8690         * TabPage.cs: Set base.Text instead of Text in the constructor so
8691         that UpdateOwner does not get called. Use the new Redraw method of
8692         TabControl instead of Refresh so the sizing is recalculated.
8693         * ThemeWin32Classic.cs: Draw the text for button tabs.
8694
8695 2005-05-19  Jackson Harper  <jackson@ximian.com>
8696
8697         * Control.cs: Paint control background images. Fix typo where
8698         PaintControlBackground was not getting called correctly.
8699
8700 2005-05-19  Peter Bartok  <pbartok@novell.com>
8701
8702         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
8703           I can investigate, apparently I broke FileDialog
8704
8705 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
8706
8707         * AxHost.cs: Some simple properties.
8708         * Control.cs: window must be accessible after ctor.
8709         * Form.cs: Added TransparencyKey property.
8710         * TextBoxBase.cs: Implemented Clear. Text property can be null.
8711         * XplatUIWin32.cs: SetBorderStyle implemented.
8712
8713 2005-05-18  Peter Bartok  <pbartok@novell.com>
8714
8715         * DataObject.cs: Entries are not global but particular to the
8716           DataObject, now it behaves that way
8717         * XplatUIWin32.cs: Implemented Clipboard methods
8718         * Clipboard.cs: Implemented
8719         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
8720         * XplatUIOSX.cs: Updated to final clipboard prototypes
8721         * XplatUIX11.cs: Implemented Clipboard methods
8722         * XplatUIDriver.cs: Updated to final clipboard prototypes
8723         * XplatUIStructs.cs:
8724           - Added BITMAPINFOHEADER struct
8725           - Added ClipboardFormats enum
8726         * X11Structs.cs:
8727           - Added ClipboardStruct
8728           - Added Atom enum items for clipboard types
8729           - Fixed atom types for Selection event structures
8730         * DataFormats.cs:
8731           - Added internal properties and methods for drivers to enumerate
8732             all known formats
8733           - Switched initialization method to allow drivers to assign their
8734             own IDs even for the MS predefined clipboard IDs
8735         * XplatUI.cs: Updated to final clipboard interface
8736
8737 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
8738         * PropertyGridView.cs: Fixed compiler warnings.
8739
8740 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
8741         * PropertyGrid.cs: Added some event calls
8742         * PropertyGridView.cs: Change drawing code to use double buffering
8743         * PropertyGridTextBox.cs: Changed Text property name
8744         * GridItem.cs: Added Bounds property.
8745         * GridEntry.cs: Added Bounds property.
8746
8747 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
8748
8749         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
8750         since GetType() may not return the correct type if the object is
8751         a remoting proxy.
8752
8753 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
8754
8755         * TreeNodeCollection.cs: fixes get/set item ranges
8756         
8757 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
8758
8759         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
8760                 
8761 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
8762
8763         * ComboBox.cs: Fix item range comparation
8764         * ListView.cs: Fix item range comparation
8765
8766 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
8767
8768         * FontDialog.cs:
8769           - Clear example panel when OnPaint is called
8770           - Better solution for displaying the example panel text
8771           - Select default indexes in the ListBoxes
8772
8773 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
8774
8775         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
8776
8777 2005-05-11  Peter Bartok  <pbartok@novell.com>
8778
8779         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
8780         * SelectionRangeConverter.cs: Implemented
8781         * PropertyGrid.cs: Fixed attribute value
8782         * Control.cs:
8783           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
8784           - Added Sebastien Pouliot's CAS Stack Propagation fixes
8785         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
8786           that's common to all drivers. First methods to go there are
8787           Sebastien Pouliot's CAS Stack Propagation helper methods
8788         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
8789           Sebastien Pouliot for CAS Stack Propagation
8790
8791 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
8792
8793         * OSXStructs.cs:
8794           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
8795
8796 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
8797
8798         * DataGridTextBoxColumn.cs: fixed some members
8799         * GridColumnStylesCollection.cs: indexed column is case insensitive
8800         * DataGridTableStyle.cs: fixes
8801         * ThemeWin32Classic.cs: add new theme parameter
8802         * Theme.cs: add new theme parameter
8803         * DataGridDrawingLogic.cs: Datagrid's drawing logic
8804         * DataGrid.cs: fixes, new internal properties, etc.
8805         * DataGridColumnStyle.cs: allows to set grid value
8806         *
8807
8808 2005-05-10  Peter Bartok  <pbartok@novell.com>
8809
8810         * AccessibleObject.cs:
8811           - Removed MonoTODO attribute on help, method is correct
8812           - Fixed Bounds property
8813         * AxHost.cs: Moved MonoTODO
8814         * ButtonBase.cs: Now setting AccessibleObject properties
8815         * RadioButton.cs: Setting proper AccessibleObject role
8816         * CheckBox.cs: Setting proper AccessibleObject role
8817         * ControlBindingsCollection.cs: Added properties, methods and attributes
8818         * DataFormats.cs: Fixed awkward internal API, and changed to enable
8819           userdefined DataFormats.Format items as well
8820         * ListControl.cs: Removed data_member from the public eye
8821         * OpenFileDialog.cs:
8822           - Made class sealed
8823           - Added missing attributes
8824         * SaveFileDialog.cs: Added missing attributes
8825         * ImageListStreamer.cs: Fixed code that caused warnings
8826         * LinkLabel.cs: Removed unreachable code
8827         * TreeView.cs: Fixed code that caused warnings
8828         * PropertyGridView.cs: Fixed code that caused warnings
8829         * GridColumnStylesCollection.cs: Added missing attributes
8830         * GridTableStylesCollection: Added missing attribute
8831         * PropertyManager: Added .ctor
8832         * SecurityIDType: Added
8833         * DataObject.cs: Implemented class
8834         * LinkArea.cs: Added missing attribute
8835
8836 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
8837
8838         * RadioButton.cs: call base method to allow to fire OnClick event
8839         * UpDownBase.cs: OnMouseUp call base method
8840         * CheckedListBox.cs: call base method before returning
8841         * TrackBar.cs: call base method before returning
8842         
8843
8844 2005-05-10  Peter Bartok  <pbartok@novell.com>
8845
8846         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
8847           for messages
8848
8849 2005-05-10  Peter Bartok  <pbartok@novell.com>
8850
8851         * DataFormats.cs: Implemented
8852         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
8853           XplatUIX11.cs: Added Clipboard APIs
8854         * XplatUIWin32.cs: Implemented Clipboard APIs
8855         * FolderBrowserDialog.cs: Added missing event, attributes
8856
8857 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
8858
8859         * CheckBox.cs: call base method to allow to fire OnClick event
8860
8861 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
8862
8863         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
8864
8865 2005-05-06  Peter Bartok  <pbartok@novell.com>
8866
8867         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
8868         * Screen.cs: Implemented
8869         * HelpNavigator.cs: Added
8870         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
8871           property
8872         * HelpProvider.cs: Implemented all we can do until we have a CHM
8873           help library (which means that "What's This" does work now)
8874
8875 2005-05-06  Jackson Harper  <jackson@ximian.com>
8876
8877         * XplatUIX11.cs: Fix waking up the main loop.
8878                 
8879 2005-05-05  Peter Bartok  <pbartok@novell.com>
8880
8881         * XplatUI.cs: Updated revision
8882         * Form.cs: Removed enless loop
8883         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
8884         * Label.cs (OnPaint): Added call to base.OnPaint()
8885         * ToolTip.cs: Made ToolTipWindow reusable for other controls
8886         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
8887         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
8888         * AxHost.cs: Added
8889         * ButtonBase.cs: Moved base.OnPaint() call to end of method
8890         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
8891           to ToolTip.ToolTipWindow for drawing and size methods; this allows
8892           reuse of ToolTipWindow by other controls
8893         * SizeGrip.cs: Moved base.OnPaint() call to end of method
8894         * XplatUIX11.cs: Now clipping drawing area (experimental)
8895         * PictureBox.cs: Moved base.OnPaint() call to end of method
8896         * Theme.cs: Fixed ToolTip abstracts to match new format
8897         * ErrorProvider.cs: Implemented
8898
8899 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
8900
8901         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
8902         * LinkLabel.cs:
8903                 - Adds cursors
8904                 - Handles focus
8905                 - Implements LinkBehavior
8906                 - Fixes many issues
8907
8908 2005-05-03  Jackson Harper  <jackson@ximian.com>
8909
8910         * ListView.cs: Calculate the scrollbar positioning on resize and
8911         paint, so they get put in the correct place.
8912
8913 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
8914
8915         * ColorDialogs.cs: The small color panels are now handled by
8916           SmallColorControl. This fixes drawing of the focus rectangle
8917           and adds a 3D border.
8918
8919 2005-05-03  Peter Bartok  <pbartok@novell.com>
8920
8921         * Control.cs: Modified version of Jonathan Chamber's fix for
8922           double-buffering
8923
8924 2005-05-03  Jackson Harper  <jackson@ximian.com>
8925
8926         * ListView.cs: Remove redraw variable. Control now handles whether
8927         or not a redraw needs to be done, and will only raise the paint
8928         event if redrawing is needed.
8929
8930 2005-05-03  Jackson Harper  <jackson@ximian.com>
8931
8932         * Splitter.cs: No decorations for the splitter form. Cache the
8933         hatch brush.
8934
8935 2005-05-03  Jackson Harper  <jackson@ximian.com>
8936
8937         * TreeView.cs: Use dashed lines to connect nodes. Use the
8938         ControlPaint method for drawing the focus rect instead of doing
8939         that in treeview.
8940
8941 2005-05-02  Peter Bartok  <pbartok@novell.com>
8942
8943         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
8944
8945 2005-04-29  Jackson Harper  <jackson@ximian.com>
8946
8947         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
8948         entire image buffer. Just clear the clipping rectangle.
8949
8950 2005-04-29  Jackson Harper  <jackson@ximian.com>
8951
8952         * ThemeWin32Classic.cs: Don't draw list view items that are
8953         outside the clipping rectangle.
8954
8955 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
8956
8957         * ListBox.cs: added horizontal item scroll
8958
8959 2005-04-29  Jackson Harper  <jackson@ximian.com>
8960
8961         * ThemeWin32Classic.cs: Remove some old debug code that was
8962         causing flicker with the new double buffering code.
8963
8964 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
8965
8966         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
8967         behave like combobox and comboboxlist (still not sure if this is
8968         correct though).
8969
8970 2005-04-28  Jackson Harper  <jackson@ximian.com>
8971
8972         * ThemeWin32Classic.cs: Don't fill the middle of progress
8973         bars. This fills areas outside of the clip bounds that don't need
8974         to be filled.
8975
8976 2005-04-28  Jackson Harper  <jackson@ximian.com>
8977
8978         * Control.cs: Don't expose functionality to touch the image buffers.
8979         * ProgressBar.cs:
8980         * ListView.cs: We do not need to (and no longer can) manipulate
8981         the image buffers directly. All of this is handled by Control.
8982
8983 2005-04-28  Peter Bartok  <pbartok@novell.com>
8984
8985         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
8986           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
8987           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
8988
8989 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
8990
8991         * Combobox:
8992                 - Adjust control's height for non-simple comboboxes (bug fix)
8993                 - Remove dead code
8994         * MenuAPI.cs: remove unused var
8995         * ScrollBar.cs: remove unsed var
8996                  
8997         * ListBox.cs: unselect items when clearing
8998
8999 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
9000
9001         * ListControl.cs: honors OnPositionChanged and default Selected Item
9002         * ListBox.cs: unselect items when clearing
9003
9004 2005-04-27  Jackson Harper  <jackson@ximian.com>
9005
9006         * X11Keyboard.cs: Initialize a default keyboard and give a warning
9007         if a "correct" keyboard is not found. This will make us not crash,
9008         but might give some users bad keyboard layouts...seems to be the
9009         same thing rewind does.
9010
9011 2005-04-27  Jackson Harper  <jackson@ximian.com>
9012
9013         * BindingManagerBase.cs: Attach the current/position changed
9014         handlers to their respective events.
9015
9016 2005-04-27  Jackson Harper  <jackson@ximian.com>
9017
9018         * Control.cs: Make sure that the first WM_PAINT does a full draw,
9019         not just a blit.
9020         * ThemeWin32Classic.cs: Don't fill the background for picture
9021         boxes. This could overright user drawing.
9022         * ComboBox.cs: Just fill the clipping rect not the entire client
9023         rect when drawing the background. This prevents pieces of the
9024         image buffer from getting overwritten and is theoretically faster.
9025
9026 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
9027
9028         * ComboBox.cs: Databinding support fixes, fire missing events
9029         * ListControl.cs: implement missing methods and properties, fixes
9030         * ThemeWin32Classic.cs: Databiding support on Drawing
9031         * CheckedListBox.cs: Databinding support fixes, fire missing events
9032         * ListBox.cs: Databinding support fixes, fire missing events
9033         
9034 2005-04-25  Peter Bartok  <pbartok@novell.com>
9035
9036         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
9037
9038 2005-04-25  Jackson Harper  <jackson@ximian.com>
9039
9040         * TreeView.cs: Use the horizontal scrollbars height not width when
9041         determining how much of the client area is available.
9042
9043 2005-04-25  Jackson Harper  <jackson@ximian.com>
9044
9045         * Control.cs: Double buffering is handled differently now. As per
9046         the spec, the extra buffer is created in the WM_PAINT message and
9047         passed down to the control's drawing code.
9048         * GroupBox.cs:
9049         * Label.cs:
9050         * CheckBox.cs:
9051         * ProgressBar.cs:
9052         * RadioButton.cs:
9053         * ColorDialog.cs:
9054         * ComboBox.cs:
9055         * PropertyGridView.cs:
9056         * UpDownBase.cs:
9057         * MessageBox.cs:
9058         * MenuAPI.cs:
9059         * ListView.cs:
9060         * ButtonBase.cs:
9061         * SizeGrip.cs:
9062         * ScrollBar.cs:
9063         * ListBox.cs:
9064         * TrackBar.cs:
9065         * ToolBar.cs:
9066         * PictureBox.cs:
9067         * DateTimePicker.cs:
9068         * StatusBar.cs:
9069         * TreeView.cs: Update to new double buffering system.
9070         * MonthCalendar.cs: Uncomment block, as Capture is now
9071         working. Update to new double buffering
9072         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
9073         * PaintEventArgs.cs: New internal method allows us to set the
9074         graphics object. This is used for double buffering.
9075         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
9076         rectangle. The internal paint_area var has been removed from
9077         StatusBar. The clipping rect should be used instead.
9078         * Theme.cs: Give the PictureBox drawing method a clipping rect.
9079         * TabPage.cs: The RefreshTabs method was removed, so just call the
9080         tab controls Refresh method now.
9081         * TabControl.cs: Update to new double buffering. Make sure the
9082         handle is created before sizing the tab pages, otherwise we will
9083         get stuck in a loop.
9084
9085 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
9086
9087         * LinkLabel.cs: Fix typo, bug #74719; patch
9088           from Borja Sanchez Zamorano
9089
9090 2005-04-22  Jackson Harper  <jackson@ximian.com>
9091
9092         * TreeNode.cs: Implement Handle stuff.
9093         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
9094
9095 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
9096
9097         * DataGridTextBoxColumn.cs: call base constructors, fixes
9098         * GridColumnStylesCollection.cs: missing events, methods, and functionality
9099         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
9100         * DataGridTableStyle.cs: implements create default column styles
9101         * DataGridBoolColumn.cs: which types can handle
9102         * DataGrid.cs: missing methods, fixes, new functionality
9103         * DataGridColumnStyle.cs: fixes
9104
9105 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
9106         * FolderBrowserDialog.cs:
9107         - Use a thread to fill the TreeView
9108         - Adjusted some sizes
9109
9110 2005-04-19  Peter Bartok  <pbartok@novell.com>
9111
9112         * LinkLabel.cs: (Re-)create the pieces when setting the Text
9113           property. Fixes #74360.
9114
9115 2005-04-19  Jackson Harper  <jackson@ximian.com>
9116
9117         * XEventQueue.cs: Lock when getting the lockqueue size.
9118         * PictureBox.cs: Call base OnPaint
9119         
9120 2005-04-19  Peter Bartok  <pbartok@novell.com>
9121
9122         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
9123           messages were no longer being processed (this broke BeginInvoke)
9124
9125           
9126 2005-04-18  Jackson Harper  <jackson@ximian.com>
9127
9128         * TreeView.cs: buglet that caused node images to get drawn
9129         regardless of whether or not they were in the clipping rectangle.
9130
9131 2005-04-18  Jackson Harper  <jackson@ximian.com>
9132
9133         * CurrencyManager.cs: There are four rules for GetItemProperties:
9134         - If the type is an array use the element type of the array
9135         - If the type is a typed list, use the type
9136         - If the list contains an Item property that is not an object, use
9137         that property
9138         - use the first element of the list if there are any elements in
9139         the list.
9140         
9141 2005-04-17  Jackson Harper  <jackson@ximian.oom>
9142
9143         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
9144         click. This handles offsets for scrolling properly and reduces
9145         memory. Also fixed GetNode to not offset now that TopNode works
9146         properly.
9147         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
9148         
9149 2005-04-17  Jackson Harper  <jackson@ximian.com>
9150
9151         * CursorConverter.cs: Initial implementation.
9152
9153 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
9154
9155         * ListControl.cs: work towards complex data binding support on ListControl
9156         * CurrencyManager.cs: work towards complex data binding support on ListControl
9157         * ListBox.cs: work towards complex data binding support on ListControl
9158
9159
9160 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
9161
9162         * GridTableStylesCollection.cs: fixes name and constructor
9163         * DataGridTableStyle.cs: fixes
9164         * DataGridBoolColumn.cs: fixes names and constructors
9165         * DataGrid.cs: define methods and properties. Some init implementations
9166         * DataGridCell.cs: define methods and properties. Some init implementations
9167         * GridTablesFactory.cs: Define methods and properties
9168
9169 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
9170
9171         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
9172         graphics port changes.  We still want the coordinates in global screen
9173         coordinates.
9174
9175 2005-04-14  Jackson Harper  <jackson@ximian.com>
9176
9177         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
9178         check plus minus or checkbox clicks unless those features are enabled.
9179
9180 2005-04-14  Jackson Harper  <jackson@ximian.com>
9181
9182         * TreeView.cs: Add methods for setting the top and bottom visible
9183         nodes. TreeNode::EnsureVisible uses these methods.
9184         * TreeNode.cs: Implement EnsureVisible
9185
9186 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
9187
9188         * Form.cs: Pospone menu assignation if the window has not been created yet
9189         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
9190         size and position
9191
9192 2005-04-12  Jackson Harper  <jackson@ximian.com>
9193
9194         * TreeView.cs: Set the TopNode properly when scrolling
9195         occurs. This has the added benifit of reducing the amount of
9196         walking that needs to be done when drawing. Also removed an old
9197         misleading TODO.
9198         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
9199         
9200 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
9201
9202         * Timer.cs: fixes interval setting when the timer is already enabled
9203         
9204 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
9205
9206         * FolderBrowserDialog.cs: First approach
9207
9208 2005-04-09  Peter Bartok  <pbartok@novell.com>
9209
9210         * FolderBrowserDialog: Added
9211
9212 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
9213
9214         * LinkLabel.cs: move drawing code into the theme
9215         * ThemeWin32Classic.cs: drawing code and painting background bugfix
9216         * Theme.cs: define DrawLinkLabel method
9217
9218 2005-04-05  Jackson Harper  <jackson@ximian.com>
9219
9220         * BindingContext.cs: Use weak references so these bad actors don't
9221         stay alive longer then they need to.
9222
9223 2005-04-05  Jackson Harper  <jackson@ximian.com>
9224
9225         * ListControl.cs: Basic implementation of complex databinding.
9226         * ComboBox.cs:
9227         * ListBox.cs: Add calls to ListControl databinding methods.
9228
9229 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
9230
9231         * FileDialog.cs:
9232           - Don't change PopupButtonState to Normal when the
9233             PopupButton gets pressed several times.
9234           - Renamed ButtonPanel to PopupButtonPanel
9235
9236 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
9237
9238         * ColorDialog.cs: Use cached objects instead of creating them
9239         * LinkLabel.cs: Use cached objects instead of creating them
9240         * Splitter.cs: Use cached objects instead of creating them
9241         * FontDialog.cs: Use cached objects instead of creating them
9242         * PropertyGridView.cs: Use cached objects instead of creating them
9243         * MessageBox.cs: Use cached objects instead of creating them
9244         * FileDialog.cs: Use cached objects instead of creating them
9245         * ThemeWin32Classic.cs: Use cached objects instead of creating them
9246         * TreeView.cs: Use cached objects instead of creating them
9247         
9248 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
9249
9250         * Control.cs: use Equals to compare the font since no == op
9251         * ScrollBar.cs: use Equals to compare the font since no == op
9252
9253 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
9254
9255         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
9256
9257 2005-04-01  Jackson Harper  <jackson@ximian.com>
9258
9259         * Binding.cs: Implement IsBinding.
9260         * BindingManagerBase.cs:
9261         * PropertyManager.cs:
9262         * CurrencyManager.cs: Add IsSuspended property.
9263
9264 2005-04-01  Jackson Harper  <jackson@ximian.com>
9265
9266         * Binding.cs: Had some IsAssignableFrom calls backwards.
9267
9268 2005-04-01  Jackson Harper  <jackson@ximian.com>
9269
9270         * Binding.cs: Handle null data members when pulling data.
9271         * PropertyManager.cs: Handle the data member being a property that
9272         does not exist.
9273
9274 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
9275
9276         * DataGridTextBoxColumn.cs: fixes signature
9277         * DataGrid.cs: calls right constructor
9278
9279 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
9280
9281         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
9282         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
9283         * GridTableStylesCollection.cs: implements GridTableStylesCollection
9284         * DataGridTableStyle.cs: implements DataGridTableStyle
9285         * DataGridBoolColumn.cs: implements DataGridBoolColumn
9286         * DataGridTextBox.cs: implements DataGridTextBox
9287         * DataGridColumnStyle.cs: implements DataGridColumnStyle
9288
9289 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
9290
9291         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
9292
9293 2005-03-29  Peter Bartok  <pbartok@novell.com>
9294
9295         * Application.cs:
9296           - Properly implemented CompanyName property
9297           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
9298             returns a path that includes CompanyName, ProductName and
9299             Version (fixes bug #70330)
9300
9301 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
9302
9303         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
9304           fixes bug #72588.
9305
9306 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
9307
9308         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
9309         
9310           - Added ReadOnly CheckBox
9311           - Further refactoring: moved some code from Open-/SaveFileDialog
9312             to FileDialog
9313
9314 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
9315
9316         * OpenFileDialog.cs: Fixed CheckFileExists
9317         * FileDialog.cs:
9318           Moved FileView and DirComboBox outside FileDialog class.
9319           They can now be used outside FileDialog
9320
9321 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
9322
9323         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
9324         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
9325
9326 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
9327
9328         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
9329           - Added missing CreatePrompt property in SaveDialog
9330           - Overall SaveDialog handling should be better now
9331           - Added non standard ShowHiddenFiles property
9332           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
9333           - Added InitialDirectory and RestoreDirectory support
9334
9335 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
9336
9337         * FileDialog.cs: Made dirComboBox usable
9338
9339 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
9340
9341         * FileDialog.cs: Added Filter support (case sensitiv)
9342
9343 2005-03-24  Jackson Harper  <jackson@ximian.com>
9344
9345         * TabControl.cs: Need a couple more pixels for the lines.
9346
9347 2005-03-23  Jackson Harper  <jackson@ximian.com>
9348
9349         * TabControl.cs: Give the tab page focus when it is selected.
9350
9351 2005-03-23  Jackson Harper  <jackson@ximian.com>
9352
9353         * TabControl.cs: Account for the drawing of tabs borders when
9354         invalidating. If the slider was clicked dont do click detection on
9355         the tabs.
9356
9357 2005-03-23  Jackson Harper  <jackson@ximian.com>
9358
9359         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
9360
9361 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
9362
9363         * CategoryGridEntry.cs: Added
9364         * GridItem.cs: Added helper properties
9365         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
9366         * GridEntry.cs: Updated code for collection
9367         * PropertyGrid.cs: Cleaned up some formatting
9368         * PropertyGridView.cs: Added drop down functionality for enums.
9369         * GridItemCollection.cs: Added enumerator logic
9370         * PropertyGridEntry.cs: Added
9371
9372 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
9373
9374         * FileDialog.cs:
9375           - Removed unnecessary commented code
9376           - Fixed handling for entering the filename manually in the combobox
9377
9378 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
9379
9380         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
9381
9382 2005-03-18  Peter Bartok  <pbartok@novell.com>
9383
9384         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
9385           them being touching the border
9386
9387 2005-03-18  Peter Bartok  <pbartok@novell.com>
9388
9389         * TextControl.cs: Quick hack to center text better
9390
9391 2005-03-18  Peter Bartok  <pbartok@novell.com>
9392
9393         * ControlPaint.cs:
9394           - Don't throw NotImplemented exceptions, just print a notice once
9395             instead (requested by Miguel). This makes running existing SWF
9396             apps a bit easier
9397         * Control.cs:
9398           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
9399           - Added context menu trigger on right click
9400         * Panel.cs: Trigger invalidate on resize
9401         * StatusBar.cs:
9402           - Removed old double-buffer drawing
9403           - Added ResizeRedraw style to force proper update of statusbar
9404         * ListView.cs:
9405           - Removed debug output
9406         * ThemeWin32Classic.cs:
9407           - Fixed drawing of status bar, now draws Text property if there
9408             are no defined panels
9409
9410 2005-03-18  Jackson Harper  <jackson@ximian.com>
9411
9412         * ImageList.cs: When the image stream is set pull all the images
9413         from it.
9414         * ImageListStreamer.cs: Implement reading image list streams.
9415
9416 2005-03-18  Peter Bartok  <pbartok@novell.com>
9417
9418         * ThemeWin32Classic.cs (DrawPictureBox):
9419           - Fixed calculations for centered drawing
9420           - Fixed drawing for normal mode, not scaling the image on normal
9421
9422 2005-03-18  Peter Bartok  <pbartok@novell.com>
9423
9424         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
9425           textbox
9426         * FileDialog.cs:
9427           - Made Open/Save button the accept button for FileDialog
9428           - Tied the cancel button to the IButtonControl cancel button
9429           - Save/Open now properly builds the pathname
9430           - Now handles user-entered text
9431           - Preventing crash on right-click if no item is selected
9432           - Fixed Text property, now uses contents of textbox
9433           - Fixed SelectedText property, now just returns the text part that
9434             is selected in the text box
9435
9436 2005-03-18  Jackson Harper  <jackson@ximian.com>
9437
9438         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
9439         rect, make sure to de-adjust the interior rect after drawing the
9440         tab text.
9441
9442 2005-03-18  Peter Bartok  <pbartok@novell.com>
9443
9444         * MenuAPI.cs: Remove menu *before* executing selected action to
9445           prevent the menu from 'hanging around'
9446           
9447 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
9448
9449         * XplatUIOSX.cs: Implemented WorkingArea property
9450
9451 2005-03-17  Peter Bartok  <pbartok@novell.com>
9452
9453         * XplatUIX11.cs: Fixed menu coord calculations
9454         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
9455           for calculating offsets
9456
9457 2005-03-17  Peter Bartok  <pbartok@novell.com>
9458
9459         * Hwnd.cs: Do not consider menu presence for default client
9460           rectangle location/size
9461         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
9462           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
9463           translation functions
9464         * FileDialog.cs: Fixed (what I presume is a) typo
9465
9466 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
9467
9468         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
9469           X access (avoids X-Async errors)
9470
9471 2005-03-16  Jackson Harper  <jackson@ximian.com>
9472
9473         * TabControl.cs: Raise the SelectedIndexChanged event.
9474
9475 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
9476
9477         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
9478           - Removed vertical ToolBar and replaced it with a custom panel
9479             (desktop and home button already work)
9480           - Added Help button (some controls get resized or relocated then)
9481           - Draw correct text depending on Open or Save.
9482           - Fixed some typos...
9483
9484 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
9485
9486         * ScrollBar.cs:
9487           - Only change Maximum and Minimum when need it (bug fix)
9488
9489 2005-03-15  Peter Bartok  <pbartok@novell.com>
9490
9491         * Form.cs: Use Handle for icon, to trigger creation if
9492           the window does not yet exist
9493         * Control.cs:
9494           - CanSelect: Slight performance improvement
9495           - Focus(): Preventing possible recursion
9496           - Invalidate(): Removed ControlStyle based clear flag setting
9497           - WM_PAINT: fixed logic for calling OnPaintBackground
9498           - WM_ERASEBKGND: Fixed logic, added call to new driver method
9499             EraseWindowBackground if the control doesn't paint background
9500         * XplatUIWin32.cs:
9501           - Moved EraseWindowBackground() method to internal methods
9502           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
9503             is sent via SendMessage on BeginPaint call on Win32
9504         * XplatUIX11.cs:
9505           - Added EraseWindowBackground() method
9506           - No longer sends WM_ERASEBKGND on .Expose, but on call to
9507             PaintEventStart, which more closely matches Win32 behaviour
9508           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
9509           - Fixed SetFocus() to properly deal with client and whole windows
9510         * Hwnd.cs: Added ErasePending property
9511         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
9512         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
9513
9514 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
9515
9516         * XplatUIOSX.cs:
9517           - Fix hard loop when timers exist.
9518           - Fix bugs with middle and right click for 3 button mice.
9519
9520 2005-03-11  Peter Bartok  <pbartok@novell.com>
9521
9522         * XplatUIX11.cs:
9523           - get_WorkingArea: Need to call X directly, GetWindowPos only
9524             returns cached data now
9525           - Added sanity check to GetWindowPos hwnd usage
9526
9527 2005-03-11  Jackson Harper  <jackson@ximian.com>
9528
9529         * BindingManagerBase.cs: This method isn't used anymore as
9530         PullData now updates the data in the control.
9531
9532 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
9533
9534         * Form.cs: fixes menu drawing on X11
9535         * MenuAPI.cs:  fixes menu drawing on X11
9536
9537 2005-03-11  Peter Bartok  <pbartok@novell.com>
9538
9539         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
9540           from Jonathan Gilbert; should fix bug #73606
9541         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
9542           in Screen coordinates. Thanks, Jordi.
9543         * Form.cs: Added missing attribute
9544
9545 2005-03-11  Peter Bartok  <pbartok@novell.com>
9546
9547         * Form.cs:
9548           - Rudimentary Mdi support
9549           - Removed outdated FormParent code
9550           - Implemented lots of missing properties and methods, still missing
9551             transparency support
9552           - Added missing attributes
9553           - Implemented support for MaximumBounds
9554           - Added firing of various events
9555         * XplatUI.cs: Added SetIcon() method
9556         * XplatUIDriver.cs: Added SetIcon() abstract
9557         * XplatUIOSX.cs: Stubbed out SetIcon() method
9558         * XplatUIX11.cs:
9559           - Implemented SetIcon() support
9560           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
9561           - Switched to unix line endings
9562         * XplatUIWin32.cs:
9563           - Made POINT internal so for can access it as part of MINMAX
9564           - Implemented SetIcon() support
9565           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
9566             native Mdi support again, might have to go managed)
9567         * Control.cs: Now fires the StyleChanged event
9568         * MdiClient.cs: Added; still mostly empty
9569
9570 2005-03-10  Peter Bartok  <pbartok@novell.com>
9571
9572         * SaveFileDialog.cs: Added emtpy file
9573
9574 2005-03-08  Peter Bartok  <pbartok@novell.com>
9575
9576         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
9577           in turn triggers OnCreateContro) when creating a handle for the
9578           first time.
9579         * TextControl.cs: Fixed endless loop in certain cases when
9580           replacing the current selection
9581
9582 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
9583
9584         * ScrollBar.cs:
9585           - Honors NewValue changes in Scroll events allowing apps to change it
9586           - Adds First and Last Scroll events
9587           - Fixes Thumb events
9588
9589 2005-03-07  Peter Bartok  <pbartok@novell.com>
9590
9591         * Hwnd.cs: Added DefaultClientRectangle property
9592         * XplatUI.cs: Now using the X11 driver Where() method, which provides
9593           more detailed debug information
9594         * XplatUIX11.cs:
9595           - Fixed size-change feedback loop, where we would pull an old size
9596             off the queue and mistakenly change our window's size to an
9597             earlier value
9598           - Now compressing ConfigureNotify events, to reduce looping and
9599             redraw issues
9600         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
9601           is called
9602
9603 2005-03-07  Jackson Harper  <jackson@ximian.com>
9604
9605         * Binding.cs: Push data pushes from data -> property. Check if the
9606         property is readonly when attempting to set it.
9607
9608 2005-03-07  Jackson Harper  <jackson@ximian.com>
9609
9610         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
9611         instead of IsSubclassOf. Pulling data now sets the value on the
9612         control.
9613         * PropertyManager.cs:
9614         * CurrencyManager.cs: Just need to pull data when updating now,
9615         because PullData will set the value on the control.
9616
9617 2005-03-04  Jackson Harper  <jackson@ximian.com>
9618
9619         * Binding.cs: Implement data type parsing and converting on pulled
9620         data. TODO: Are there more ways the data can be converted?
9621
9622 2005-03-04  Jackson Harper  <jackson@ximian.com>
9623
9624         * Binding.cs: Support <Property>IsNull checks. Also bind to the
9625         controls Validating method so we can repull the data when the
9626         control loses focus.
9627
9628 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
9629
9630         * ColumnHeader.cs:
9631           - Fixes null string format
9632           
9633         * ListView.cs:
9634           - Adds enum type checks
9635           - Fixes redrawing and recalc need after changing some properties
9636           - Fixes on focus_item set after the event
9637           - Fixes adding columns after the control has been created
9638           
9639         * ThemeWin32Classic.cs:
9640           - Fixes CheckBox focus rectangle
9641           - Fixes ColumnHeader drawing
9642
9643
9644 2005-03-03  Jackson Harper  <jackson@ximian.com>
9645
9646         * Binding.cs: Bind to <Property>Changed events so we can detect
9647         when properties are changed and update the data.
9648
9649 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
9650
9651         * ImageList.cs:
9652           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
9653           - Fixes ImageList constructor with ImageList container
9654           - Fixes image scaling (wrong parameters at DrawImage)
9655
9656 2005-02-02  Jackson Harper  <jackson@ximian.com>
9657
9658         * Binding.cs: Make property searches case-insensitive. Eliminate
9659         some duplicated code.
9660
9661 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
9662
9663         * ComboBox.cs:
9664                 - Handle focus event
9665                 - Fix scrollbar events
9666                 - Discard highlighted item if remove it
9667                 - Fixes SelectedItem with strings
9668
9669 2005-03-01  Peter Bartok  <pbartok@novell.com>
9670
9671         * Control.cs:
9672           - Fixed Visible property, now follows (once again) parent chain
9673             to return false if any control in the chain is visible=false
9674           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
9675           - Fixed several places where is_visible instead of Visible was used
9676           - Implemented FIXME related to focus selection when setting focused
9677             control to be invisible
9678
9679         * XplatUIWin32.cs: Now using proper method to find out if window is
9680           visible. Thanks to Jordi for pointing it out
9681
9682 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
9683
9684         * ComboBox.cs: show/hide scrollbar instead of creating it
9685
9686 2005-02-27  Jackson Harper  <jackson@ximian.com>
9687
9688         * CurrencyManager.cs: Add PositionChanged stuff.
9689
9690 2005-02-27  Peter Bartok  <pbartok@novell.com>
9691
9692         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
9693         * XplatUIOSX.cs: Added GetMenuOrigin() stub
9694         * XplatUIWin32.cs: Implemented GetMenuOrigin()
9695         * XplatUIX11.cs:
9696           - Implemented GetMenuDC()
9697           - Implemented GetMenuOrigin()
9698           - Implemented ReleaseMenuDC()
9699           - Implemented generation of WM_NCPAINT message
9700           - Implemented generation and handling of WM_NCCALCSIZE message
9701         * Form.cs: Added debug helper message for Jordi's menu work
9702         * Hwnd.cs:
9703           - Modified ClientRect property; added setter, fixed getter to handle
9704             setting of ClientRect
9705           - Added MenuOrigin property
9706
9707 2005-02-26  Peter Bartok  <pbartok@novell.com>
9708
9709         * XplatUIX11.cs:
9710           - Destroys the caret if a window that's being destroyed contains it
9711           - Ignores expose events coming from the X11 queue for windows that
9712             already are destroyed
9713           - Now uses the proper variable for handling DestroyNotify, before we
9714             marked the wrong window as destroyed
9715           - Improved/added some debug output
9716
9717 2005-02-26  Peter Bartok  <pbartok@novell.com>
9718
9719         * X11Keyboard.cs: Fixes to work on 64bit systems
9720
9721 2005-02-26  Peter Bartok  <pbartok@novell.com>
9722
9723         * Control.cs:
9724           - Now calling OnHandleDestroyed from DestroyHandle()
9725             instead of Dispose()
9726           - Removed bogus call to controls.Remove() from DestroyHandle()
9727
9728 2005-02-26  Peter Bartok  <pbartok@novell.com>
9729
9730         * Control.cs: Properly destroy child windows when our handle is
9731           destroyed
9732
9733 2005-02-25  Peter Bartok  <pbartok@novell.com>
9734
9735         * XplatUI.cs:
9736           - Added 'DriverDebug' define to allow tracing XplatUI API calls
9737           - Alphabetized Static Methods and Subclasses
9738
9739         * XplatUIX11.cs:
9740           - Added XException class to allow custom handling of X11 exceptions
9741           - Created custom X11 error handler, tied into XException class
9742           - Added support for MONO_XEXCEPTIONS env var to allow the user
9743             to either throw an exception on X errors or continue running
9744             after displaying the error
9745           - Added handling of DestroyNotify message
9746           - Added handler for CreateNotify message (still disabled)
9747           - Improved (tried to at least) Where method to provide file and lineno
9748         * X11Structs.cs:
9749           - Added XErrorHandler delegate
9750           - Added XRequest enumeration (to suppor translation of errors)
9751
9752 2005-02-25  Jackson Harper  <jackson@ximian.com>
9753
9754         * PropertyManager.cs: Implement editing features
9755         * CurrencyManager.cs:
9756         * Binding.cs: First attempt at UpdateIsBinding
9757         * BindingManagerBase.cs: Call UpdateIsBinding before
9758         pushing/pulling data.
9759
9760 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
9761
9762         * MenuAPI.cs: Respect disabled items
9763         * ThemeWin32Classic.cs
9764                 - Caches ImageAttributes creation for DrawImageDisabled
9765                 - Fixes vertical menu line drawing
9766                 - Draws disabled arrows in disable menu items
9767
9768 2005-02-24  Peter Bartok  <pbartok@novell.com>
9769
9770         * Hwnd.cs:
9771           - Added UserData property to allow associating arbitrary objects
9772             with the handle
9773           - Fixed leak; now removing Hwnd references from static windows array
9774         * XplatUIWin32.cs:
9775           - Fixed Graphics leak in PaintEventEnd
9776           - Removed usage of HandleData, switched over to Hwnd class
9777         * HandleData.cs: Removed, obsoleted by Hwnd.cs
9778
9779 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
9780
9781         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
9782         * ScrollBar.cs: Fixes bug
9783         * TrackBar.cs: removes death code, clipping, mimize refreshes,
9784          keyboard navigation enhancements
9785
9786 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
9787
9788         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
9789         * GroupBox.cs: Add control styles
9790         * Label.cs: Add control styles
9791         * UpDownBase.cs: Add control styles
9792         * ListBox.cs: Add control styles
9793         * XplatUIWin32.cs: Fixes wrong parameter order
9794
9795
9796 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
9797
9798         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
9799
9800 2005-02-23  Jackson Harper  <jackson@ximian.com>
9801
9802         * PropertyManager.cs: Implement property binding. This doesn't
9803         seem to work yet though as (I think) there are some bugs in
9804         System.ComponentModel.PropertyDescriptor.
9805         * BindingContext.cs: Use new PropertyManager constructor.
9806
9807 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
9808
9809         * ProgressBar.cs: use clip region in ProgressBar
9810         * ThemeWin32Classic.cs: use clip region in ProgressBar
9811
9812 2004-02-22  Jackson Harper  <jackson@ximian.com>
9813
9814         * BindingsCollection.cs: Remove some debug code.
9815
9816 2005-02-22  Jackson Harper  <jackson@ximian.com>
9817
9818         * BindingContext.cs:
9819         * ControlBindingsCollection.cs:
9820         * CurrencyManager.cs:
9821         * Binding.cs:
9822         * BindingManagerBase.cs: Initial implementation
9823         * BindingsCollection.cs: Add an internal contains method that the
9824         BindingManagerBase uses to ensure bindings aren't added twice to
9825         the collection.
9826         * PropertyManager.cs: Stubbed out.
9827         * Control.cs:
9828         * ContainerControl.cs: Hook up databinding
9829         
9830 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
9831
9832         * XplatUIOSX.cs:
9833           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
9834           Fixed Invalidate/Update chain.
9835           Fixed tons of other minor bugs (this is almost a complete rewrite).
9836
9837 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
9838
9839         * ComboBox.cs: do subcontrol creation when the control is created
9840
9841 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
9842
9843         * Label.cs: fixes image drawing (image and imagelist)
9844         * ThemeWin32Classic.cs: cache brushes
9845         
9846 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
9847
9848         * Form.cs: Move menu drawing code to Theme class
9849         * ComboBox.cs: Move ComboBox drawing code to Theme class
9850         * MenuItem.cs: Move menu drawing code to Theme class
9851         * MenuAPI.cs: Move menu drawing code to Theme class
9852         * ThemeWin32Classic.cs: New methods
9853         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
9854         * ListBox.cs: Move Listbox drawing code to Theme class
9855         * Theme.cs: New methods
9856
9857 2005-02-20  Peter Bartok  <pbartok@novell.com>
9858
9859         * Control.cs:
9860           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
9861             only process mnemonics on those)
9862           - Fixed event sequence for key handling; first calling
9863             ProcessKeyEventArgs now
9864         * TextBoxBase.cs:
9865           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
9866             for processing non-character keys
9867           - Fixed WM_CHAR to generate proper event sequence before processing
9868         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
9869           generation
9870
9871 2005-02-19  Peter Bartok  <pbartok@novell.com>
9872
9873         * UserControl.cs: Added TextChanged event; added attributes
9874         * SizeGrip.cs: Implemented resizing and optional display of grip
9875         * Form.cs: Fixed attribute
9876         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
9877           Changed meaning of ScrollWindow bool argument; instead of the
9878           clear attribute (which will be true usually anyway), it gives the
9879           option of moving child controls as well.
9880         * XplatUIX11.cs:
9881           - Changed to match new ScrollWindow argument
9882           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
9883             now handles the implicit parent window a WM puts around us
9884         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
9885           to work)
9886         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
9887         * TreeView.cs: Adjusted to new ScrollWindow arguments
9888
9889 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
9890
9891         * Form.cs: Menu integration with non-client area
9892         * MenuItem.cs: Menu integration with non-client area
9893         * MenuAPI.cs: Menu integration with non-client area
9894
9895 2005-02-18  Peter Bartok  <pbartok@novell.com>
9896
9897         * MethodInvoker.cs: Added
9898         * MdiLayout.cs: Added
9899         * SendKeys.cs: Started implementation
9900         * ErrorIconAlignment.cs: Added
9901
9902 2005-02-18  Peter Bartok  <pbartok@novell.com>
9903
9904         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
9905         * Form.cs: Added handling for Menu-related Non-client messages
9906
9907 2005-02-17  Peter Bartok  <pbartok@novell.com>
9908
9909         * UpDownBase.cs: Fixed typo, compilation errors
9910         * DomainUpDown.cs: Fixed attribute value
9911
9912 2005-02-16  Miguel de Icaza  <miguel@novell.com>
9913
9914         * UpDownBase.cs: Attach entry events.
9915         Propagate events.
9916         Add ForeColor property, Focused, InterceptArrowKeys (interception
9917         does not work yet).
9918
9919 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
9920
9921         * Form.cs:
9922                 - Redraw non client are on Setmenu
9923                 - Calc proper menu starting point
9924
9925 2005-02-17  Peter Bartok  <pbartok@novell.com>
9926
9927         * Application.cs: Fixed message_filter check
9928
9929 2005-02-17  Peter Bartok  <pbartok@novell.com>
9930
9931         * Application.cs: Now calls registered message filters
9932         * DockStyle.cs: Fixed attribute
9933         * Form.cs: Fixed attribute
9934         * Menu.cs: Fixed attribute
9935         * ToolTip.cs: Fixed attribute
9936         * TreeNode.cs: Added missing attributes and arranged in regions
9937         * PropertyGrid.cs: Fixed signatures
9938         * TreeNodeCollection.cs: Added attributes
9939         * Splitter.cs: Added missing attributes; arranged into regions
9940         * TabPage.cs: Added missing attributes; arranged into regions
9941         * TextBoxBase.cs: Added missing attributes
9942         * TextBox.cs: Added missing attributes
9943         * ArrangeDirection.cs: Added missing attributes
9944         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
9945         * ToolBarButton.cs: Fixed attributes
9946         * AnchorStyles.cs: Fixed attribute
9947         * TrackBar.cs: Fixed attributes
9948         * TabControl.cs: Added missing attributes and arranged into regions
9949         * ToolBar.cs: Fixed attribute
9950         * StatusBar.cs: Fixed signature, organized into regions and added
9951           attributes
9952         * StatusBarPanel.cs: Fixed attributes
9953         * ContentsResizedEventArgs.cs: Implemented
9954         * ContentsResizedEventHandler.cs: Implemented
9955         * DateBoldEventArgs.cs: Implemented
9956         * DateBoldEventHandler.cs: Implemented
9957         * UpDownEventArgs.cs: Implemented
9958         * UpDownEventHandler.cs: Implemented
9959         
9960 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
9961
9962         * Form.cs: first Menu NC refactoring
9963         * MenuAPI.cs: first Menu NC refactoring
9964         
9965 2005-02-16  Peter Bartok  <pbartok@novell.com>
9966
9967         * ImeMode.cs: Added missing attributes
9968         * Menu.cs: Fixed attribute
9969         * GroupBox.cs: Fixed attribute
9970         * Label.cs: Fixed attribute
9971         * ColorDialog.cs (RunDialog): Removed TODO attribute
9972         * ComboBox.cs: Fixed attributes
9973         * ListControl.cs: Added missing attributes
9974         * PropertyGrid.cs: Fixed attributes
9975         * Control.cs: Fixed attributes
9976         * ListViewItem.cs: Added TypeConverter attribute
9977         * NotifyIcon.cs: Fixed attributes
9978         * ListView.cs: Fixed attributes
9979         * ButtonBase.cs: Fixed attribute
9980         * ImageList.cs: Added missing attributes
9981         * ContainerControl.cs: Fixed signature
9982         * CheckedListBox.cs: Fixed attribute; added missing attributes
9983         * Panel.cs: Fixed attributes
9984         * PropertyTabChangedEventArgs.cs: Added missing attribute
9985         * PropertyValueChangedEventArgs.cs: Added missing attribute
9986         * Binding.cs: Fixed attribute
9987         * ListViewItemConverter: Implemented ListViewSubItemConverter class
9988         * ListBox.cs: Fixed attribute; added missing attributes;
9989         * ScrollableControl.cs: Added missing attributes
9990         * PictureBox.cs: Added missing attributes; implemented missing property
9991         * DateTimePicker.cs: Added missing attributes
9992         * Theme.cs (ToolWindowCaptionHeight): Fixed type
9993         * MonthCalendar.cs: Fixed attributes
9994         * StatusBarPanel.cs: Added missing attributes
9995         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
9996
9997 2005-02-16  Peter Bartok  <pbartok@novell.com>
9998
9999         * TextBoxBase.cs: The previous method to enforce height yet remember
10000           the requested high was less than ideal, this is an attempt to do
10001           it better.
10002         * Control.cs: Added comment about possible problem
10003         * Copyright: Updated format
10004         * GridItemType.cs: Fixed swapped values
10005
10006 2005-02-15  Jackson Harper  <jackson@ximian.com>
10007
10008         * BaseCollection.cs: Use property so we never access an
10009         uninitialized list. Also initialize the list in the property.
10010
10011 2005-02-15  Peter Bartok  <pbartok@novell.com>
10012
10013         * GroupBox.cs (ProcessMnemonic): Implemented
10014         * Label.cs (ProcessMnemonic): Implemented
10015         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
10016           hotkeys
10017
10018 2005-02-15  Peter Bartok  <pbartok@novell.com>
10019
10020         * RadioButton.cs (ProcessMnemonic): Implemented
10021         * CheckBox.cs (ProcessMnemonic): Implemented
10022         * Control.cs:
10023           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
10024             handling
10025           - Added internal method to allow calling ProcessMnemonic from other
10026             controls
10027         * ContainerControl.cs:
10028           - Started support for handling validation chain handling
10029           - Implemented ProcessMnemonic support
10030           - Added Select() call to Active, to make sure the active control
10031             receives focus
10032         * Form.cs: Setting toplevel flag for Forms (this was lost in the
10033           FormParent rewrite)
10034         * ThemeWin32Classic.cs:
10035           - DrawCheckBox(): Fixed stringformat to show hotkeys
10036           - DrawRadioButton(): Fixed stringformat to show hotkeys
10037         * CommonDialog.cs: Removed WndProc override, not needed
10038
10039 2005-02-14  Peter Bartok  <pbartok@novell.com>
10040
10041         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
10042           missed those in the rewrite
10043
10044 2005-02-14  Miguel de Icaza  <miguel@novell.com>
10045
10046         * NumericUpDown.cs (Increment, ToString): Add.
10047         (DecimalPlaces): implement.
10048         
10049         Add attributes.
10050         
10051         * UpDownBase.cs: Add the designer attributes.
10052
10053 2005-02-13  Peter Bartok  <pbartok@novell.com>
10054
10055         * Panel.cs: Removed border_style, now in Control
10056         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
10057           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
10058
10059 2005-02-13  Peter Bartok  <pbartok@novell.com>
10060
10061         * MouseButtons.cs: Added missing attributes
10062         * XplatUIStructs.cs: Added enumeration for title styles
10063         * LeftRightAlignment.cs: Added missing attributes
10064         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
10065           it compatible with Graphics.FromHwnd()
10066         * SelectedGridItemChangedEventArgs.cs: Fixed property type
10067         * Keys.cs: Added missing attributes
10068         * SelectionRange.cs: Added missing attributes
10069         * SelectionRangeConverter.cs: Added
10070         * XplatUI.cs:
10071           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
10072             ReleaseMenuDC methods
10073           - Renamed ReleaseWindow to UngrabWindow
10074           - Added proper startup notice to allow version identification
10075         * Form.cs:
10076           - Added missing attributes
10077           - Removed FormParent concept
10078         * Label.cs: Removed border_style field, now in Control
10079         * RadioButton.cs: Now properly selects RadioButton when focus is
10080           received
10081         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
10082         * Control.cs:
10083           - Added missing attributes
10084           - Added borderstyle handling
10085           - Removed FormParent concept support
10086           - Fixed calls to XplatUI to match changed APIs
10087           - Fixed bug that would case us to use disposed Graphics objects
10088           - Removed unneeded internal methods
10089           - PerformLayout(): Fixed to handle DockStyle.Fill properly
10090           - SelectNextControl(): Fixed to properly check common parents
10091         * TextBoxBase.cs: Removed border_style field (now in Control)
10092         * MessageBox.cs:
10093           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
10094             fixed calculations for form size
10095           - Added support for localized strings and icons
10096           - Improved form size calculations, added border
10097         * ListView.cs: Removed border_style field (now in Control)
10098         * X11Structs.cs: Moved several structs from X11 driver here
10099         * X11Keyboard.cs: Changed debug message
10100         * Application.cs: Removed FormParent concept support
10101         * CommonDialog.cs:
10102           - Resetting end_modal flag
10103           - Removed FormParent concept support
10104         * NativeWindow.cs: Removed FormParent concept support
10105         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
10106           Client area and Non-Client whole window to allow support for WM_NC
10107           messages
10108         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
10109           prevent using it until it supports Hwnd as per Geoff Norton's request
10110         * ToolBar.cs: Fixed drawing, was not doing proper drawing
10111         * PictureBox.cs: Removed border_style field, now in Control
10112         * XplatUIWin32.cs: Added new driver methods
10113
10114 2005-02-12  Peter Bartok  <pbartok@novell.com>
10115
10116         * OpacityConverter.cs: Implemented
10117         * Hwnd.cs: Internal class to support drivers that need to emulate
10118           client area/non-client area window behaviour
10119
10120 2005-02-11  Peter Bartok  <pbartok@novell.com>
10121
10122         * KeysConverter.cs: Implemented
10123
10124 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
10125
10126         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
10127         * LinkLabel: Added missing attributes
10128         * MainMenu.cs: fixes ToString
10129         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
10130         * ListBox.cs: fixes event position
10131         * TrackBar.cs: adds missing attributes and events
10132         
10133 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
10134
10135         * MenuItem.cs: Use SystemInformation and bug fixes
10136         * MenuAPI.cs: Use SystemInformation and bug fixes
10137
10138 2005-02-09  Jackson Harper  <jackson@ximian.com>
10139
10140         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
10141         their keystate otherwise things like VK_MENU get stuck "on".
10142
10143 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
10144
10145         * ListBox.cs: Fixes AddRange bug
10146         
10147 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
10148
10149         * ProgressBar.cs
10150                 - Add missing attributes
10151                 - Add missing method
10152                 
10153         * CheckedListBox.cs: Added missing attributes
10154                 - Add missing attributes
10155                 - Remove extra method
10156         
10157         * ComboBox.cs: Added missing attributes
10158         * VScrollBar.cs: Added missing attributes
10159         * ScrollBar.cs:  Added missing attributes
10160         * ListBox.cs: Fixes signature, add missing consts
10161         * LinkArea.cs:   Added missing attributes
10162         
10163
10164 2005-02-08  Peter Bartok  <pbartok@novell.com>
10165
10166         * Menu.cs: Added missing attributes
10167         * MainMenu.cs: Added missing attributes
10168         * GroupBox.cs: Added missing attributes
10169         * Label.cs: Added missing attributes
10170         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
10171         * ColorDialog.cs:
10172           - Added Instance and Options properties
10173           - Added missing attributes
10174         * Cursor.cs: Made Serializable
10175         * NotifyIcon: Added missing attributes
10176         * MenuItem.cs: Added missing attributes
10177         * TextBoxBase.cs: Implemented AppendText() and Select() methods
10178         * Panel.cs: Added Missing attributes
10179         * MonthCalendar.cs: Fixed CreateParams
10180
10181 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
10182         
10183         * LinkLabel.cs:
10184                 - Fixes signature
10185                 - Fixes issues with links
10186                 - Adds the class attributes
10187
10188 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
10189         
10190         * ComboBox.cs:
10191                 - Fixes button when no items available in dropdown
10192                 - Fixes repainting problems
10193                 - Adds the class attributes
10194                 
10195 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
10196
10197         * XplatUIOSX.cs: Detect the menu bar and title bar height from
10198         the current theme.  Cache these on startup.
10199
10200 2005-02-07  Jackson Harper  <jackson@ximian.com>
10201
10202         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
10203         the scrollbar buttons when they are depressed.
10204
10205 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
10206
10207         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
10208         Get the display size from the main displayid.  We currently dont
10209         support multiple display configurations.
10210
10211 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
10212
10213         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
10214
10215 2005-02-07  Miguel de Icaza  <miguel@novell.com>
10216
10217         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
10218
10219 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
10220
10221         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
10222
10223 2005-02-04  Jackson Harper  <jackson@ximian.com>
10224
10225         * ThemeWin32Classic.cs: Respect the clipping rect when
10226         drawing. Only fill the intersection of clips and rects so there
10227         isn't a lot of large fills.
10228         * ScrollBar.cs: Pass the correct clipping rect to the theme
10229         engine. Remove some debug code.
10230
10231 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
10232         
10233         * DateTimePicker.cs:
10234                 - Fixed crash on DateTime.Parse, use Constructor instead
10235
10236 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
10237         
10238         * MenuItem.cs:
10239         * MenuAPI.cs:
10240                 - Owner draw support (MeasureItem and DrawItem)
10241
10242 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
10243         
10244         *  Menu.cs:
10245                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
10246                 - Fixes MenuItems.Add range
10247         * MenuItem.cs:
10248                 - MergeMenu and Clone and CloneMenu functions
10249
10250 2005-02-03  Jackson Harper  <jackson@ximian.com>
10251
10252         * ScrollBar.cs: Make abstract
10253         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
10254         is abstract.
10255
10256 2005-02-03  Jackson Harper  <jackson@ximian.com>
10257
10258         * ScrollBar.cs: First part of my scrollbar fixups. This removes
10259         all the unneeded refreshes and uses invalidates with properly
10260         computed rects.
10261
10262 2005-02-03  Peter Bartok  <pbartok@novell.com>
10263
10264         * ComponentModel.cs: Added
10265         * IDataGridEditingService.cs: Added
10266         * Timer.cs: Added missing attributes
10267         * ToolTip.cs: Added missing attributes
10268
10269 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
10270
10271         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
10272
10273 2005-02-03  Peter Bartok  <pbartok@novell.com>
10274
10275         * ListBox.cs: Added missing attributes
10276
10277 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
10278         
10279         * ListBox.cs:
10280                 - Fixes font height after font change
10281                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
10282                 
10283 2005-02-02  Peter Bartok  <pbartok@novell.com>
10284
10285         * HandleData.cs: Introduced static methods to allow class
10286           to be more self-contained and track it's own HandleData objects
10287         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
10288           HandleData to use new static methods
10289
10290 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
10291
10292         * Combobox.cs:
10293                 - Fixes default size and PreferredHeight
10294                 - Missing events
10295                 - ObjectCollection.Insert implementation
10296                 
10297         * ListControl.cs
10298                 - Fixes signature
10299         * ListBox.cs:
10300                 - Several fixes
10301                 - ObjectCollection.Insert implementation
10302                 - No selection after clean
10303                 - Small fixes
10304
10305 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
10306
10307         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
10308
10309 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
10310
10311         * Combobox.cs:
10312                 - Caches ItemHeight calculation for OwnerDrawVariable
10313                 - Handles dropdown properly
10314                 - Fixes several minor bugs
10315
10316 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
10317
10318         * ListBox.cs:
10319                 - Fixes 71946 and 71950
10320                 - Fixes changing Multicolumn on the fly
10321                 - Fixes keyboard navigation on Multicolumn listboxes
10322
10323 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
10324         
10325         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
10326         crash reporter log.
10327
10328 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
10329
10330         * XplatUIOSX.cs: Allow applications to actually exit.
10331
10332 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
10333
10334         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
10335         their parent at creation time rather than lazily later.  Fixes a major
10336         regression we were experiencing.
10337
10338 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
10339
10340         * ThemeWin32Classic.cs: more date time picker painting fixes
10341         * DateTimePicker.cs: more monthcalendar drop down fixes
10342         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
10343
10344 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
10345
10346         * ScrollBar.cs:
10347                 - When moving the thumb going outside the control should stop the moving
10348                 - Adds the firing of missing events
10349                 - Fixes no button show if Size is not specified
10350                 - End / Home keys for keyboard navigation
10351
10352 2005-01-30  Peter Bartok  <pbartok@novell.com>
10353
10354         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
10355           sanity check to prevent theoretical loop
10356         * XplatUIWin32.cs (SetVisible): Removed debug output
10357         * XplatUIX11.cs (SystrayChange): Added sanity check
10358         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
10359         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
10360           behaviour, valid until the X11 client window rewrite is done
10361         * TextBox.cs (ctor): Setting proper default foreground and background
10362           colors
10363
10364 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
10365
10366         * Theme: Added DrawDateTimePicker to interface
10367         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
10368         * DateTimePicker.cs: Created (still needs keys and painting code)
10369         * DateTimePickerFormat.cs: added
10370         * MonthCalendar.cs: fixed CreateParams for popup window mode
10371           
10372 2005-01-29  Peter Bartok  <pbartok@novell.com>
10373
10374         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
10375           this should also the calculations for ligher/darker
10376         * Theme.cs: Fixed defaults for ScrollBar widths/heights
10377
10378 2005-01-29  Peter Bartok  <pbartok@novell.com>
10379
10380         * ArrangeDirection.cs: Added
10381         * ArrangeStartingPositon.cs: Added
10382         * SystemInformation.cs: Implemented
10383         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10384           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
10385           used by SystemInformation class
10386         * X11Strucs.cs: Added XSizeHints structure
10387         * MenuAPI.cs:
10388           - Fixed CreateParams to make sure the menu window is always visible
10389           - TrackPopupMenu: Added check to make sure we don't draw the
10390             menu offscreen
10391
10392 2005-01-29  Peter Bartok  <pbartok@novell.com>
10393
10394         * HandleData.cs: Added method for altering invalid area
10395         * TextBoxBase.cs: Implemented TextLength
10396
10397 2005-01-28  Peter Bartok  <pbartok@novell.com>
10398
10399         * XplatUIX11.cs: Improvement over last patch, not sending
10400           the WM_PAINT directly anymore, instead we scroll any pending
10401           exposed areas and let the system pick out the WM_PAINT later
10402
10403 2005-01-28  Peter Bartok  <pbartok@novell.com>
10404
10405         * SWF.csproj: Deleted, no longer used. Instead,
10406           Managed.Windows.Forms/SWF.csproj should be used
10407         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
10408           directly, to avoid a potential race condition with the next
10409           scroll
10410
10411 2005-01-28  Peter Bartok  <pbartok@novell.com>
10412
10413         * XplatUI.cs: Made class internal
10414
10415 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
10416
10417         * CheckedListBox.cs:
10418                 - Draw focus
10419                 - Fixed Drawing
10420                 - Missing methods and events
10421
10422 2005-01-27  Peter Bartok  <pbartok@novell.com>
10423
10424         * Application.cs (Run): Don't use form if we don't have one
10425
10426 2005-01-27  Peter Bartok  <pbartok@novell.com>
10427
10428         * TextBoxBase.cs (get_Lines): Fixed index off by one error
10429
10430 2005-01-27  Peter Bartok  <pbartok@novell.com>
10431
10432         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
10433         * GridItem.cs: Added; Patch by Jonathan S. Chambers
10434         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
10435         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
10436         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
10437         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
10438         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
10439         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
10440         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
10441         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
10442         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
10443         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
10444
10445 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
10446
10447         * Combobox.cs:
10448                 - Draw focus on Simple Combobox
10449                 - Fixes drawing issues
10450                 - fixes 71834
10451
10452 2005-01-27  Peter Bartok  <pbartok@novell.com>
10453
10454         * Form.cs:
10455           - Place window in default location, instead of hardcoded 0/0
10456           - Send initial LocationChanged event
10457         * Control.cs:
10458           - UpdateBounds after creation to find out where the WM placed us
10459           - Make sure that if the ParentForm changes location the Form
10460             is notified
10461         * XplatUIX11.cs: XGetGeometry will not return the coords relative
10462             to the root, but to whatever the WM placed around us.
10463             Translate to root coordinates before returning toplevel
10464             coordinates
10465         * XplatUIWin32.cs: Removed debug output
10466         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
10467           flag to GetWindowPos, to allow translation of coordinates on X11
10468
10469 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
10470
10471         * ListBox.cs: connect LostFocus Event
10472
10473 2005-01-27  Peter Bartok  <pbartok@novell.com>
10474
10475         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
10476           XplatUIX11.cs: Extended the Systray API
10477         * Form.cs: Removed debug output
10478         * Application.cs: Fixed focus assignment, always need to call
10479           XplatUI.Activate() since Form.Activate() has rules that may
10480           prevent activation
10481         * NotifyIcon.cs: Should be complete now
10482         * ToolTip.cs: Worked around possible timer bug
10483
10484 2005-01-27  Jackson Harper  <jackson@ximian.com>
10485
10486         * TabControl.cs:
10487         - Only invalidate the effected tabs when the
10488         selected index changes. This reduces drawing and gets rid of some
10489         flicker.
10490         - Only refresh if the tabs need to be shifted, otherwise only
10491         invalidate the slider button.
10492         - On windows the tabs are not filled to right if the slider is
10493         visible.
10494         
10495 2005-01-27  Jackson Harper  <jackson@ximian.com>
10496
10497         * TabControl.cs: Only refresh on mouseup if we are showing the
10498         slider. Also only invalidate the button whose state has changed.
10499
10500 2005-01-26  Peter Bartok  <pbartok@novell.com>
10501
10502         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
10503         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
10504           and SystrayRemove() methods
10505         * XplatUIOSX.cs: Stubbed Systray methods
10506         * XplatUIX11.cs:
10507           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
10508             methods
10509           - Fixed broken XChangeProperty calls (marshalling messed up things)
10510         * X11Structs.cs: Added enums and structs required for Size hinting
10511         * NotifyIcon.cs: Added & implemented
10512
10513 2005-01-26  Jackson Harper  <jackson@ximian.com>
10514
10515         * TabControl.cs: Space vertically layed out tabs properly.
10516
10517 2005-01-26  Peter Bartok  <pbartok@novell.com>
10518
10519         * Form.cs (CreateClientParams): Always set the location to 0,0
10520           since we're a child window.
10521
10522         * Control.cs (SetVisibleCore): Always explicitly setting the location
10523           of a toplevel window, apparently X11 doesn't like to move windows
10524           while they're not mapped.
10525
10526 2005-01-26  Jackson Harper  <jackson@ximian.com>
10527
10528         * TabControl.cs: Implement FillToRight size mode with vertically
10529         rendered tabs.
10530
10531 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
10532
10533         * ControlPaint.cs, ThemeWin32Classic.cs
10534                 - Fixes DrawFocusRectangle
10535
10536 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
10537
10538         * MenuAPI.cs:
10539                 - MenuBar tracking only starts when item is first clicked
10540                 - Fixes menu hidding for multiple subitems
10541                 - Unselect item in MenuBar when item Executed
10542                 - Fixes bug 71495
10543
10544 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
10545
10546         * ListControl.cs:
10547                 - IsInputKey for ListBox
10548         * ListBox.cs:
10549                 - Focus item
10550                 - Shift and Control item selection
10551                 - Implement SelectionMode.MultiExtended
10552                 - Fixes RightToLeft
10553         * ComboBox.cs:
10554                 - IsInputKey implemented
10555                 - Do not generate OnTextChangedEdit on internal txt changes
10556                 
10557 2005-01-23  Peter Bartok  <pbartok@novell.com>
10558
10559         * AccessibleObject.cs: Partially implemented Select()
10560         * MonthCalendar.cs: Added missing attributes and events
10561         * Form.cs: Fixed CreateParams behaviour, now controls derived from
10562           form can properly override CreateParams.
10563         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10564           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
10565           Control performs Invalidate & Update
10566         * NativeWindow (CreateHandle): Added special handling for Form
10567           and Form.FormParent classes to allow overriding of From.CreateParams
10568         * Control.cs:
10569           - ControlNativeWindow: Renamed 'control' variable to more intuitive
10570             name 'owner'
10571           - ControlNativeWindow: Added Owner property
10572           - Removed usage of Refresh() on property changes, changed into
10573             Invalidate(), we need to wait until the queue is processed for
10574             updates, direct calls might cause problems if not all vars for
10575             Paint are initialized
10576           - Added call to UpdateStyles() when creating the window, to set any
10577             styles that CreateWindow might have ignored.
10578           - Added support for Form CreateParent overrides to UpdateStyles()
10579         * MessageBox.cs: Removed no longer needed FormParent override stuff,
10580           CreateParams are now properly overridable
10581         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
10582           CreateParams are now properly overridable
10583
10584 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
10585
10586         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
10587         OnTextBoxChanged.
10588
10589         Capture LostFocus and OnTextBoxChanged.  The later introduces a
10590         recursive invocation that I have not figured out yet.
10591
10592         Reset the timer when not using (it was accumulating).
10593
10594
10595         (OnTextBoxChanged): Set UserEdit to true here to track whether the
10596         user has made changes that require validation.
10597
10598         Reset changing to avoid loops.
10599
10600 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
10601
10602         * NumericUpDown.cs: Display value at startup.
10603
10604         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
10605         ValidateEditText.
10606
10607         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
10608         filled in.  Added some basic parsing of text.
10609
10610         Still missing the OnXXX method overrides, and figuring out the
10611         events that must be emitted.
10612
10613         * UpDownBase.cs: Handle UserEdit on the Text property.
10614         
10615 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
10616
10617         * ComboBox.cs:
10618           - Fixes IntegralHeight
10619           - ToString method
10620
10621 2005-01-21  Jackson Harper  <jackson@ximian.com>
10622
10623         * TabControl.cs: Set the SelectedIndex property when SelectedTab
10624         is set so that the page visibility is updated and the tabs are
10625         sized correctly.
10626
10627 2005-01-21  Jackson Harper  <jackson@ximian.com>
10628
10629         * TabControl.cs: Use cliping rectangle for blitting. Give the
10630         theme the clipping rect so we can do clipping while
10631         drawing. Remove some debug code.
10632
10633 2005-01-21  Jackson Harper  <jackson@ximian.com>
10634
10635         * TabPage.cs: Add a new method so tab pages can force the tab
10636         control to recalculate the tab page sizes.
10637         * TabControl.cs: UpdateOwner needs to make the tab control recalc
10638         sizes.
10639
10640 2005-01-20  Jackson Harper  <jackson@ximian.com>
10641
10642         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
10643
10644 2005-01-20  Jackson Harper  <jackson@ximian.com>
10645
10646         * TreeView.cs: Set the bounds for nodes properly. They were
10647         getting screwed up when checkboxes were not enabled, but images
10648         were.
10649
10650 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
10651
10652         * ListBox.cs:
10653                 - Owner draw support
10654                 - Fixes
10655                 
10656 2005-01-20  Jackson Harper  <jackson@ximian.com>
10657
10658         * XplatUIStructs.cs: More misc keys
10659         * X11Keyboard.cs: Ignore some control keys.
10660
10661 2005-01-20  Jackson Harper  <jackson@ximian.com>
10662
10663         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
10664         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
10665
10666 2005-01-19  Peter Bartok  <pbartok@novell.com>
10667
10668         * Control.cs: Un-selecting the control when it is loosing focus
10669
10670 2005-01-19  Jackson Harper  <jackson@ximian.com>
10671
10672         * TreeView.cs: Hook up to the text controls leave event so we can
10673         end editing when the users clicks outside the text box.
10674         
10675 2005-01-19  Jackson Harper  <jackson@ximian.com>
10676
10677         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
10678         get set in the conversion array.
10679
10680 2005-01-19  Peter Bartok  <pbartok@novell.com>
10681
10682         * Application.cs (ModalRun): Added a call to CreateControl to ensure
10683           focus is properly set
10684         * Button.cs:
10685           - Added missing attributes
10686           - removed styles, those are already set in the base class
10687         * ButtonBase.cs:
10688           - Added missing attributes
10689           - Added clip window styles
10690         * CheckBox.cs: Added missing attributes
10691         * CommonDialog.cs:
10692           - FormParentWindow.CreateParams: Added required clip styles
10693         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
10694           also filters modifier keys
10695         * MessageBox.cs:
10696           - Added assignment of Accept and Cancel button to enable Enter
10697             and Esc keys in MessageBox dialogs
10698           - FormParentWindow.CreateParams: Added required clip styles
10699         * RadioButton.cs: Added missing attributes
10700         * TextControl.cs: No longer draws selection if control does not
10701           have focus
10702         * TextBoxBase.cs:
10703           - Now draws simple rectangle around test area to make it obvious
10704             there's a control. This is a hack until we properly support borders
10705           - A few simple fixes to support selections better, now erases selected
10706             text when typing, and resets selection when using movement keys
10707
10708 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
10709
10710         * UpDownBase.cs: Added some new properties.
10711
10712         * DomainUpDown.cs: Implement a lot to get my test working.
10713
10714 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
10715
10716         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
10717
10718 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
10719
10720         * OSXStructs (WindowAttributes): Fixed csc complaints
10721
10722 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
10723
10724         * XplayUIOSX.cs:
10725           OSXStructs.cs: Initial refactor to move enums and consts into
10726           OSXStructs and use them in the driver for greater readability.
10727
10728 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
10729
10730         * XplatUIOSX.cs: Initial support for Standard Cursors.
10731         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
10732
10733 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
10734
10735         * ComboBox.cs: ability to change style when the ctrl is already
10736         created, missing methods and events, bug fixes, signature fixes
10737
10738 2005-01-19  Peter Bartok  <pbartok@novell.com>
10739
10740         * Cursors.cs (ctor): Added ctor to fix signature
10741
10742 2005-01-18  Peter Bartok  <pbartok@novell.com>
10743
10744         * Button.cs: Implemented DoubleClick event
10745         * ButtonBase.cs:
10746           - Fixed keyboard handling to behave like MS, where the press of
10747             Spacebar is equivalent to a mousedown, and the key release is
10748             equivalent to mouseup. Now a spacebar push will give the same
10749             visual feedback like a mouse click.
10750           - Added missing attributes
10751           - Added ImeModeChanged event
10752           - Added support for generating DoubleClick event for derived classes
10753         * CheckBox.cs:
10754           - Implemented DoubleClick event
10755           - Added missing attributes
10756         * CommonDialog.cs: Added missing attribute
10757         * ContextMenu.cs: Added missing attributes
10758         * RadioButton.cs:
10759           - AutoChecked buttons do not allow to be unselected when clicked
10760             (otherwise we might end up with no selected buttons in a group)
10761           - Added missing attributes
10762           - Implemented DoubleClickEvent
10763         * ThreadExceptionDialog.cs: Enabled TextBox code
10764
10765 2005-01-18  Peter Bartok  <pbartok@novell.com>
10766
10767         * Form.cs: Removed debug output
10768         * Button.cs: Added support for DoubleClick method
10769
10770 2005-01-18  Peter Bartok  <pbartok@novell.com>
10771
10772         * Form.cs:
10773           - Added method to parent window that allows triggering size
10774             calculations when a menu is added/removed
10775           - set_Menu: Cleaned up mess from early days of Form and Control,
10776             now properly triggers a recalc when a menu is added/removed
10777           - Added case to select form itself as focused form if no child
10778             controls exist
10779           - Added PerformLayout call when showing dialog, to ensure properly
10780             placed controls
10781         * Control.cs:
10782           - Select(): Made internal so Form can access it
10783           - Focus(): Only call Xplat layer if required (avoids loop), and sets
10784             status
10785         * Application.cs (Run): Removed hack and calls PerformLayout instead
10786           to trigger calculation when Form becomes visible
10787
10788 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
10789
10790         * ComboBox.cs: fixes for ownerdraw
10791
10792 2005-01-18  Peter Bartok  <pbartok@novell.com>
10793
10794         * TextControl.cs:
10795           - Sentinel is no longer static, each Document gets it's own, this
10796             avoids locking or alternatively overwrite problems when more
10797             than one text control is used simultaneously.
10798           - Switched to use Hilight and HilightText brushes for text selection
10799
10800         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
10801
10802 2005-01-18  Peter Bartok  <pbartok@novell.com>
10803
10804         * Control.cs:
10805           - Hooked up the following events:
10806                 o ControlAdded
10807                 o ControlRemoved
10808                 o HandleDestroyed
10809                 o ImeModeChanged
10810                 o ParentChanged
10811                 o TabStopChanged
10812                 o Invalidated
10813                 o SystemColorsChanged
10814                 o ParentFontChanged
10815                 o Move
10816           - Removed debug output
10817           - Added a call to the current theme's ResetDefaults when a color change
10818             is detected
10819         * Form.cs: Now setting the proper ImeMode
10820         * Theme.cs: Defined a method to force recreation of cached resources
10821           and rereading of system defaults (ResetDefaults())
10822         * ThemeWin32Classic.cs: Added ResetDefaults() stub
10823
10824 2005-01-17  Peter Bartok  <pbartok@novell.com>
10825
10826         * Control.cs: Added missing attributes
10827
10828 2005-01-17  Jackson Harper  <jackson@ximian.com>
10829
10830         * TreeNode.cs: Implement editing. Add missing properties selected
10831         and visible.
10832         * TreeView.cs: Implement node editing. Also some fixes to use
10833         Invalidate (invalid area) instead of Refresh when selecting.
10834
10835 2005-01-17  Peter Bartok  <pbartok@novell.com>
10836
10837         * Control.cs:
10838           - Implemented InvokeGotFocus() method
10839           - Implemented InvokeLostFocus() method
10840           - Implemented InvokePaint() method
10841           - Implemented InvokePaintBackground() method
10842           - Implemented InvokeClick() method
10843           - Implemented FindForm() method
10844           - Implemented RectangleToClient() method
10845           - Implemented ClientToRectangle() method
10846           - Implemented ResetBackColor() method
10847           - Implemented ResetCursor() method
10848           - Implemented ResetFont() method
10849           - Implemented ResteForeColor() method
10850           - Implemented ResetImeMode() method
10851           - Implemented ResetLeftToRight() method
10852           - Implemented ResetText() method
10853           - Implemented Scale() methods
10854           - Implemented ScaleCore() method
10855           - Implemented Update() method
10856           - Removed unused variables
10857           - Stubbed AccessibilityNotifyClients and
10858             ControlAccessibleObject.NotifyClients() methods (dunno what to do
10859             with those yet)
10860           - Now setting proper default for RightToLeft property
10861           - Fixed bug in SetClientSizeCore that would cause windows to get
10862             really big
10863           - Now sending Click/DoubleClick events
10864           - Now selecting controls when left mouse button is clicked on
10865             selectable control
10866         * AccessibleEvents.cs: Added
10867         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
10868         * XplatUIOSX.cs: Stubbed UpdateWindow() method
10869         * XplatUIWin32.cs: Implemented UpdateWindow() method
10870         * XplatUIX11.cs: Implemented UpdateWindow() method
10871         * Form.cs: Removed stray semicolon causing CS0162 warning
10872         * ThemeWin32Classic.cs: Fixed unused variable warnings
10873         * ScrollableControl.cs: Now calls base method for ScaleCore
10874         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
10875           style to avoid interference with internal click handler (which is
10876           different than standard Control click handling)
10877         * RadioButton.cs:
10878           - Now unchecks all sibling radio buttons when control is
10879             selected (Fixes #68756)
10880           - Removed internal tabstop variable, using the one inherited from
10881             Control
10882
10883 2005-01-17  Jackson Harper  <jackson@ximian.com>
10884
10885         * NavigateEventArgs.cs: Fix base type.
10886         * LinkLabel.cs: Sig fix
10887         
10888 2005-01-17  Jackson Harper  <jackson@ximian.com>
10889
10890         * TreeView.cs: Only invalidate the effected nodes bounds when
10891         selecting nodes.
10892
10893 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
10894
10895         * XplatUIWin32.cs: fixes Win32 marshaling
10896         * XplatUIX11.cs: fixes method signature
10897
10898 2005-01-17  Peter Bartok  <pbartok@novell.com>
10899
10900         * XplatUIX11.cs: Clean up resources when we no longer need them
10901
10902 2005-01-17  Peter Bartok  <pbartok@novell.com>
10903
10904         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
10905           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
10906           and DestroyCursor() methods.
10907         * Cursor.cs: Partially implemented, now supports standard cursors;
10908           still contains some debug code
10909         * Cursors.cs: Implemented class
10910         * Control.cs:
10911           - WndProc(): Added handling of WM_SETCURSOR message, setting the
10912             appropriate cursor
10913           - Implemented Cursor property
10914           - Replaced break; with return; more straightforwar and possibly
10915             faster
10916           - Now properly setting the result for WM_HELP
10917         * X11Structs.cs: Added CursorFontShape enum
10918         * XplatUIStructs.cs:
10919           - Added StdCursor enum (to support DefineStdCursor() method)
10920           - Added HitTest enum (to support sending WM_SETCURSOR message)
10921         * XplatUIX11.cs:
10922           - Now sends the WM_SETCURSOR message
10923           - Implemented new cursor methods
10924         * XplatUIOSX.cs: Stubbed new cursor methods
10925         * XplatUIWin32.cs:
10926           - Implemented new cursor methods
10927           - Added GetSystemMetrics function and associated enumeration
10928
10929 2005-01-15  Peter Bartok  <pbartok@novell.com>
10930
10931         * Control.cs:
10932           - WndProc(): Now handles EnableNotifyMessage
10933           - SelectNextControl(): Fixed bug where if no child or sibling
10934             controls exist we looped endlessly
10935
10936 2005-01-14  Jackson Harper  <jackson@ximian.com>
10937
10938         * TreeView.cs: Recalculate the tab pages when a new one is added
10939         so that the proper bounding rects are created.
10940
10941 2005-01-14  Jackson Harper  <jackson@ximian.com>
10942
10943         * TreeView.cs: Draw a gray box instead of a grip in the lower
10944         right hand corner when there are both horizontal and vertical
10945         scroll bars.
10946
10947 2005-01-14  Jackson Harper  <jackson@ximian.com>
10948
10949         * Control.cs: When erasing backgrounds use FromHwnd instead of
10950         FromHdc when there is a NULL wparam. This occurs on the X driver.
10951         * XplatUIX11.cs: Set the wparam to NULL.
10952
10953 2005-01-13  Jackson Harper  <jackson@ximian.com>
10954
10955         * PictureBox.cs: Implement missing methods (except ToString, need
10956         to test that on windows) and events. When visibility is changed we
10957         need to redraw the image because the buffers are killed. When size
10958         is changed refresh if the sizemode needs it.
10959
10960 2005-01-13  Peter Bartok  <pbartok@novell.com>
10961
10962         * Control.cs (SelectNextControl): Was using wrong method to select
10963           a control
10964
10965 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
10966
10967         * ComboBox.cs: fixes dropstyle
10968
10969 2005-01-13  Peter Bartok  <pbartok@novell.com>
10970
10971         * Form.cs:
10972           - Implemented Select() override
10973           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
10974           - Now sets keyboard focus on startup
10975         * Control.cs (SelectNextControl): Now properly handles directed=true
10976         * TextBoxBase.cs:
10977           - WndProc: Now passes tab key on to base if AcceptTabChar=false
10978           - Added (really bad) focus rectangle (mostly for testing)
10979         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
10980           to enforce redraw on focus changes
10981         * ContainerControl.cs:
10982           - Fixed detection of Shift-Tab key presses
10983           - Fixed traversal with arrow keys
10984         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
10985           gonna keep this or if it's complete yet
10986         
10987 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
10988
10989         * ComboBox.cs: missing properties, fixes
10990
10991 2005-01-13  Peter Bartok  <pbartok@novell.com>
10992
10993         * Panel.cs (ctor): Setting Selectable window style to off
10994         * Splitter.cs (ctor): Setting Selectable window style to off
10995         * GroupBox.cs (ctor): Setting Selectable window style to off
10996         * Label.cs (ctor): Setting Selectable window style to off
10997
10998 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
10999
11000         * UpDownBase.cs (InitTimer): If the timer has been already
11001         created, enable it.
11002
11003         Use a TextBox instead of a Label.
11004
11005 2005-01-12  Jackson Harper  <jackson@ximian.com>
11006
11007         * TreeView.cs: Refresh the tree after sorting the nodes. Always
11008         draw the connecting node lines (when ShowLines is true).
11009         * TreeNode.cs: The nodes index can now be updated. This is used
11010         when a node collection is sorted.
11011         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
11012         insert or an existing unsorted node collection can be sorted.
11013         
11014 2005-01-12  Peter Bartok  <pbartok@novell.com>
11015
11016         * ContainerControl.cs: Implemented ProcessDialogKeys()
11017
11018 2005-01-12  Peter Bartok  <pbartok@novell.com>
11019
11020         * Control.cs:
11021           - Implemented SelectNextControl() method
11022           - Several focus related bug fixes
11023           - Fixed Docking calculations to match MS documentation and
11024             behaviour
11025
11026 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
11027
11028         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
11029         bug fixes
11030
11031 2005-01-12  Peter Bartok  <pbartok@novell.com>
11032
11033         * Control.cs:
11034           - Fixed broken Contains() method
11035           - Implemented GetNextControl() method. Finally. This is the pre-
11036             requisite for focus handling.
11037
11038 2005-01-12  Peter Bartok  <pbartok@novell.com>
11039
11040         * OSXStrucs.cs: Added
11041
11042 2005-01-12  Peter Bartok  <pbartok@novell.com>
11043
11044         * XplatUIWin32.cs:
11045           - Removed PeekMessageFlags
11046           - Implemented SetWindowStyle() method
11047         * XplatUIStructs.cs: Added PeekMessageFlags
11048         * X11Structs: Added missing border_width field to XWindowChanges struct
11049         * XplatUIX11.cs:
11050           - PeekMessage: Now throws exception if flags which are not yet
11051             supported are passed
11052           - Implemented SetWindowStyle() method
11053           - Fixed SetZOrder to handle AfterHwnd properly
11054         * XplatUI.cs: Added SetWindowStyle() method
11055         * XplatUIDriver.cs: Added SetWindowStyle() abstract
11056         * Control.cs:
11057           - Implemented UpdateStyles() method
11058           - Implemented UpdateZOrder() method
11059         * XplatUIOSX.cs: Added SetWindowStyle() stub
11060
11061 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
11062
11063         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
11064         button mouse).
11065
11066
11067 2005-01-11  Jackson Harper  <jackson@ximian.com>
11068
11069         * TreeView.cs: Still need to draw lines to siblings even if out of
11070         the current node is out of the clip.
11071
11072 2005-01-11  Jackson Harper  <jackson@ximian.com>
11073
11074         * TreeView.cs: When setting the hbar/vbar/grip position use
11075         SetBounds so that perform layout is only called once. Also suspend
11076         and resume layout so layout is only done once for all controls.
11077         - Removed some debug fluff
11078         * SizeGrip.cs: Call base implmentation in overriding methods.
11079         - When visibility is changed the drawing buffers are killed so we
11080         need to redraw.
11081
11082 2005-01-11  Jackson Harper  <jackson@ximian.com>
11083
11084         * TreeView.cs: Calculate the open node count while drawing. This
11085         saves us an entire tree traversal for every paint operation. Use
11086         a member var for the open node count so less vars are passed around.
11087
11088 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
11089
11090         * MonthCalendar.cs:
11091         - fixed selection to use mousemove, not mouse polling on timer
11092         * ThemeWin32Classic.cs
11093         - removed redundant unused variable "no_more_content"
11094         
11095 2005-01-11  Peter Bartok  <pbartok@novell.com>
11096
11097         * XplatUIX11.cs (DoEvents): Needs to return when no more events
11098           are pending, so it now calls PeekMessage instead of GetMessage;
11099           implemented a incomplete version of PeekMessage
11100         
11101 2005-01-11  Peter Bartok  <pbartok@novell.com>
11102
11103         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
11104           I18n issues
11105         * TextBoxBase.cs: Added sending of TextChanged event
11106
11107 2005-01-10  Jackson Harper  <jackson@ximian.com>
11108
11109         * TreeView.cs: Try not to draw outside the clipping rectangle on
11110         each node element.
11111
11112 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
11113
11114         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
11115
11116 2005-01-10  Jackson Harper  <jackson@ximian.com>
11117
11118         * TreeView.cs:
11119         - Implement fast scrolling. Now only the newly
11120         exposed nodes are drawn and the old image is moved using the
11121         XplatUI::ScrollWindow method.
11122         - Factor in height of nodes when calculating whether or not the
11123         node is in the clipping rect.
11124
11125 2005-01-10  Jackson Harper  <jackson@ximian.com>
11126
11127         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
11128
11129 2005-01-10  Peter Bartok  <pbartok@novell.com>
11130
11131         * Application.cs: Added temporary hack to resolve all our resize
11132           required issues on startup. This will get fixed properly at
11133           some point in the future
11134
11135 2005-01-10  Jackson Harper  <jackson@ximian.com>
11136
11137         * SizeGrip.cs: New internal class that is used as a sizing
11138         grip control...hence the name.
11139
11140 2005-01-10  Peter Bartok  <pbartok@novell.com>
11141
11142         * Control.cs: Implemented proper TabIndex handling, now assigning
11143           a tabindex when a control is added to a container
11144         * GroupBox.cs (ctor): Now sets the Container style bit, required
11145           for Control.GetNextControl()
11146
11147 2005-01-09  Jackson Harper  <jackson@ximian.com>
11148
11149         * TextBoxBase.cs: Clear window when scrolling (fixes build).
11150
11151 2005-01-09  Peter Bartok <pbartok@novell.com>
11152
11153         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
11154           XplatUIX11.cs: Added ability to control ScrollWindow expose and
11155           an overload for ScrollWindow to allow only scrolling a rectangle
11156
11157 2005-01-09  Peter Bartok <pbartok@novell.com>
11158
11159         * Form.cs:
11160           - Implemented SetDesktopBounds method
11161           - Implemented SetDesktopLocation method
11162
11163 2005-01-08  Jackson Harper  <jackson@ximian.com>
11164
11165         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
11166         the node count has changed, this removes to VScroll::Refresh calls
11167         when drawing.
11168
11169 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
11170
11171         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
11172
11173 2005-01-07  Jackson Harper  <jackson@ximian.com>
11174
11175         * TreeNode.cs: Just update the single node when it is
11176         checked. Don't refresh after toggling, the Expand/Collapse already
11177         handles this.
11178         * TreeView.cs: Respect clipping a little more when drawing. Try
11179         not to redraw things that don't need to be redrawn. Just hide the
11180         scrollbars when they are no longer needed instead of removing
11181         them, so they don't have to be created again and again.
11182         
11183 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
11184
11185         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
11186         coordinates to window space to place the caret properly, FIXED.
11187         Implement GetWindowState & SetWindowState
11188
11189 2005-01-06  Peter Bartok <pbartok@novell.com>
11190
11191         * Form.cs:
11192           - Implemented ClientSize property
11193           - Implemented DesktopBounds property
11194           - Implemented DesktopLocation property
11195           - Implemented IsRestrictedWindow property
11196           - Implemented Size property
11197           - Implemented TopLevel property
11198           - Implemented FormWindowState property
11199         * Control.cs:
11200           - Implemented GetTopLevel() method
11201           - Implemented SetTopLevel() method
11202         * X11Structs.cs (Atom):
11203           - Added AnyPropertyType definition
11204           - Added MapState definiton and updated XWindowAttribute struct
11205         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
11206         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
11207         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
11208         * XplatUIWin32.cs:
11209           - Implemented GetWindowState() and SetWindowState() methods
11210           - Fixed Win32GetWindowLong return type
11211         * XplatUIX11.cs:
11212           - Introduced central function for sending NET_WM messages
11213           - Implemented GetWindowState() and SetWindowState() methods
11214         * TextBoxBase.cs (set_Lines):
11215           - Now uses Foreground color for text added via Text property (Duh!)
11216           - Added code to remember programmatically requested size (fixes
11217             behaviour when Multiline is set after Size)
11218           - Added AutoSize logic
11219
11220 2005-01-06  Jackson Harper  <jackson@ximian.com>
11221
11222         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
11223
11224 2005-01-06  Jackson Harper  <jackson@ximian.com>
11225
11226         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
11227         set to less then 0.
11228
11229 2005-01-06  Jackson Harper  <jackson@ximian.com>
11230
11231         * ScrollableControl.cs: Lazy init the scrollbars.
11232         
11233 2005-01-06  Jackson Harper  <jackson@ximian.com>
11234
11235         * Theme.cs: Speed up getting pens and solid brushes, by using
11236         their ARGB as a hash instead of tostring and not calling Contains.
11237
11238 2005-01-06  Peter Bartok <pbartok@novell.com>
11239
11240         * Form.cs:
11241           - Implemented OnActivated and OnDeactivate event trigger
11242           - Implemented Activate() method
11243           - Fixed ShowDialog() to activate the form that was active before
11244             the dialog was shown
11245         * XplatUIX11.cs:
11246           - Added global active_window var that tracks the currently active
11247             X11 window
11248           - Now always grabs Property changes from the root window to always
11249             catch changes on the active window property
11250           - Added code to PropertyNotify handler to send Active/Inactive
11251             messages when state changes. This puts X11 and Win32 en par on
11252             WM_ACTIVATE notifications (except for double notifications when
11253             the user clicks away from our modal window to another one of our
11254             windows)
11255
11256 2005-01-05  Jackson Harper  <jackson@ximian.com>
11257
11258         * ImageList.cs: Implment ctor
11259
11260 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
11261
11262         * XplatUIOSX.cs: Implement Activate/SetTopmost
11263
11264 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
11265
11266         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
11267
11268 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
11269
11270         * XplatUIOSX.cs: Implement GetActive/SetFocus.
11271
11272 2005-01-05  Peter Bartok <pbartok@novell.com>
11273
11274         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
11275           XplatUIOSX.cs: Added GetActive method to return the currently
11276           active window for the application (or null, if none is active)
11277         * Form.cs:
11278           - Implemented ActiveForm
11279           - Commented out owner assignment for modal dialogs (causes problems
11280             on Win32, since the owner will be disabled)
11281           - Reworked some Active/Focus handling (still incomplete)
11282         * CommonDialog.cs: Commented out owner assignment for modal dialogs
11283           (causes problems on Win32, since the owner will be disabled)
11284         * IWin32Window: Added ComVisible attribute
11285
11286 2005-01-05  Peter Bartok <pbartok@novell.com>
11287
11288         * ToolTip.cs (WndProc): Enable setting focus now that we have the
11289           required XplatUI functions.
11290
11291 2005-01-05  Peter Bartok <pbartok@novell.com>
11292
11293         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
11294           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
11295           to implement focus and activation handling; still incomplete and
11296           with debug output
11297
11298 2005-01-04  Peter Bartok <pbartok@novell.com>
11299
11300         * TextBoxBase.cs: Changed access level for Document property to
11301           match switch to internal for TextControl
11302
11303 2005-01-04  Peter Bartok <pbartok@novell.com>
11304
11305         * AccessibleObject: Added ComVisible attribute
11306
11307 2005-01-04  Jackson Harper  <jackson@ximian.com>
11308
11309         * X11Keyboard.cs: Remove unneeded var.
11310
11311 2005-01-04  Jackson Harper  <jackson@ximian.com>
11312
11313         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
11314         but PAINT.
11315         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
11316         ClientMessage. This makes apps exit cleanly (more often).
11317         
11318 2005-01-04  Jackson Harper  <jackson@ximian.com>
11319
11320         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
11321         handling focus, return correct colors and fonts,
11322         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
11323         handle selection, horizontal scrolling, and mouse interaction.
11324
11325 2005-01-04  Peter Bartok <pbartok@novell.com>
11326
11327         * ICommandExecutor.cs: Added
11328         * IDataGridColumnStyleEditingNotificationService.cs: Added
11329         * IFeatureSupport.cs: Added
11330         * IFileReaderService.cs: Added
11331         * IDataObject.cs: Added ComVisible attribute
11332         * AmbientProperties.cs: Added
11333         * BaseCollection.cs: Added missing attributes
11334         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
11335         * BaseCollection.cs: Added missing attributes
11336         * Binding.cs: Added TypeConverter attribute
11337         * BindingContext.cs: Added DefaultEvent attribute
11338         * BindingsCollection.cs: Added DefaultEvent attribute
11339         * Button.cs: Added DefaultValue attribute
11340         * DragEventArgs.cs: Added ComVisible attribute
11341         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
11342         * KeyEventArgs.cs: Added ComVisible attribute
11343         * KeyPressEventArgs.cs: Added ComVisible attribute
11344         * MouseEventArgs.cs: Added ComVisible attribute
11345         * NavigateEventArgs.cs: Added
11346         * NavigateEventHandler.cs: Added
11347         * FeatureSupport.cs: Added
11348         * OSFeature.cs: Added
11349         * Theme.cs: Added abstract Version property to support OSFeature
11350         * ThemeWin32Classic.cs: Added Version property to
11351           support OSFeature.Themes
11352         * ProgressBar.cs: Removed OnPaintBackground override, not required since
11353           the proper styles to avoid background drawing are set, also doesn't
11354           match MS signature
11355         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
11356         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
11357         * ScrollEventArgs.cs: Added ComVisible attribute
11358         * SplitterEventArgs.cs: Added ComVisible attribute
11359         * AccessibleSelection.cs: Added Flags attribute
11360         * Appearance.cs: Added ComVisible attribute
11361         * Border3DSide.cs: Added ComVisible attribute
11362         * Border3DStyle.cs: Added ComVisible attribute
11363         * BorderStyle.cs: Added ComVisible attribute
11364         * DragAction.cs: Added ComVisible attribute
11365         * ErrorBlinkStyle.cs: Added
11366         * ScrollEventType.cs: Added ComVisible attribute
11367         * AnchorStyles.cs: Added Editor attribute
11368         * DockStyle.cs: Added Editor attribute
11369         * HorizontalAlignment.cs: Added ComVisible attribute
11370         * HelpEventArgs.cs: Added ComVisible attribute
11371         * PaintEventArgs.cs: Added IDisposable
11372
11373 2005-01-04  Peter Bartok <pbartok@novell.com>
11374
11375         * TextControl.cs: Switched Line, LineTag and Document classes to
11376           internal
11377
11378 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
11379
11380         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
11381         Simple mode, fixes, IntegralHeight, etc.
11382
11383 2005-01-04  Peter Bartok <pbartok@novell.com>
11384
11385         * TextBoxBase.cs: Using proper font variable now
11386
11387 2005-01-04  Peter Bartok <pbartok@novell.com>
11388
11389         * Form.cs (ShowDialog): Set parent to owner, if provided
11390         * GroupBox.cs: Removed unused vars
11391         * TextControl.cs:
11392           - Added GetHashCode() for Document and LineTag classes
11393           - Removed unused variables
11394           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
11395             to allow translation between continuous char position and line/pos
11396         * CheckBox.cs: Removed vars that are provided by base class
11397         * RadioButton.cs: Removed vars that are provided by base class, added
11398           new keyword where required
11399         * LinkLabel.cs: Added new keyword where required
11400         * Control.cs (WndProc): Removed unused variable
11401         * TextBoxBase.cs:
11402           - Finished SelectionLength property
11403           - Implemented SelectionStart property
11404           - Implemented Text property
11405           - Removed unused vars
11406         * MessageBox.cs: Added new keyword where required
11407         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
11408           WndProc signature
11409         * MenuAPI.cs: Added new keyword where required
11410         * ButtonBase.cs: Removed vars that are provided by base class, added
11411           new keyword where required
11412         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
11413           argument to double, to allow compiling with csc 2.0 (Atsushi ran
11414           into this)
11415         * Application.cs (Run): Now triggers the ThreadExit event
11416         * CommonDialog.cs: Added new keyword where required; now properly sets
11417           parent (owner) for dialog
11418         * XplatUIX11.cs: Commented out unused vars
11419         * StatusBar.cs: Fixed signature for Text property
11420         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
11421
11422 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
11423
11424         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
11425         TrackBar.cs, MonthCalendar.cs: remove unused vars
11426
11427 2005-01-03  Jackson Harper  <jackson@ximian.com>
11428
11429         * ThemeWin32Classic.cs:
11430         * X11Keyboard.cs: Remove unused vars.
11431
11432 2005-01-03  Peter Bartok  <pbartok@novell.com>
11433
11434         * TextBox.cs:
11435           - set_Text: Tied into TextControl
11436           - set_TextAlignment: Tied into TextControl
11437         * TextControl.cs:
11438           - Added alignment properties and implemented alignment handling
11439             and drawing (still has a bug, not generating proper expose events)
11440           - Added new Line() constructor to allow passing the line alignment
11441           - Fixed selection setting, properly handling end<start now
11442           - Added aligment considerations to RecalculateDocument()
11443         * TextBoxBase.cs:
11444           - Now properly enforces control height for single line controls
11445           - Added support for CharacterCasing
11446           - Added IsInputKey override
11447           - Fixed Keys.Enter logic
11448           - Added SetBoundsCore override
11449           - Fixed mouse selection handling
11450
11451 2005-01-03  Jackson Harper  <jackson@ximian.com>
11452
11453         * TreeView.cs:
11454           - Collapse and uncheck all nodes when CheckBoxes is disabled.
11455           - Checkboxes are always aligned to the bottom of the node,
11456           regardless of item height.
11457           - Use the node bounds to draw the text so we can center it when
11458           the item height is greater then the font height.
11459           - Node::Bounds are only the text part of the node.
11460         * TreeNode.cs: New method to combine collapsing and unchecking all
11461           nodes recursively.
11462
11463 2005-01-02  Jackson Harper  <jackson@ximian.com>
11464
11465         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
11466         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
11467         tree when a check is changed. TODO: Only refresh the checked node.
11468
11469 2004-12-30  Jackson Harper  <jackson@ximian.com>
11470
11471         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
11472         * TreeNode.cs: When collapsing make sure to never collapse the
11473         root node.
11474
11475 2004-12-29  Jackson Harper  <jackson@ximian.com>
11476
11477         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
11478         
11479 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
11480
11481         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
11482
11483 2004-12-28  Peter Bartok  <pbartok@novell.com>
11484
11485         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
11486           not yet assigned
11487
11488 2004-12-28  Peter Bartok  <pbartok@novell.com>
11489
11490         * Control.cs (WndProc): Added WM_HELP handler, now generates
11491           HelpRequested event
11492         * Form.cs: Added HelpButton property and required support code
11493         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
11494
11495 2004-12-28  Peter Bartok  <pbartok@novell.com>
11496
11497         * CommonDialog.cs:
11498           - Made DialogForm.owner variable internal
11499           - Added check to ensure owner form is set before setting
11500             owner properties in CreateParams
11501
11502 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
11503
11504         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
11505           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
11506           GetCursorPos.  Fix major visibility issues.  Rework the windowing
11507           system to support borderless/titleless windows (implements menus).
11508           Fix GetWindowPos.  Implement initial background color support for
11509           views.
11510
11511 2004-12-28  Peter Bartok  <pbartok@novell.com>
11512
11513         * Form.cs (get_CreateParams): Make sure we have an owner before using
11514           the owner variable. Implement proper default if no owner exists
11515
11516 2004-12-28  Peter Bartok  <pbartok@novell.com>
11517
11518         * In preparation for making Managed.Windows.Forms the default build target
11519           for System.Windows.Forms, the following stubbed files were added.
11520           Dialogs are currently being implemented by contributors and are only
11521           short-term place holders.
11522         * ColorDialog.cs: Initial check-in (minmal stub)
11523         * DataGrid.cs: Initial check-in (minimal stub)
11524         * DataGridLineStyle.cs: Initial check-in (minimal stub)
11525         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
11526         * DataGridTableStyle.cs: Initial check-in (minimal stub)
11527         * FontDialog.cs: Initial check-in (minimal stub)
11528         * FileDialog.cs: Initial check-in (minimal stub)
11529         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
11530         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
11531         * OpenFileDialog: Initial check-in (minimal stub)
11532         * IComponentEditorPageSite.cs: Initial check-in
11533         * Splitter.cs: Initial check-in (for Jackson)
11534         * SplitterEventArgs.cs: Initial check-in (for Jackson)
11535         * SplitterEventHandler.cs: Initial check-in (for Jackson)
11536         * TextBox.cs: Initial check-in; still needs some wiring to
11537           TextControl backend
11538         * Form.cs: Implemented ControlBox property
11539         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
11540         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
11541         * TextControl.cs: Added selection functionality; added todo header
11542         * TextBoxBase.cs:
11543           - Implemented Lines property
11544           - Implemented TextHeight property
11545           - Implemented SelectedText property
11546           - Implemented SelectionLength property
11547           - Implemented SelectAll method
11548           - Implemented ToString method
11549           - Removed and cleaned up some debug code
11550           - Implemented (still buggy) mouse text selection
11551
11552 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
11553
11554         * ComboBox.cs: Complete DropDownList implementation, fixes.
11555
11556 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
11557
11558         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
11559         * ComboBoxStyle.cs: ComboBoxStyle enum
11560         * ComboBox.cs: Initial work on ComboBox control
11561
11562 2004-12-21  Peter Bartok  <pbartok@novell.com>
11563
11564         * Control.cs (ctor, CreateParams): Moved setting of is_visible
11565           forward so that anything that creates a window gets the default,
11566           also no longer uses Visible property in CreateParams to avoid
11567           walking up the parent chain and possibly get the wrong visible
11568           status. Fixed IsVisible to no longer walk up to the parent.
11569
11570 2004-12-21  Peter Bartok  <pbartok@novell.com>
11571
11572         * Form.cs (ShowDialog): Unset modality for the proper window
11573  
11574 2004-12-20  Peter Bartok  <pbartok@novell.com>
11575
11576         * CommonDialog.cs: Initial check-in
11577
11578 2004-12-20  Peter Bartok  <pbartok@novell.com>
11579
11580         * Control.cs (Visible): Now uses the parent window instead of the
11581           client area window for the property
11582
11583         * Form.cs
11584           - ShowDialog(): Now uses the proper window for modality
11585           - The default visibility state for the form parent is now false. This
11586             will prevent the user from seeing all the changes to the form and
11587             its controls before the application hits Application.Run()
11588           - Removed some stale commented out code
11589
11590         * NativeWindow.cs:
11591           - Added FindWindow() method to have a method to check for existence
11592             of a window handle
11593           - Added ability to override default exception handling (for example
11594             when debugging with VS.Net; to do this the ExternalExceptionHandler
11595             define must be set
11596           - Removed some useless debug output
11597
11598         * XplatUIX11.cs:
11599           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
11600             not working as expected
11601           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
11602             property to allow switching back to the modal window if focus is
11603             given to another one of our windows (Application Modal)
11604           - Now only sets override_redirect if we create a window
11605             without WS_CAPTION
11606           - Moved EventMask selection before mapping of newly created window
11607             so we can catch the map event as well
11608           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
11609           - Added various Atom related DllImports
11610           - Implemented Exit() method
11611           - .ctor() : No longer shows window if WS_VISIBLE is not defined
11612             in the CreateParams
11613
11614         * MessageBox.cs: Now properly deals with the FormParent window by
11615           providing an override the FormParent CreateParams property to
11616           set as POPUP instead of OVERLAPPED window.
11617
11618 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
11619
11620         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
11621         Minor code cleanup.
11622
11623 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
11624         
11625         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
11626
11627 2004-12-18  Peter Bartok  <pbartok@novell.com>
11628
11629         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
11630           implementing SetModal() method
11631
11632 2004-12-18  Peter Bartok  <pbartok@novell.com>
11633
11634         * X11Structs.cs (XGCValues): Fixed type of function element
11635         * XplatUI.cs: Added ScrollWindow() method
11636         * XplatUIDriver.cs: Added ScrollWindow() abstract
11637         * XplatUIWin32.cs: Implemented ScrollWindow() method
11638         * XplatUIX11.cs: Implemented ScrollWindow() method
11639         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
11640
11641 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
11642
11643         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
11644         Some more keyboard support (INCOMPLETE)
11645
11646 2004-12-17  Peter Bartok  <pbartok@novell.com>
11647
11648         * TextControl.cs:
11649         - Added color attribute to line tags.
11650         - Added color argument to all functions dealing with tags
11651         - Added color argument support to various functions
11652         - Fixed miss-calculation of baseline/shift in certain circumstances
11653
11654         * TextBoxBase.cs: Added new color option to test code
11655
11656 2004-12-17  Jackson Harper  <jackson@ximian.com>
11657
11658         * TreeNode.cs:
11659         * MonthCalendar.cs: Signature fixes
11660
11661 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
11662
11663         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
11664         keyboard event moved it.  Create a new graphics context for each paint resolves this
11665
11666 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
11667
11668         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
11669         Make caret exist and go blink blink.  Initial keyboard support.
11670         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
11671         works.
11672
11673 2004-12-17  Jackson Harper  <jackson@ximian.com>
11674
11675         * XplatUIStructs.cs: Updated set of virtual keycodes.
11676         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
11677
11678 2004-12-17  Jackson Harper  <jackson@ximian.com>
11679
11680         * XplatUIX11.cs: Prune old keyboard code.
11681
11682 2004-12-17  Jackson Harper  <jackson@ximian.com>
11683
11684         * XplatUIX11.cs: When generating mouse wparams get the modifier
11685         keys from the ModifierKeys property.
11686
11687 2004-12-17  Jackson Harper  <jackson@ximian.com>
11688
11689         * X11Keyboard.cs: Send up/down input when generating
11690         messages. Remove some unused vars.
11691
11692 2004-12-17  Jackson Harper  <jackson@ximian.com>
11693
11694         * TabControl.cs:
11695         * TreeView.cs: get rid of warnings.
11696
11697 2004-12-17  Jackson Harper  <jackson@ximian.com>
11698
11699         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
11700
11701 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
11702
11703         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
11704           CheckedListBox.cs: Implementation
11705
11706 2004-12-17  Peter Bartok  <pbartok@novell.com>
11707
11708         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
11709
11710 2004-12-16  Peter Bartok  <pbartok@novell.com>
11711
11712         * TextControl.cs:
11713           - InsertCharAtCaret(): Fixed start pos fixup
11714           - CaretLine_get: No longer derives the line from the tag, the tag
11715             could be stale if lines in the document have been added or deleted
11716           - RebalanceAfterDelete(): Fixed bug in balancing code
11717           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
11718           - Line.Streamline(): Now can also elminate leading empty tags
11719           - DumpTree(): Added a few more tests and prevented exception on
11720             uninitialized data
11721           - Added Debug section for Combining lines
11722           - Delete(): Now copies all remaining properties of a line
11723           
11724         * TextBoxBase.cs:
11725           - Left mousebutton now sets the caret (and middle button still acts
11726             as formatting tester, which must go away soon)
11727           - Added Debug section for Deleting/Combining lines
11728           - Fixed calculations for UpdateView after Combining lines
11729
11730 2004-12-16  Peter Bartok  <pbartok@novell.com>
11731
11732         * TextControl.cs: Now properly aligns text on a baseline, using the
11733           new XplatUI.GetFontMetrics() method. Simplified several calculations
11734         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
11735           defined
11736
11737 2004-12-16  Peter Bartok  <pbartok@novell.com>
11738
11739         * XplatUI.cs: Added GetFontMetrics() method
11740         * XplatUIDriver.cs: Added GetFontMetrics() abstract
11741         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
11742           into libgdiplus, our private GetFontMetrics function
11743         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
11744         * XplatUIWin32.cs: Implemented GetFontMetrics() method
11745
11746 2004-12-16  Jackson Harper  <jackson@ximain.com>
11747
11748         * XplatUIStruct.cs: Add enum for dead keys
11749         * X11Keyboard.cs: Map and unmap dead keys.
11750
11751 2004-12-16  Jackson Harper  <jackson@ximian.com>
11752
11753         * X11Keyboard.cs: Detect and use the num lock mask.
11754
11755 2004-12-16  Peter Bartok  <pbartok@novell.com>
11756
11757         * Control.cs (CreateGraphics): Added check to make sure the
11758           handle of the window exists before calling Graphics.FromHwnd()
11759
11760 2004-12-16  Peter Bartok  <pbartok@novell.com>
11761
11762         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
11763           contains a lot of code that's not supposed to be there for the
11764           real thing, but required for developing/testing the textbox
11765           backend.
11766
11767 2004-12-16  Peter Bartok  <pbartok@novell.com>
11768
11769         * TextControl.cs:
11770         - Fixed Streamline method
11771         - Added FindTag method to Line
11772         - Added DumpTree method for debugging
11773         - Added DecrementLines() method for deleting lines
11774         - Fixed UpdateView to update the cursor to end-of-line on single-line
11775           updates
11776         - Added PositionCaret() method
11777         - Fixed MoveCaret(LineDown) to move into the last line, too
11778         - Added InsertChar overload
11779         - Fixed InsertChar tag offset calculations
11780         - Added DeleteChar() method
11781         - Added Combine() method for folding lines
11782         - Fixed Delete() method, no longer allocates wasted Line object and
11783           now copies all properties when swapping nodes
11784         - Delete() method now updates document line counter
11785
11786 2004-12-15  Jackson Harper  <jackson@ximian.com>
11787
11788         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
11789         * X11Keyboard.cs: Expose the currently selected modifier keys
11790         through a property.
11791
11792 2004-12-15  Peter Bartok  <pbartok@novell.com>
11793
11794         * TextControl.cs: Initial check-in. Still incomplete
11795
11796 2004-12-15  Jackson Harper  <jackson@ximian.com>
11797
11798         * TreeNode.cs:
11799         * TreeView.cs: Fix build on csc (second time today ;-))
11800
11801 2004-12-15  Jackson Harper  <jackson@ximian.com>
11802
11803         * TreeView.cs: Store the treenodes plus/minus box bounds when it
11804         is calculated and use this for click testing.
11805         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
11806
11807 2004-12-15  Jackson Harper  <jackson@ximian.com>
11808
11809         * TreeView.cs: Pass the nodes image index to the image list when
11810         drawing that image.
11811
11812 2004-12-15  Jackson Harper  <jackson@ximian.com>
11813
11814         * X11Keyboard.cs: Set messages hwnd.
11815         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
11816         post_message calls.
11817
11818 2004-12-15  Jackson Harper  <jackson@ximian.com>
11819
11820         * X11Keyboard.cs: Fix to compile with csc.
11821         
11822 2004-12-15  Jackson Harper  <jackson@ximian.com>
11823
11824         * X11Structs.cs: Add key mask values
11825         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
11826         * X11Keyboard.cs: New file - Extrapolates and interpolates key
11827         down/up foo into WM_CHAR foo
11828         * KeyboardLayouts.cs: Common keyboard layouts
11829         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
11830         post messages into the main queue.
11831
11832 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
11833
11834         * Button.cs: implement ProcessMnemonic
11835         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
11836           brushes everytime
11837         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
11838         * ButtonBase.cs: Show HotkeyPrefix (not the &)
11839
11840 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
11841         
11842         * MonthCalendar.cs: Implemented click-hold for next/previous month
11843           and date selection
11844           
11845 2004-12-11  Peter Bartok  <pbartok@novell.com>
11846
11847         * X11Structs.cs:
11848           - Added XKeyboardState (moved from XplatUIX11.cs)
11849           - Added XCreateGC related enums and structures
11850           - Added GXFunction for XSetFunction
11851
11852         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
11853
11854         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
11855           CaretVisible() calls
11856
11857         * ToolTip.cs: Added code to prevent stealing focus from app windows
11858
11859         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
11860           DestroyCaret, SetCaretPos and CaretVisible)
11861
11862         * XplatUIX11.cs:
11863           - Added implementation for caret functions
11864           - Moved hover variables into a struct, to make it a bit easier
11865             on the eyes and to debug
11866           - Removed XKeyboardState (moved to XplatUIX11.cs)
11867           - Moved Keyboard properties into the properties region
11868
11869         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
11870           call to get a graphics context for our control
11871
11872         * XplatUIOSX.cs: Added empty overrides for the new caret functions
11873
11874         * TreeView.cs: Fixed bug. No matter what color was set it would always
11875           return SystemColors.Window
11876
11877         * XplatUIWin32.cs: Implemented caret overrides
11878
11879 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
11880
11881         * ListBox.cs: fire events, implement missing methods and properties,
11882         sorting.
11883
11884 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
11885
11886         * MonthCalendar.cs: invalidation bug fixing
11887         * ThemeWin32Classic.cs: paint fixing
11888
11889 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
11890
11891         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
11892         prepare the CGContextRef there now.
11893
11894 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
11895
11896         * MonthCalendar.cs:
11897           - optimisationL only invalidate areas that have changed
11898         * ThemeWin32Classic.cs:
11899           - only paint parts that intersect with clip_area
11900
11901 2004-12-09  Peter Bartok  <pbartok@novell.com>
11902
11903         * Application.cs: Undid changes from r37004 which cause problems
11904         on X11
11905
11906 2004-12-09  Ravindra  <rkumar@novell.com>
11907
11908         * ToolBar.cs: Added support for displaying ContextMenu
11909         attached to a button on ToolBar.
11910         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
11911         property.
11912
11913 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
11914
11915         * Label.cs: autosize works in text change and removes unnecessary
11916         invalidate
11917
11918 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
11919
11920         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
11921         remove warnings
11922
11923 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
11924
11925         * XplatUIOSX.cs: Added mouse move/click/grab support
11926         Remove some debugging WriteLines not needed anymore.
11927         Add window resizing/positioning.
11928         Fix visibility on reparenting.
11929
11930 2004-12-08  Peter Bartok  <pbartok@novell.com>
11931
11932         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
11933
11934 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
11935
11936         * XplatUIOSX.cs: Initial checkin
11937         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
11938
11939 2004-12-03  Ravindra <rkumar@novell.com>
11940
11941         * ListView.cs: Added some keybindings and fixed scrolling.
11942         ScrollBars listen to ValueChanged event instead of Scroll
11943         Event. This would let us take care of all changes being
11944         done in the scrollbars' values programmatically or manually.
11945         * ListView.cs (CanMultiselect): Added a check for shift key.
11946         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
11947         * ListViewItem.cs (Clone): Fixed. We need to make a copy
11948         of ListViewSubItemCollection as well.
11949
11950 2004-12-06  Peter Bartok <pbartok@novell.com>
11951
11952         * Control.cs (Parent): Added check and exception to prevent
11953         circular parenting
11954
11955 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
11956
11957         * ListBox.cs: implemented clipping, selection single and multiple,
11958         bug fixing
11959
11960 2004-12-03  Ravindra <rkumar@novell.com>
11961
11962         * ListView.cs (ListView_KeyDown):
11963         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
11964         when CTRL key is pressed.
11965         * ListViewItem.cs (Selected): Fixed setting the property.
11966
11967 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
11968
11969         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
11970
11971         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
11972         MinimizeBox, ShowInTaskbar, TopMost properties.
11973
11974         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
11975         will be implemented).
11976
11977 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
11978
11979         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
11980
11981         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
11982         tests.
11983         
11984         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
11985         
11986         * TreeView.cs: BackColor is Colors.Window.
11987
11988 2004-12-01  Jackson Harper  <jackson@ximian.com>
11989
11990         * TreeView.cs: When resizing the tree if the user is making it
11991         smaller we don't get expose events, so we need to handle adding
11992         the horizontal scrollbar in the size changed handler as well as
11993         the expose handler.
11994
11995 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
11996
11997         * DrawItemState.cs: fixes wrong enum values
11998
11999 2004-12-01  Jackson Harper  <jackson@ximian.com>
12000
12001         * TreeView.cs: Resize the hbar as well as the vbar on resize.
12002
12003 2004-12-01  Jackson Harper  <jackson@ximian.com>
12004
12005         * NodeLabelEditEventArgs.cs:
12006         * NodeLabelEditEventHandler.cs:
12007         * OpenTreeNodeEnumerator.cs:
12008         * TreeNode.cs:
12009         * TreeNodeCollection.cs:
12010         * TreeView.cs:
12011         * TreeViewAction.cs:
12012         * TreeViewCancelEventArgs.cs:
12013         * TreeViewCancelEventHandler.cs:
12014         * TreeViewEventArgs.cs:
12015         * TreeViewEventHandler.cs: Initial implementation.
12016
12017 2004-12-01  Ravindra <rkumar@novell.com>
12018
12019         * ListView.cs (CalculateListView): Fixed scrolling related
12020         calculations. Also, removed some debug statements from other
12021         places.
12022         * ListViewItem.cs: Changed access to 'selected' instance variable
12023         from private to internal.
12024         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
12025
12026 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
12027
12028         * ThemeWin32Classic.cs: remove cache of brush and pens for
12029         specific controls and use the global system, fixes scrollbutton
12030         bugs (for small sizes, disabled, etc)
12031         
12032         * ScrollBar.cs: does not show the thumb for very small controls
12033         (as MS) and allow smaller buttons that the regular size
12034
12035 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
12036
12037         * UpDownBase.cs: Add abstract methods for the interface.
12038         Add new virtual methods (need to be hooked up to TextEntry when it
12039         exists).
12040         Add override methods for most features.
12041         Computes the size, forces the height of the text entry.
12042
12043         * NumericUpDown.cs: Put here the current testing code.
12044
12045         * Set eol-style property on all files that do not have mixed line
12046         endings, to minimize the future problems.  There are still a few
12047         files with mixed endings, and someone should choose whether they
12048         want to move it or not.
12049
12050 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
12051
12052         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
12053         System.Colors
12054         
12055 2004-11-30  Ravindra <rkumar@novell.com>
12056
12057         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
12058         drawing and replaced use of SystemColors by theme colors.
12059         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
12060         * ListView.cs (ListViewItemCollection.Add): Throw exception when
12061         same ListViewItem is being added more than once.
12062
12063 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
12064
12065         * MonthCalendar.cs:
12066           - ControlStyles love to make the control not flicker
12067           
12068 2004-11-30  Peter Bartok  <pbartok@novell.com>
12069
12070         * CharacterCasing.cs: Added
12071
12072 2004-11-29  Peter Bartok  <pbartok@novell.com>
12073
12074         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
12075           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
12076           I am removing these files as they conflict with already completed
12077           work. While it is fantastic to get contributions to MWF, I
12078           respectfully ask that everyone please coordinate their contributions
12079           through mono-winforms-list or #mono-winforms at this time. We're
12080           explicitly avoiding stubbing and don't want controls that don't have
12081           their basic functionality implemented in svn. Please also see
12082           http://www.mono-project.com/contributing/winforms.html
12083
12084
12085 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
12086
12087         * Application.cs (ModalRun): Don't hang after exit.
12088
12089         * Theme.cs: New TreeViewDefaultSize property.
12090
12091         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
12092         with less hardcoded SystemColors constant.
12093         Implemented TreeViewDefaultSize.
12094
12095         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
12096         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
12097
12098
12099 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
12100
12101         * MonthCalendar.cs:
12102           - Fix NextMonthDate and PrevMonthDate click moving calendar
12103
12104 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
12105
12106         * MonthCalendar.cs:
12107           - Fix usage of ScrollChange Property when scrolling months
12108
12109 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
12110
12111         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
12112          - Fixes menu destroying
12113          - Support adding and removing items on already created menus
12114
12115 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
12116
12117         * MonthCalendar.cs:
12118           - Re-worked all bolded dates handling to match win32
12119         * ThemeWin32Classic.cs:
12120           - Fixed rendering with bolded dates
12121
12122 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
12123
12124         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
12125         - Horizontal scroolbar
12126         - Multicolumn
12127         - Fixes
12128
12129
12130 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
12131
12132         * MonthCalendar.cs:
12133           - Fix Usage of MaxSelectionCount from SelectionRange
12134           - Fixed Shift + Cursor Selection
12135           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
12136           - Fixed normal cursor selection to be compat with win32
12137           - Fixed Shift + Mouse Click selection
12138
12139 2004-11-24  Peter Bartok <pbartok@novell.com>
12140
12141         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
12142         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
12143         * XplatUIX11.cs:
12144           - CreatedKeyBoardMsg now updates keystate with Alt key
12145           - Added workaround for timer crash to CheckTimers, Jackson will
12146             develop a proper fix and check in later
12147           - Implemented DispatchMessage
12148           - Removed calling the native window proc from GetMessage (call
12149             now moved to DispatchMessage)
12150
12151         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
12152           the keydata (Fixes bug #69831)
12153
12154         * XplatUIWin32.cs:
12155           - (DispatchMessage): Switched to return IntPtr
12156           - Added DllImport for SetFocus
12157
12158 2004-11-24  Ravindra <rkumar@novell.com>
12159
12160         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
12161         background drawing.
12162         * ListViewItem.cs: Fixed various properties, calculations
12163         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
12164         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
12165         and some internal properties. Fixed MouseDown handler and Paint
12166         method.
12167
12168 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
12169
12170         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
12171
12172 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
12173
12174         * ContainerControl.cs: correct accidental check in of local changes
12175
12176 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
12177
12178         * ThemeWin32Classic.cs:
12179                 - Fixed Drawing Last month in grid (sometimes not showing)
12180         * MonthCalendar.cs:
12181                 - Fixed title width calculation bug (makeing title small)
12182
12183 2004-11-23  Peter Bartok <pbartok@novell.com>
12184
12185         * XplatUIX11.cs:
12186           - Added generation of WM_MOUSEHOVER event
12187           - Added missing assignment of async_method atom
12188           - Fixed WM_ERASEBKGND; now only redraws the exposed area
12189
12190 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
12191
12192         * ThemeWin32Classic.cs:
12193                 - Fixed Drawing of today circle when showtodaycircle not set
12194                 - fixed drawing of first and last month in the grid (gay dates)
12195         * MonthCalendar.cs:
12196                 - Fixed Drawing of today circle
12197                 - Fixed drawing of grady dates
12198                 - Fixed HitTest for today link when ShowToday set to false
12199                 - Fixed DefaultSize to obey ShowToday
12200
12201 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
12202
12203         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
12204         * System.Windows.Forms/Theme.cs
12205         * MonthCalendar.cs: added for MonthCalendar
12206         * SelectionRange.cs: added for MonthCalendar
12207         * Day.cs: added for MonthCalendar: added for MonthCalendar
12208         * DateRangeEventArgs.cs: added for MonthCalendar
12209         * DateRangeEventHandler.cs: added for MonthCalendar
12210
12211 2004-11-22  Ravindra <rkumar@novell.com>
12212
12213         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
12214         property.
12215
12216 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
12217
12218         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
12219         event handler.
12220         
12221         * NumericUpDown.cs: Added new implementation.
12222         * UpDownBase.cs: Added new implementation.
12223
12224         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
12225         implementations.
12226         
12227         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
12228         implementations.
12229
12230         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
12231         methods.
12232
12233 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
12234
12235         * Timer.cs  (Dispose): Should call the base dispose when
12236         overriding.
12237
12238 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
12239
12240         * ScrollBar.cs: updates thumb position when max, min or increment
12241         is changed
12242
12243 2004-11-21  Ravindra <rkumar@novell.com>
12244
12245         * ListView.cs: Implemented item selection, activation and
12246         column header style. Fixed properties to do a redraw, if
12247         required. Added support for MouseHover, DoubleClick, KeyDown
12248         and KeyUp event handling and some minor fixes.
12249         * ListViewItem.cs: Fixed constructor.
12250         * ThemeWin32Classic.cs: Improved drawing for ListView.
12251
12252 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
12253
12254         * ThemeWin32Classic.cs: initial listbox drawing code
12255         * DrawMode.cs: new enumerator
12256         * ListControl.cs: stubbed class
12257         * ListBox.cs: initial implementation
12258         * Theme.cs: new methods definitions
12259         * SelectionMode.cs: new enumerator
12260
12261 2004-11-17  Peter Bartok  <pbartok@novell.com>
12262
12263         * XplatUIWin32.cs: Added double-click events to the class style
12264         * Control.cs (WndProc):
12265           - Added handling of click-count to MouseDown/ MouseUp events.
12266           - Added handling of middle and right mouse buttons
12267           - Removed old debug code
12268
12269 2004-11-17  Jackson Harper  <jackson@ximian.com>
12270
12271         * XplatUIX11.cs: Use the new Mono.Unix namespace.
12272
12273 2004-11-17  Ravindra <rkumar@novell.com>
12274
12275         * ListView.cs: Added event handling for MouseMove/Up/Down.
12276         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
12277         * ThemeWin32Classic.cs: We need to clear the graphics context and
12278         draw column header in a proper state.
12279
12280
12281 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
12282
12283         *  Menu.cs: fixes signature
12284
12285 2004-11-16  Peter Bartok  <pbartok@novell.com>
12286
12287         * XplatUIX11.cs (GetMessage): Implemented generation of
12288           double click mouse messages
12289
12290 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
12291
12292         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
12293         not by menu
12294
12295 2004-11-11  Peter Bartok  <pbartok@novell.com>
12296
12297         * HandleData.cs: Added Visible property
12298         * XplatUIX11.cs (IsVisible): Now uses Visible property from
12299           HandleData
12300         * XplatUIX11.cs: Removed old debug leftovers
12301         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
12302         * Control.cs (WndProc): Removed old debug leftovers,
12303           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
12304           needed WM_SIZE handling
12305
12306 2004-11-11  Jackson Harper  <jackson@ximian.com>
12307
12308         * OwnerDrawPropertyBag.cs:
12309         * TreeViewImageIndexConverter.cs: Initial implementation
12310
12311 2004-11-10  Jackson Harper  <jackson@ximian.com>
12312
12313         * ThemeWin32Classic.cs:
12314         * TabControl.cs: instead of moving tabs by the slider pos just
12315         start drawing at the tab that is offset by the slider. This way
12316         scrolling always moves by exactly one tab.
12317
12318 2004-11-10  Jackson Harper  <jackson@ximian.com>
12319
12320         * TabControl.cs: You can only scroll left when the slider has
12321         already ben moved right.
12322         
12323 2004-11-10  Jackson Harper  <jackson@ximian.com>
12324
12325         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
12326         the clip area.
12327         
12328 2004-11-10  Jackson Harper  <jackson@ximian.com>
12329
12330         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
12331         clip area.
12332         
12333 2004-11-09  Jackson Harper  <jackson@ximian.com>
12334
12335         * TabControl.cs (CalcXPos): New helper method so we can determine
12336         the proper place to start drawing vertical tabs.
12337         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
12338         
12339 2004-11-09  Jackson Harper  <jackson@ximian.com>
12340
12341         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
12342         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
12343         and Bottom, left and right are illegal values for this and
12344         multiline is enabled when the alignment is set to left or right.
12345         (DrawTab): Each alignment block should draw the text itself now
12346         because Left requires special love. Also add rendering for Left
12347         aligned tabs.
12348         
12349 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
12350
12351         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
12352         does not destroy the windows, removes debugging messages
12353
12354 2004-11-09  jba  <jba-mono@optusnet.com.au>
12355
12356         * ThemeWin32Classic.cs
12357         (DrawButtonBase): Fix verticle text rect clipping in windows
12358         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
12359         rendering and incorrect text rect clipping
12360         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
12361         rendering and incorrect text rect clipping
12362         
12363 2004-11-08  Jackson Harper  <jackson@ximian.com>
12364
12365         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
12366         bottom when they are bottom aligned so the bottoms of the tabs get
12367         displayed.
12368         * TabControl.cs (DropRow): Move rows up instead of down when the
12369         tab control is bottom aligned.
12370
12371 2004-11-08 13:59  pbartok
12372
12373         * XplatUIX11.cs:
12374           - Added handling for various window styles
12375           - Added handling for popup windows
12376           - Added SetTopmost handling
12377
12378 2004-11-08 13:55  pbartok
12379
12380         * XplatUIWin32.cs:
12381           - Added argument to SetTopmost method
12382           - Fixed broken ClientToScreen function
12383
12384 2004-11-08 13:53  pbartok
12385
12386         * XplatUIStructs.cs:
12387           - Added missing WS_EX styles
12388
12389 2004-11-08 13:53  pbartok
12390
12391         * XplatUI.cs, XplatUIDriver.cs:
12392           - Added argument to SetTopmost
12393
12394 2004-11-08 13:52  pbartok
12395
12396         * X11Structs.cs:
12397           - Added XSetWindowAttributes structure
12398           - Improved XWindowAttributes structure
12399           - Added SetWindowValuemask enum
12400           - Added window creation arguments enum
12401           - Added gravity enum
12402           - Added Motif hints structure
12403           - Added various Motif flags and enums
12404           - Added PropertyMode enum for property functions
12405
12406 2004-11-08 13:50  pbartok
12407
12408         * Form.cs:
12409           - Fixed arguments for updated SetTopmost method
12410
12411 2004-11-08 13:49  pbartok
12412
12413         * ToolTip.cs:
12414           - Fixed arguments for updated SetTopmost function
12415           - Fixed usage of PointToClient
12416
12417 2004-11-08 13:44  pbartok
12418
12419         * MenuAPI.cs:
12420           - Added Clipping of children and siblings
12421
12422 2004-11-08 13:41  pbartok
12423
12424         * MainMenu.cs:
12425           - Removed SetMenuBarWindow call. We do this in Form.cs
12426
12427 2004-11-08 13:40  jackson
12428
12429         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
12430           scrolling jimmi in the correct location with bottom aligned tabs
12431
12432 2004-11-08 13:36  pbartok
12433
12434         * ContainerControl.cs:
12435           - Implemented BindingContext
12436           - Implemented ParentForm
12437
12438 2004-11-08 12:46  jackson
12439
12440         * TabControl.cs: Put bottom rendered tabs in the right location
12441
12442 2004-11-08 07:15  jordi
12443
12444         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
12445           removes dead code
12446
12447 2004-11-05 17:30  jackson
12448
12449         * TabControl.cs: When selected tabs are expanded make sure they
12450           don't go beyond the edges of the tab control
12451
12452 2004-11-05 14:57  jackson
12453
12454         * TabControl.cs: Reset show_slider so if the control is resized to
12455           a size where it is no longer needed it's not displayed anymore
12456
12457 2004-11-05 13:16  jackson
12458
12459         * TabControl.cs: Make tab pages non visible when added to the
12460           control
12461
12462 2004-11-05 12:42  jackson
12463
12464         * TabControl.cs: Implement SizeMode.FillToRight
12465
12466 2004-11-05 12:16  jackson
12467
12468         * Control.cs: Do not call CreateHandle if the handle is already
12469           created
12470
12471 2004-11-05 11:46  jackson
12472
12473         * TabControl.cs: Remove superflous call to CalcTabRows
12474
12475 2004-11-05 09:07  jackson
12476
12477         * XplatUIX11.cs: Update for Mono.Posix changes
12478
12479 2004-11-05 07:00  ravindra
12480
12481         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
12482           scrolling.
12483
12484 2004-11-04 22:47  jba
12485
12486         * ThemeWin32Classic.cs:
12487           - Fix Button rendering for FlatStyle = Flat or Popup
12488           - Fix RadioButton and CheckBox rendering when Appearance = Button
12489             (normal and flatstyle).
12490           - Correct outer rectangle color when drawing focus rectangle
12491           - Adjust button bounds to be 1 px smaller when focused
12492           - Make button not draw sunken 3d border when pushed (windows compat)
12493           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
12494           - Offset the text in RadioButton and Checkbox when being rendered as
12495           a button.
12496           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
12497           radiobuttons
12498           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
12499           - Fixed disabled text rendering for normally rendered radiobuttons
12500
12501 2004-11-04 10:26  jackson
12502
12503         * TabControl.cs: Recalculate tab rows when resizing
12504
12505 2004-11-04 07:47  jordi
12506
12507         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
12508           collection completion, drawing issues, missing features
12509
12510 2004-11-04 05:03  ravindra
12511
12512         * ScrollBar.cs:
12513                 - We need to recalculate the Thumb area when
12514                 LargeChange/maximum/minimum values are changed.
12515           - We set the 'pos' in UpdatePos() method to minimum, if it's less
12516                 than minimum. This is required to handle the case if large_change is
12517                 more than max, and use LargeChange property instead of large_change
12518                 variable.
12519           - We return max+1 when large_change is more than max, like MS does.
12520
12521 2004-11-04 04:29  ravindra
12522
12523         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
12524                 - Changed default value signatures (prefixed all with ListView).
12525                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
12526                 ListView.
12527           - Fixed calculations for ListViewItem and implemented Clone()
12528           method.
12529
12530 2004-11-04 04:26  ravindra
12531
12532         * Theme.cs, ThemeWin32Classic.cs:
12533                 - Changed default ListView values signatures (prefixed all with
12534                 ListView).
12535           - Fixed default size values for VScrollBar and HScrollBar.
12536                 - Fixed DrawListViewItem method.
12537
12538 2004-11-04 04:05  ravindra
12539
12540         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
12541
12542 2004-11-04 04:04  ravindra
12543
12544         * ImageList.cs: Implemented the missing overload for Draw method.
12545
12546 2004-11-03 19:29  jackson
12547
12548         * TabControl.cs: Handle dropping rows on selection properly
12549
12550 2004-11-03 11:59  jackson
12551
12552         * TabControl.cs: remove debug code
12553
12554 2004-11-03 11:52  jackson
12555
12556         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
12557           the scrolly widgerywoo
12558
12559 2004-11-02 13:52  jackson
12560
12561         * TabControl.cs: Resize the tab pages and tabs when the tab control
12562           is resized
12563
12564 2004-11-02 13:40  jackson
12565
12566         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
12567           selected tab to the bottom
12568
12569 2004-11-02 13:39  jackson
12570
12571         * TabPage.cs: Store the tab pages row
12572
12573 2004-11-02 12:33  jordi
12574
12575         * MenuItem.cs: fixes handle creation
12576
12577 2004-11-02 11:42  jackson
12578
12579         * TabControl.cs: signature fix
12580
12581 2004-11-02 08:56  jackson
12582
12583         * TabControl.cs: Calculate whether the tab is on an edge properly.
12584           Remove top secret debugging code
12585
12586 2004-11-01 19:57  jackson
12587
12588         * TabControl.cs: Add click handling, and proper sizing
12589
12590 2004-11-01 19:47  jackson
12591
12592         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
12593           tab controls
12594
12595 2004-11-01 19:39  jackson
12596
12597         * TabPage.cs: add internal property to store the bounds of a tab
12598           page
12599
12600 2004-10-30 04:23  ravindra
12601
12602         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
12603           values.
12604
12605 2004-10-30 04:21  ravindra
12606
12607         * ListView.cs, ListViewItem.cs: Added support for scrolling and
12608           fixed calculations.
12609
12610 2004-10-30 03:06  pbartok
12611
12612         * XplatUIX11.cs:
12613           - Removed extension of DllImported libs
12614
12615 2004-10-29 09:55  jordi
12616
12617         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
12618           navigation, itemcollection completion, menu fixes
12619
12620 2004-10-27 22:58  pbartok
12621
12622         * XplatUIX11.cs:
12623           - Now throws a nice error message when no X display could be opened
12624
12625 2004-10-26 13:51  jordi
12626
12627         * ListView.cs: removes warning
12628
12629 2004-10-26 03:55  ravindra
12630
12631         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
12632           ThemeWin32Classic.cs: Some formatting for my last checkins.
12633
12634 2004-10-26 03:36  ravindra
12635
12636         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
12637           control and default values.
12638
12639 2004-10-26 03:35  ravindra
12640
12641         * Theme.cs: Added some default values for ListView control.
12642
12643 2004-10-26 03:33  ravindra
12644
12645         * ToolBar.cs: ToolBar should use the user specified button size, if
12646           there is any. Added a size_specified flag for the same.
12647
12648 2004-10-26 03:33  ravindra
12649
12650         * ColumnHeader.cs: Added some internal members and calculations for
12651           ColumnHeader.
12652
12653 2004-10-26 03:32  ravindra
12654
12655         * ListViewItem.cs: Calculations for ListViewItem.
12656
12657 2004-10-26 03:31  ravindra
12658
12659         * ListView.cs: Added some internal members and calculations for
12660           ListView.
12661
12662 2004-10-22 13:31  jordi
12663
12664         * MenuAPI.cs: speedup menus drawing
12665
12666 2004-10-22 13:16  jackson
12667
12668         * XplatUIX11.cs: Make sure to update exposed regions when adding an
12669           expose event
12670
12671 2004-10-22 11:49  jackson
12672
12673         * Control.cs: oops
12674
12675 2004-10-22 11:41  jackson
12676
12677         * Control.cs: Check to see if the window should have its background
12678           repainted by X when drawing.
12679
12680 2004-10-22 11:31  jackson
12681
12682         * XplatUIX11.cs: When invalidating areas only use XClearArea if
12683           clear is true, this way we do not get flicker from X repainting the
12684           background
12685
12686 2004-10-22 11:28  jackson
12687
12688         * XEventQueue.cs: Queue properly
12689
12690 2004-10-21 09:38  jackson
12691
12692         * XEventQueue.cs: Fix access modifier
12693
12694 2004-10-21 09:36  jackson
12695
12696         * XEventQueue.cs: Don't loose messages
12697
12698 2004-10-21 09:22  jackson
12699
12700         * XEventQueue.cs: Don't loose messages
12701
12702 2004-10-20 04:15  jordi
12703
12704         * BootMode.cs: enum need it by SystemInfo
12705
12706 2004-10-19 21:58  pbartok
12707
12708         * XplatUIWin32.cs:
12709           - Small sanity check
12710
12711 2004-10-19 21:56  pbartok
12712
12713         * Form.cs:
12714           - Added private FormParentWindow class which acts as the container
12715             for our form and as the non-client area where menus are drawn
12716           - Added/Moved required tie-ins to Jordi's menus
12717           - Fixed/Implemented the FormStartPosition functionality
12718
12719 2004-10-19 21:52  pbartok
12720
12721         * Control.cs:
12722           - Removed unneeded locals
12723           - Added code to all size and location properties to understand and
12724             deal with the parent container of Form
12725
12726 2004-10-19 21:33  pbartok
12727
12728         * Application.cs:
12729           - Fixed to deal with new Form subclasses for menus
12730
12731 2004-10-19 17:48  jackson
12732
12733         * XEventQueue.cs: commit correct version of file
12734
12735 2004-10-19 16:50  jackson
12736
12737         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
12738
12739 2004-10-19 16:15  jordi
12740
12741         * MenuAPI.cs: MenuBarCalcSize returns the height
12742
12743 2004-10-19 08:31  pbartok
12744
12745         * Control.cs:
12746           - Added missing call to PreProcessMessage before calling OnXXXKey
12747           methods
12748
12749 2004-10-19 00:04  ravindra
12750
12751         * ToolTip.cs: Fixed constructor.
12752
12753 2004-10-18 09:31  jordi
12754
12755         * MenuAPI.cs: menuitems in menubars do not have shortcuts
12756
12757 2004-10-18 09:26  jordi
12758
12759         * MenuItem.cs: fixes MenuItem class signature
12760
12761 2004-10-18 08:56  jordi
12762
12763         * MenuAPI.cs: prevents windows from showing in the taskbar
12764
12765 2004-10-18 00:28  ravindra
12766
12767         * ToolTip.cs: Suppressed a warning message.
12768
12769 2004-10-18 00:27  ravindra
12770
12771         * Control.cs: Default value of visible property must be true.
12772
12773 2004-10-17 23:19  pbartok
12774
12775         * ToolTip.cs:
12776           - Complete implementation
12777
12778 2004-10-17 23:19  pbartok
12779
12780         * XplatUIX11.cs:
12781           - Added EnableWindow method
12782           - Added SetModal stub
12783           - Added generation of WM_ACTIVATE message (still needs testing)
12784           - Added SetTopMost stub
12785           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
12786
12787 2004-10-17 23:17  pbartok
12788
12789         * XplatUIWin32.cs:
12790           - Removed VirtualKeys to XplatUIStructs
12791           - Implemented SetTopMost method
12792           - Implemented EnableWindow method
12793           - Bugfix in ScreenToClient()
12794           - Bugfixes in ClientToScreen()
12795
12796 2004-10-17 22:51  pbartok
12797
12798         * XplatUIStructs.cs:
12799           - Added WS_EX styles to WindowStyles enumeration
12800
12801 2004-10-17 22:50  pbartok
12802
12803         * XplatUI.cs, XplatUIDriver.cs:
12804           - Added method for enabling/disabling windows
12805           - Added method for setting window modality
12806           - Added method for setting topmost window
12807
12808 2004-10-17 22:49  pbartok
12809
12810         * ThemeWin32Classic.cs:
12811           - Added ToolTip drawing code
12812
12813 2004-10-17 22:49  pbartok
12814
12815         * Theme.cs:
12816           - Added ToolTip abstracts
12817
12818 2004-10-17 22:47  pbartok
12819
12820         * Form.cs:
12821           - Fixed Form.ControlCollection to handle owner relations
12822           - Added Owner/OwnedForms handling
12823           - Implemented Z-Ordering for owned forms
12824           - Removed unneeded private overload of ShowDialog
12825           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
12826             so I hope)
12827           - Fixed Close(), had wrong default
12828           - Added firing of OnLoad event
12829           - Added some commented out debug code for Ownership handling
12830
12831 2004-10-17 22:16  pbartok
12832
12833         * Control.cs:
12834           - Fixed/implemented flat list of controls
12835
12836 2004-10-17 22:14  pbartok
12837
12838         * Application.cs:
12839           - Added code to simulate modal dialogs on Win32
12840
12841 2004-10-17 16:11  jordi
12842
12843         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
12844           mouse event
12845
12846 2004-10-17 13:39  jordi
12847
12848         * MenuAPI.cs: menu drawing fixes
12849
12850 2004-10-15 09:10  ravindra
12851
12852         * StructFormat.cs: General Enum.
12853
12854 2004-10-15 09:09  ravindra
12855
12856         * SizeGripStyle.cs: Enum for Form.
12857
12858 2004-10-15 09:08  ravindra
12859
12860         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
12861           in Theme for ListView.
12862
12863 2004-10-15 09:06  ravindra
12864
12865         * ColumnHeader.cs: Flushing some formatting changes.
12866
12867 2004-10-15 09:05  ravindra
12868
12869         * ListViewItem.cs: Implemented GetBounds method and fixed coding
12870           style.
12871
12872 2004-10-15 09:03  ravindra
12873
12874         * ListView.cs: Implemented Paint method and fixed coding style.
12875
12876 2004-10-15 07:34  jordi
12877
12878         * MenuAPI.cs: fix for X11
12879
12880 2004-10-15 07:32  ravindra
12881
12882         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
12883                 - Renamed Paint() method to Draw() for clarity. Also, moved
12884                 DrawImage() to OnPaint().
12885
12886 2004-10-15 07:25  ravindra
12887
12888         * CheckBox.cs, RadioButton.cs:
12889                 - Removed Redraw (), we get it from ButtonBase.
12890                 - Implemented Paint (), to do class specific painting.
12891
12892 2004-10-15 07:16  ravindra
12893
12894         * ButtonBase.cs:
12895                 - Redraw () is not virtual now.
12896                 - Added an internal virtual method Paint (), so that
12897                 derived classes can do their painting on their own.
12898                 - Modified OnPaint () to call Paint ().
12899
12900 2004-10-15 06:43  jordi
12901
12902         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
12903           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
12904
12905 2004-10-15 00:30  ravindra
12906
12907         * MessageBox.cs:
12908                 - MessageBox on windows does not have min/max buttons.
12909                 This change in CreateParams fixes this on Windows. We
12910                 still need to implement this windowstyle behavior in
12911                 our X11 driver.
12912
12913 2004-10-14 05:14  ravindra
12914
12915         * ToolBar.cs:
12916                 - Changed Redraw () to do a Refresh () always.
12917                 - Fixed the MouseMove event handling when mouse is pressed,
12918                 ie drag event handling.
12919                 - Replaced the usage of ToolBarButton.Pressed property to
12920                 ToolBarButton.pressed internal variable.
12921
12922 2004-10-14 05:10  ravindra
12923
12924         * ToolBarButton.cs:
12925                 - Added an internal member 'inside' to handle mouse move
12926                 with mouse pressed ie mouse drag event.
12927                 - Changed 'Pressed' property to return true only when
12928                 'inside' and 'pressed' are both true.
12929                 - Some coding style love.
12930
12931 2004-10-14 00:17  ravindra
12932
12933         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
12934           public method.
12935
12936 2004-10-14 00:15  ravindra
12937
12938         * ButtonBase.cs: Redraw () related improvements.
12939
12940 2004-10-14 00:14  ravindra
12941
12942         * MessageBox.cs: Moved InitFormSize () out of Paint method and
12943           removed unnecessary calls to Button.Show () method.
12944
12945 2004-10-13 17:50  pbartok
12946
12947         * XplatUIX11.cs:
12948           - Formatting fix
12949           - Removed destroying of window until we solve the problem of X
12950             destroying the window before us on shutdown
12951
12952 2004-10-13 16:32  pbartok
12953
12954         * ButtonBase.cs:
12955           - Now Redraws on MouseUp for FlatStyle Flat and Popup
12956
12957 2004-10-13 14:18  pbartok
12958
12959         * XplatUIX11.cs:
12960           - Added code to destroy the X window
12961
12962 2004-10-13 14:18  pbartok
12963
12964         * XplatUIWin32.cs:
12965           - Added code to destroy a window
12966
12967 2004-10-13 14:12  pbartok
12968
12969         * ButtonBase.cs:
12970           - Added the Redraw on Resize that got dropped in the last rev
12971
12972 2004-10-13 09:06  pbartok
12973
12974         * ThemeWin32Classic.cs:
12975           - Path from John BouAntoun:
12976             * Fix check rendering (centre correctly for normal style, offset
12977               correctly for FlatStyle).
12978             * Fix border color usage (use backcolor) for FlatStyle.Popup
12979             * Use checkbox.Capture instead of checkbox.is_pressed when
12980               rendering flatstyle states.
12981
12982 2004-10-12 21:48  pbartok
12983
12984         * ThemeWin32Classic.cs:
12985           - Removed all occurences of SystemColors and replaced them with the
12986             matching theme color
12987
12988 2004-10-12 21:41  pbartok
12989
12990         * ThemeWin32Classic.cs:
12991           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
12992             him using the function for flatstyle drawing
12993           - Changed functions to use the new version of CPDrawBorder3D
12994
12995 2004-10-12 21:15  pbartok
12996
12997         * ControlPaint.cs:
12998           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
12999             match MS documentation. They need to return defined colors if the
13000             passed color matches the configured control color. Thanks to John
13001             BouAntoun for pointing this out.
13002
13003 2004-10-12 20:57  pbartok
13004
13005         * Control.cs:
13006           - Fix from John BouAntoun: Raise ForeColorChanged event when text
13007             color is changed
13008
13009 2004-10-12 20:46  pbartok
13010
13011         * CheckBox.cs:
13012           - Fix from John BouAntoun: Now properly sets the Appearance property
13013
13014 2004-10-12 20:45  pbartok
13015
13016         * ThemeWin32Classic.cs:
13017           - Fixes from John BouAntoun: now handles forecolors and backcolors
13018             for flatstyle rendered controls much better; It also fixes normal
13019             checkbox rendering when pushed or disabled.
13020
13021 2004-10-08 02:50  jordi
13022
13023         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
13024           work
13025
13026 2004-10-07 08:56  jordi
13027
13028         * ThemeWin32Classic.cs: Removes deletion of cached brushes
13029
13030 2004-10-06 03:59  jordi
13031
13032         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
13033           XplatUIWin32.cs: removes warnings from compilation
13034
13035 2004-10-05 12:23  jackson
13036
13037         * RadioButton.cs: Fix ctor
13038
13039 2004-10-05 11:10  pbartok
13040
13041         * MessageBox.cs:
13042           - Partial implementation by Benjamin Dasnois
13043
13044 2004-10-05 10:15  jackson
13045
13046         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
13047           by John BouAntoun
13048
13049 2004-10-05 03:07  ravindra
13050
13051         * ToolBar.cs:
13052                 - Removed a private method, Draw ().
13053                 - Fixed the ButtonDropDown event handling.
13054                 - Fixed MouseMove event handling.
13055
13056 2004-10-05 03:04  ravindra
13057
13058         * ThemeWin32Classic.cs:
13059                 - Added DrawListView method and ListViewDefaultSize property.
13060                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
13061                 - Changed DOS style CRLF to Unix format (dos2unix).
13062
13063 2004-10-05 03:03  ravindra
13064
13065         * Theme.cs:
13066                 - Added DrawListView method and ListViewDefaultSize property.
13067
13068 2004-10-05 02:42  ravindra
13069
13070         * ToolBarButton.cs: Added an internal member dd_pressed to handle
13071           clicks on DropDown arrow.
13072
13073 2004-10-04 22:56  jackson
13074
13075         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
13076           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
13077           Control handle the buffers, derived classes should not have to
13078           CreateBuffers themselves.
13079
13080 2004-10-04 21:20  jackson
13081
13082         * StatusBar.cs: The control handles resizing the buffers now.
13083
13084 2004-10-04 21:18  jackson
13085
13086         * Control.cs: When resizing the buffers should be invalidated. This
13087           should be handled in Control not in derived classes.
13088
13089 2004-10-04 14:45  jackson
13090
13091         * TabPage.cs: oops
13092
13093 2004-10-04 02:14  pbartok
13094
13095         * LeftRightAlignment.cs:
13096           - Initial check-in
13097
13098 2004-10-04 01:09  jordi
13099
13100         * ThemeWin32Classic.cs: fixes right button position causing right
13101           button not showing on horizontal scrollbars
13102
13103 2004-10-02 13:12  pbartok
13104
13105         * XplatUIX11.cs:
13106           - Simplified the Invalidate method by using an X call instead of
13107             generating the expose ourselves
13108           - Added an expose when the window background is changed
13109           - Implemented ClientToScreen method
13110
13111 2004-10-02 13:08  pbartok
13112
13113         * XplatUIWin32.cs:
13114           - Added Win32EnableWindow method (test for implementing modal
13115           dialogs)
13116           - Added ClientToScreen method and imports
13117
13118 2004-10-02 13:07  pbartok
13119
13120         * XplatUI.cs, XplatUIDriver.cs:
13121           - Added ClientToScreen coordinate translation method
13122
13123 2004-10-02 13:06  pbartok
13124
13125         * KeyPressEventArgs.cs:
13126           - Fixed access level for constructor
13127
13128 2004-10-02 13:06  pbartok
13129
13130         * NativeWindow.cs:
13131           - Changed access level for the window_collection hash table
13132
13133 2004-10-02 13:05  pbartok
13134
13135         * Form.cs:
13136           - Added KeyPreview property
13137           - Added Menu property (still incomplete, pending Jordi's menu work)
13138           - Implemented ProcessCmdKey
13139           - Implemented ProcessDialogKey
13140           - Implemented ProcessKeyPreview
13141
13142 2004-10-02 13:02  pbartok
13143
13144         * Control.cs:
13145           - Added private method to get the Control object from the window
13146           handle
13147           - Implemented ContextMenu property
13148           - Implemented PointToScreen
13149           - Implemented PreProcessMessage
13150           - Implemented IsInputChar
13151           - Implemented IsInputKey
13152           - Implemented ProcessCmdKey
13153           - Completed ProcessKeyEventArgs
13154           - Fixed message loop to call the proper chain of functions on key
13155           events
13156           - Implemented ProcessDialogChar
13157           - Implemented ProcessDialogKey
13158           - Implemented ProcessKeyMessage
13159           - Implemented ProcessKeyPreview
13160           - Added RaiseDragEvent stub (MS internal method)
13161           - Added RaiseKeyEvent stub (MS internal method)
13162           - Added RaiseMouseEvent stub (MS Internal method)
13163           - Added RaisePaintEvent stub (MS Internal method)
13164           - Added ResetMouseEventArgs stub (MS Internal method)
13165           - Implemented RtlTranslateAlignment
13166           - Implemented RtlTranslateContent
13167           - Implemented RtlTranslateHorizontal
13168           - Implemented RtlTranslateLeftRight
13169           - Added generation of KeyPress event
13170
13171 2004-10-02 05:57  ravindra
13172
13173         * ListViewItem.cs: Added attributes.
13174
13175 2004-10-02 05:32  ravindra
13176
13177         * ListView.cs: Added attributes.
13178
13179 2004-10-01 11:53  jackson
13180
13181         * Form.cs: Implement the Close method so work on MessageBox can
13182           continue.
13183
13184 2004-09-30 14:06  pbartok
13185
13186         * XplatUIX11.cs:
13187           - Bug fixes
13188
13189 2004-09-30 11:34  jackson
13190
13191         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
13192
13193 2004-09-30 07:26  ravindra
13194
13195         * ListViewItemConverter.cs: Converter for ListViewItem.
13196
13197 2004-09-30 07:26  ravindra
13198
13199         * SortOrder.cs: Enum for ListView control.
13200
13201 2004-09-30 07:25  ravindra
13202
13203         * ColumnHeader.cs: Supporting class for ListView control.
13204
13205 2004-09-30 07:24  ravindra
13206
13207         * ListView.cs, ListViewItem.cs: Initial implementation.
13208
13209 2004-09-30 07:20  ravindra
13210
13211         * ItemActivation.cs: Enum for ListView Control.
13212
13213 2004-09-29 20:29  pbartok
13214
13215         * XplatUIX11.cs:
13216           - Added lookup of pixel value for background color; tries to get a
13217             color 'close' to the requested color, it avoids having to create a
13218             colormap.  Depending on the display this could mean the used color
13219             is slightly off the desired color. Might have to change it to a more
13220             resource intensive colormap approach, but it will work as a
13221           workaround to avoid red screens.
13222
13223 2004-09-29 14:27  jackson
13224
13225         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
13226
13227 2004-09-28 12:44  pbartok
13228
13229         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
13230           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
13231           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
13232           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
13233           TrackBar.cs, VScrollBar.cs:
13234           - Streamlined Theme interfaces:
13235             * Each DrawXXX method for a control now is passed the object for
13236               the control to be drawn in order to allow accessing any state the
13237               theme might require
13238
13239             * ControlPaint methods for the theme now have a CP prefix to avoid
13240               name clashes with the Draw methods for controls
13241
13242             * Every control now retrieves it's DefaultSize from the current
13243             theme
13244
13245 2004-09-28 12:17  jackson
13246
13247         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
13248           drawing
13249
13250 2004-09-24 14:57  jackson
13251
13252         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
13253           Gives us a nice little performance boost.
13254
13255 2004-09-24 12:02  jackson
13256
13257         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
13258           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
13259           Control and supporting classes. Initial checkin
13260
13261 2004-09-23 13:08  jackson
13262
13263         * Form.cs: Temp build fixage
13264
13265 2004-09-23 01:39  ravindra
13266
13267         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
13268           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
13269           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
13270           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
13271           EventHandlers needed by ListView Control.
13272
13273 2004-09-22 14:12  pbartok
13274
13275         * ScrollableControl.cs:
13276           - Implemented DockPadding property
13277           - Implemented AutoScroll property
13278           - Implemented AutoScrollMargin property
13279           - Implemented AutoScrollMinSize property
13280           - Implemented AutoScrollPosition property
13281           - Implemented DisplayRectangle property (still incomplete)
13282           - Implemented CreateParams property
13283           - Implemented HScroll property
13284           - Implemented VScroll property
13285           - Implemented OnVisibleChanged property
13286
13287 2004-09-22 14:09  pbartok
13288
13289         * Form.cs:
13290           - Added Form.ControllCollection class
13291           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
13292             RemoveOwnedForm (still incomplete, missing on-top and common
13293             minimize/maximize behaviour)
13294           - Added StartPosition property (still incomplete, does not use when
13295             creating the form)
13296           - Added ShowDialog() methods (still incomplete, missing forcing the
13297             dialog modal)
13298
13299 2004-09-22 14:05  pbartok
13300
13301         * Application.cs:
13302           - Added message loop for modal dialogs
13303
13304 2004-09-22 14:02  pbartok
13305
13306         * GroupBox.cs:
13307           - Fixed wrong types for events
13308
13309 2004-09-22 14:00  pbartok
13310
13311         * Shortcut.cs, FormWindowState.cs:
13312           - Fixed wrong values
13313
13314 2004-09-22 12:01  jackson
13315
13316         * Control.cs: Text is never null
13317
13318 2004-09-20 22:14  pbartok
13319
13320         * XplatUIWin32.cs:
13321           - Fixed accessibility level for Idle handler
13322
13323 2004-09-20 18:54  jackson
13324
13325         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
13326           XplatUIX11.cs: New message loop that uses poll so we don't get a
13327           busy loop
13328
13329 2004-09-17 10:43  pbartok
13330
13331         * ScrollBar.cs:
13332           - Fixed behaviour of arrow buttons. Now properly behaves like
13333             Buttons (and like Microsoft's scrollbar arrow buttons)
13334
13335 2004-09-17 10:14  pbartok
13336
13337         * ScrollBar.cs:
13338           - Added missing release of keyboard/mouse capture
13339
13340 2004-09-17 06:18  jordi
13341
13342         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
13343           Theme.cs: Very early menu support
13344
13345 2004-09-16 17:45  pbartok
13346
13347         * XplatUIWin32.cs:
13348           - Fixed sending a window to the front
13349           - Added overload for SetWindowPos to avoid casting
13350
13351 2004-09-16 17:44  pbartok
13352
13353         * Control.cs:
13354           - Added SendToBack and BringToFront methods
13355
13356 2004-09-16 07:00  ravindra
13357
13358         * Copyright: Added Novell URL.
13359
13360 2004-09-16 07:00  ravindra
13361
13362         * ToolBar.cs: Invalidate should be done before redrawing.
13363
13364 2004-09-15 21:19  ravindra
13365
13366         * ColumnHeaderStyle.cs: Enum for ListView Control.
13367
13368 2004-09-15 21:18  ravindra
13369
13370         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
13371           ListView Control.
13372
13373 2004-09-13 18:26  jackson
13374
13375         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
13376           properly
13377
13378 2004-09-13 18:13  jackson
13379
13380         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
13381           a second thread and post messages into the main threads message
13382           queue. This makes timing much more consistent. Both win2K and XP
13383           have a minimum timer value of 15 milliseconds, so we now do this
13384           too.
13385
13386 2004-09-13 15:18  pbartok
13387
13388         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
13389           XplatUIX11.cs:
13390           - Added Z-Ordering methods
13391
13392 2004-09-13 10:56  pbartok
13393
13394         * Form.cs:
13395           - Fixed #region names
13396           - Moved properties and methods into their proper #regions
13397
13398 2004-09-13 10:51  pbartok
13399
13400         * Form.cs:
13401           - Added Accept and CancelButton properties
13402           - Added ProcessDialogKey() method
13403
13404 2004-09-13 08:18  pbartok
13405
13406         * IWindowTarget.cs:
13407           - Initial check-in
13408
13409 2004-09-10 21:50  pbartok
13410
13411         * Control.cs:
13412           - Added DoDragDrop() [incomplete]
13413           - Properly implemented 'Visible' handling
13414           - Added SetVisibleCore()
13415           - Implemented FindChildAtPoint()
13416           - Implemented GetContainerControl()
13417           - Implemented Hide()
13418
13419 2004-09-10 19:28  pbartok
13420
13421         * Control.cs:
13422           - Moved methods into their appropriate #regions
13423           - Reordered methods within regions alphabetically
13424
13425 2004-09-10 18:57  pbartok
13426
13427         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
13428           - Added method to retrieve text from window
13429
13430 2004-09-10 18:56  pbartok
13431
13432         * Control.cs:
13433           - Moved some internal functions into the internal region
13434           - Implemented FontHeight
13435           - Implemented RenderRightToLeft
13436           - Implemented ResizeRedraw
13437           - Implemented ShowFocusCues
13438           - Implemented ShowKeyboardCues
13439           - Implemented FromChildHandle
13440           - Implemented FromHandle
13441           - Implemented IsMnemonic
13442           - Implemented ReflectMessage
13443           - All public and protected Static Methods are now complete
13444
13445 2004-09-10 16:54  pbartok
13446
13447         * Control.cs:
13448           - Implemented remaining missing public instance properties
13449           - Alphabetized some out of order properties
13450
13451 2004-09-10 05:51  ravindra
13452
13453         * PictureBox.cs: Added a check for null image.
13454
13455 2004-09-10 00:59  jordi
13456
13457         * GroupBox.cs: remove cvs tag
13458
13459 2004-09-09 05:25  ravindra
13460
13461         * ToolBar.cs: Make redraw accessible from ToolBarButton.
13462
13463 2004-09-09 05:23  ravindra
13464
13465         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
13466           parent redraw.
13467
13468 2004-09-09 02:28  pbartok
13469
13470         * ThemeWin32Classic.cs:
13471           - Improve disabled string look
13472
13473 2004-09-09 01:15  jordi
13474
13475         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
13476           args and handler
13477
13478 2004-09-08 23:56  ravindra
13479
13480         * ItemBoundsPortion.cs: It's enum, not a class!
13481
13482 2004-09-08 23:47  ravindra
13483
13484         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
13485           Enums for Form.
13486
13487 2004-09-08 21:13  ravindra
13488
13489         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
13490           ListView control.
13491
13492 2004-09-08 21:03  ravindra
13493
13494         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
13495           avoid crash.
13496
13497 2004-09-08 21:01  ravindra
13498
13499         * ScrollableControl.cs: Removed unreachable code.
13500
13501 2004-09-08 06:45  jordi
13502
13503         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
13504
13505 2004-09-08 01:00  jackson
13506
13507         * XplatUIX11.cs: Only run the timers when updating the message
13508           queue. This effectively gives X messages a higher priority then
13509           timer messages. Timers still need love though
13510
13511 2004-09-07 14:01  jackson
13512
13513         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
13514           this for us and the handle is no longer valid.
13515
13516 2004-09-07 13:59  jackson
13517
13518         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
13519           loop that manages to not crash. TODO: Add poll and cleanup timers
13520
13521 2004-09-07 11:12  jordi
13522
13523         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
13524
13525 2004-09-07 03:40  jordi
13526
13527         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
13528           fixes, methods, multiple links
13529
13530 2004-09-06 06:55  jordi
13531
13532         * Control.cs: Caches ClientRectangle rectangle value
13533
13534 2004-09-05 02:03  jordi
13535
13536         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
13537           certain situations
13538
13539 2004-09-04 11:10  jordi
13540
13541         * Label.cs: Refresh when font changed
13542
13543 2004-09-02 16:24  pbartok
13544
13545         * Control.cs:
13546           - Added sanity check to creation of double buffer bitmap
13547
13548 2004-09-02 16:24  pbartok
13549
13550         * ButtonBase.cs:
13551           - Fixed selection of text color
13552           - Fixed handling of resize event; now properly recreates double
13553             buffering bitmap
13554           - Added missing assignment of TextAlignment
13555           - Added proper default for TextAlignment
13556
13557 2004-09-02 14:26  pbartok
13558
13559         * RadioButton.cs:
13560           - Added missing RadioButton.RadioButtonAccessibleObject class
13561
13562 2004-09-02 14:26  pbartok
13563
13564         * Control.cs:
13565           - Added missing Control.ControlAccessibleObject class
13566           - Started to implement Select()ion mechanisms, still very incomplete
13567
13568 2004-09-02 14:25  pbartok
13569
13570         * AccessibleObject.cs:
13571           - Added missing methods
13572
13573 2004-09-02 14:23  pbartok
13574
13575         * AccessibleNavigation.cs, AccessibleSelection.cs:
13576           - Initial check-in
13577
13578 2004-09-02 10:32  jordi
13579
13580         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
13581           pool for pens, brushes, and hatchbruses
13582
13583 2004-09-01 15:30  jackson
13584
13585         * StatusBar.cs: Fix typo
13586
13587 2004-09-01 14:44  pbartok
13588
13589         * RadioButton.cs:
13590           - Fixed state
13591
13592 2004-09-01 14:39  pbartok
13593
13594         * Button.cs, RadioButton.cs:
13595           - Functional initial check-in
13596
13597 2004-09-01 14:01  pbartok
13598
13599         * CheckBox.cs:
13600           - Added missing default
13601           - Added missing region mark
13602
13603 2004-09-01 09:10  jordi
13604
13605         * Label.cs: fixes method signatures, new methods, events, fixes
13606           autosize
13607
13608 2004-09-01 07:19  jordi
13609
13610         * Control.cs: Init string variables with an empty object
13611
13612 2004-09-01 04:20  jordi
13613
13614         * Control.cs: fires OnFontChanged event
13615
13616 2004-08-31 20:07  pbartok
13617
13618         * ButtonBase.cs:
13619           - Enabled display of strings
13620
13621 2004-08-31 20:05  pbartok
13622
13623         * Form.cs:
13624           - Added (partial) implementation of DialogResult; rest needs to be
13625             implemented when the modal loop code is done
13626
13627 2004-08-31 19:55  pbartok
13628
13629         * CheckBox.cs:
13630           - Fixed to match the removal of the needs_redraw concept
13631
13632 2004-08-31 19:55  pbartok
13633
13634         * ButtonBase.cs:
13635           - Removed the rather odd split between 'needs redraw' and redrawing
13636           - Now handles the events that require regeneration (ambient
13637             properties and size)
13638
13639 2004-08-31 19:41  pbartok
13640
13641         * Control.cs:
13642           - Added firing of BackColorChanged event
13643           - Added TopLevelControl property
13644           - Fixed handling of WM_ERASEBKGRND message
13645
13646 2004-08-31 12:49  pbartok
13647
13648         * ButtonBase.cs:
13649           - Removed debug
13650           - Minor fixes
13651
13652 2004-08-31 12:48  pbartok
13653
13654         * CheckBox.cs:
13655           - Finished (famous last words)
13656
13657 2004-08-31 04:35  jordi
13658
13659         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
13660           scrolling bugs, adds new methods
13661
13662 2004-08-30 14:42  pbartok
13663
13664         * CheckBox.cs:
13665           - Implemented CheckBox drawing code
13666
13667 2004-08-30 14:42  pbartok
13668
13669         * ButtonBase.cs:
13670           - Made Redraw() and CheckRedraw() virtual
13671           - Improved mouse up/down/move logic to properly track buttons
13672
13673 2004-08-30 09:44  pbartok
13674
13675         * CheckBox.cs:
13676           - Updated to fix broken build. Not complete yet.
13677
13678 2004-08-30 09:28  pbartok
13679
13680         * CheckState.cs:
13681           - Initial checkin
13682
13683 2004-08-30 09:17  pbartok
13684
13685         * Appearance.cs:
13686           - Initial check-in
13687
13688 2004-08-27 16:12  ravindra
13689
13690         * ToolBarButton.cs: Added TypeConverter attribute.
13691
13692 2004-08-27 16:07  ravindra
13693
13694         * ImageIndexConverter.cs: Implemented.
13695
13696 2004-08-27 14:17  pbartok
13697
13698         * Control.cs:
13699           - Removed unneeded stack vars
13700           - First attempt to fix sizing issues when layout is suspended
13701
13702 2004-08-25 15:35  jordi
13703
13704         * ScrollBar.cs: more fixes to scrollbar
13705
13706 2004-08-25 14:04  ravindra
13707
13708         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
13709           Added the missing divider code and grip for ToolBar Control.
13710
13711 2004-08-25 13:20  pbartok
13712
13713         * Control.cs:
13714           - Control now properly passes the ambient background color to child
13715             controls
13716
13717 2004-08-25 13:20  jordi
13718
13719         * ScrollBar.cs: small bug fix regarding bar position
13720
13721 2004-08-25 12:33  pbartok
13722
13723         * Timer.cs:
13724           - Now only calls SetTimer or KillTimer if the enabled state has
13725           changed
13726
13727 2004-08-25 12:33  pbartok
13728
13729         * XplatUIWin32.cs:
13730           - Fixed timer handling, now seems to work
13731           - Improved error message for window creation
13732
13733 2004-08-25 12:32  pbartok
13734
13735         * Control.cs:
13736           - Fixed generation of MouseUp message
13737
13738 2004-08-25 12:29  jordi
13739
13740         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
13741           and fixes for progressbar
13742
13743 2004-08-24 18:43  ravindra
13744
13745         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
13746           in ToolBar control.
13747
13748 2004-08-24 17:15  pbartok
13749
13750         * Panel.cs:
13751           - Added #region
13752           - Added missing events
13753           - Alphabetized
13754
13755 2004-08-24 17:14  pbartok
13756
13757         * StatusBar.cs, PictureBox.cs:
13758           - Now uses Control's CreateParams
13759
13760 2004-08-24 16:36  pbartok
13761
13762         * XplatUIX11.cs:
13763           - Fixed background color handling
13764           - Fixed sending of enter/leave events on a grab
13765
13766 2004-08-24 16:35  pbartok
13767
13768         * X11Structs.cs:
13769           - Refined definitions for CrossingEvent
13770
13771 2004-08-24 12:37  jordi
13772
13773         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
13774           formmating, methods signature, and adds missing events
13775
13776 2004-08-24 12:24  jordi
13777
13778         * Control.cs: fire OnEnabledChanged event
13779
13780 2004-08-24 11:17  pbartok
13781
13782         * XplatUIWin32.cs:
13783           - Implemented SetTimer() and KillTimer()
13784
13785 2004-08-24 11:16  pbartok
13786
13787         * XplatUIX11.cs:
13788           - Now uses Remove instead of Add to kill the timer
13789
13790 2004-08-24 10:16  jackson
13791
13792         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
13793           picture boxes in the theme now. Draw picture box borders and obey
13794           sizing modes
13795
13796 2004-08-24 05:49  jackson
13797
13798         * Timer.cs: Remove top secret debugging code
13799
13800 2004-08-24 05:34  jackson
13801
13802         * PictureBox.cs: Temp hack to make picture boxes draw their full
13803           image
13804
13805 2004-08-24 05:29  jackson
13806
13807         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
13808           XplatUIX11.cs: Move timers to the driver level. On X they are
13809           queued by the driver and checked on idle.
13810
13811 2004-08-24 01:07  jackson
13812
13813         * XplatUIX11.cs: Use a queue for async messages instead of passing
13814           them as ClientMessages since that was totally broken. Also simply
13815           check for events and return an idle message if none are found. This
13816           gives us an idle handler, and prevents deadlocking when no messages
13817           are in the queue.
13818
13819 2004-08-23 18:19  ravindra
13820
13821         * XplatUIWin32.cs: Removed the unwanted destructor.
13822
13823 2004-08-23 17:27  pbartok
13824
13825         * ButtonBase.cs:
13826           - Finishing touches. Works now, just needs some optimizations.
13827
13828 2004-08-23 16:53  jordi
13829
13830         * ScrollBar.cs: small fix
13831
13832 2004-08-23 16:45  pbartok
13833
13834         * Application.cs:
13835           - Removed debug output
13836           - Simplifications
13837
13838 2004-08-23 16:43  jordi
13839
13840         * ScrollBar.cs: [no log message]
13841
13842 2004-08-23 16:10  pbartok
13843
13844         * Form.cs:
13845           - Fixed handling of WM_CLOSE message
13846           - Removed debug output
13847
13848 2004-08-23 16:09  pbartok
13849
13850         * Application.cs:
13851           - Added handling of Idle event
13852           - Added handling of form closing
13853           - Fixed reporting of MessageLoop property
13854           - Removed some unneeded code, should provide a bit of a speedup
13855
13856 2004-08-23 15:22  pbartok
13857
13858         * Control.cs:
13859           - Added InitLayout() method
13860           - Added code to properly perform layout when Anchor or Dock property
13861             is changed
13862           - Changed 'interpretation' of ResumeLayout. MS seems to have a
13863             LAMESPEC, tried to do it in a way that makes sense
13864
13865 2004-08-23 14:10  jordi
13866
13867         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
13868           properties and methods
13869
13870 2004-08-23 13:55  pbartok
13871
13872         * Control.cs:
13873           - Properly fixed Jordi's last fix
13874           - Now uses Cursor's Position property instead of calling XplatUI
13875           directly
13876
13877 2004-08-23 13:44  jordi
13878
13879         * PaintEventHandler.cs: Adding missing attribute
13880
13881 2004-08-23 13:39  pbartok
13882
13883         * Cursor.cs:
13884           - Implemented Position property
13885
13886 2004-08-23 13:39  pbartok
13887
13888         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
13889           - Added method to move mouse cursor
13890
13891 2004-08-23 13:39  pbartok
13892
13893         * XplatUIX11.cs:
13894           - Fixed setting of background color
13895           - Added method to move mouse cursor
13896
13897 2004-08-23 13:16  jordi
13898
13899         * Control.cs: avoids null exception
13900
13901 2004-08-22 17:46  jackson
13902
13903         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
13904           PictureBox
13905
13906 2004-08-22 17:40  jackson
13907
13908         * XplatUIX11.cs: Add some missing locks
13909
13910 2004-08-22 15:10  pbartok
13911
13912         * Control.cs, Form.cs:
13913           - Removed OverlappedWindow style from Control, instead it's default
13914             now is child
13915           - Made form windows OverlappedWindow by default
13916
13917 2004-08-22 13:34  jackson
13918
13919         * ScrollBar.cs: Update the position through the Value property so
13920           the OnValueChanged event is raised.
13921
13922 2004-08-22 12:04  pbartok
13923
13924         * SWF.csproj:
13925           - Added Cursor.cs and UserControl.cs
13926
13927 2004-08-22 12:03  pbartok
13928
13929         * Cursor.cs:
13930           - Started implementation, not usable yet
13931
13932 2004-08-22 12:00  pbartok
13933
13934         * UserControl.cs:
13935           - Implemented UserControl (complete)
13936
13937 2004-08-21 19:20  ravindra
13938
13939         * ToolBar.cs: Correcting the formatting mess of VS.NET.
13940
13941 2004-08-21 18:49  ravindra
13942
13943         * ToolBar.cs: Probably this completes the missing attributes in
13944           toolbar control.
13945
13946 2004-08-21 18:03  ravindra
13947
13948         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
13949           Fixed toolbar control signatures.
13950
13951 2004-08-21 16:32  pbartok
13952
13953         * LinkLabel.cs:
13954           - Signature Fixes
13955
13956 2004-08-21 16:30  pbartok
13957
13958         * Label.cs:
13959           - Signature fixes
13960
13961 2004-08-21 16:19  pbartok
13962
13963         * Control.cs, Label.cs:
13964           - Signature fixes
13965
13966 2004-08-21 15:57  pbartok
13967
13968         * ButtonBase.cs:
13969           - Added loads of debug output for development
13970           - Fixed typo in method name
13971
13972 2004-08-21 15:52  pbartok
13973
13974         * ToolBarButtonClickEventArgs.cs:
13975           - Added missing base class
13976
13977 2004-08-21 14:53  pbartok
13978
13979         * Control.cs:
13980           - Updated to match new GrabWindow signature
13981
13982 2004-08-21 14:51  pbartok
13983
13984         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
13985           - Added method to get default display size
13986
13987 2004-08-21 14:23  pbartok
13988
13989         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
13990           - Added method to query current grab state
13991           - Added argument to allow confining a grab to a window
13992
13993 2004-08-21 14:22  pbartok
13994
13995         * Keys.cs:
13996           - Added [Flags] attribute so that modifiers can be used in bitwise
13997           ops
13998
13999 2004-08-21 14:21  pbartok
14000
14001         * TrackBar.cs, ScrollBar.cs:
14002           - Replaced direct XplatUI calls with their Control counterpart
14003
14004 2004-08-21 13:32  pbartok
14005
14006         * Control.cs:
14007           - Implemented Created property
14008
14009 2004-08-21 13:28  pbartok
14010
14011         * Control.cs:
14012           - Implemented ContainsFocus
14013
14014 2004-08-21 13:26  pbartok
14015
14016         * Control.cs:
14017           - Implemented CausesValidation
14018
14019 2004-08-21 13:21  pbartok
14020
14021         * Control.cs:
14022           - Implemented CanFocus
14023           - Implemented CanSelect
14024           - Implemented Capture
14025
14026 2004-08-21 12:35  pbartok
14027
14028         * XplatUIWin32.cs:
14029           - Fixed bug with Async message handling
14030           - Implemented getting the ModifierKeys
14031
14032 2004-08-21 12:32  jackson
14033
14034         * AsyncMethodResult.cs: Make sure we have the mutex before we
14035           release it. Fixes BeginInvoke on windows
14036
14037 2004-08-21 11:31  pbartok
14038
14039         * XplatUIWin32.cs, XplatUIX11.cs:
14040           - Drivers now return proper mouse state
14041
14042 2004-08-21 10:54  jackson
14043
14044         * Control.cs: Implement EndInvoke
14045
14046 2004-08-21 10:48  jackson
14047
14048         * Timer.cs: Remove unneeded finalizer
14049
14050 2004-08-20 19:52  ravindra
14051
14052         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
14053           in mouse event handling in the ToolBar control.
14054
14055 2004-08-20 19:50  ravindra
14056
14057         * ImageList.cs: Changed draw method to use the arguments passed in
14058           to draw the image.
14059
14060 2004-08-20 18:58  pbartok
14061
14062         * XplatUIStructs.cs:
14063           - Added private message for async communication
14064
14065 2004-08-20 17:38  ravindra
14066
14067         * Control.cs: Made RightToLeft property virtual and removed a
14068           Console.WriteLine.
14069
14070 2004-08-20 14:39  jordi
14071
14072         * ThemeGtk.cs: use style_attach
14073
14074 2004-08-20 14:39  pbartok
14075
14076         * XplatUIWin32.cs:
14077           - Added jackson's Async code from X11 to Win32
14078
14079 2004-08-20 14:09  pbartok
14080
14081         * SWF.csproj:
14082           - Added all new files
14083
14084 2004-08-20 14:09  pbartok
14085
14086         * Control.cs:
14087           - Added call to set window background color
14088
14089 2004-08-20 14:03  pbartok
14090
14091         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
14092           - Added method for setting the window background
14093
14094 2004-08-20 14:02  pbartok
14095
14096         * XplatUIWin32.cs:
14097           - Added method for setting the background color
14098           - Added handling for erasing the window background
14099
14100 2004-08-20 13:45  jordi
14101
14102         * TrackBar.cs: fixes timer, new properties and methods
14103
14104 2004-08-20 13:34  jackson
14105
14106         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
14107           correct thread
14108
14109 2004-08-20 13:22  jackson
14110
14111         * Timer.cs: Timer Tick events are now handed through Controls Async
14112           mechanism so the callbacks are executed in the same thread as X
14113
14114 2004-08-20 13:19  jackson
14115
14116         * XplatUIDriver.cs: Expose functionality to send async messages
14117           through the driver
14118
14119 2004-08-20 13:18  jackson
14120
14121         * Control.cs: Implement Begininvoke
14122
14123 2004-08-20 13:14  jackson
14124
14125         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
14126           messages through the driver
14127
14128 2004-08-20 13:12  jackson
14129
14130         * XplatUIX11.cs: Lock before all X operations. Also added Async
14131           method functionality through XSendEvent
14132
14133 2004-08-20 13:11  jackson
14134
14135         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
14136           This will screw up on 64 bit systems)
14137
14138 2004-08-20 13:10  jackson
14139
14140         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
14141           Async messages through X/Win32
14142
14143 2004-08-19 19:39  pbartok
14144
14145         * XplatUIX11.cs:
14146           - Updated code to match new HandleData.DeviceContext type
14147
14148 2004-08-19 19:38  pbartok
14149
14150         * HandleData.cs:
14151           - Made DeviceContext a generic object to allow usage from various
14152           drivers
14153           - Added support for queueing Windows messages
14154
14155 2004-08-19 19:37  pbartok
14156
14157         * XplatUIWin32.cs:
14158           - Added generation of MouseEnter, MouseLeave and MouseHover events
14159           - Added cleanup on EndPaint
14160
14161 2004-08-19 19:17  pbartok
14162
14163         * Control.cs:
14164           - Added handling of WM_MOUSEHOVER
14165           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
14166           code
14167
14168 2004-08-19 18:55  jordi
14169
14170         * ThemeGtk.cs: fixes button order
14171
14172 2004-08-19 18:12  jordi
14173
14174         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
14175
14176 2004-08-19 17:09  pbartok
14177
14178         * Control.cs:
14179           - Added Right property
14180           - Added RightToLeft property
14181
14182 2004-08-19 16:27  jordi
14183
14184         * ThemeGtk.cs: experimental GTK theme support
14185
14186 2004-08-19 16:26  jordi
14187
14188         * ITheme.cs, Theme.cs: move themes from an interface to a class
14189
14190 2004-08-19 16:25  jordi
14191
14192         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
14193           theme enhancaments
14194
14195 2004-08-19 16:04  pbartok
14196
14197         * XplatUIX11.cs:
14198           - Added colormap basics
14199           - Added a way to re-initialize with a different display handle
14200           - Fixed setting of the window background color
14201           - Added various X11 imports related to colors and colormaps
14202
14203 2004-08-19 15:51  pbartok
14204
14205         * X11Structs.cs:
14206           - Removed packing hints (Paolo suggested this a while back)
14207           - fixed colormap type
14208           - Added default Atom types
14209           - Added Screen and color structs and enums
14210
14211 2004-08-19 15:39  pbartok
14212
14213         * ImageList.cs:
14214           - Added missing Draw() method
14215           - Added missing RecreateHandle event
14216
14217 2004-08-19 15:30  pbartok
14218
14219         * Form.cs:
14220           - Added handling of WM_CLOSE
14221
14222 2004-08-18 13:16  jordi
14223
14224         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
14225           a table
14226
14227 2004-08-18 09:56  jordi
14228
14229         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
14230
14231 2004-08-17 15:31  ravindra
14232
14233         * SWF.csproj: Updated project.
14234
14235 2004-08-17 15:25  pbartok
14236
14237         * Control.cs:
14238           - Drawing improvement; don't call UpdateBounds if we are not visible
14239             (or have been minimized)
14240
14241 2004-08-17 15:24  pbartok
14242
14243         * XplatUIWin32.cs:
14244           - Finished IsVisible
14245           - Added Win32GetWindowPlacement
14246
14247 2004-08-17 15:08  jackson
14248
14249         * Panel.cs: Initial checkin of the Panel
14250
14251 2004-08-17 14:25  pbartok
14252
14253         * Control.cs:
14254           - Fixed broken handling of default window sizes
14255
14256 2004-08-17 13:29  jackson
14257
14258         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
14259           has a large startup time.
14260
14261 2004-08-17 10:25  jackson
14262
14263         * HandleData.cs: union areas properly
14264
14265 2004-08-17 10:12  jackson
14266
14267         * HandleData.cs: union areas properly
14268
14269 2004-08-16 20:00  ravindra
14270
14271         * ToolBar.cs, ToolBarButton.cs: Added attributes.
14272
14273 2004-08-16 18:48  ravindra
14274
14275         * ToolBar.cs: Added attributes.
14276
14277 2004-08-16 17:17  ravindra
14278
14279         * SWF.csproj: Updated project.
14280
14281 2004-08-16 17:16  jackson
14282
14283         * XplatUIX11.cs: Check for more expose events before sending a
14284           WM_PAINT so they can all be grouped together. This makes dragging a
14285           window across another window redraw in a sane way.
14286
14287 2004-08-16 15:47  pbartok
14288
14289         * Control.cs:
14290           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
14291             support OnMouseEnter/Leave()
14292           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
14293             exposure handling
14294
14295 2004-08-16 15:46  pbartok
14296
14297         * XplatUIStructs.cs, XplatUIX11.cs:
14298           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
14299           OnMouseEnter/Leave()
14300
14301 2004-08-16 15:34  jackson
14302
14303         * XplatUIX11.cs: Group multiple expose events in HandleData, make
14304           sure messages get the message field set to WM_NULL if they are not
14305           handled.
14306
14307 2004-08-16 15:24  jackson
14308
14309         * HandleData.cs: HandleData is used for storing message information
14310           for window handles
14311
14312 2004-08-15 17:23  ravindra
14313
14314         * ColorDepth.cs: Added attribute.
14315
14316 2004-08-15 17:23  ravindra
14317
14318         * SWF.csproj: Updated project for ToolBar Control.
14319
14320 2004-08-15 17:20  ravindra
14321
14322         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
14323           control and also dos2unix format.
14324
14325 2004-08-15 17:13  ravindra
14326
14327         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
14328           ToolBarButtonClickEventArgs.cs,
14329           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
14330           ToolBarTextAlign.cs: First Implementation of ToolBar control.
14331
14332 2004-08-15 15:31  pbartok
14333
14334         * ButtonBase.cs:
14335           - First (mostly) working version
14336
14337 2004-08-13 16:15  pbartok
14338
14339         * Control.cs:
14340           - Fixed Anchor default
14341
14342 2004-08-13 15:43  pbartok
14343
14344         * Control.cs:
14345           - Changed GetCursorPos signature
14346
14347 2004-08-13 15:42  pbartok
14348
14349         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
14350           - Changed signature for GetCursorPos
14351
14352 2004-08-13 15:25  pbartok
14353
14354         * XplatUIX11.cs:
14355           - Cleanup
14356           - Fixed resizing/exposure handling
14357
14358 2004-08-13 15:22  jordi
14359
14360         * ThemeWin32Classic.cs: removes redundant code and fixes issues
14361           with tickposition
14362
14363 2004-08-13 14:55  jordi
14364
14365         * TrackBar.cs: change from wndproc to events
14366
14367 2004-08-13 13:00  jordi
14368
14369         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
14370           XplatUIX11.cs: implements PointToClient (ScreenToClient)
14371
14372 2004-08-13 12:53  pbartok
14373
14374         * XplatUIWin32.cs:
14375           - Changed GetWindowPos to also provide client area size
14376           - Fixed broken prototypes for several win32 functions
14377
14378 2004-08-13 12:53  pbartok
14379
14380         * XplatUI.cs, XplatUIDriver.cs:
14381           - Changed GetWindowPos to also provide client area size
14382
14383 2004-08-13 12:52  pbartok
14384
14385         * XplatUIX11.cs:
14386           - Added generation of WM_POSCHANGED
14387           - Changed GetWindowPos to also provide client area size
14388
14389 2004-08-13 12:52  pbartok
14390
14391         * Control.cs:
14392           - Added Dispose() and destructor
14393           - Fixed resizing and bounds calculation
14394           - Fixed Layout
14395           - Added memory savings for invisible windows
14396
14397 2004-08-13 12:46  jordi
14398
14399         * TrackBar.cs: adds timer and grap window
14400
14401 2004-08-13 10:25  jackson
14402
14403         * Timer.cs: SWF Timer
14404
14405 2004-08-12 16:59  pbartok
14406
14407         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
14408           - Implemented method to get current mouse position
14409
14410 2004-08-12 14:29  jordi
14411
14412         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
14413           enhancement, fix mouse problems, highli thumb, etc
14414
14415 2004-08-12 13:31  pbartok
14416
14417         * Control.cs:
14418           - Fixed Anchoring bugs
14419
14420 2004-08-12 13:01  jackson
14421
14422         * StatusBar.cs: Don't forget things
14423
14424 2004-08-12 12:54  jackson
14425
14426         * ThemeWin32Classic.cs: Handle owner draw status bars
14427
14428 2004-08-12 12:54  jackson
14429
14430         * StatusBar.cs: Implement missing properties, events, and methods.
14431           Handle mouse clicking
14432
14433 2004-08-12 10:19  jackson
14434
14435         * StatusBarPanelClickEventArgs.cs,
14436           StatusBarPanelClickEventHandler.cs: Classes for handling status
14437           bar panel click events
14438
14439 2004-08-12 10:10  jackson
14440
14441         * Control.cs: Add missing properties
14442
14443 2004-08-12 09:46  pbartok
14444
14445         * BindingsManagerBase.cs:
14446           - Name changed to BindingManagerBase.cs
14447
14448 2004-08-12 09:25  jordi
14449
14450         * ScrollableControl.cs: calls ctrlbase instead of exeception
14451
14452 2004-08-11 16:28  pbartok
14453
14454         * InputLanguageChangingEventArgs.cs:
14455           - Never check in before compiling. Fixes the last check-in
14456
14457 2004-08-11 16:26  pbartok
14458
14459         * InputLanguageChangingEventArgs.cs:
14460           - More signature fixes
14461
14462 2004-08-11 16:20  pbartok
14463
14464         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
14465           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
14466           ImageListStreamer.cs, InputLanguage.cs,
14467           InputLanguageChangedEventArgs.cs,
14468           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
14469           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
14470           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
14471           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
14472           - Signature fixes
14473
14474 2004-08-11 16:16  pbartok
14475
14476         * Application.cs:
14477           - Fixed Signature
14478           - Added .Net 1.1 method
14479
14480 2004-08-11 15:25  pbartok
14481
14482         * SWF.csproj:
14483           - Fixed BindingManagerBase.cs filename
14484
14485 2004-08-11 15:22  pbartok
14486
14487         * BindingManagerBase.cs:
14488           - Was checked in with wrong filename
14489
14490 2004-08-11 14:50  pbartok
14491
14492         * SWF.csproj:
14493           - Updated
14494
14495 2004-08-11 13:41  jordi
14496
14497         * XplatUIWin32.cs: Fixes ClientRect
14498
14499 2004-08-11 13:19  pbartok
14500
14501         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
14502           XplatUIX11.cs:
14503           - We had SetWindowPos and MoveWindow to set window positions and
14504             size, removed MoveWindow. We have GetWindowPos, so it made sense to
14505             keep SetWindowPos as matching counterpart
14506           - Added some X11 sanity checking
14507
14508 2004-08-11 12:59  pbartok
14509
14510         * Control.cs:
14511           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
14512             (It seems that SetBounds is just a front for SetBoundsCore and
14513              SetBoundsCore updates the underlying window system and
14514              UpdateBounds is responsible for updating the variables associated
14515              with the Control and sending the events)
14516           - Major cleanup of Size handling; we now have two sizes, client_size
14517             and bounds. Bounds defines the window with decorations, client_size
14518             without them.
14519
14520 2004-08-11 12:55  pbartok
14521
14522         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
14523           - Added method to calculate difference between decorated window and
14524             raw client area
14525
14526 2004-08-11 12:54  pbartok
14527
14528         * Label.cs:
14529           - Forcing redraw on resize
14530
14531 2004-08-11 11:43  pbartok
14532
14533         * ImageList.cs:
14534           - Removed disposing of the actual images when the list is disposed
14535
14536 2004-08-11 09:13  pbartok
14537
14538         * Control.cs:
14539           - Now properly reparents windows
14540
14541 2004-08-11 08:37  pbartok
14542
14543         * Control.cs:
14544           - Duh!
14545
14546 2004-08-11 07:47  pbartok
14547
14548         * Control.cs:
14549           - Rewrote the collection stuff. Might not be as fast now, not
14550             keeping the number of children around and accessible directly, but
14551             it's more straightforward
14552
14553 2004-08-11 07:44  pbartok
14554
14555         * AccessibleObject.cs:
14556           - Fixed to match ControlCollection rewrite
14557
14558 2004-08-11 07:43  pbartok
14559
14560         * ImageList.cs:
14561           - Added missing creation of the collection list
14562
14563 2004-08-10 20:08  jackson
14564
14565         * StatusBar.cs: Get the paint message from WndProc
14566
14567 2004-08-10 19:31  jackson
14568
14569         * ThemeWin32Classic.cs: Create Brushes as little as possible
14570
14571 2004-08-10 19:20  jackson
14572
14573         * UICues.cs: Add Flags attribute
14574
14575 2004-08-10 19:19  jackson
14576
14577         * StatusBarPanel.cs: Signature cleanup
14578
14579 2004-08-10 19:10  jackson
14580
14581         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
14582           Initial implementation of status bar item drawing
14583
14584 2004-08-10 17:27  jordi
14585
14586         * TrackBar.cs: add missing methods, properties, and restructure to
14587           hide extra ones
14588
14589 2004-08-10 16:24  jackson
14590
14591         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
14592           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
14593           attribute
14594
14595 2004-08-10 13:21  jordi
14596
14597         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
14598           enhancements and standarize on win colors defaults
14599
14600 2004-08-10 12:52  jackson
14601
14602         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
14603           ThemeWin32Classic.cs: Implement DrawItem functionality
14604
14605 2004-08-10 12:47  jordi
14606
14607         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
14608
14609 2004-08-10 12:32  jordi
14610
14611         * Control.cs: throw ontextchange event
14612
14613 2004-08-10 11:43  pbartok
14614
14615         * Control.cs:
14616           - Added more to the still unfinished Dock/Anchor layout code
14617
14618 2004-08-10 11:39  pbartok
14619
14620         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
14621           - Added GetWindowPos method
14622
14623 2004-08-10 11:36  pbartok
14624
14625         * XplatUIWin32.cs:
14626           - Implemented several methods
14627
14628 2004-08-10 09:47  jackson
14629
14630         * TrackBar.cs: Allow control to handle buffering
14631
14632 2004-08-10 09:41  jackson
14633
14634         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
14635
14636 2004-08-10 09:24  jackson
14637
14638         * Label.cs, LinkLabel.cs: Let Control handle buffering.
14639
14640 2004-08-10 09:09  jackson
14641
14642         * StatusBar.cs: Let Control handle all the buffering.
14643
14644 2004-08-10 09:08  jackson
14645
14646         * Control.cs: Control will now handle the buffering code, so each
14647           control does not have to implement this.
14648
14649 2004-08-10 08:34  jackson
14650
14651         * XplatUIDriver.cs: Use default colors from the theme
14652
14653 2004-08-09 17:12  pbartok
14654
14655         * ImageList.cs:
14656           - Fixed several bugs Ravindra pointed out
14657
14658 2004-08-09 16:11  pbartok
14659
14660         * Control.cs:
14661           - Added incomplete dock layout code
14662           - Added support for mouse wheel
14663
14664 2004-08-09 16:09  pbartok
14665
14666         * XplatUIX11.cs:
14667           - Added handling for middle and right mousebutton
14668           - Added handling for mouse wheel
14669           - Added handling for key state and mouse state and position
14670           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
14671           messages
14672
14673 2004-08-09 15:40  jackson
14674
14675         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
14676           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
14677           checkin
14678
14679 2004-08-09 15:37  jackson
14680
14681         * StatusBar.cs: Initial implementation of StatusBar
14682
14683 2004-08-09 15:36  jackson
14684
14685         * ITheme.cs: Add support for drawing status bar and getting status
14686           bar item sizes
14687
14688 2004-08-09 15:35  pbartok
14689
14690         * MouseButtons.cs:
14691           - Fixed values
14692
14693 2004-08-09 15:34  jackson
14694
14695         * ThemeWin32Classic.cs: Add support for drawing status bar and get
14696           status bar item sizes
14697
14698 2004-08-09 15:21  jackson
14699
14700         * ThemeWin32Classic.cs: Use known colors for default control
14701           colours
14702
14703 2004-08-09 15:12  jackson
14704
14705         * ThemeWin32Classic.cs: Make the default font static, it is static
14706           in control so this doesn't change functionality and creating fonts
14707           is sloooooow.
14708
14709 2004-08-09 14:56  pbartok
14710
14711         * X11Structs.cs:
14712           - Added GrabMode enum
14713
14714 2004-08-09 14:55  pbartok
14715
14716         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
14717           - Removed Run method, was only required for initial development
14718
14719 2004-08-09 14:51  pbartok
14720
14721         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
14722           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
14723           capture
14724
14725 2004-08-09 13:48  pbartok
14726
14727         * XplatUIX11.cs:
14728           - Fixed default sizing for child windows
14729
14730 2004-08-09 12:56  pbartok
14731
14732         * XplatUIX11.cs:
14733           - Added generation of WM_DESTROY message
14734           - Added handling of window manager induced shutdown
14735
14736 2004-08-09 11:31  jackson
14737
14738         * ThemeWin32Classic.cs: New names for control properties
14739
14740 2004-08-09 11:25  jackson
14741
14742         * Control.cs: Use new color names
14743
14744 2004-08-09 11:02  jackson
14745
14746         * XplatUI.cs: Get default window properties from the theme
14747
14748 2004-08-09 11:01  jackson
14749
14750         * ITheme.cs: The theme engine now controls default window
14751           properties
14752
14753 2004-08-09 11:00  jackson
14754
14755         * ThemeWin32Classic.cs: Add default window color properties
14756
14757 2004-08-09 10:17  jackson
14758
14759         * ThemeWin32Classic.cs: Use correct default back color
14760
14761 2004-08-09 10:05  jackson
14762
14763         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
14764           the theme now.
14765
14766 2004-08-09 09:56  jackson
14767
14768         * XplatUI.cs: Remove defaults, these are handled by the theme now.
14769
14770 2004-08-09 09:54  jackson
14771
14772         * Control.cs: Get default properties from the theme.
14773
14774 2004-08-09 09:53  jackson
14775
14776         * ITheme.cs: Themes now handle default control properties
14777
14778 2004-08-09 09:53  jackson
14779
14780         * ThemeWin32Classic.cs: Themes now handle default control
14781           properties so coloring will be consistent
14782
14783 2004-08-08 16:54  jordi
14784
14785         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
14786
14787 2004-08-08 15:08  jordi
14788
14789         * XplatUIX11.cs: fixes keyboard crash
14790
14791 2004-08-08 13:47  jordi
14792
14793         * Label.cs: add cvs header info
14794
14795 2004-08-08 12:09  jackson
14796
14797         * ThemeWin32Classic.cs: Add pen_buttonface
14798
14799 2004-08-08 11:52  jordi
14800
14801         * Label.cs, LinkLabel.cs: [no log message]
14802
14803 2004-08-08 11:34  jordi
14804
14805         * ThemeWin32Classic.cs: Use Windows Standard Colours
14806
14807 2004-08-07 17:32  jordi
14808
14809         * TrackBar.cs: throw exceptions of invalid enums values
14810
14811 2004-08-07 17:31  jordi
14812
14813         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
14814           draw method name
14815
14816 2004-08-07 16:56  jackson
14817
14818         * HorizontalAlignment.cs: Initial checkin
14819
14820 2004-08-07 13:16  jordi
14821
14822         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
14823           methods
14824
14825 2004-08-07 13:05  jordi
14826
14827         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
14828           GetSysColor defines
14829
14830 2004-08-06 18:01  pbartok
14831
14832         * ThemeWin32Classic.cs:
14833           - Fixed some rounding issues with float/int
14834
14835 2004-08-06 18:00  jackson
14836
14837         * DockStyle.cs, AnchorStyles.cs:
14838
14839                   Add flags and serializable attributes.
14840
14841 2004-08-06 17:46  pbartok
14842
14843         * XplatUIX11.cs:
14844           - Implemented GetParent
14845
14846 2004-08-06 17:18  pbartok
14847
14848         * TrackBar.cs:
14849           - Fixed some rounding issues with float/int
14850
14851 2004-08-06 17:17  pbartok
14852
14853         * X11Structs.cs, XplatUIX11.cs:
14854           - Fixed Refresh and Invalidate
14855
14856 2004-08-06 15:30  pbartok
14857
14858         * Control.cs, X11Structs.cs, XplatUIX11.cs:
14859           - Fixed recursive loop when resizing
14860           - Improved/fixed redrawing on expose messages
14861
14862 2004-08-06 09:53  jordi
14863
14864         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
14865           keyboard navigation
14866
14867 2004-08-06 08:02  pbartok
14868
14869         * X11Structs.cs, XplatUIX11.cs:
14870           - Fixed reparenting
14871           - Fixed window border creation
14872
14873 2004-08-05 15:38  pbartok
14874
14875         * XplatUIX11.cs:
14876           - Attempted fix for reparenting problems
14877
14878 2004-08-04 15:14  pbartok
14879
14880         * Control.cs:
14881           - Fixed Invalidation bug (calculated wrong client area)
14882           - Added ClientSize setter
14883
14884 2004-08-04 15:13  pbartok
14885
14886         * Form.cs:
14887           - Added AutoScale properties
14888
14889 2004-08-04 15:13  pbartok
14890
14891         * SWF.csproj:
14892           - Added latest files
14893
14894 2004-08-04 14:11  pbartok
14895
14896         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
14897           XplatUIX11.cs:
14898           - Added Invalidate handling
14899
14900 2004-08-03 17:09  jordi
14901
14902         * XplatUIDriver.cs: fixes spelling mistake
14903
14904 2004-07-27 09:53  jordi
14905
14906         * TrackBar.cs: fixes trackbar events, def classname, methods
14907           signature
14908
14909 2004-07-27 09:29  jordi
14910
14911         * ScrollBar.cs: fixes scrollbar events
14912
14913 2004-07-27 04:38  jordi
14914
14915         * Control.cs: changes to be able to run winforms samples
14916
14917 2004-07-26 11:42  jordi
14918
14919         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
14920           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
14921
14922 2004-07-26 05:41  jordi
14923
14924         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
14925           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
14926           implementation
14927
14928 2004-07-22 09:22  jordi
14929
14930         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
14931           check link overlapping, implement events, and fixes
14932
14933 2004-07-21 10:28  jordi
14934
14935         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
14936
14937 2004-07-21 10:19  jordi
14938
14939         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
14940           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
14941           LinkLabelLinkClickedEventArgs.cs,
14942           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
14943           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
14944           implementation
14945
14946 2004-07-19 13:09  jordi
14947
14948         * Control.cs, Label.cs: label control re-written: added missing
14949           functionlity, events, and properties
14950
14951 2004-07-19 10:49  jordi
14952
14953         * Control.cs: fixes SetBounds logic
14954
14955 2004-07-19 01:29  jordi
14956
14957         * Control.cs: Call RefreshWindow only if the window has created
14958
14959 2004-07-15 14:05  pbartok
14960
14961         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
14962           - Implemented ImageList and ImageList.ImageCollection classes
14963           - Added ColorDepth enumeration
14964           - Updated SWF VS.Net project
14965
14966 2004-07-15 11:06  jordi
14967
14968         * XplatUIStructs.cs: added MsgButons enum
14969
14970 2004-07-15 11:03  jordi
14971
14972         * Control.cs: added basic mouse handeling events
14973
14974 2004-07-15 03:38  jordi
14975
14976         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
14977           Vertical TrackBar control implementation
14978
14979 2004-07-13 09:33  jordi
14980
14981         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
14982
14983 2004-07-13 09:31  jordi
14984
14985         * Control.cs, Form.cs: commit: new properties and fixes form size
14986           problems
14987
14988 2004-07-09 14:13  miguel
14989
14990         * ProgressBar.cs: Spelling
14991
14992 2004-07-09 11:25  pbartok
14993
14994         * ProgressBar.cs:
14995           - Removed usage of Rectangle for drawing. Miguel pointed out it's
14996           faster
14997
14998 2004-07-09 11:17  miguel
14999
15000         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
15001
15002                 * ProgressBar.cs: Fixed spelling for `block'
15003
15004                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
15005                 style guidelines.
15006
15007                 Avoid using the += on rect.X, that exposed a bug in the compiler.
15008
15009 2004-07-08 23:21  pbartok
15010
15011         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
15012           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
15013           BaseCollection.cs, Binding.cs, BindingContext.cs,
15014           BindingMemberInfo.cs, BindingsCollection.cs,
15015           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
15016           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
15017           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
15018           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
15019           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
15020           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
15021           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
15022           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
15023           FrameStyle.cs, GiveFeedbackEventArgs.cs,
15024           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
15025           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
15026           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
15027           InputLanguageChangedEventArgs.cs,
15028           InputLanguageChangedEventHandler.cs,
15029           InputLanguageChangingEventArgs.cs,
15030           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
15031           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
15032           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
15033           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
15034           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
15035           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
15036           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
15037           QueryAccessibilityHelpEventArgs.cs,
15038           QueryAccessibilityHelpEventHandler.cs,
15039           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
15040           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
15041           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
15042           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
15043           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
15044           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
15045           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
15046           XplatUIX11.cs, lang.cs:
15047           - Initial check-in
15048