Re: gtk embedded

2005-07-14 Thread Olexiy Avramchenko
Jirka Pirko wrote: hi i want to use gtk on intel xscale - is it better to use gtk on tinyx or a framebuffer (directfb) ? single graphical application is enought for me, so i can use framebuffer - but it's badly supported :/ Hello Try gtk+-2.2.4 with linux-fb gdk backend, if your video

Re: gtk embedded

2005-07-14 Thread Carlo Agrusti
Jirka Pirko ha scritto lo scorso 14/07/2005 06:39: hi i want to use gtk on intel xscale - is it better to use gtk on tinyx or a framebuffer (directfb) ? single graphical application is enought for me, so i can use framebuffer - but it's badly supported :/ thanx for any suggestions I

how to use Font Selection Dialog

2005-07-14 Thread Yogesh M
need a simple example how to use font selection dialog to change the font. Start your day with Yahoo! - make it your home page http://www.yahoo.com/r/hs ___ gtk-app-devel-list

Re: creating a Preference dialog like that of Konquerors

2005-07-14 Thread Tim Müller
On Thursday 14 July 2005 11:05, Yogesh M wrote: I want the preference dialog to look like this, left side of the window a list of images describing the options like font,colour,settings... and when I like those, the required buttons should appear on the right, I know it can be done with

How to get a GtkMenuItem parent

2005-07-14 Thread André Pedralho
I'm developing an app that creates a menu from a file. Then it would have many submenus. I'm trying to make it in a recursive function, but I am looking for a way to up the tree. For example: root | sub-root | | | itens_here | | | sub-sub-root | | | itens_here

Re: creating a Preference dialog like that of Konquerors

2005-07-14 Thread Yogesh M
[quote]So why don't you go and check how they do it? :-P[/quote] I dont have a working internet connection[I am away from home], I am in browsing center where there is no CD writter[and I dont have a floppy drive] :-( so, little help would be usefull. --- Tim Müller [EMAIL PROTECTED] wrote:

variables in g_signal_connect

2005-07-14 Thread Michal Porzuczek
When connecting signals to methods is is possible to add additional variables to the signals and if so in which way. Furthermore, the 4th variable, data, does it have to be a gpointer? I have the following function defined as: Horizontal_Zoom_In_clicked(GtkWidget *widget, int gt) and the signal

Re: variables in g_signal_connect

2005-07-14 Thread Christopher Anderson
You should use the GINT_TO_POINTER() macro on your variable. Then use GPOINTER_TO_INT() to extract the int back out of the pointer. See this: http://developer.gnome.org/doc/API/2.0/glib/glib-Type-Conversion-Macros.html#GINT-TO-POINTER:CAPS This method will work, but only for integers (since

RE: variables in g_signal_connect

2005-07-14 Thread Gyözö Both
use GINT_TO_POINTER: Horizontal_Zoom_In_clicked(GtkWidget *widget, gpointer gt) g_signal_connect ((gpointer) Horizontal_Zoom_In, clicked, G_CALLBACK (Horizontal_Zoom_In_clicked), GINT_TO_POINTER(graph_type)); and GPOINTER_TO_INT(gt) in the callback to get the

Displaying 4 numbers on 2 different rows, in a single tree cell

2005-07-14 Thread Nickolai Dobrynin
Hi -- Is there any way I can display four numbers in a single TreeView cell so that each individual number would occupy the upper left, upper right, lower left and lower right corner, respectively: ___ | 1 2 | | | | 3 4 | -- It's

Re: Displaying 4 numbers on 2 different rows, in a single tree cell

2005-07-14 Thread David Necas (Yeti)
On Thu, Jul 14, 2005 at 12:31:11PM -0500, Nickolai Dobrynin wrote: Is there any way I can display four numbers in a single TreeView cell so that each individual number would occupy the upper left, upper right, lower left and lower right corner, respectively: ___ | 1 2 |

how to disable showdetails feature in RHGB

2005-07-14 Thread harshavardhanreddy mandeepala
Hi I am using Linux FC3. i want to disable showdetails feature while system is booting. i.e while system is booting i want to see only graphical mode and if i click on showdetails button of graphical mode also it should not go to textmode. if u have any idea plz inform me.

