~ubuntu-branches/ubuntu/oneiric/indicator-session/oneiric-proposed

« back to all changes in this revision

Viewing changes to src/apt-watcher.h

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2011-07-22 13:41:08 UTC
  • mfrom: (1.1.31 upstream)
  • Revision ID: james.westby@ubuntu.com-20110722134108-8qgaow6jiocdlpga
Tags: 0.3.0-0ubuntu1
* New upstream release.
  - fixed bug where the user menu wouldn't open in unity (LP: #812728)
  - Include apt, settings and device menus
* debian/rules
  - Updated gtk configure args

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright 2011 Canonical Ltd.
 
3
 
 
4
Authors:
 
5
    Conor Curran <conor.curran@canonical.com>
 
6
 
 
7
This program is free software: you can redistribute it and/or modify it 
 
8
under the terms of the GNU General Public License version 3, as published 
 
9
by the Free Software Foundation.
 
10
 
 
11
This program is distributed in the hope that it will be useful, but 
 
12
WITHOUT ANY WARRANTY; without even the implied warranties of 
 
13
MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
 
14
PURPOSE.  See the GNU General Public License for more details.
 
15
 
 
16
You should have received a copy of the GNU General Public License along 
 
17
with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
*/
 
19
 
 
20
#ifndef _APT_WATCHER_H_
 
21
#define _APT_WATCHER_H_
 
22
 
 
23
#include <glib-object.h>
 
24
 
 
25
#include <libdbusmenu-glib/client.h>
 
26
 
 
27
#include <gtk/gtk.h>
 
28
#if GTK_CHECK_VERSION(3, 0, 0)
 
29
#include <libdbusmenu-gtk3/menuitem.h>
 
30
#else
 
31
#include <libdbusmenu-gtk/menuitem.h>
 
32
#endif
 
33
 
 
34
#include "session-dbus.h"
 
35
 
 
36
G_BEGIN_DECLS
 
37
 
 
38
#define APT_TYPE_WATCHER             (apt_watcher_get_type ())
 
39
#define APT_WATCHER(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), APT_TYPE_WATCHER, AptWatcher))
 
40
#define APT_WATCHER_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), APT_TYPE_WATCHER, AptWatcherClass))
 
41
#define APT_IS_WATCHER(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), APT_TYPE_WATCHER))
 
42
#define APT_IS_WATCHER_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), APT_TYPE_WATCHER))
 
43
#define APT_WATCHER_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), APT_TYPE_WATCHER, AptWatcherClass))
 
44
 
 
45
typedef struct _AptWatcherClass AptWatcherClass;
 
46
typedef struct _AptWatcher AptWatcher;
 
47
 
 
48
struct _AptWatcherClass
 
49
{
 
50
        GObjectClass parent_class;
 
51
};
 
52
 
 
53
GType apt_watcher_get_type (void) G_GNUC_CONST;
 
54
 
 
55
AptWatcher* apt_watcher_new (SessionDbus* session_dbus,
 
56
                             DbusmenuMenuitem* apt_item);
 
57
 
 
58
G_END_DECLS
 
59
 
 
60
#endif /* _APT_WATCHER_H_ */