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

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Codons/IDisplayBinding.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:
1
 
//  IDisplayBinding.cs
2
 
//
3
 
// Author:
4
 
//   Mike Krüger <mkrueger@novell.com>
5
 
//
6
 
// Copyright (C) 2009 Novell, Inc (http://www.novell.com)
7
 
//
8
 
// Permission is hereby granted, free of charge, to any person obtaining
9
 
// a copy of this software and associated documentation files (the
10
 
// "Software"), to deal in the Software without restriction, including
11
 
// without limitation the rights to use, copy, modify, merge, publish,
12
 
// distribute, sublicense, and/or sell copies of the Software, and to
13
 
// permit persons to whom the Software is furnished to do so, subject to
14
 
// the following conditions:
15
 
// 
16
 
// The above copyright notice and this permission notice shall be
17
 
// included in all copies or substantial portions of the Software.
18
 
// 
19
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20
 
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
 
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
 
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23
 
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24
 
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25
 
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
 
//
27
 
 
28
 
using System;
29
 
using System.IO;
30
 
 
31
 
using MonoDevelop.Projects;
32
 
using MonoDevelop.Ide.Gui;
33
 
 
34
 
namespace MonoDevelop.Ide.Codons
35
 
{
36
 
        public interface IDisplayBinding : IBaseDisplayBinding
37
 
        {
38
 
                bool CanCreateContentForMimeType (string mimeType);
39
 
                
40
 
                /// <summary>
41
 
                /// 
42
 
                /// </summary>
43
 
                /// <param name="mimeType">
44
 
                /// A <see cref="System.String"/>
45
 
                /// </param>
46
 
                /// <param name="content">
47
 
                /// A <see cref="System.IO.Stream"/> may be null. If it's null the contents are loaded with an ordinary "Load" call.
48
 
                /// </param>
49
 
                /// <returns>
50
 
                /// A <see cref="IViewContent"/>
51
 
                /// </returns>
52
 
                IViewContent CreateContentForMimeType (string mimeType, System.IO.Stream content);
53
 
                
54
 
                bool CanCreateContentForUri (string uri);
55
 
                IViewContent CreateContentForUri (string uri);
56
 
                
57
 
                /// <summary>
58
 
                /// Whether the display binding can be used as the default handler for the content types
59
 
                /// that it handles. If this is false, the binding is only used when the user explicitly picks it.
60
 
                /// </summary>
61
 
                bool CanUseAsDefault { get; }
62
 
        }
63
 
}