~ubuntu-branches/ubuntu/natty/xfce4-weather-plugin/natty-proposed

« back to all changes in this revision

Viewing changes to panel-plugin/scrollbox.h

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez
  • Date: 2006-09-29 12:14:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060929121442-3ljmszbbmmv1x0f5
Tags: 0.5.99.1-2
debian/control: bumped xfce4-panel build-dep to 4.4rc1 to fix FTBFS. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* vim: set expandtab ts=8 sw=4: */
 
2
 
 
3
/*  This program is free software; you can redistribute it and/or modify
 
4
 *  it under the terms of the GNU General Public License as published by
 
5
 *  the Free Software Foundation; either version 2 of the License, or
 
6
 *  (at your option) any later version.
 
7
 *
 
8
 *  This program is distributed in the hope that it will be useful,
 
9
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 *  GNU Library General Public License for more details.
 
12
 *
 
13
 *  You should have received a copy of the GNU General Public License
 
14
 *  along with this program; if not, write to the Free Software
 
15
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
16
 */
 
17
 
1
18
#ifndef SCROLLBOX_H
2
19
#define SCROLLBOX_H
3
20
 
4
 
#include <gdk/gdk.h>
5
 
#include <gtk/gtk.h>
 
21
G_BEGIN_DECLS
6
22
 
7
23
GType gtk_scrollbox_get_type (void);
8
24
 
28
44
        gint draw_timeout;
29
45
 
30
46
        GdkPixmap *pixmap;
 
47
};
31
48
 
32
 
        
33
 
};
34
49
struct _GtkScrollboxClass {
35
50
        GtkDrawingAreaClass parent;
36
51
};
37
 
void gtk_scrollbox_set_label(GtkScrollbox *self, gint n, gchar *value);
38
 
GtkWidget* gtk_scrollbox_new (void);
39
 
void gtk_scrollbox_enablecb (GtkScrollbox *self, gboolean enable);
40
 
void gtk_scrollbox_clear (GtkScrollbox *self);
 
52
 
 
53
void
 
54
gtk_scrollbox_set_label (GtkScrollbox *self, gint n, gchar *value);
 
55
 
 
56
GtkWidget *
 
57
gtk_scrollbox_new       (void);
 
58
 
 
59
void
 
60
gtk_scrollbox_enablecb  (GtkScrollbox *self, gboolean enable);
 
61
 
 
62
void
 
63
gtk_scrollbox_clear     (GtkScrollbox *self);
 
64
 
 
65
G_END_DECLS
 
66
 
41
67
#endif