annotate audacious/widgets/textbox.h @ 1603:0f2ca8c7cd98 trunk

[svn] - version update
author nenolod
date Sun, 27 Aug 2006 07:39:25 -0700
parents 7c7195221c0b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1541
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
1 /* BMP - Cross-platform multimedia player
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
2 * Copyright (C) 2003-2004 BMP development team.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
3 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
4 * Based on XMMS:
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
5 * Copyright (C) 1998-2003 XMMS development team.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
6 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
7 * This program is free software; you can redistribute it and/or modify
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
8 * it under the terms of the GNU General Public License as published by
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
9 * the Free Software Foundation; either version 2 of the License, or
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
10 * (at your option) any later version.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
11 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
15 * GNU General Public License for more details.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
16 *
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
17 * You should have received a copy of the GNU General Public License
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
18 * along with this program; if not, write to the Free Software
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
20 */
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
21
1544
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
22 #ifndef _WIDGETCORE_H_
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
23 #error Please do not include me directly! Use widgetcore.h instead!
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
24 #endif
7c7195221c0b [svn] Do not allow widgetcore private includes to be referenced directly.
nenolod
parents: 1541
diff changeset
25
1541
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
26 #ifndef TEXTBOX_H
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
27 #define TEXTBOX_H
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
28
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
29 #include <glib.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
30 #include <gdk/gdk.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
31 #include <pango/pango.h>
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
32
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
33 #include "skin.h"
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
34 #include "widget.h"
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
35
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
36 #define TEXTBOX_SCROLL_TIMEOUT 200
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
37 #define TEXTBOX_SCROLL_SMOOTH_TIMEOUT 30
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
38
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
39 #define TEXT_BOX(x) ((TextBox *)(x))
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
40 struct _TextBox {
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
41 Widget tb_widget;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
42 GdkPixmap *tb_pixmap;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
43 gchar *tb_text, *tb_pixmap_text;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
44 gint tb_pixmap_width;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
45 gint tb_offset;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
46 gboolean tb_scroll_allowed, tb_scroll_enabled;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
47 gboolean tb_is_scrollable, tb_is_dragging;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
48 gint tb_timeout_tag, tb_drag_x, tb_drag_off;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
49 gint tb_nominal_y, tb_nominal_height;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
50 gint tb_skin_id;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
51 SkinPixmapId tb_skin_index;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
52 PangoFontDescription *tb_font;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
53 gint tb_font_ascent, tb_font_descent;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
54 gchar *tb_fontname;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
55 };
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
56
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
57 typedef struct _TextBox TextBox;
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
58
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
59 void textbox_set_text(TextBox * tb, const gchar * text);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
60 void textbox_set_scroll(TextBox * tb, gboolean s);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
61 TextBox *create_textbox(GList ** wlist, GdkPixmap * parent, GdkGC * gc,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
62 gint x, gint y, gint w, gboolean allow_scroll,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
63 SkinPixmapId si);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
64 void textbox_set_xfont(TextBox * tb, gboolean use_xfont,
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
65 const gchar * fontname);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
66 void textbox_free(TextBox * tb);
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
67
06329cbf186a [svn] this massive commit does the following:
nenolod
parents:
diff changeset
68 #endif