Re: Help with modal dialog

2016-04-24 Thread Murray Cumming
> "delete-event", G_CALLBACK (on_close_system_log_activate), > gpointer(this)); >     syslogdialog->run(); The delete-event signal handler needs to return a gboolean. The C API doesn't do any checking of the signature of the signal handler's function pointer. However, gtkmm doe

Re: Gtk+3 application Internationalization

2016-04-14 Thread Murray Cumming
by the lack of things like OK, Yes, and No, which shouldn't be used anyway. -- Murray Cumming murr...@murrayc.com www.murrayc.com ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Plotting Library for Gtkmm-3.0 - PlotMM

2015-02-10 Thread Murray Cumming
github. -- Murray Cumming murr...@murrayc.com www.murrayc.com ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Problem in gtk_combo_box_append_text()

2011-01-20 Thread Murray Cumming
On Thu, 2011-01-20 at 16:37 +0530, Karthikeyan Krishnamurthi wrote: Hi group, I try to append text to combo box using gtk_combo_box_append_text () i got the following error... gtk_combo_box_append_text: assertion `GTK_IS_LIST_STORE (combo_box-priv-model)' failed how to solve this..

Re: Database view widget

2011-01-10 Thread Murray Cumming
On Mon, 2011-01-10 at 11:40 +0100, Edheldil wrote: Dear listmembers, I am writing an application in Python+libglade (*) which displays a long table of objects and their properties (geocaches, actually. Similar to GSAK or GeoGet). The problem is that with more than 15000 objects the TreeView

Re: Build and install a new input method?

2010-10-06 Thread Murray Cumming
On Wed, 2010-10-06 at 07:56 +0700, John Matthewman wrote: http://www.openismus.com/misc/multipress-gtk-input-method/source/ Thanks for that - though I was hoping to see a simple makefile so I could make a bit more sense of what's going on. (Not a fan of autotools...) Just watch the output

Re: Build and install a new input method?

2010-10-05 Thread Murray Cumming
On Tue, 2010-10-05 at 11:03 +0700, John Matthewman wrote: Hi there - I'm trying to make a new GTK input method for Vietnamese (Telex) input. After looking at the source for the Vietnamese (VIQR) input method, it's fairly easy to create the source for my new input method.. So now I'm stuck on

Re: map C++ object to Gobject

2010-05-29 Thread Murray Cumming
On Fri, 2010-05-28 at 19:17 +0200, Radovan TUČEK wrote: Hi Is it possible to map C++ object to Gobject and uset this Gobject in C application without writing C wrapper around C++ object? If you are using gtkmm then you can use gobj() and Glib::wrap():

Re: Setting the font for Gtk::Button

2010-05-06 Thread Murray Cumming
On Thu, 2010-05-06 at 09:04 +, John Emmas wrote: You can probably see that the progress bar's font gets successfully changed, whereas the button's font doesn't You have to set the font of the label in the button, not the font of the button. I generally think this is far too difficult.

RE: different data types between clist and mysql.

2010-04-22 Thread Murray Cumming
On Wed, 2010-04-21 at 10:19 -0400, Shawn Bakhtiar wrote: FYI for OSX users I had to install the GNU Readline for Libgda for this to compile. without GNU Readline it popes the following error: /bin/sh ../libtool --tag=CC --mode=link gcc -arch i386

RE: different data types between clist and mysql.

2010-04-20 Thread Murray Cumming
I strongly advise you to try libgda rather than reimplementing it yourself. -- murr...@murrayc.com www.murrayc.com www.openismus.com ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: GTK 2.20 for Windows

2010-04-12 Thread Murray Cumming
On Sun, 2010-04-11 at 09:51 +0300, Tor Lillqvist wrote: Would filing tickets of the issues that arise generate a response? Filing tickets (bug reports in bugzilla.gnome.org) for individual clearly separate issues (that don't have bug reports already) is always good, This is essential. We

Re: Connecting GTK application to a database

2010-02-25 Thread Murray Cumming
On Wed, 2010-02-24 at 10:50 -0600, Daniel Espinosa wrote: Using GDA (www.gnome-db.org) based on GObject/GLib and its GTK+ objects, you can develop applications using a C API to access any supported database backend (postgresql, mysql and sqlite, are some of them). Any application can run

Re: Creating an aggregating GtkContainer

2009-11-19 Thread Murray Cumming
On Wed, 2009-11-18 at 19:35 +0100, Per Hermansson wrote: Hi everyone I'm contributing to a project called the Common Printing Dialog which goal is to create the next generation print dialog for Gnome. The dialog allows users to customize different options which depends on the current

Re: Crash processing g_object_new arguments

2009-11-09 Thread Murray Cumming
On Mon, 2009-11-09 at 09:32 +0100, Nicola Fontana wrote: Il giorno Mon, 09 Nov 2009 03:24:04 -0500 Braden McDaniel bra...@endoframe.com ha scritto: Clearly the Address ... out of bounds looks fishy; but I'm just not seeing what could be a problem there; and I'm wondering if gdb isn't

Re: why do constructors return GtkWidget?

2009-09-08 Thread Murray Cumming
On Tue, 2009-09-08 at 13:32 +0200, Emmanuel Touzery wrote: It's annoying for me because I find that putting the real types in my code makes it easier to follow (rather than everything being a GtkWidget*), but if I go that route, I must constantly up and downcast... From my

Re: csv (comma separated value) file

2009-08-24 Thread Murray Cumming
On Tue, 2009-08-04 at 11:49 +0200, Nicola Fragale wrote: Il 04/08/2009 08:59, Andrea Zagli ha scritto: Il giorno lun 03 ago 2009 18:03:43 CEST, Andrea Zagli ha scritto: i didn't find nothing about to manage (read/write) csv files with glib do you know about something that i didn't find?

Re: Strategy for furute programs?

2009-02-12 Thread Murray Cumming
, if you like that kind of thing. http://www.glom.org/ -- Murray Cumming murr...@murrayc.com www.murrayc.com www.openismus.com ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Glib::ustring, error while reading an utf-8 encoded file

2009-01-21 Thread Murray Cumming
don't use std::cout and friends to show UTF-8. -- Murray Cumming murr...@murrayc.com www.murrayc.com www.openismus.com ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: How to use Quarks?

2009-01-05 Thread Murray Cumming
On Mon, 2009-01-05 at 18:43 +1100, Andrew Cowie wrote: ie, it sounds like we should switch to g_object_set_qdata() for our one and only use of GObject data; we request and set that value a *lot*, and I'm always pleased to use faster code paths. The key we use is already a static string anyway.

Re: Question about TreeView particularly GtkCellRendererCombo

2008-12-19 Thread Murray Cumming
___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list -- Murray Cumming murr...@murrayc.com www.murrayc.com www.openismus.com ___ gtk-app-devel-list mailing list gtk-app-devel

Re: memory leak when destroying widgets

2008-10-29 Thread Murray Cumming
in gtkmm. -- Murray Cumming [EMAIL PROTECTED] www.murrayc.com www.openismus.com ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Playing video from within my gtkmm app

2008-10-10 Thread Murray Cumming
stuff on and I'd like to play a .mov file in a subportion of that area. Maybe Kino sources? gstreamermm (unstable but making great progress) has a working example of a mini video player. It's probably useful. -- Murray Cumming [EMAIL PROTECTED] www.murrayc.com www.openismus.com

Re: Toggle Button Bug

2008-10-10 Thread Murray Cumming
/toogle_main.c http://www.nylxs.com/docs/workshops/toogle_main.c.html [snip] -- Murray Cumming [EMAIL PROTECTED] www.murrayc.com www.openismus.com ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk

Re: gtkmm and autoconf

2008-10-03 Thread Murray Cumming
On Thu, 2008-10-02 at 12:31 -0400, Ruben Safir wrote: This is my src directory Makefile.am ___ bin_PROGRAMS = onewindow onewindow_SOURCES = one_window.cc You are not specifying any libraries to link to, or any paths to headers to use.

Re: Learning Glade

2008-09-26 Thread Murray Cumming
On Fri, 2008-09-26 at 02:31 -0400, Ruben Safir wrote: On Mon, Apr 28, 2008 at 08:01:13PM +0200, Luis Menina wrote: If you have a recent version of GTK+ (= 2.12), just go with GtkBuilder instead of libglade: this is the way things should be done nowadays, if you create a simple interface

Re: How do I intercept keys in a Gtk::Entry widget?

2008-09-25 Thread Murray Cumming
/gtkmm-2.4/docs/tutorial/html/sec-xeventsignals.html -- Murray Cumming [EMAIL PROTECTED] www.murrayc.com www.openismus.com ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Can't install gtkmm (package manager won't install libgtkmm-2.4-dev)

2008-08-05 Thread Murray Cumming
On Mon, 2008-08-04 at 16:12 -0700, Garth's KidStuff wrote: Hi All, Help! I'm trying to install a build environment on a machine I just installed Ubuntu 8.04.1 on and the package manager won't install libgtkmm-2.4-dev. It gives the following message: libgtkmm-2.4-dev: Depends:

Re: valgrind helloworld example returns errors

2008-05-05 Thread Murray Cumming
On Sun, 2008-05-04 at 18:29 +0300, Stefan Kost wrote: you seem to have no suppressions for libc-2.7. These are all things in libc that you don't need to worry about. Maybe you could link to a suppressions file from the live.gnome.org valgrind page? http://live.gnome.org/Valgrind -- [EMAIL

Re: gtktreeview and doubles

2008-04-30 Thread Murray Cumming
On Wed, 2008-04-30 at 10:49 +0200, Martin (OpenGeoMap) wrote: Hi all: It´s posible edit the cellrender for doubles?? Always put 6 decimals. Can i modify that?? Any tips appreciated. You can use gtk_tree_view_column_set_cell_data_func() to change how data is displayed in your cell

Re: Gtkmm Printing in Ubuntu 7.10

2008-04-09 Thread Murray Cumming
On Wed, 2008-04-09 at 08:15 -0700, Garth's KidStuff wrote: Hi, As covered in some earlier posts, Murry helped point me to the bug report on Ubuntu 7.10 that showed that gtk+ printing just didn't work there. Specifically, there is a problem with the printing API when used from gtkmm (not with

Re: I'd like (working) printing sample code

2008-04-01 Thread Murray Cumming
On Mon, 2008-03-31 at 07:34 -0700, Garth's KidStuff wrote: Hi, Thanks in advance. The sample code at: http://www.gtkmm.org/docs/gtkmm-2.4/docs/tutorial/html/sec-printing-example.html doesn't work for me. I get the on_begin_print callback as expected, but never receive the on_draw_page

Re: I'd like (working) printing sample code

2008-04-01 Thread Murray Cumming
On Tue, 2008-04-01 at 10:05 -0700, Garth's KidStuff wrote: Hi Murray, Thanks. I'm running Ubuntu 7.10 Gutsy. I'm not sure how to tell what version of Gtkmm I'm linking to, but I just used package manager to get the latest available and here's what's in my /usr/lib: -rw-r--r-- 1 root root

Re: Get signals and callbacks.

2008-02-26 Thread Murray Cumming
On Tue, 2008-02-26 at 14:19 +0100, Germán Diago wrote: Hello. I'm implementing an application in gtkmm. I want to add support for dynamic signal connection from a glade file in C++ (which is not supported by the C++ bindings). I'd like to know if there is a way, once a glade file has been

Re: GTK IM switch by software keyboard

2008-01-05 Thread Murray Cumming
On Thu, 2008-01-03 at 22:52 +0800, Bin Chen wrote: I have ported a new GTK input method module to my platform, the regular steps to switch input method in a GTK+ text widget is to right click the entry point and select the desired input method. Now I want to do all this more simpler, I want

Re: Drag drop question!

2007-12-29 Thread Murray Cumming
On Sat, 2007-12-29 at 16:22 +0100, Johannes Schmid wrote: Hi! I am currently try to set up a GtkContainer and all it's children as a drag target. As some of the children have their own GdkWindow I need to set up the drag targets for all of them. For a GtkImage child, this works without

Re: App blueprint, advice please!

2007-12-16 Thread Murray Cumming
On Sat, 2007-12-15 at 21:27 -0500, Patrick wrote: Sorry for the long email but I really could use some help. I sell used lab instruments to people doing great work researching cures. The closed source programs to control and process data from these instruments often cost 20K. The people

Re: Finding API documentation by function name

2007-12-05 Thread Murray Cumming
On Wed, 2007-12-05 at 09:42 +, Raja Mukherji wrote: Hi, Thanks for the advice, I will try using docbook with a custom script to convert the output as necessary. At the moment I'm simply using sgrep to search the html files in devhelp and converting them to plain text with html2text; it's

Re: Finding API documentation by function name

2007-12-02 Thread Murray Cumming
On Tue, 2007-11-27 at 23:24 +, Raja Mukherji wrote: Hi all, I'm writing a binding generator for my language to Gtk and want the generator to be able to insert documentation into the generated code automatically. Is there any existing program/script for getting the documentation

Re: Unable to catch Gdk::PixbufError

2007-11-18 Thread Murray Cumming
On Sun, 2007-11-18 at 12:53 +0100, [EMAIL PROTECTED] wrote: Hello all, I am an Inkscape developer and have problems with Gdk::Pixbuf::create_from_file. This is the code we have: try { img = Gdk::Pixbuf::create_from_file(fileName); } catch (Glib::FileError e)

RE: Unable to catch Gdk::PixbufError

2007-11-18 Thread Murray Cumming
On Sun, 2007-11-18 at 14:28 +0100, [EMAIL PROTECTED] wrote: -Original Message- From: Murray Cumming [mailto:[EMAIL PROTECTED] Sent: zondag 18 november 2007 13:22 You should generally catch C++ exceptions as const references. I've known this to be significant in the past

Re: gtk_ui_manager_get_accel_group reference

2007-11-09 Thread Murray Cumming
On Fri, 2007-11-09 at 16:40 +0100, c f wrote: Hi, I'm not sure if the following problem is a bug in gtk or it is a 'feature': Running the following code: GtkUIManager *uiManager = gtk_ui_manager_new(); GtkAccelGroup *accelGroup = gtk_ui_manager_get_accel_group(uiManager);

Re: Profiling GTK within an application

2007-10-29 Thread Murray Cumming
On Mon, 2007-10-29 at 12:47 -0500, Chris Rorvick wrote: Stefan Kost wrote: This is most likely caused by cairo. You should also see a bit less CPU usage in 2.12 compared to 2.10 (or more precise newer cairo should perform a bit better). For some reason, this happens to be one of two

Re: guid lines

2007-10-27 Thread Murray Cumming
On Fri, 2007-10-19 at 18:43 +0530, CHAITANYA KOMMURU wrote: hi all, iam new to gtk. i and my team mates ported gtk library on davinci borad successfully. i write an application program using gtk. Iam using 4x4 keyboard to my application and there is no mouse in my

Re: Date and time

2007-10-24 Thread Murray Cumming
On Wed, 2007-10-24 at 11:19 +0200, Olivier Delhomme wrote: Hello, I'm looking for a function that will return a date and time as a gchar * in a format that is made accordingly to the user preferences. For example 2007/10/24 or 24/10/2007 ... Does this exists in glib/gtk ? sprintf()

Re: drag and drop on GtkContainer

2007-10-16 Thread Murray Cumming
On Sun, 2007-10-14 at 21:12 +0200, Johannes Schmid wrote: I am trying drag and drop on an GtkContainer and I want to find out the nearest child from the drop point. So far I tried to get the child position using gtk_widget_get_window() I can't find this function. Do you mean

Re: How to stack widgets or GtkFixed doesn't seem to work well for stacking

2006-05-12 Thread Murray Cumming
this sequence of events I would expect to see the settings page in the background with the confirmation page in the foreground. This does seem to be an attempt to simulate stacked GtkWindows. Is there a reason that you can't just show a dialog? -- Murray Cumming [EMAIL PROTECTED] www.murrayc.com