ChangeLog 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. 2006-03-03 Jacob Ilsø Christensen <jacobilsoe@gmail.com>
  2. * DockBar.cs:
  3. * DockBarButton.cs:
  4. * DockItem.cs:
  5. * DockItemGrip.cs:
  6. Added comments, fixed a variable name and fixed a
  7. internationalization issue.
  8. 2006-03-03 Jacob Ilsø Christensen <jacobilsoe@gmail.com>
  9. * DockBar.cs: Use correct tooltip for iconified docks.
  10. 2006-01-24 Jacob Ilsø Christensen <jacobilsoe@gmail.com>
  11. * DockItem.cs:
  12. * Makefile.am:
  13. Added internationalization. Fixes bug 77102.
  14. 2006-01-22 Lluis Sanchez Gual <lluis@novell.com>
  15. * MonoDevelop.Dock/DockObject.cs: Store object properties
  16. in a hasthable to speed-up property access.
  17. * MonoDevelop.Dock/DockLayout.cs: Avoid unnecessary layout
  18. change events while loading a layout.
  19. 2005-08-20 John Luke <john.luke@gmail.com>
  20. * DockItem.cs: fix some warnings with the new
  21. gtk#
  22. 2005-08-10 Ben Motmans <ben.motmans@gmail.com>
  23. * MonoDevelop.Dock.mdp: references update
  24. 2005-06-27 John Luke <john.luke@gmail.com>
  25. * DockLayout.cs: Save part of placeholders support
  26. 2005-06-27 John Luke <john.luke@gmail.com>
  27. * DockLayout.cs: catch exception on invalid XML
  28. (SetupObject) guard against missing name attribute
  29. part of bug #75289, based on patch from
  30. Matthew Wright <matthew@willowgreen.f2s.com>
  31. 2005-06-04 John Luke <john.luke@gmail.com>
  32. * DockPaned.cs: handle Shift|F8 to avoid crash for now
  33. * GdlDockTest.cs: remove C# 2 features
  34. 2005-04-28 John Luke <john.luke@gmail.com>
  35. * DockBar.cs: remove redundent RemoveItem call
  36. * DockItem.cs: remove redundent LayoutChanged event
  37. 2005-04-17 John Luke <john.luke@gmail.com>
  38. * Makefile.am: fix distcheck
  39. 2005-04-16 John Luke <john.luke@gmail.com>
  40. * DockItem.cs:
  41. * Dock.cs:
  42. * DockItemGrip.cs:
  43. * DockNotebook.cs:
  44. * DockPaned.cs: use ForAll overload that takes a Callback
  45. * DockMaster.cs: remove unused field
  46. 2005-04-06 John Luke <john.luke@gmail.com>
  47. * MonoDevelop.Dock.mdp:
  48. * MonoDevelop.Dock.mds: add project files
  49. 2005-03-31 John Luke <john.luke@gmail.com>
  50. * DockPaned.cs: only emit layout_changed when
  51. the position has changed and on button release
  52. 2005-03-31 John Luke <john.luke@gmail.com>
  53. * *.cs: add license headers
  54. * TODO: update
  55. 2005-03-29 Alp Toker <alp@atoker.com>
  56. * DockPaned.cs: make the central pane resize rather than the edge
  57. panes
  58. 2005-03-24 John Luke <john.luke@gmail.com>
  59. * DockLayout.cs (UpdateItemsModel): reduce chances of being stuck
  60. endlessly in the loop, thanks to toshok for pointing me to it
  61. 2005-03-17 John Luke <john.luke@gmail.com>
  62. * Dock.cs:
  63. * DockItem.cs:
  64. * DockItemGrip.cs: clean up SizeRequest and SizeAllocate
  65. fixes one of our resizing bugs
  66. 2005-03-15 John Luke <john.luke@gmail.com>
  67. * DockBar.cs:
  68. * DockBarButton.cs: simplify by just using the
  69. Clicked signal
  70. 2005-03-15 John Luke <john.luke@gmail.com>
  71. * DockItemBehavior.cs: add NoGrip flag
  72. * DockItem.cs:
  73. * DockItemGrip.cs: hide/show the DockItemGrip based
  74. on NoGrip flag, not Locked status and update for that
  75. 2005-03-15 John Luke <john.luke@gmail.com>
  76. * DockItem.cs: add comment about saving position
  77. * DockPaned.cs: override OnChildPlacement
  78. 2005-03-15 Lluis Sanchez Gual <lluis@novell.com>
  79. * DockItemGrip.cs: Redraw the grip if the title or the icon changes.
  80. Added some padding between the icon and the label.
  81. 2005-03-14 Lluis Sanchez Gual <lluis@novell.com>
  82. * DockItem.cs: Added property for getting the default position.
  83. 2005-03-13 Todd Berman <tberman@off.net>
  84. * DockPlaceholder.cs: Use Conditional instead of #if
  85. 2005-03-13 John Luke <john.luke@gmail.com>
  86. * DockNotebook.cs: not Automatic
  87. * DockPlaceholder.cs: port detach_cb and dock_cb
  88. is Automatic
  89. use Stack instead of ArrayList
  90. * DockMaster.cs: restore IsAutomatic code
  91. * DockItem.cs: not Automatic
  92. * DockObject.cs: small null check fix
  93. 2005-03-13 John Luke <john.luke@gmail.com>
  94. * DockPaned.cs: fix little orientation bug when
  95. loading the layout
  96. 2005-03-12 Todd Berman <tberman@off.net>
  97. * DockItemGrip.cs: use .SetMarkup, not .SetText
  98. 2005-03-13 Lluis Sanchez Gual <lluis@novell.com>
  99. * DockItemGrip.cs, DockMaster.cs: Fix potential memory leaks.
  100. 2005-02-28 John Luke <john.luke@gmail.com>
  101. * DockBarButton.cs: new Button wrapper
  102. * DockBar.cs: fix iconify/uniconify
  103. * DockItem.cs: add item to dockbar on iconify
  104. * DockItemGrip.cs: fix warning by adding new to Item prop
  105. 2005-02-18 John Luke <john.luke@gmail.com>
  106. * Gdl.mdsx
  107. * Gdl.cmbx
  108. * Makefile.Gdl
  109. * Makefile.solution.Gdl
  110. * make.sh
  111. * DockTest.cmbx: these were broken
  112. just kill it unless someone puts back a working project
  113. * DockItemGrip.cs
  114. * DockPlaceholder.cs
  115. * DockItem.cs
  116. * DockBar.cs: use WidgetFlags
  117. * Makefile: use this to build for now