~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/addins/AspNet/MonoDevelop.AspNet.Mvc/Gui/AddViewDialog.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
using MonoDevelop.Projects.Dom.Output;
37
37
using MonoDevelop.AspNet.Parser;
38
38
using MonoDevelop.Core;
 
39
using MonoDevelop.Components;
39
40
 
40
41
namespace MonoDevelop.AspNet.Mvc.Gui
41
42
{
48
49
                string oldMaster;
49
50
                Gtk.ListStore primaryPlaceholderStore = new Gtk.ListStore (typeof (String));
50
51
                System.CodeDom.Compiler.CodeDomProvider provider;
51
 
                MonoDevelop.SourceEditor.DropDownBox dataClassCombo;
 
52
                DropDownBox dataClassCombo;
52
53
                TypeDataProvider classDataProvider;
53
54
                
54
55
                public AddViewDialog (AspMvcProject project)
56
57
                        this.project = project;
57
58
                        this.Build ();
58
59
                        
59
 
                        dataClassCombo = new MonoDevelop.SourceEditor.DropDownBox ();
 
60
                        dataClassCombo = new DropDownBox ();
60
61
                        
61
62
                        int w, h;
62
63
                        Gtk.Icon.SizeLookup (Gtk.IconSize.Menu, out w, out h);
269
270
                
270
271
                #endregion
271
272
                
272
 
                class TypeDataProvider : MonoDevelop.SourceEditor.DropDownBoxListWindow.IListDataProvider
 
273
                class TypeDataProvider : DropDownBoxListWindow.IListDataProvider
273
274
                {
274
275
                        MonoDevelop.Projects.Dom.Output.Ambience ambience;
275
276
                        
303
304
                        {
304
305
                                return List[n];
305
306
                        }
 
307
                        
 
308
                        public void ActivateItem (int n)
 
309
                        {
 
310
                                // nothing
 
311
                        }
306
312
                }
307
313
        }
308
314
}