Fri, 28 Sep 2007 04:37:27 +0000
Fix yahoo doodling once again. This should hopefully be less prone to break as we now use the remote party's doodle IMV key.
| 15094 | 1 | /* |
| 2 | * @file gtkscrollbook GTK+ Scrolling notebook Widget | |
|
16254
eeb2bba4dc94
Rename the Doxygen group from gtkui to pidgin.
Richard Laager <rlaager@pidgin.im>
parents:
15931
diff
changeset
|
3 | * @ingroup pidgin |
|
20330
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
19859
diff
changeset
|
4 | */ |
|
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
19859
diff
changeset
|
5 | |
|
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
19859
diff
changeset
|
6 | /* pidgin |
| 15094 | 7 | * |
| 15572 | 8 | * Pidgin is the legal property of its developers, whose names are too numerous |
| 15094 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
| 11 | * | |
| 12 | * This program is free software; you can redistribute it and/or modify | |
| 13 | * it under the terms of the GNU General Public License as published by | |
| 14 | * the Free Software Foundation; either version 2 of the License, or | |
| 15 | * (at your option) any later version. | |
| 16 | * | |
| 17 | * This program is distributed in the hope that it will be useful, | |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 | * GNU General Public License for more details. | |
| 21 | * | |
| 22 | * You should have received a copy of the GNU General Public License | |
| 23 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16289
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 15094 | 25 | */ |
| 26 | ||
| 15577 | 27 | #ifndef __PIDGIN_SCROLL_BOOK_H__ |
| 28 | #define __PIDGIN_SCROLL_BOOK_H__ | |
| 15094 | 29 | |
| 30 | #include <gtk/gtk.h> | |
| 31 | ||
|
15320
c4eea0409712
[gaim-migrate @ 18048]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15094
diff
changeset
|
32 | #if !GTK_CHECK_VERSION(2,4,0) |
|
16289
d882d31ebe42
A couple of missed s/purple/pidgin/'s
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16254
diff
changeset
|
33 | #include "pidgincombobox.h" |
|
15320
c4eea0409712
[gaim-migrate @ 18048]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
15094
diff
changeset
|
34 | #endif |
| 15094 | 35 | |
| 36 | G_BEGIN_DECLS | |
| 37 | ||
| 15577 | 38 | #define PIDGIN_TYPE_SCROLL_BOOK (pidgin_scroll_book_get_type ()) |
| 39 | #define PIDGIN_SCROLL_BOOK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PIDGIN_TYPE_SCROLL_BOOK, PidginScrollBook)) | |
| 40 | #define PIDGIN_SCROLL_BOOK_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), PIDGIN_TYPE_SCROLL_BOOK, PidginScrollBookClass)) | |
| 41 | #define PIDGIN_IS_SCROLL_BOOK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PIDGIN_TYPE_SCROLL_BOOK)) | |
| 42 | #define PIDGIN_IS_SCROLL_BOOK_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), PIDGIN_TYPE_SCROLL_BOOK)) | |
| 43 | #define PIDGIN_SCROLL_BOOK_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), PIDGIN_TYPE_SCROLL_BOOK, PidginScrollBookClass)) | |
| 15094 | 44 | |
| 15577 | 45 | typedef struct _PidginScrollBook PidginScrollBook; |
| 46 | typedef struct _PidginScrollBookClass PidginScrollBookClass; | |
| 15094 | 47 | |
| 15577 | 48 | struct _PidginScrollBook |
| 15094 | 49 | { |
| 50 | GtkVBox parent_instance; | |
| 51 | ||
| 52 | GtkWidget *notebook; | |
| 53 | GtkWidget *hbox; | |
| 54 | GtkWidget *label; | |
| 55 | GtkWidget *left_arrow; | |
| 56 | GtkWidget *right_arrow; | |
| 57 | ||
| 58 | /* Padding for future expansion */ | |
| 59 | void (*_gtk_reserved0) (void); | |
| 60 | void (*_gtk_reserved1) (void); | |
| 61 | void (*_gtk_reserved2) (void); | |
| 62 | void (*_gtk_reserved3) (void); | |
| 63 | ||
| 64 | }; | |
| 65 | ||
| 66 | ||
| 15577 | 67 | struct _PidginScrollBookClass |
| 15094 | 68 | { |
| 69 | GtkComboBoxClass parent_class; | |
| 70 | ||
| 71 | /* Padding for future expansion */ | |
| 72 | void (*_gtk_reserved0) (void); | |
| 73 | void (*_gtk_reserved1) (void); | |
| 74 | void (*_gtk_reserved2) (void); | |
| 75 | void (*_gtk_reserved3) (void); | |
| 76 | }; | |
| 77 | ||
| 78 | ||
| 15577 | 79 | GType pidgin_scroll_book_get_type (void) G_GNUC_CONST; |
| 80 | GtkWidget *pidgin_scroll_book_new (void); | |
| 15094 | 81 | |
| 82 | G_END_DECLS | |
| 83 | ||
| 15577 | 84 | #endif /* __PIDGIN_SCROLL_BOOK_H__ */ |