~ubuntu-branches/ubuntu/maverick/indicator-applet/maverick

« back to all changes in this revision

Viewing changes to libindicate-gtk/indicator.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell, Ted Gould
  • Date: 2009-08-05 00:22:54 UTC
  • Revision ID: james.westby@ubuntu.com-20090805002254-fzamyyqlltcru23z
Tags: 0.2.0~bzr319-0ubuntu1
[ Ted Gould ]
* Merging in upstream code to split out libindicate-gtk
* debian/control:
  * Changing the version number of libindcate to 2 to match
    the .so numbering.
  * Creating packages for libindicate-gtk
* Added libindicate-gtk-dev.install and libindicate-gtk0.install
  for the new library.
* Renamed libindicate1.install to libindicate2.install to match
  the package name change.
* Modified libindicate-dev to be more specific about the header
  files that it grabs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
A library to allow applictions to provide simple indications of
 
3
information to be displayed to users of the application through the
 
4
interface shell.
 
5
 
 
6
Copyright 2009 Canonical Ltd.
 
7
 
 
8
Authors:
 
9
    Ted Gould <ted@canonical.com>
 
10
 
 
11
This program is free software: you can redistribute it and/or modify it 
 
12
under the terms of either or both of the following licenses:
 
13
 
 
14
1) the GNU Lesser General Public License version 3, as published by the 
 
15
Free Software Foundation; and/or
 
16
2) the GNU Lesser General Public License version 2.1, as published by 
 
17
the Free Software Foundation.
 
18
 
 
19
This program is distributed in the hope that it will be useful, but 
 
20
WITHOUT ANY WARRANTY; without even the implied warranties of 
 
21
MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR 
 
22
PURPOSE.  See the applicable version of the GNU Lesser General Public 
 
23
License for more details.
 
24
 
 
25
You should have received a copy of both the GNU Lesser General Public 
 
26
License version 3 and version 2.1 along with this program.  If not, see 
 
27
<http://www.gnu.org/licenses/>
 
28
*/
 
29
 
 
30
#ifndef INDICATE_GTK_INDICATOR_H_INCLUDED__
 
31
#define INDICATE_GTK_INDICATOR_H_INCLUDED__ 1
 
32
 
 
33
#include <glib.h>
 
34
#include <gdk-pixbuf/gdk-pixbuf.h>
 
35
#include "libindicate/indicator.h"
 
36
 
 
37
G_BEGIN_DECLS
 
38
 
 
39
/* Properties handling */
 
40
void indicate_indicator_set_property_icon (IndicateIndicator * indicator, const gchar * key, const GdkPixbuf * data);
 
41
 
 
42
G_END_DECLS
 
43
 
 
44
#endif /* INDICATE_GTK_INDICATOR_H_INCLUDED__ */