[Mono-docs-list] Tab Navigation

Miguel de Icaza miguel@ximian.com
Mon, 13 Dec 2004 12:01:40 -0500


Hello,

> * A Button on the left of the arrows for adding a Tab
> * The new Tabs shows the root page
> * Tabs are displayed with less height
> * Tab shows better names, for example: "Button: Memebers", "Button: Events" for
> general sections and when displaying a specific method, property, and so on:
> "Button.Label" or "Button.Clicked". Also, when the name is large than 35
> characters, it is trimmed, for example: "ButtonPressEventArgs.ButtonPressEve
> .."

A few comments:

	* Please use the C#/Mono coding conventions, for example
	  "addTab" should become "AddTab", see mcs/CodingStyle for
	  details.

	* The braces open on a new line for functions:

		AddTab () {

	  becomes:

	 	AddTab ()
		{

	* The patch requires ChangeLogs to explain the changes,
	  for example, I do not understand the changes to history.cs

Miguel.