Mercurial > pidgin
annotate plugins/gestures/gstroke.h @ 5129:c19cc54f4df6
[gaim-migrate @ 5492]
Stuff I did (in order from most important to least):
-Made set away message and set profile count the number of bytes
rather than the number of characters. This fixes the lack of a
warning dialog when setting info that needs an encoding other than
ascii or iso8859-1. (Because "hi" in UCS-2BE is 4 bytes but "hi"
in utf8 is only 2.)
-Created an oscar_encoding_to_utf8 function to convert from a given
encoding to utf8. This is AIM/ICQ specific.
-Added a "Profile:" and "Away Message:" line to the get info response
window. Is it better this way or without it? I thought it would be
good if there was a way for users to tell which text was the away
message and which was the info, but I also think this solution could
be nicer looking.
-Added a little check for some server icon stuff because someone
reported an obscure crash.
-Shuffled some stuff around in oscar.c
-Bouldered on the little wall outside of the gym today. It's much
more difficult than climbing inside. I think my forearms are just
a bit too weak. The holds are tiny, though.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 14 Apr 2003 04:52:42 +0000 |
| parents | 16540914c963 |
| children | ea2d07ad05a9 |
| rev | line source |
|---|---|
| 4390 | 1 /* |
| 2 libgstroke - a GNOME stroke interface library | |
| 3 Copyright (c) 1996,1997,1998,1999,2000,2001 Mark F. Willey, ETLA Technical | |
| 4 | |
| 5 See the file COPYING for distribution information. | |
| 6 */ | |
| 7 | |
| 8 /* largest number of points allowed to be sampled */ | |
| 9 #ifndef _GSTROKE_H_ | |
| 10 #define _GSTROKE_H_ | |
| 11 | |
| 12 #define GSTROKE_MAX_POINTS 10000 | |
| 13 | |
| 14 /* number of sample points required to have a valid stroke */ | |
| 15 #define GSTROKE_MIN_POINTS 50 | |
| 16 | |
| 17 /* maximum number of numbers in stroke */ | |
| 18 #define GSTROKE_MAX_SEQUENCE 32 | |
| 19 | |
| 20 /* threshold of size of smaller axis needed for it to define its own | |
| 21 bin size */ | |
| 22 #define GSTROKE_SCALE_RATIO 4 | |
| 23 | |
| 24 /* minimum percentage of points in bin needed to add to sequence */ | |
| 25 #define GSTROKE_BIN_COUNT_PERCENT 0.07 | |
| 26 | |
| 27 void gstroke_set_draw_strokes(gboolean draw); | |
| 28 gboolean gstroke_draw_strokes(void); | |
| 29 | |
| 30 void gstroke_set_mouse_button(gint button); | |
| 31 int gstroke_get_mouse_button(void); | |
| 32 | |
| 33 /* enable strokes for the widget */ | |
| 34 void gstroke_enable (GtkWidget *widget); | |
| 35 | |
| 36 guint gstroke_signal_connect (GtkWidget *widget, | |
| 37 const gchar *name, | |
| 38 void (*func)(GtkWidget *widget, void *data), | |
| 39 gpointer data); | |
| 40 | |
| 41 /* frees all the memory allocated for stroke, should be called when | |
| 42 the widget is destroyed*/ | |
| 43 void gstroke_cleanup (GtkWidget *widget); | |
| 44 | |
| 45 #endif |
