~ubuntu-core-dev/update-notifier/ubuntu

208 by Michael Vogt
* -Wall clean now
1
#include <gtk/gtk.h>
2
#include <libnotify/notify.h>
3
46 by mvo
* added missing files
4
750.1.1 by Colin Watson
Only create a single GSettings instance for com.ubuntu.update-notifier,
5
gboolean update_check(TrayApplet *ta);
6
void update_tray_icon_init(TrayApplet *ta);
208 by Michael Vogt
* -Wall clean now
7
340 by Michael Vogt
* code cleanups
8
void update_apt_is_running(TrayApplet *ta, gboolean is_running);
9
208 by Michael Vogt
* -Wall clean now
10
typedef struct _UpdateTrayAppletPrivate UpdateTrayAppletPrivate;
11
struct _UpdateTrayAppletPrivate 
12
{
749 by Colin Watson
Fix many typos for "running".
13
   // this is a permanent marker if apt is running currently
236 by Michael Vogt
* src/update-notifier.h:
14
   // (the difference to the one in update-notifier.h is that
15
   //  the one in here is "global" and not "per-timeslice" information
208 by Michael Vogt
* -Wall clean now
16
   gboolean apt_is_running;
17
   NotifyNotification *active_notification;
423 by Michael Vogt
* src/update.{cc,h}:
18
   
19
   int num_upgrades;
20
   int num_security;
839 by Marc Deslauriers
If there are no updates available, still nag the user if a reboot is
21
   gboolean reboot_pending;
208 by Michael Vogt
* -Wall clean now
22
};