~ubuntu-branches/ubuntu/wily/gpaste/wily

« back to all changes in this revision

Viewing changes to src/libgpaste/applet/gpaste-applet-app-indicator.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2015-06-19 11:05:16 UTC
  • mfrom: (6.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20150619110516-h53wz9xi9i4k3smb
Tags: 3.16.2.1-1
* Imported Upstream version 3.16.2.1 (Closes: #789255)
* gpaste-applet does not need a manpage - upstream dropped it
* Build-Depends gtk >= 3.16
* Depends gnome-shell >= 3.16
* Major API changes, bump soname to 3 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *      This file is part of GPaste.
3
3
 *
4
 
 *      Copyright 2014 Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
 
4
 *      Copyright 2014-2015 Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
5
5
 *
6
6
 *      GPaste is free software: you can redistribute it and/or modify
7
7
 *      it under the terms of the GNU General Public License as published by
25
25
 
26
26
G_BEGIN_DECLS
27
27
 
28
 
#define G_PASTE_TYPE_APPLET_APP_INDICATOR                (g_paste_applet_app_indicator_get_type ())
29
 
#define G_PASTE_APPLET_APP_INDICATOR(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_PASTE_TYPE_APPLET_APP_INDICATOR, GPasteAppletAppIndicator))
30
 
#define G_PASTE_IS_APPLET_APP_INDICATOR(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_PASTE_TYPE_APPLET_APP_INDICATOR))
31
 
#define G_PASTE_APPLET_APP_INDICATOR_CLASS(klass)        (G_TYPE_CHECK_CLASS_CAST ((klass), G_PASTE_TYPE_APPLET_APP_INDICATOR, GPasteAppletAppIndicatorClass))
32
 
#define G_PASTE_IS_APPLET_APP_INDICATOR_CLASS(klass)     (G_TYPE_CHECK_CLASS_TYPE ((klass), G_PASTE_TYPE_APPLET_APP_INDICATOR))
33
 
#define G_PASTE_APPLET_APP_INDICATOR_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), G_PASTE_TYPE_APPLET_APP_INDICATOR, GPasteAppletAppIndicatorClass))
34
 
 
35
 
typedef struct _GPasteAppletAppIndicator GPasteAppletAppIndicator;
36
 
typedef struct _GPasteAppletAppIndicatorClass GPasteAppletAppIndicatorClass;
37
 
 
38
 
G_PASTE_VISIBLE
39
 
GType g_paste_applet_app_indicator_get_type (void);
 
28
#define G_PASTE_TYPE_APPLET_APP_INDICATOR (g_paste_applet_app_indicator_get_type ())
 
29
 
 
30
G_PASTE_FINAL_TYPE (AppletAppIndicator, applet_app_indicator, APPLET_APP_INDICATOR, GPasteAppletIcon)
40
31
 
41
32
GPasteAppletIcon *g_paste_applet_app_indicator_new (GPasteClient *client,
42
 
                                                    GtkMenu      *menu);
 
33
                                                    GApplication *app);
43
34
 
44
35
G_END_DECLS
45
36