How sort a GtkList structure using keyboard shortcut??

2006-06-26 Thread raul o
Hello: I've created a list of data of my clients (name, e-mail, address, etc.) in a GtkListStore structure and I can sort this data using the columns headers. Well, I wish sort my list using keyboard sortcuts but I don't know how do it. Anybody can help me? Thanks ROtaiza

Re: GTK file open dialog usability...

2006-06-26 Thread tomas
On Sun, Jun 25, 2006 at 07:19:23PM +0100, John Cupitt wrote: There are some useful improvements in HEAD but not in gtk stable yet: 1) There's now a visible text box you can type to in the Open File dialog Yay! 2) It's now aynchronous, 2 X yay! -- tomás

Problem with Editable Cells

2006-06-26 Thread Sailaxmi korada
Hi List, Good Day. I'm working on an example which goes like this. A drop-down which is either Read or Write 3 editable cells, one for address, one for byte enable and last one for value. Now when I'm selecting the read, I should disable the editable property of Value field. I've

Re : How sort a GtkList structure using keyboard shortcut??

2006-06-26 Thread Fabien Vantard
hi, I'm not a real gtk-developper but in reading gtk API, I found the following function : gtk_tree_sortable_sort_column_changed () Perhaps this function help you, associated with a key-press-event function ? regards. ___ gtk-app-devel-list mailing

Re: gtk 2.8 on Windows 98

2006-06-26 Thread Allin Cottrell
On Sun, 25 Jun 2006, Tor Lillqvist wrote: Michael Torrie writes: I think only versions up to 2.6 are supported in windows 98. s/are supported/work/ Thanks. I've backed up to 2.6 and things are working again. -- Allin Cottrell Department of Economics Wake Forest University, NC

filechooserbutton and saving

2006-06-26 Thread Karl H. Beckers
Hi all, can anybody explain why the filechooserbutton cannot popup an filechooser with the save action? And if that is an unavoidable truth, is there a way to get a button that looks like the filechooserbutton but let's me control events (since I can't seem to react on the filechooserbutton's

Simple On-Screen Keyboard: Docked like panel

2006-06-26 Thread Chris Jones
I am a summer of code student and I'm writing an onscreen keyboard for Ubuntu using gtk, python and cairo. I want to get it to behave like a docked window, such as the panel. I've set the window hints for the window to docked. This gets rid of the window decorations and keeps it on top, but

Re: filechooserbutton and saving

2006-06-26 Thread Karl H. Beckers
Am Montag, den 26.06.2006, 21:39 +0200 schrieb Karl H. Beckers: Hi all, can anybody explain why the filechooserbutton cannot popup an filechooser with the save action? And if that is an unavoidable truth, is there a way to get a button that looks like the filechooserbutton but let's me

Re: filechooserbutton and saving

2006-06-26 Thread Tristan Van Berkom
Karl H. Beckers wrote: [...] (xvidcap:10389): Gtk-WARNING **: gtk_file_chooser_button_set_property: Choosers of type `GtkFileChooserButton' do not support `GTK_FILE_CHOOSER_ACTION_SAVE'. *grmbrl* what do you folks do about this? Interesting warning, is it possible that the filechooser

Re: filechooserbutton and saving

2006-06-26 Thread Yeti
On Mon, Jun 26, 2006 at 09:39:28PM +0200, Karl H. Beckers wrote: can anybody explain why the filechooserbutton cannot popup an filechooser with the save action? In my opinion `save file chooser' is an entry plus a button to browse the filesystem if one wishes to. Anything requiring me to click

gdk_draw_pixbuf

2006-06-26 Thread 3saul
I have two questions regarding drawing: 1. Is it possible to use gdk_draw_pixbuf to draw onto a GTKDrawingArea (the doco states that it's possible but I can't figure out how to) 2. Upon resizing a GTKDrawingArea will it's contents be resized automatically? -- View this message in context:

a queseion about gtk_emit_signal_by_name

2006-06-26 Thread tigerlei
Hi I am developing a GTK+ program. I want to send a signal to a GtkDrawingarea to call it re-draw its contents and I used such code: // gtk_signal_emit_by_name(drawingarea1,expose_event); and aslo try like this: //

Re: Replacement for gdk_font_load? [was: gtk-app-devel-list Digest, Vol 26, Issue 39]

2006-06-26 Thread tomas
On Tue, Jun 27, 2006 at 08:45:02AM +0530, Lalit Kumar wrote: Hi All, I am facing problem with gdk_font_load method in my application. It returns NULL. I am using gtk-2.0 on Redhat Enterprise WS 4. Have a look at this thread http://developer.gnome.org/dotplan/porting/ar01s10.html and

Re: gdk_draw_pixbuf

2006-06-26 Thread Yeti
On Mon, Jun 26, 2006 at 09:01:43PM -0700, 3saul wrote: 1. Is it possible to use gdk_draw_pixbuf to draw onto a GTKDrawingArea (the doco states that it's possible but I can't figure out how to) http://developer.gnome.org/doc/API/2.0/gtk/GtkDrawingArea.html shows hot to draw an arc.

Re: a queseion about gtk_emit_signal_by_name

2006-06-26 Thread Yeti
On Mon, Jun 26, 2006 at 08:52:04PM -0700, tigerlei wrote: I want to send a signal to a GtkDrawingarea to call it re-draw its contents and I used such code: // gtk_signal_emit_by_name(drawingarea1,expose_event); You have to pass all arguments the signal handler takes: