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

Re: gtk-app-devel-list Digest, Vol 14, Issue 55

2005-06-24 Thread Hubert Sokolowski
[EMAIL PROTECTED] wrote: Send gtk-app-devel-list mailing list submissions to gtk-app-devel-list@gnome.org To subscribe or unsubscribe via the World Wide Web, visit http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list or, via email, send a message with subject or body 'help' to

Re: Glade C code a bad thing? (was: root windows)

2005-05-31 Thread Hubert Sokolowski
Hi! Hello Everyone! G'day all. I would support the inclusion of Code generation in GLADE UI Editor. It is a welcome feature, for those who would like it. If its not to be in the main tree atleast put the code into a plugin thats enabled at default, and users can turn it off, if they

Re: HELP!!!!!!!!!!!!!!!!!!!(html in gtk)

2005-05-09 Thread Hubert Sokolowski
You have some options, two of which are: gtkmozembed (http://www.mozilla.org/unix/gtk-embedding.html) gtkhtml which gives you gtkhtml2 (does not support gnome printing) or gtkhtml3 (does not support CSS), your choice. hs ___ gtk-app-devel-list

Re: gtk and hicolor theme

2005-05-05 Thread Hubert Sokolowski
That said, there's one thing in recent gtk that I'm concerned about. It makes sense that gtk should take over some features previously supplied by gnome, but I don't like to see a covert gnome dependency in gtk. I'm therefore troubled by this sort of thing: when I open my app (gtk2 version,

Re: glib installation

2005-04-26 Thread Hubert Sokolowski
Hi! hi all, I had downloaded glib-2.6.4 and installed it just like the instructions said to. Still when i run the configure command for an application dependant on the latest glib-2.6.4, it gives an error saying glib-2.0 = glib-2.4 Could someone please help me. try to set PKG_CONFIG_PATH

GtkTreeViewColumn get column id

2005-04-22 Thread Hubert Sokolowski
Hi! I added a column to a treeview with renderer = gtk_cell_renderer_text_new (); column = gtk_tree_view_column_new_with_attributes (col_title, renderer, text,

gtkhtml3 and CSS

2005-04-21 Thread Hubert Sokolowski
Hi! sorry for posting to this list, but gtkhtml mailing list seems to be dead. My question is does gtkhtml3 support CSS? regards hs ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: A grid with gtk

2005-04-14 Thread Hubert Sokolowski
Hi. Hi, I'm using GtkSheet from GtkExtra because I need to use grids in my application. There is another widget like GtkSheet in gtk? you can always use plain GtkTreeView for grids. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: Report Generation

2005-04-12 Thread Hubert Sokolowski
Hi! hello I need to generate a report which will have images as well as some text related to each image in a particular format. I also need to print the report. Im not sure as to how to go about this problem. I was thinking of maybe using GnomeCanvas but im not quite sure. Could someone

Re: gtk_calendar_get_date once again

2005-03-29 Thread Hubert Sokolowski
0 is a G_DATE_BAD_MONTH, but gtk_calendar_get_date returns month from range 0-11. gtk_calendar_get_date stores the month in a user specified location. Maybe it uses GDateMonth for internal use and then returns the value (GDateMonth - 1) to the user. but why it returns (GDateMonth - 1) ? It

Re: gtk_calendar_get_date once again

2005-03-29 Thread Hubert Sokolowski
but why it returns (GDateMonth - 1) ? It is not compatible with GDate ! It does not return the date in GDate format anyway, so the issue of incompatibility does not arise. As the prototype says, void gtk_calendar_get_date(GtkCalendar*, guint*, guint*, guint*); I guess it is upto the user

how to align text to right in GtkCellRendererText

2005-03-13 Thread Hubert Sokolowski
Hi! I add a text column to GtkTreeView using code renderer = gtk_cell_renderer_text_new (); column = gtk_tree_view_column_new_with_attributes (col_titles[i], renderer, text,

Re: how to align text to right in GtkCellRendererText

2005-03-13 Thread Hubert Sokolowski
On Mon, Mar 14, 2005 at 08:16:36AM +0100, Hubert Sokolowski wrote: renderer = gtk_cell_renderer_text_new (); column = gtk_tree_view_column_new_with_attributes (col_titles[i], renderer

entering date

2005-02-25 Thread Hubert Sokolowski
Hi! I use GtkCalendar for choosing date. But I also want to let user enter date by hand using only the keyboard. Is there such a widget that parses and validates the date that was entered by user? regards hs ___ gtk-app-devel-list mailing list

keyboard shortcut on entry

2005-02-25 Thread Hubert Sokolowski
Hi! I need to execute my function when Left arrow key was pressed in GtkEntry. I can add accelerator for GtkEntry widget that can emit some signal. But I don't want to emit a signal, just run my function. how to do that? regards hs ___