~ubuntu-branches/ubuntu/maverick/monodevelop/maverick

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Core/MonoDevelop.Projects/SolutionItemEventArgs.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// SolutionItemEventArgs.cs
 
2
//
 
3
// Author:
 
4
//   Lluis Sanchez Gual <lluis@novell.com>
 
5
//
 
6
// Copyright (c) 2004 Novell, Inc (http://www.novell.com)
 
7
//
 
8
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
9
// of this software and associated documentation files (the "Software"), to deal
 
10
// in the Software without restriction, including without limitation the rights
 
11
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
12
// copies of the Software, and to permit persons to whom the Software is
 
13
// furnished to do so, subject to the following conditions:
 
14
//
 
15
// The above copyright notice and this permission notice shall be included in
 
16
// all copies or substantial portions of the Software.
 
17
//
 
18
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
19
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
20
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
21
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
22
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
23
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
24
// THE SOFTWARE.
 
25
//
 
26
//
 
27
 
 
28
using System;
 
29
using MonoDevelop.Projects;
 
30
 
 
31
namespace MonoDevelop.Projects
 
32
{
 
33
        public delegate void SolutionItemEventHandler (object sender, SolutionItemEventArgs e);
 
34
        
 
35
        public class SolutionItemEventArgs : EventArgs
 
36
        {
 
37
                SolutionItem entry;
 
38
                Solution solution;
 
39
                
 
40
                public SolutionItem SolutionItem {
 
41
                        get {
 
42
                                return entry;
 
43
                        }
 
44
                }
 
45
                
 
46
                public Solution Solution {
 
47
                        get {
 
48
                                return solution ?? entry.ParentSolution;
 
49
                        }
 
50
                }
 
51
                
 
52
                public SolutionItemEventArgs (SolutionItem entry)
 
53
                {
 
54
                        this.entry = entry;
 
55
                }
 
56
                
 
57
                public SolutionItemEventArgs (SolutionItem entry, Solution solution)
 
58
                {
 
59
                        this.solution = solution;
 
60
                        this.entry = entry;
 
61
                }
 
62
        }
 
63
        
 
64
        public delegate void SolutionItemChangeEventHandler (object sender, SolutionItemChangeEventArgs e);
 
65
        
 
66
        public class SolutionItemChangeEventArgs: SolutionItemEventArgs
 
67
        {
 
68
                bool reloading;
 
69
                
 
70
                public SolutionItemChangeEventArgs (SolutionItem item, Solution parentSolution, bool reloading): base (item, parentSolution)
 
71
                {
 
72
                        this.reloading = reloading;
 
73
                }
 
74
                
 
75
                public bool Reloading {
 
76
                        get { return reloading; }
 
77
                }
 
78
        }
 
79
        
 
80
        public delegate void SolutionItemModifiedEventHandler (object sender, SolutionItemModifiedEventArgs e);
 
81
        
 
82
        public class SolutionItemModifiedEventArgs: SolutionItemEventArgs
 
83
        {
 
84
                string hint;
 
85
                
 
86
                public SolutionItemModifiedEventArgs (SolutionItem item, string hint): base (item)
 
87
                {
 
88
                        this.hint = hint;
 
89
                }
 
90
                
 
91
                public string Hint {
 
92
                        get { return hint; }
 
93
                }
 
94
        }
 
95
}