~ubuntu-branches/ubuntu/feisty/monodevelop/feisty

« back to all changes in this revision

Viewing changes to Unused/ICSharpCode.TextEditor/src/Gui/CompletionWindow/ICompletionData.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-09-15 02:15:25 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060915021525-ngsnriip5e3uqi9d
Tags: 0.12-0ubuntu1
* New upstream release
* debian/patches/gtk-sharp-2.10.dpatch,
  debian/patches/versioncontrol_buildfix.dpatch:
  + Dropped, merged upstream
* debian/patches/use_nunit2.2.dpatch,
  debian/patches/firefox.dpatch:
  + Updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// <file>
2
 
//     <copyright see="prj:///doc/copyright.txt"/>
3
 
//     <license see="prj:///doc/license.txt"/>
4
 
//     <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
5
 
//     <version value="$version"/>
6
 
// </file>
7
 
 
8
 
using System;
9
 
using System.Drawing;
10
 
using System.Reflection;
11
 
using System.Collections;
12
 
using MonoDevelop.TextEditor;
13
 
 
14
 
namespace MonoDevelop.TextEditor.Gui.CompletionWindow
15
 
{
16
 
        public interface ICompletionData
17
 
        {
18
 
                int ImageIndex {
19
 
                        get;
20
 
                }
21
 
                
22
 
                string[] Text {
23
 
                        get;
24
 
                }
25
 
                
26
 
                string Description {
27
 
                        get;
28
 
                }
29
 
                
30
 
                void InsertAction(TextEditorControl control);
31
 
        }
32
 
        
33
 
        public interface ICompletionDataWithMarkup : ICompletionData
34
 
        {
35
 
                string DescriptionPango {
36
 
                        get;
37
 
                }
38
 
        }
39
 
}