Re: Strange display problem with gtk-win32 and VC++

2010-11-06 Thread Guy Rouillier
to be one of font rendering. Other than that meager observation, I can't really help. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: How do I unsubscribe??

2009-04-07 Thread Guy Rouillier
- but no email ever arrives. You are entering email addresses that are not subscribed, so it is silently ignoring your request. You should be able to determine which of your email addresses is subscribed by the account that receives all these list emails. -- Guy Rouillier

Re: GUI quickly?

2009-02-10 Thread Guy Rouillier
a try. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: when and where to destroy popup menu?

2007-02-09 Thread Guy Rouillier
that for you, after dispatching the proper event from the selected menu item. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Windows Vista and GTK+ compatibility

2007-01-30 Thread Guy Rouillier
render all Windows programs inoperable. Why would Microsoft do that? Do you have a reference? -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: run a new application

2006-11-24 Thread Guy Rouillier
the program specified, with arguments. That's true. But the command you tell it to run can be cmd.exe, then you are starting a shell. Besides, the Windows implementation is no more right or wrong than the Unix one, just different. -- Guy Rouillier ___ gtk

Re: GTK+

2006-11-18 Thread Guy Rouillier
program. I am looking for this as I want my program to work cross platform, in windows as well as in Linux. Many Thanks for your time and response in advance, Kind regards, Natarajan. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app

Re: How to scale Gtk-GUI application

2006-11-18 Thread Guy Rouillier
to select a desired font. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: gui for trees

2006-10-21 Thread Guy Rouillier
for any of them, because typically what's beneficial for a data structure may not be for graphical widget. That being said, take a look at GtkTreeView. You may be able to utilize that to display the data in your red-black tree data structure. -- Guy Rouillier

Re: GTK table insert row

2006-10-12 Thread Guy Rouillier
are apreciated. You don't provide much to go on. Which Gtk widget are you using - GtkTable or GtkTreeView with a backing list store? -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman

Re: event handling

2006-10-07 Thread Guy Rouillier
at are signals. Start with the Gtk+ Reference, Depending on what version you are running, most of the signal functions have been moved into glib. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org

Re: GTK+ Draw a Rectangle over other widgets?

2006-08-20 Thread Guy Rouillier
mechanisms. Once you've placed widgets within a layout, they'll stay there, even if the layout is resized. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Which widget should I use?

2006-08-08 Thread Guy Rouillier
above 5-10 boxes, comprehension begins to plummet. I'd just put them in a simple list, in whatever order makes sense to your audience (first to last or last to first.) You can do that with a tree view backed by a list store. -- Guy Rouillier

Re: platform support

2006-07-16 Thread Guy Rouillier
-platform tools, because most apps end up feeling like Windows applications, and the native Mac look and feel is quite different from that. If your app has a restricted user community and they are okay with Gtk apps, then fine. The old axim holds: know your customer. -- Guy Rouillier

Re: MySQL + GTK

2006-06-02 Thread Guy Rouillier
populate the list store. You don't need to know the number of rows that will eventually be put into the list store. You just keeping appending a row to the list store for each row you get back from your MySQL table. -- Guy Rouillier ___ gtk-app-devel

Re: Retrieving one selected element in a GtkTreeSelection (multiple)?

2006-04-22 Thread Guy Rouillier
. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: interactive buttons inside treeview headings

2006-04-13 Thread Guy Rouillier
into the first row of the store. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Rebooting the System

2006-04-11 Thread Guy Rouillier
that normally isn't required on Unix-type OSes. Shutdown and reboot are protected operations. You won't be able to rely on them being available to non-root users. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: GtkTreeView: How do I detect right-click?

2006-04-10 Thread Guy Rouillier
Ang Bodhi wrote: Hi, Guy Rouillier wrote: Ang Bodhi wrote: Hi, I have a GtkTreeView widget that I would like to detect the mouse button right-click, how can I do that? In Gtk 1.2, I used to be able to connect to a button_press_event signal of a GtkTreeItem widget. Did you search

Re: interactive buttons inside treeview headings

2006-04-10 Thread Guy Rouillier
); gtk_tree_view_column_set_visible( clmn, TRUE); -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GtkTreeView: How do I detect right-click?

2006-04-09 Thread Guy Rouillier
ago: gtk_menu_new(); gtk_menu_popup(); In order to know to kick this off, you'll have to gtk_signal_connect on the popup_menu signal. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman

Re: popup menu

2006-04-03 Thread Guy Rouillier
(); gtk_menu_popup(); In order to know to kick this off, you'll have to gtk_signal_connect on the popup_menu signal. -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Sorting GtkListStore date column

2006-03-12 Thread Guy Rouillier
the Fridays together first, followed by all the Mondays, Saturdays, Sundays, etc. Obviously, I want to sort this in date sequence. How do I accomplish this? I searched the archives before posting and couldn't find anything applicable. Thanks. -- Guy Rouillier

Re: Sorting GtkListStore date column

2006-03-12 Thread Guy Rouillier
, and using a custom renderer to transform the time_t value into a displayable string? Is sorting done on the rendered text or on the underlying data? -- Guy Rouillier ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http