~ubuntu-branches/ubuntu/raring/virt-manager/raring-proposed

« back to all changes in this revision

Viewing changes to src/graphWidgets/sparkline.h

  • Committer: Bazaar Package Importer
  • Author(s): Guido Günther, Laurent Léonard, Guido Günther
  • Date: 2009-10-07 14:04:03 UTC
  • mfrom: (2.3.1 experimental)
  • mto: (2.3.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20091007140403-kl9yum4ocrar1acq
Tags: 0.8.0-2
[ Laurent Léonard ]
* [61651ae] Drop ${shlibs:Depends} from dependencies since there is no more
  C code.
* [3319434] Drop redo-patches target from debian/rules. Since gbp-pq
  is used now.
* [b04541e] Clean debian/rules. Drop commented post-patches target
  since there is no more autogen.sh.
* [145ba60] Update french translation.
* [799f18e] Update 0001-use-usr-share-gconf-for-schema-data.patch.
* [052f7bb] Remove XS-Python-Version field from debian/control. Since
  it is deprecated with pysupport.
* [bfb1611][1a66b27][a8ce142][4116d07][31ff60a] Fix some misspellings in
  french translation.
* [6e23aff] Clean build dependencies.
* [b71c8c9] Bump Debhelper version to 7.
* [c614f09] Bump Standards-Version to 3.8.3.
* [99a52c2] Clean debian/rules.
* [52f3b63] Add clean target in debian/rules. To clean automatically
  generated files: - debian/pycompat (see #424898)
* [d5e2ef7] Remove tests/Makefile in the debian/rules clean target. To get a
  clean Debian diff at rebuild time, the file is automatically generated.
* [7da6d9b] Don't close connection on all libvirt errors. Pulled from
  upstream 1c886d1863f7.

[ Guido Günther ]
* upload to unstable
* [464fb65] make package arch all since there is no more C code.
* [25f7663] switch to python-support and use python-distutils
* [c4da06a] bump python-libvirt dependency so we get all of VMs new
  features.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* sparkline.h
2
 
 * Copyright (C) 2005  Red Hat, Inc.,  David Malcolm <dmalcolm@redhat.com>
3
 
 * Copyright (C) 2006  Red Hat, Inc.,  Daniel Berrange <berrange@redhat.com>
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Library General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * Library General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Library General Public
16
 
 * License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18
 
 * Boston, MA 02111-1307, USA.
19
 
 */
20
 
 
21
 
#ifndef __GTK_SPARKLINE_H__
22
 
#define __GTK_SPARKLINE_H__
23
 
 
24
 
#include <pango/pango.h>
25
 
#include <gtk/gtkdrawingarea.h>
26
 
 
27
 
 
28
 
G_BEGIN_DECLS
29
 
 
30
 
 
31
 
#define GTK_TYPE_SPARKLINE              (gtk_sparkline_get_type ())
32
 
#define GTK_SPARKLINE(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SPARKLINE, GtkSparkline))
33
 
#define GTK_SPARKLINE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_SPARKLINE, GtkSparklineClass))
34
 
#define GTK_IS_SPARKLINE(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SPARKLINE))
35
 
#define GTK_IS_SPARKLINE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SPARKLINE))
36
 
#define GTK_SPARKLINE_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SPARKLINE, GtkSparklineClass))
37
 
 
38
 
typedef struct _GtkSparkline      GtkSparkline;
39
 
typedef struct _GtkSparklineClass GtkSparklineClass;
40
 
 
41
 
struct _GtkSparkline
42
 
{
43
 
  GtkDrawingArea parent;
44
 
 
45
 
  /*< private >*/
46
 
};
47
 
 
48
 
struct _GtkSparklineClass
49
 
{
50
 
  GtkDrawingAreaClass parent_class;
51
 
 
52
 
  /* Padding for future expansion */
53
 
  void (*_gtk_reserved1) (void);
54
 
  void (*_gtk_reserved2) (void);
55
 
  void (*_gtk_reserved3) (void);
56
 
  void (*_gtk_reserved4) (void);
57
 
};
58
 
 
59
 
GType            gtk_sparkline_get_type (void) G_GNUC_CONST;
60
 
GtkWidget        *gtk_sparkline_new      (void);
61
 
 
62
 
G_END_DECLS
63
 
 
64
 
 
65
 
#endif /* __GTK_SPARKLINE_H__ */