~charlie.poole/nunitv2/equality-handlers

« back to all changes in this revision

Viewing changes to src/ProjectEditor/editor/PropertyEditor/IPropertyView.cs

  • Committer: Charlie Poole
  • Date: 2011-03-29 21:54:46 UTC
  • mfrom: (3257.4.15 standalone-editor)
  • Revision ID: charlie@nunit.org-20110329215446-pu1r6okg4www4zat
Remove integrated project editor and substitute new standalone editor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ****************************************************************
 
2
// Copyright 2011, Charlie Poole
 
3
// This is free software licensed under the NUnit license. You may
 
4
// obtain a copy of the license at http://nunit.org
 
5
// ****************************************************************
 
6
 
 
7
using System;
 
8
using System.Collections.Generic;
 
9
using NUnit.ProjectEditor.ViewElements;
 
10
 
 
11
namespace NUnit.ProjectEditor
 
12
{
 
13
    public interface IPropertyView : IView
 
14
    {
 
15
        #region Properties
 
16
 
 
17
        IDialogManager DialogManager { get; }
 
18
        IConfigurationEditorDialog ConfigurationEditorDialog { get; }
 
19
 
 
20
        #region Command Elements
 
21
 
 
22
        ICommand BrowseProjectBaseCommand { get; }
 
23
        ICommand EditConfigsCommand { get; }
 
24
        ICommand BrowseConfigBaseCommand { get; }
 
25
 
 
26
        ICommand AddAssemblyCommand { get; }
 
27
        ICommand RemoveAssemblyCommand { get; }
 
28
        ICommand BrowseAssemblyPathCommand { get; }
 
29
 
 
30
        #endregion
 
31
 
 
32
        #region Properties of the Model as a Whole
 
33
 
 
34
        ITextElement ProjectPath { get; }
 
35
        ITextElement ProjectBase { get; }
 
36
        ISelectionList ProcessModel { get; }
 
37
        ISelectionList DomainUsage { get; }
 
38
        ITextElement ActiveConfigName { get; }
 
39
 
 
40
        ISelectionList ConfigList { get; }
 
41
 
 
42
        #endregion
 
43
 
 
44
        #region Properties of the Selected Config
 
45
 
 
46
        ISelectionList Runtime { get; }
 
47
        IComboBox RuntimeVersion { get; }
 
48
        ITextElement ApplicationBase { get; }
 
49
        ITextElement ConfigurationFile { get; }
 
50
 
 
51
        ISelection BinPathType { get; }
 
52
        ITextElement PrivateBinPath { get; }
 
53
 
 
54
        ISelectionList AssemblyList { get; }
 
55
        ITextElement AssemblyPath { get; }
 
56
 
 
57
        #endregion
 
58
 
 
59
        #endregion
 
60
    }
 
61
}