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

2010-11-06 Thread Guy Rouillier
are trying to display, the problem appears 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
get a message saying that an email has been sent to me - 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 rec

Re: GUI quickly?

2009-02-10 Thread Guy Rouillier
n the subject, you might want to give Gambas 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: Status Indication GUI development using GTK++

2009-01-29 Thread Guy Rouillier
r of an icon in your main app window, that should be trivial. If you mean you want to add your status indicator to the notification area on the panel, I'd suggest taking a look at the Network Monitor; it changes colors when it detects network activity

Re: when and where to destroy "popup menu"?

2007-02-09 Thread Guy Rouillier
need to destroy it, Gtk does 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
Win32 API, it would 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
st Win32 compilers does not > try to invoke a command interpreter, it just runs 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

Re: Problem with GtkDialog and gtk_widget_destroy()

2006-11-18 Thread Guy Rouillier
dialog_run(GTK_DIALOG(dialog)); > okPressed = response == GTK_RESPONSE_OK; > app->GetLogger().WriteF(String::F("after run %d", response).c_str()); > > gtk_widget_destroy (dialog); > app->GetLogger().WriteF("after destroy"); > dialog = NULL; >

Re: How to scale Gtk-GUI application

2006-11-18 Thread Guy Rouillier
ypically done; instead, permit the user 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: GTK+

2006-11-18 Thread Guy Rouillier
s of an application 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 ___

Re: gui for trees

2006-10-21 Thread Guy Rouillier
edicated Gtk widgets 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 stru

Re: GTK table insert row

2006-10-12 Thread Guy Rouillier
? > > Any help or suggestions 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

Re: event handling

2006-10-07 Thread Guy Rouillier
reat help. > Sure, what you should look 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 g

Re: GTK+ Draw a Rectangle over other widgets?

2006-08-20 Thread Guy Rouillier
k at hbox and vbox. These are layout 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
pointing to each other as you depict above will never fit. Besides, once you get 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 t

Re: platform support

2006-07-16 Thread Guy Rouillier
rs disdain most cross-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. --

Re: MySQL + GTK

2006-06-02 Thread Guy Rouillier
d with the tree view, you just 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 _

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

2006-04-22 Thread Guy Rouillier
list. -- 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
ut the buttons 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
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@gnom

Re: interactive buttons inside treeview headings

2006-04-10 Thread Guy Rouillier
tributes(clmn, rndr, "text", INT_COLUMN, NULL); 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-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: 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.gn

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/listinf

Re: I need advises ;)

2006-03-16 Thread Guy Rouillier
y not need to store a pointer to the structure, because you'll have all the fields from the structure in the tree view. Keeping the structure around would mean storing all the data in it twice. But if you decide you still want to do that, you can put the pointer in userdata. -

Re: Sorting GtkListStore date column

2006-03-13 Thread Guy Rouillier
Axel Simon wrote: On Sun, 2006-03-12 at 21:39 -0500, Guy Rouillier wrote: I'll use the approach of storing the time_t corresponding to each displayed date in a hidden column, and use that hidden column as the sort column for the date column. Out of curiosity, would it also be possible

Re: Sorting GtkListStore date column

2006-03-12 Thread Guy Rouillier
just the time_t, 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

Sorting GtkListStore date column

2006-03-12 Thread Guy Rouillier
t puts all 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. -