what's diff -u GString GByteArray for gtk2?

2003-02-28 Thread Kang Jeong-Hee
Hi. inspecting cvs/gnome-vfs/http-method.c, I did face two diff types of storage; GString and GByteArray. http-method.c seems to use each for different purpose. but I cannot understand what they're different to each other. binary data of like \0 couldn't be that diff; GString now supports

new mailing list for GLib requested

2002-09-05 Thread Kang Jeong-Hee
Hi. Differently from older version of GTK+, GTK+ 2 has powerful fundamentality of library: GLib, GObject. They are standalone library as well as a basement of GDK and GTK. and this gtk-(*-)list flood with GDK, GTK-level issues. it's hard job to find resources for GLib, GObject only. so I ask

find a thread about: multiple cell renderer for a column

2002-09-05 Thread Kang Jeong-Hee
Hi. I think there was a thread about multiple cell renderer for a column. the conclusion of thread was it's possible, as I recall. but I could not find the thread anywhere I know. Possibly I'm wrong, it was not here. but I really miss the thread. pliz someone help me to get the thread. it was

GtkText in GTK+-2.0 is matter of GTK+-1.2?

2002-08-25 Thread Kang Jeong-Hee
Hi. I'm doing provement for gaim with gtk2. and face an i18n problem. first of all, take a look at here: http://gnome.or.kr/gallery/view_photo.php?full=1set_albumName=gnome-appsid=acr this is screenshot of gaim for gtk2 with my little patch. it does well getting contact list etc. but cannot

no more GTK_CHECK_CAST in newly written code?

2002-04-29 Thread Kang Jeong-Hee
I've found gtktypeutils.h define GTK_CHECK_CAST with comment of /* glib macro wrappers (compatibility) */. is that meaning I'd better not to use SOME_CHECK_CAST, but to use directly G_TYPE_CHECK_INSTANCE_CAST? for example, GStreamer do not use GST_CHECK_CAST, refer directly to

to extend GObject for browser engine, like gtkhtml2?

2002-04-25 Thread Kang Jeong-Hee
Hi! I have a plan to make gnome2-based browser engine, which invoke components of libxml2, gnome basic, bonobo, etc. but sadly I'm novice to heavy project than honourable hackers of gnome world. I have to learn more inside of GNOME and GTK+. as beginning, I think I have to implement the

null returned for g_locale_to_utf8() for g_file_get_contents()

2002-04-09 Thread Kang Jeong-Hee
all that I have written is as below: #include glib.h gint main( gint argc, gchar **argv ) { gchar *full_text; g_file_get_contents( ko.po, full_text, NULL, NULL ); printf( here: %s\n, full_text ); full_text = g_locale_to_utf8( full_text, -1, NULL, NULL, NULL );

why declare non-ptr and pass with ?

2002-03-05 Thread Kang Jeong-Hee
in gtk-demo's tree_store.c source, each GtkTreeIter declared without * and passed with . IMHO this is out of order comparing other objects and widgets. Is there specific reason why declare non-* and pass ? ___ gtk-list mailing list [EMAIL PROTECTED]