Re: Displaying iso 6937-2 character set letters in GtkWidget

2007-05-12 Thread venkatesh chilapur
i david, i had also the same problem, with gtk... i am getting the fonts on the window's bar, but not on the buttons, i am using inside.. i have used the follwoing command for the same... first i set all the paths to the libs and bins... then i activate the X server by using the following command

Windows like GtkTreeView key bindings question.

2007-05-12 Thread Alex Nekorkin
Hello All, I'm trying to make my application tree view to be more intuitive for Windows users. This includes key bindings for KP_RIGHT and KP_LEFT to expand and collapse current accordingly. I have implemented it by registering the callback (see the code below). The only problem is: this

How to create a simple multilingual GUI

2007-05-12 Thread John Zoidberg
I would like to create a GUI with GTK where the language can be chosen interactively in a settings menu. I would like this to be independant of the machines local language settings. How can I do that? ___ gtk-app-devel-list mailing list

Alternative GTK widgets

2007-05-12 Thread Shoq
Pardon my noobness, but I am new to GTK. I had assumed there would be a wealth of open source widgets that descend from the toolkit. I am starting to think this was a very poor assumption on my part. I've not be able to find anything but a few aborted attempts at variations by other parties. Am

Re: How to create a simple multilingual GUI

2007-05-12 Thread rush ta
if that is at all possible... I would be looking forward to it too !! On 5/11/07, John Zoidberg [EMAIL PROTECTED] wrote: I would like to create a GUI with GTK where the language can be chosen interactively in a settings menu. I would like this to be independant of the machines local language

Re: How to create a simple multilingual GUI

2007-05-12 Thread Yeti
On Fri, May 11, 2007 at 02:52:06PM +0200, John Zoidberg wrote: I would like to create a GUI with GTK where the language can be chosen interactively in a settings menu. I would like this to be independant of the machines local language settings. Each user (not machine) has separate language

Re: Newbie needs help: gtk_entry's stopped accepting key stroke entires

2007-05-12 Thread Gabriel Schulhof
Hi! On Wed, 2007-05-09 at 12:41 +0200, Sven Neumann wrote: Your code returns TRUE from the event handler. This stops signal emission and keeps other handlers from being invoked. Check the documentation of GtkWidget::key-press-event (or any other event signal handler). ... but could it be

GtkCanvas use cases

2007-05-12 Thread carlosg
Hi!, I've been collecting and summarizing the use cases that popped out in the canvas requirements thread, hopefully it's a good base to get other use cases, but I think it already gives an idea of the heterogeneous expectations for the canvas, here's the summary: * Interactive diagrams *

GObject Interface vs Pure Virtual Class

2007-05-12 Thread Kuang-Chun Cheng
Hi, I'm studying GObject system and found that I can implement both Pure Virtual Class (by setting all member functions NULL to make the class pure virtual) and an Interface in GObject. I'm a C programmer without much C++ experiences, but according to my understanding ... pure virtual class in

Re: glib memory allocation problems

2007-05-12 Thread Dimitrios Apostolou
On Fri, 11 May 2007 13:55:25 +0200 (CEST) Tim Janik [EMAIL PROTECTED] wrote: it's likely that some code portions erroneously use GSlice and thus screw up the memory handling at some point. G_SLICE=debug-blocks is really the recommended way to find those errors and much faster than trying

Re: glib memory allocation problems

2007-05-12 Thread Dimitrios Apostolou
sorry, I forgot to attach the backtrace... Dimitris Program received signal SIGSEGV, Segmentation fault. [Switching to Thread -1389433968 (LWP 8511)] 0xb7d1f6ad in memmove () from /lib/libc.so.6 (gdb) (gdb) bt #0 0xb7d1f6ad in memmove () from /lib/libc.so.6 #1 0xb7e49ac2 in

Re: GtkCanvas use cases

2007-05-12 Thread Petr Tomasek
On related news, I've created in l.g.o a page to keep track of use cases, as well as a feature matrix for available canvases plus other reference ones, the page is at: http://live.gnome.org/ProjectRidley/CanvasOverview The matrix seems nice, but maybe some performance comparission

Parenting another application's window

2007-05-12 Thread Shoq
I am new to GTK, and trying to understand some basics. I am specifically wondering if gtk permits one application to parent the top window of another application. When i use to work in VB and Delphi, i could parent another application's window and move them as a group. I would like to combine

Re: GObject Interface vs Pure Virtual Class

2007-05-12 Thread Sven Herzberg
Kuang-Chun Cheng wrote: Hi, I'm studying GObject system and found that I can implement both Pure Virtual Class (by setting all member functions NULL to make the class pure virtual) and an Interface in GObject. I'm a C programmer without much C++ experiences, but according to my