~ted/ubuntu/lucid/tomboy/with-patch

« back to all changes in this revision

Viewing changes to Tomboy/AddinPreferenceFactory.cs

Tags: upstream-0.7.2
Import upstream version 0.7.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
 
 
3
namespace Tomboy
 
4
{
 
5
        public abstract class AddinPreferenceFactory
 
6
        {
 
7
                /// <summary>
 
8
                /// Returns a Gtk.Widget that will be placed inside of a Gtk.Dialog
 
9
                /// when the user chooses to view/set the preferences of an Addin.
 
10
                /// </summary>
 
11
                public abstract Gtk.Widget CreatePreferenceWidget ();
 
12
        }
 
13
}