problem with Mac OS X

2018-08-31 Thread Wojciech Puchar
i made my mac os program using GTK2 everything works fine except loading extra theme engines like crux-engine i'm getting "unable to locate theme engine in module_path "crux-engine" what should i fix  so it will be able to find it i've tried adding to ~/.gtkrc-2.0 module_path="/here/full/

gtk windows question

2018-08-06 Thread Wojciech Puchar
How to (if it is possible) actually FORCE some font size when windows user sets "change the size of text, apps and other items". Windows simply scale up every font i choose in GTK. Program is made for constant size window. is it possible? ___ gtk-

gtk2 - how to make sorted list

2018-08-02 Thread Wojciech Puchar
i would like to make something like in attached image with gtk2. and be able to change easily sorting order. should i use some ready widget type or just make vbox and add/delete/rearrange items by my own code? help really needed. thank you ___ gt

Re: gdk_screen_get_width/height

2018-08-02 Thread Wojciech Puchar
On 2018.08.02 15:55, Wojciech Puchar wrote: how to get width/height of smallest available display - in case of multiple monitors are attached? or to be more exact - how to enumerate screens. all i need is to get resolution of smallest attached monitor

gdk_screen_get_width/height

2018-08-02 Thread Wojciech Puchar
how to get width/height of smallest available display - in case of multiple monitors are attached? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

gtk2: gtk_file_chooser how to change date format

2018-07-05 Thread Wojciech Puchar
how to change date format displayed from like "yesterday" or "friday" to -mm-dd yy:mm or similar? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: question about gtk_dialog (gtk2)

2018-06-20 Thread Wojciech Puchar
nobody have idea? On 2018.06.15 13:43, Wojciech Puchar wrote: how to make dialogs appear on center of screen not on left corner. tried multiple things no results. For normal windows gtk_window_set_position works for dialog it doesn't below is example routine to ask a yes/no question

question about gtk_dialog (gtk2)

2018-06-15 Thread Wojciech Puchar
how to make dialogs appear on center of screen not on left corner. tried multiple things no results. For normal windows gtk_window_set_position works for dialog it doesn't below is example routine to ask a yes/no question from my program. i've tried gtk_window_set_position(GTK_WINDOW(dialog)

Fwd: gtk_file_chooser_dialog in windows - hot to enable network places

2018-05-11 Thread Wojciech Puchar
nobody program for windows? Forwarded Message Subject:gtk_file_chooser_dialog in windows - hot to enable network places Date: Wed, 9 May 2018 09:39:34 +0200 From: Wojciech Puchar To: gtk-app-devel-list list tried gtk_file_chooser_set_local_only to false

gtk_file_chooser_dialog in windows - hot to enable network places

2018-05-09 Thread Wojciech Puchar
tried gtk_file_chooser_set_local_only to false and it doesn't change anything. Is it possible for gtk_file_chooser under windows to be able to browse network locations? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.g

GTK on Mac OS X

2018-03-26 Thread Wojciech Puchar
how to link (or otherwise do other things) to disable opening terminal when starting my gtk program under mac os x. on windows it's a link time option -mwindows (no console) or -mconsole (with console). thanks ___ gtk-app-devel-list mailing list g

centered and right justified label in the same line.

2018-02-25 Thread Wojciech Puchar
How to do this in GTK 2. whatever i try i'm getting first label centered relative to space remaining after second label not to whole hbox. how to do this properly? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org

Re: hints when keeping mouse cursor over widget

2018-02-25 Thread Wojciech Puchar
works fine. thanks On 2018.02.23 14:17, Wojciech Puchar wrote: Gimp can do this so GTK can do this but i cannot find how. How to turn off text hints (help) when mouse pointer hovers over the widget? Like this: http://www.puchar.net/NOBACKUP/1.jpg

hints when keeping mouse cursor over widget

2018-02-23 Thread Wojciech Puchar
Gimp can do this so GTK can do this but i cannot find how. How to turn off text hints (help) when mouse pointer hovers over the widget? Like this: http://www.puchar.net/NOBACKUP/1.jpg ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.o

Combo_box_text and scrolling to empty space

2018-02-18 Thread Wojciech Puchar
how to fix this - large combobox text (with lots of entries) behave like this http://www.puchar.net/NOBACKUP/gtk1.png ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

simple question

2018-02-17 Thread Wojciech Puchar
i want in my program to change background color of the gtk_button to red sometimes as a signal to the user. it works fine with default theme but not with some other themes like E17gtk. how to fix this and ENFORCE color of button? Same with text_entry - only border is changed not the whole bac

gtk_combo_box_text how to disable scrolling into empty space

2018-02-17 Thread Wojciech Puchar
How to disable (if it's possible) scrolling into empty space like on attached screenshot? the popup list is created by gtk_combo_box_text_new and gtk_combo_box_text_append_text. No extra options. Wojtek