Re: systray icon

2005-12-17 Thread HuamiSoft Hubert Sokolowski
Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: systray icon

2005-12-16 Thread HuamiSoft Hubert Sokolowski
-- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Looking for example to draw a simple red text on my GtkDrawable

2005-12-13 Thread HuamiSoft Hubert Sokolowski
Hi! You can use context = gdk_pango_context_get (); layout = pango_layout_new (context); pango_layout_set_alignment (layout, PANGO_ALIGN_LEFT); pango_layout_set_markup (layout, str, -1); gdk_draw_layout (drawable, gc, x, y, layout); where str is pango markup text for example span

Re: get current time / win32: got UTC instead of local time

2005-12-07 Thread HuamiSoft Hubert Sokolowski
); it works on windows and linux. -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Is it possible to put all necessary GTK runtime files in a single directory

2005-10-25 Thread HuamiSoft Hubert Sokolowski
On Tue, 25 Oct 2005 11:56:15 -0500 Douglas Vechinski [EMAIL PROTECTED] wrote: I'm sure that would work if I'm allowed to add bin\bin to the PATH environment variable. At present that priviledge is not being allowed. I will probably be able to if there is no other option, but I'm first

GtkTreeModelFilter problems

2005-10-15 Thread HuamiSoft Hubert Sokolowski
in advance -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GtkTreeModelFilter problems

2005-10-15 Thread HuamiSoft Hubert Sokolowski
the answer is gtk_tree_model_filter_convert_path_to_child_path On Sat, 15 Oct 2005 09:39:00 +0200 HuamiSoft Hubert Sokolowski [EMAIL PROTECTED] wrote: Hi! I am trying to use GtkTreeModelFilter to filter out some rows. it works great, but I have a problem with a cell which is a toggle

gtktreeview - hide some rows

2005-10-14 Thread HuamiSoft Hubert Sokolowski
Hi! I have a treeview which is a list. is it possible to hide some particular rows? I want to implement some filter on my treeview, so the user could find quicker some rows. regards -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743

Re: z-order of gtk windows on win32

2005-10-02 Thread HuamiSoft Hubert Sokolowski
to this problem. -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Gtk+, UTF-8 and translations

2005-09-15 Thread HuamiSoft Hubert Sokolowski
version. thanks for you reply, but I have found a problem, I didn't add Content-type header to .po file. regards -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Gtk+, UTF-8 and translations

2005-09-13 Thread HuamiSoft Hubert Sokolowski
original .po file. Regards, -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: UI manager problem, more concise

2005-09-07 Thread HuamiSoft Hubert Sokolowski
program? did you set 'error' pointer to NULL before calling gtk_ui_manager_add_ui_from_string ? -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org

Re: gtk_list_store_new(1, G_TYPE_STRING) and retrieving data

2005-09-07 Thread HuamiSoft Hubert Sokolowski
(model, iter, COLUMN, value, -1); return FALSE; } -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: rendering text to drawable

2005-08-31 Thread HuamiSoft Hubert Sokolowski
, gint x, gint y) { pango_layout_set_markup (layout, str, -1); gdk_draw_layout (pixmap, gc, x, y, layout); } -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel

Re: Gdk Pixbuf file saving

2005-08-30 Thread HuamiSoft Hubert Sokolowski
/mailman/listinfo/gtk-app-devel-list -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. 501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Gdk Pixbuf file saving

2005-08-30 Thread HuamiSoft Hubert Sokolowski
On Tue, 30 Aug 2005 18:35:37 +1000 Nick Watts [EMAIL PROTECTED] wrote: Thanks a whole heap man, solved my problem completely. no problem :) On 8/30/05, HuamiSoft Hubert Sokolowski [EMAIL PROTECTED] wrote: Hi! On Tue, 30 Aug 2005 17:45:53 +1000 Nick Watts [EMAIL PROTECTED

Re: GtkTreeView : Drag and drop

2005-08-22 Thread HuamiSoft Hubert Sokolowski
(widget); drag_mrl.path = gtk_tree_model_get_path (drag_mrl.model, iter); drag_mrl.index = gtk_tree_path_get_indices (drag_mrl.path)[0]; } } -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. (085) 7465779 kom. +48501456743 ___ gtk

Re: GList

2005-08-18 Thread HuamiSoft Hubert Sokolowski
it, but next and prev still point where they were pointed. I hope that it is clear :). regards -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. (085) 7465779 kom. +48501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: GList

2005-08-18 Thread HuamiSoft Hubert Sokolowski
() is there is no such function g_list_delete(). -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. (085) 7465779 kom. +48501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk

Re: GList

2005-08-18 Thread HuamiSoft Hubert Sokolowski
On Thu, 18 Aug 2005 20:17:34 +0100 Chris Vine [EMAIL PROTECTED] wrote: On Thursday 18 August 2005 08:51, HuamiSoft Hubert Sokolowski wrote: always when you allocate a memory, you need to free it by your self. to free a list completely you need to free /data/ by your self if it points

Re: drawing area and events win32

2005-08-16 Thread HuamiSoft Hubert Sokolowski
is 2.6.9. regards. -- HuamiSoft Hubert Sokolowski http://www.huamisoft.com/ tel. (085) 7465779 kom. +48501456743 ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list