From: Daniel M. <dan...@ve...> - 2003-10-26 21:50:06
|
Could csharp-studio include the following features: 1. integration with Mono Debugger for debugging C# apps 2. integration with glade and libglade for designing GUI apps 3. allow all the items designed on the GUI Glade Designer to be shown in a code combobox. Call this combobox WidgetsCombo. If the user selects something in the WidgetsCombo, populate another combo box with all the properties and methods of the chosen widget. Call this second combobox WidgetMembersCombo. If the user selects a member and it is not implemented yet, add skeleton code to the class the widget was declared within. Otherwise, just move the cursor to the position of the member in the text editor. If that part of the code is not visible, scroll to it. For example: Widgets: [txtSomething Gtk.TextView][] Members: [Text <Property Get/Set>][] cmbStuff Gtk.ComboBox Clear() <Method> lblSomething Gtk.Label Buffer <Property Get/Set> 4. code completion as you type |