Tagged Questions

gtkmm is the official C++ interface for the popular GUI library GTK+.

learn more… | top users | synonyms

5
votes
7answers
3k views

Should I learn GTK+ or GTKMM?

I am a C# programmer who started using ubuntu about 2 years ago. I'm wanting to learn GUI programming in either C or C++. I don't really like mono, it tends to crash on my system. I have a basic ...
4
votes
1answer
103 views

How to use CssStyleProvider in Gtkmm3

I'm programming in c++ with gtkmm3. I want to change some fonts in my program. I read all the things about CssStyleProvider, StyleContext in gtkmm documentation and also in gtk+ documentaion but i ...
4
votes
2answers
1k views

Problems compiling gtkmm

OS: Fedora 14 Compiler: g++ (GCC) 4.5.1 20100924 (Red Hat 4.5.1-4) I installed gtkmm24-devel from repository via yum. To make sure the install went as planned I decided to try one of the examples on ...
4
votes
2answers
640 views

Multiple Producers Single Consumer Queue

I am new to multithreading and have designed a program that receives data from two microcontroller measuring various temperatures (Ambient and Water) and draws the data to the screen. Right now the ...
3
votes
0answers
52 views

Repeated window invalidation in GTK+: failure after several steps

I have a timer which calls a method (perform_step) every second. perform_step does some computation and invalidates my window. This works well initially but after a small number of iterations the ...
3
votes
2answers
99 views

How to load image BACK from OpenGL?

I have succeed in loading an image to OpenGL as a texture (I use Gdk::Pixbuf from GTKmm library), but I have no idea how to get modified image from OpenGL and load it to Gdk::Pixbuf... I want to ...
3
votes
2answers
234 views

Reporting library for Linux / C++ / Gtk?

We have a C++ Gtk application that currently has a "homebrew" reporting component. We're looking to step up to a more fully-featured reporting library, preferably with a WYSIWYG designer, ...
2
votes
1answer
65 views

Gtkmm: Connect signal handler to combobox in TreeView

This is a follow-up question to this: How do I add a ComboBox to a TreeView column? I was able to place a ComboBox inside a TreeView with the options I need. But I can't seem to figure out how to ...
2
votes
1answer
128 views

Cross-compiling GTK on Fedora using MinGW

I have Fedora (latest) installed as well as mingw32 and gtk packages. I wrote simple Hello world: #include <gtk/gtk.h> int main(int argc, char* argv[]){ GtkWidget *window; ...
2
votes
3answers
94 views

Something like .dll on Linux - how to get them?

I have program using gtkmm, gtkglextmm and exiv2. I want to include these libraries with the executable, because the app will not work if user doesn't has them on his/her system. On Windows .dll ...
2
votes
3answers
259 views

Embed a web browser in a cross platform Gtk application

I need to embed a very simple browser ( can parse HTML, and JS Ext ) in a Gtk Widget hopefully in gtkmm. I looked into gtkmozembed, but the c++ wrapper is very out dated, so I tried to just write it ...
2
votes
1answer
106 views

Problem with Gtk::TextView::modify_font when moving from GTKMM 2.4 to GTK3.0

I have an application that uses gtkmm 2.4 which has worked fine until I recently changed over to gtkmm 3.0. I am having a problem with g++ (version 4.6.1) where it keeps spitting out the error ...
2
votes
2answers
214 views

Gtkmm compiling error

OS: Windows 7 Compiler: MinGW IDE: Code::Blocks I just installed Gtkmm on my computer in the folder C:/gtkmm/ and set up an example program. When I compiled it, it gave the error "gtkmm.h: No such ...
2
votes
1answer
110 views

How to write the letter ñ in textbuffer gtkmmTextView?