g_list behavior: what am I doing wrong?

2005-07-14 Thread Allin Cottrell
This must be something simple, but what am I doing wrong with g_list_prepend() below? It seems to have the effect of erasing the original list and replacing it with a singleton element. #include glib.h int main (void) { GList *list = NULL; list = g_list_append(list, foo); list =

Re: g_list behavior: what am I doing wrong?

2005-07-14 Thread Christopher Anderson
I am curious, could you explain your solution? Thanks, Chris Anderson On 7/14/05, Allin Cottrell [EMAIL PROTECTED] wrote: On Thu, 14 Jul 2005, Allin Cottrell wrote: This must be something simple... It was, sorry. Stupidity over what g_list_next() does. Allin Cottrell

what is the function name that you can send a function to be running every n milliseconds

2005-07-14 Thread y g
Hello, I remember using some kind of function that allowed me to send another function to the background and be called every some milliseconds passed as parameter, but I can't remember its name or where the documentation lies If someone has a quick answer to that please help... Cheers

Re: g_list behavior: what am I doing wrong?

2005-07-14 Thread Allin Cottrell
On Thu, 14 Jul 2005, Christopher Anderson wrote: I am curious, could you explain your solution? OK, at the cost of some embarrassment ;-) Quoting my test function: int main (void) { GList *list = NULL; list = g_list_append(list, foo); list = g_list_append(list, bar);

Re: what is the function name that you can send a function to be running every n milliseconds

2005-07-14 Thread zhanglei
y g wrote: Hello, I remember using some kind of function that allowed me to send another function to the background and be called every some milliseconds passed as parameter, but I can't remember its name or where the documentation lies If someone has a quick answer to that please help...

Recent Files Manager in libegg

2005-07-14 Thread Emmanuele Bassi
Hi all. With my troubles at $ORK finally over[1], and with more free time again on my side, I finished the new recently used resources management that should replace the libegg/recent-files code. The code is here: http://devel.emmanuelebassi.net/software/recent-chooser-commit.diff

interpreting make check results?

2005-07-14 Thread Luis Villa
So, I turned on make check in tinderbox today, and I'm learning all kinds of 'exciting' things. :) gtk+'s excitement today: make[4]: Entering directory `/home/bb/microtinder/cvs/gtk+/gtk' --- expected-abi2005-07-14 15:19:22.737194592 -0400 +++ actual-abi 2005-07-14 15:19:26.800576864

Re: interpreting make check results?

2005-07-14 Thread Owen Taylor
On Thu, 2005-07-14 at 15:24 -0400, Luis Villa wrote: So, I turned on make check in tinderbox today, and I'm learning all kinds of 'exciting' things. :) gtk+'s excitement today: make[4]: Entering directory `/home/bb/microtinder/cvs/gtk+/gtk' --- expected-abi 2005-07-14 15:19:22.737194592

Re: interpreting make check results?

2005-07-14 Thread Luis Villa
On 7/14/05, Owen Taylor [EMAIL PROTECTED] wrote: On Thu, 2005-07-14 at 15:24 -0400, Luis Villa wrote: So, I turned on make check in tinderbox today, and I'm learning all kinds of 'exciting' things. :) gtk+'s excitement today: make[4]: Entering directory `/home/bb/microtinder/cvs/gtk+/gtk'

Re: interpreting make check results?

2005-07-14 Thread Matthias Clasen
These failures tend to get caught when we do 'make distcheck', but filing them would still be appreciated ... if we regularly thwap people who don't update gtk.symbols, hopefully we can avoid having problems like this very often. OK, sounds like a plan. Will do. Is someone fixing this

Can a GtkHandleBox be made transient?

2005-07-14 Thread Michael Wybrow
Hi, I sent this message to the users list yesterday, but I'm actually thinking it's more a question for the GTK+ developers. -- Forwarded message -- I'm looking for a way to make a GtkHandleBox in its torn-off form a transient window. For inkscape we use GtkHandleBoxes for