GnuCash  2.6.99
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
gnucash-scrolled-window.h
1 /********************************************************************\
2  * gnucash-scrolled-window.h -- gnucash specific scrolled window *
3  * Copyright (C) 2001 Gnumatic, Inc. *
4  * Author: Dave Peticolas <[email protected]> *
5  * *
6  * This program is free software; you can redistribute it and/or *
7  * modify it under the terms of the GNU General Public License as *
8  * published by the Free Software Foundation; either version 2 of *
9  * the License, or (at your option) any later version. *
10  * *
11  * This program is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14  * GNU General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU General Public License*
17  * along with this program; if not, contact: *
18  * *
19  * Free Software Foundation Voice: +1-617-542-5942 *
20  * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
21  * Boston, MA 02110-1301, USA [email protected] *
22 \********************************************************************/
23 
24 #ifndef GNC_SCROLLED_WINDOW_H
25 #define GNC_SCROLLED_WINDOW_H
26 
27 #include <gtk/gtk.h>
28 
29 G_BEGIN_DECLS
30 
31 #define GNC_TYPE_SCROLLED_WINDOW (gnc_scrolled_window_get_type ())
32 #define GNC_SCROLLED_WINDOW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GNC_TYPE_SCROLLED_WINDOW, GNCScrolledWindow))
33 #define GNC_SCROLLED_WINDOW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GNC_TYPE_SCROLLED_WINDOW, GNCScrolledWindowClass))
34 #define GNC_IS_SCROLLED_WINDOW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNC_TYPE_SCROLLED_WINDOW))
35 #define GNC_IS_SCROLLED_WINDOW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GNC_TYPE_SCROLLED_WINDOW))
36 
37 
38 typedef struct
39 {
40  GtkScrolledWindow scrollwin;
42 
43 typedef struct
44 {
45  GtkScrolledWindowClass parent_class;
47 
48 
49 GType gnc_scrolled_window_get_type (void);
50 GtkWidget *gnc_scrolled_window_new (void);
51 
52 G_END_DECLS
53 
54 #endif /* GNC_SCROLLED_WINDOW_H */