When I try to insert the ñ in textbuffer TextView the CMD displays the following error: (textEditor.exe:696): Gtk-CRITICAL **: gtk_text_buffer_emit_insert: assertion g_utf8_validate (text, ...
2
votes
1answer
165 views

Unable to get height/width of a widget - gtkmm

I'm writing an application using gtkmm. I wrote a simple widget class, that I want to display in the application's main window only in some cases. Otherwise, I would like a Label "disabled" to be ...
2
votes
1answer
397 views

Gtk+: How to set the cursor of a window from a Cairo context?

I have written the following code to set the cursor of a Gtk::Window from a Cairo::Context. When I run the program and move the cursor into the window, the cursor changes to a horizontal black line at ...
2
votes
1answer
81 views

A treeview INSIDE OF a treeview? or how to show a list inside of a treeview

I have a treeview that lists the properties of an object. One of those properties is a list of Tags (strings) that can be a list of zero to whatever number of items. So you could tag a song with ...
2
votes
4answers
255 views

Pointer instantly 0x0

i have this code. the pointer turns 0x0 immediately before using it. short before, it had the correct address. TreeViewColumn *col; col = preview->get_column(pcFolder); /* col = 0x7fff5fc404a0 */ ...
2
votes
2answers
921 views

Glade treeview liststore data not visible, can't imagine why

I've got 99% 44/100 of everything working. I have a glade file, I use gtkbuilder to render it and voila it comes up. Everything except the data in my treeview liststore. I notice by default the tree ...
2
votes
2answers
250 views

Running a Gtkmm Dialog fails

I'm trying to pop up a dialog after setting up Gtkmm like so: MainWindow::MainWindow() : public Gtk::Window { //etc etc and in main() Gtk::Main ginit(argc,argv); MainWindow *mw = new MainWindow; ...
2
votes
1answer
491 views

Row Background Color GTK TreeView Widget

I'm attempting to color disabled rows in a gtk tree view widget a light gray color. From what I've read, I'm supposed to set the background-gdk property of the corresponding cellrenderer and bind it ...
2
votes
1answer
166 views

How to fill Gtk::TreeModelColumn with a large dataset without locking up the application

I need to fill in a large (maybe not so much - several thousands of entries) dataset to a Gtk::TreeModelColumn. How do I do that without locking up the application. Is it safe to put the processing ...
2
votes
1answer
201 views

Drawing a temporary 'select' rectangle on a drawing area

I have a complex drawing on a Gtk DrawingArea widget and I wish to provide the user with a way to select a rectangle on it to expand for a closer view. I have managed to get the necessary mouse button ...
2
votes
2answers
198 views

Setting resizable to false shrinks window to point

I am creating a GTK Window which, for various reasons, I wish to make non-resizable by the user. But invoking the set_resizable method on the window causes it to display with a size of 1 pixel by 1 ...
2
votes
2answers
467 views

undefined reference to `Class::Class()'

I am writing a GTKmm window program; the main window creates two buttons, one for English and one for Chinese. The user can click on the button to bring up a different window in the appropriate ...
2
votes
2answers
1k views

OpenGL/Gtkmm game - keyboard moving

I am programming a game in "OpenGL" and using "Gtkmm" as a window manager. I want to use the keyboard to camera moving (thus, "UP-key" to move forward, "DOWN-key" to move backward, etc...) Some time ...
2
votes
1answer
398 views

show image in gtkmm from integer array

I have an integer array with a gray scale image and I need to show it in my application. I'm programing in C++ with gtkmm and I can't find any widget like a canvas that allow you to show and access ...
2
votes
2answers
986 views

Gtkmm - “Gtk::DrawingArea” in “Gtk::ScrolledWindow”?

I am making a GUI program using "gtkmm". I would like to draw some graphics to the "Gtk::DrawingArea" widget but I want that widget to be "resizable", so when I draw let's say a line from "(0, 0)" to ...
1
vote
0answers
27 views

How can I create a GTK combobox with no relief?

I know you can remove a button's relief with button.set_relief(Gtk::RELIEF_NONE); // gtkmm Or gtk_button_set_relief(button, GTK_RELIEF_NONE); // gtk But there's no corresponding method for ...
1
vote
1answer
90 views

How do I add a ComboBox to a TreeView column?

In Gtkmm, I want to have a Gtk TreeView with a ListStore, and have one of the columns in the list be a ComboBoxText. But I can't seem to figure out how to do it. What I currently have looks like: ...
1
vote
1answer
111 views

gtkmm drawing single pixels

Refering to the example on the Documentation for Gtkmms GdkRGB: #include <gtk/gtk.h> #define IMAGE_WIDTH 256 #define IMAGE_HEIGHT 256 guchar rgbbuf[IMAGE_WIDTH * IMAGE_HEIGHT * 3]; gboolean ...
1
vote
1answer
55 views

How to convert 'GtkWidget' type in gtk+ to the 'Gtk::Widget' type in gtkmm?

I simply tried this. GtkWidget* oldwnd = new GtkWidget(); Gtk::Widget wnd(*oldwnd); But it does not compile. Can anybody tell me how to type cast the types in gtk+ to the corresponding types in ...
1
vote
1answer
60 views

Segfault when creating smartpointer on CairoContext

I got some problems when creating a Cairo::RefPtr on a Cairo-Context. I really can't imagine why this segfaults, except the pointer ist pointing on something completely wrong. This is my code. ...
1
vote
0answers
46 views

Is the GTKMM set_value_vfunc function a lie?

I've been attempting to modify the contents of a custom tree view that inherits from TreeModel and TreeSortable. However, the virtual function set_value_impl contains only an assert. When I tried to ...
1
vote
1answer
47 views

Adding a custom Authors category to Gtk::AboutDialog class

I was wondering if there was a way to set a custom Authors category in a Gtk::AboutDialog class via gtkmm. I know there are the following methods: set_artists() set_authors() set_documenters() ...
1
vote
2answers
121 views

Compilation problem sigc++/gtkmm in own namespaces

Having our own namespaces in a project, we would like to include a GUI using gtkmm. // in a header file: namespace project { // namespace "gui" is declared elsewhere class gui::Config : ...
1
vote
1answer
46 views

gtkmm and the system clipboard

I am wondering if there is a signal anywhere in gtkmm that is emitted when the system clipboard contents change/someone copies text. I looked into the gtk docs and it seems the only signal emitted by ...
1
vote
4answers
207 views

Any way to speed up/reduce CPU usage when drawing with Cairo?

I wrote an app that uses Cairo to draw things on screen (on a Gtk::DrawingArea, to be exact). It needs to redraw everything frequently. It turns out, that despite the draphics drawn are very simple, ...
1
vote
1answer
197 views

Detect click on Gtk::Image?

I've been trying to detect clic on a Gtk::Image with gtkmm for over 2 hours, but I couldn't get it to work. It does compile and excecute fine, but the event is never triggered. Some stuff I tried, ...
1
vote
2answers
87 views

SIGSEGV after Glib::RefPtr goes out of scope?

I have this bit of code, which is working fine: WebKit::WebView web; // later: { Glib::RefPtr<WebKit::WebSettings> settings = WebKit::WebSettings::create(); // do some stuff to the ...
1
vote
1answer
260 views

Is it possible to use GTK+ with C++?

I am choosing a GUI toolkit for C++ to learn. I have done some searching online and most people suggest GTKmm for C++ over GTK+. Despite that fact, I have seen some C++ applications made using GTK+. ...
1
vote
2answers
314 views

GTKmm books for complete beginner? Do I need to learn GTK+ before GTKmm?

I am familiar with C++ & OOP. I really want to develop a GUI for my program running on Linux using GTKmm. However, I could not find any good book or tutorial for GTKmm. I have never done any ...
1
vote
0answers
252 views

how to easily resize a widget in gtkmm 3?

I need to find an easy way to resize a widget without have to override many virtual functions, which does not make any sense. In gtkmm 2 we could do it just by calling set_size_request(w, h), but in ...
1
vote
1answer
192 views

getting Error in gtkmm code

The error is very unusual for me.. No file name.. Not a correct line number Error is : building menus failed: Error on line 1 char 19: Odd character '’', expected an open quote mark after the equals ...
1
vote
3answers
84 views

calling const member function

i have called const member function of an object. I created an object on MainWindow, den called get_size() after setting size previously. calling get_size() method of base class Gtk::Window. It ...
1
vote
1answer
280 views

Implementing a GObject interface in C++

I try to implement a GType interface in C++ using Glibmm (part of Gtkmm). The object will be passed to an API in C. Unfortunately, the documentation for gtkmm does not cover many details of how it ...
1
vote
1answer
180 views

Add and locate widgets in Gtk::DrawingArea

Greetings to all, I would like to know whether there is a way to add and locate a Gtk::Widget in Gtk::DrawingArea. My purpose of doing that is to show some detailed information on the graphics in the ...
1
vote
0answers
114 views

Set a custom application theme with gtkmm

I am developing a small business application, and my development environment is a Linux system. Anyway, I'm using libraries like Boost/GtkMM/SQLite, so it would be easy to port it to Windows systems ...
1
vote
2answers
163 views

Clean up the code of a GTKmm application

I started a GTKMM application about 6 months ago and it's reached the point where everything works and I actually use it daily. It's essentially a database application that reads in data files from ...
1
vote
2answers
59 views

using libcluttermm-1.0 problem

i have installed clutter-1.0 from gnome site using terminal. But when i run the application, error is notified as libcluttermm-1.0 not found. Has this library not available as of now. if not what ...

1 2 3 4