~ubuntu-branches/ubuntu/maverick/indicator-application/maverick-proposed

« back to all changes in this revision

Viewing changes to src/application-service-appstore.h

  • Committer: Bazaar Package Importer
  • Author(s): Ted Gould
  • Date: 2010-07-15 10:22:33 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20100715102233-46lx58bmq6lrju98
Tags: 0.2.3-0ubuntu1
* New upstream release.
  * Fixing test for slower machines
  * Adding an Approver API to remove things from the AppIndicators.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
typedef struct _ApplicationServiceAppstore      ApplicationServiceAppstore;
40
40
typedef struct _ApplicationServiceAppstoreClass ApplicationServiceAppstoreClass;
 
41
typedef struct _ApplicationServiceAppstorePrivate ApplicationServiceAppstorePrivate;
41
42
 
42
43
struct _ApplicationServiceAppstoreClass {
43
44
        GObjectClass parent_class;
49
50
 
50
51
struct _ApplicationServiceAppstore {
51
52
        GObject parent;
 
53
        
 
54
        ApplicationServiceAppstorePrivate * priv;
52
55
};
53
56
 
54
57
ApplicationServiceAppstore * application_service_appstore_new (AppLruFile * lrufile);
55
58
GType application_service_appstore_get_type               (void);
56
59
void  application_service_appstore_application_add        (ApplicationServiceAppstore *   appstore,
57
 
                                                      const gchar *             dbus_name,
58
 
                                                      const gchar *             dbus_object);
 
60
                                                           const gchar *             dbus_name,
 
61
                                                           const gchar *             dbus_object);
59
62
void  application_service_appstore_application_remove     (ApplicationServiceAppstore *   appstore,
60
 
                                                      const gchar *             dbus_name,
61
 
                                                      const gchar *             dbus_object);
 
63
                                                           const gchar *             dbus_name,
 
64
                                                           const gchar *             dbus_object);
 
65
void  application_service_appstore_approver_add           (ApplicationServiceAppstore *   appstore,
 
66
                                                           const gchar *             dbus_name,
 
67
                                                           const gchar *             dbus_object);
62
68
 
63
69
G_END_DECLS
64
70