~ubuntu-branches/ubuntu/oneiric/libpeas/oneiric

« back to all changes in this revision

Viewing changes to libpeas/peas-extension-set.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Martin Pitt, Oliver Sauder
  • Date: 2011-09-05 08:41:48 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: package-import@ubuntu.com-20110905084148-u4qhltt1ipo2frj9
Tags: 1.1.3-0ubuntu1
[ Martin Pitt ]
* New upstream release:
  - Link against pygobject 3. (LP: #839712)
  - Do not cast pointers to unsigned integers.
* Drop debian/patches/gint_is_not_gtype, upstream now.
* debian/control.in: Bump python-gobject-dev build dependency to >= 2.90 as
  per upstream configure.ac.
* debian/control.in: Move valac-0.12 to valac to use 0.14.

[ Oliver Sauder ]
* Added peas-gtk vapi file libpeas-gtk-1.0.vapi (LP: #825834) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 *
17
17
 *  You should have received a copy of the GNU Library General Public License
18
18
 *  along with this program; if not, write to the Free Software
19
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
20
 */
21
21
 
22
22
#ifndef __PEAS_EXTENSION_SET_H__
53
53
  PeasExtensionSetPrivate *priv;
54
54
};
55
55
 
 
56
/**
 
57
 * PeasExtensionSetClass:
 
58
 * @parent_class: The parent class.
 
59
 * @call: The VFunc for peas_extension_set_call().
 
60
 * @extension_added: Signal class handler for the
 
61
 *                   #PeasExtensionSet::extension-added signal.
 
62
 * @extension_removed: Signal class handler for the
 
63
 *                   #PeasExtensionSet::extension-removed signal.
 
64
 *
 
65
 * The class structure for #PeasExtensionSet.
 
66
 */
56
67
struct _PeasExtensionSetClass {
57
68
  GObjectClass parent_class;
58
69
 
62
73
                                           const gchar      *method_name,
63
74
                                           GIArgument       *args);
64
75
#else
 
76
  /*< private >*/
65
77
  gpointer __DEPRECATED_call;
66
78
#endif
67
79
 
 
80
  /*< public >*/
68
81
  /* Signals */
69
82
  void       (*extension_added)           (PeasExtensionSet *set,
70
83
                                           PeasPluginInfo   *info,
73
86
                                           PeasPluginInfo   *info,
74
87
                                           PeasExtension    *exten);
75
88
 
 
89
  /*< private >*/
76
90
  gpointer padding[8];
77
91
};
78
92