Mon, 20 May 2019 21:50:28 -0500
remove a few more references to webview
| 3391 | 1 | /* GTK - The GIMP Toolkit |
| 2 | * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald | |
| 3 | * | |
| 4 | * This library is free software; you can redistribute it and/or | |
| 5 | * modify it under the terms of the GNU Library General Public | |
| 6 | * License as published by the Free Software Foundation; either | |
| 7 | * version 2 of the License, or (at your option) any later version. | |
| 8 | * | |
| 9 | * This library is distributed in the hope that it will be useful, | |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 12 | * Library General Public License for more details. | |
| 13 | * | |
| 14 | * You should have received a copy of the GNU Library General Public | |
| 15 | * License along with this library; if not, write to the | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
15435
diff
changeset
|
16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
|
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
15435
diff
changeset
|
17 | * Boston, MA 02111-1301, USA. |
| 3391 | 18 | */ |
| 19 | ||
| 20 | /* | |
|
31293
169eeb43b52c
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
26819
diff
changeset
|
21 | * Copyright 2000 Syd Logan |
| 3391 | 22 | */ |
| 23 | ||
| 24 | #ifndef __GTK_TICKER_H__ | |
| 25 | #define __GTK_TICKER_H__ | |
| 26 | ||
| 27 | ||
| 28 | #include <gdk/gdk.h> | |
|
26727
b8885bab55ab
More updates for GTK+ 3.0. This only fixes the single-includes. Fixing all
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
19859
diff
changeset
|
29 | #include <gtk/gtk.h> |
| 3391 | 30 | |
|
39403
43b93b059660
Fix gtkticker plugin lacking PURPLE_PLUGINS define if enabled
Mike Ruprecht <cmaiku@gmail.com>
parents:
36890
diff
changeset
|
31 | #include <purple.h> |
| 3391 | 32 | |
|
39383
0f9d49617abc
Use G_BEGIN_DECLS and G_END_DECLS instead of raw extern "C"
Mike Ruprecht <cmaiku@gmail.com>
parents:
36890
diff
changeset
|
33 | G_BEGIN_DECLS |
| 3391 | 34 | |
|
39554
5db4b5afd647
Use G_DECLARE_FINAL_TYPE for GtkTicker.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
39406
diff
changeset
|
35 | #define GTK_TYPE_TICKER gtk_ticker_get_type() |
| 3391 | 36 | |
| 37 | typedef struct _GtkTickerChild GtkTickerChild; | |
| 38 | ||
| 39 | /* XXX children move from right to left, should be able to go other way */ | |
| 40 | ||
| 41 | struct _GtkTickerChild | |
| 42 | { | |
| 43 | GtkWidget *widget; | |
| 44 | gint x; /* current position */ | |
| 5170 | 45 | gint offset; /* offset in list */ |
| 3391 | 46 | }; |
| 47 | ||
| 48 | ||
|
36890
fa13e99f8248
Register GtkTicker type dynamically
Ankit Vani <a@nevitus.org>
parents:
31293
diff
changeset
|
49 | G_MODULE_EXPORT |
|
39554
5db4b5afd647
Use G_DECLARE_FINAL_TYPE for GtkTicker.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
39406
diff
changeset
|
50 | G_DECLARE_FINAL_TYPE(GtkTicker, gtk_ticker, GTK, TICKER, GtkContainer) |
|
36890
fa13e99f8248
Register GtkTicker type dynamically
Ankit Vani <a@nevitus.org>
parents:
31293
diff
changeset
|
51 | void gtk_ticker_register_type (PurplePlugin *plugin); |
|
fa13e99f8248
Register GtkTicker type dynamically
Ankit Vani <a@nevitus.org>
parents:
31293
diff
changeset
|
52 | |
| 3391 | 53 | GtkWidget* gtk_ticker_new (void); |
| 54 | void gtk_ticker_add (GtkTicker *ticker, | |
| 55 | GtkWidget *widget); | |
| 56 | void gtk_ticker_remove (GtkTicker *ticker, | |
| 57 | GtkWidget *widget); | |
| 58 | void gtk_ticker_set_interval (GtkTicker *ticker, | |
| 59 | gint interval); | |
| 60 | guint gtk_ticker_get_interval (GtkTicker *ticker); | |
| 61 | void gtk_ticker_set_spacing (GtkTicker *ticker, | |
| 62 | gint spacing); | |
| 63 | guint gtk_ticker_get_spacing (GtkTicker *ticker); | |
| 64 | void gtk_ticker_set_scootch (GtkTicker *ticker, | |
| 65 | gint scootch); | |
| 66 | guint gtk_ticker_get_scootch (GtkTicker *ticker); | |
| 67 | void gtk_ticker_start_scroll (GtkTicker *ticker); | |
| 68 | void gtk_ticker_stop_scroll (GtkTicker *ticker); | |
| 69 | ||
|
39383
0f9d49617abc
Use G_BEGIN_DECLS and G_END_DECLS instead of raw extern "C"
Mike Ruprecht <cmaiku@gmail.com>
parents:
36890
diff
changeset
|
70 | G_END_DECLS |
| 3391 | 71 | |
| 72 | #endif /* __GTK_TICKER_H__ */ |