gtkmm is the official C++ interface for the popular GUI library GTK+.
0
votes
0answers
14 views
Example of using webkitgtk with gtkmm 3.0
I've searched a lot, but I wasn't able to find a good example explaining how to use webkitgtk with gtkmm 3.0.
Anyone knows about it?
Is there some good tutorial, or sample code?
Thanks in advance!
0
votes
1answer
27 views
gtkmm glib gio critical
On running the following simple.cc example for gtkmm
#include <gtkmm.h>
int main(int argc, char * argv[]){
Glib::RefPtr<Gtk::Application> app
= ...
0
votes
0answers
23 views
Get pixel value on Gdk::Pixbuf, Set pixel value with Gdk::Cairo
I'm using a Gdk::Pixbuf to display an image with Gdk::Cairo in C++ :
virtual bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr)
{
Glib::RefPtr<Gdk::Pixbuf> image = ...
-2
votes
0answers
19 views
How to make your own gtkmm widget textview/gtksourceview, becuase this widget do not allow rectangular selection like vim or jedit.
I want to implement my own text editor using gtkmm in c++, I wanted to use gtkmmsourceview but it has not rectangular selection, implementing such functionality is very important for me. so I decided ...
1
vote
0answers
19 views
Remove border from a notebook
I have a GtkNotebook and inside a GtkScrollView with a GtkImage. The Notebook is at the bottom-right side of the window (above is the toolbar, to the left is an options pane), and I would like to ...
0
votes
0answers
35 views
altering GTK::Image using GTK::pixbuff. Image is not redrawn. (solved)
I'm trying to make the pixels of a png file visible which where hidden by setting the alpha value to 0.
I've bound the following code to execute when a button is hit:
uint32_t width, height, i;
...
0
votes
0answers
21 views
How to Notebook::append_page a VBox widget as child in gtkmm
I want to ask you how i can Notebook::append_page a Vbox widget as child in Gtkmm. In my Vbox objetc, i have Label. The problem is that nothing appears in the first tab in runtime.
I have this ...
0
votes
1answer
67 views
How can I solve this conflict between Opencv and GTKmm?
I would use the OpenCV libraries into a program using the Gtkmm graphic interface but when I try to open an image with cv::imread, there is an error message during the execution : gtk-error ** Using ...
0
votes
1answer
39 views
Connect to Gtk::Window signal_delete_event
I want to connect a signal to window.signal_delete_event, but it fails with the following error messages:
no match for call to ‘(sigc::bound_mem_functor0) (_GdkEventAny* const&)’ OpticalInput
...
0
votes
1answer
54 views
gtkmm-2.4-dev for Mac OS X
I'm trying to install gtkmm-2.4-dev for Mac OS X using fink.
sudo fink install gtkmm-2.4-dev
But I get the following response:
Failed no package found for specification 'gtkmm-2.4-dev'!
I know ...
3
votes
2answers
122 views
Gtkmm scroll_event do not work when a button is pressed
I have an Gtk::EventBox with two events connected: button_press_event and scroll_event.
All the two events work fine, but when I hold down a mouse button, the scroll event is not emitted.
I have ...
0
votes
1answer
54 views
Undefined reference to error is showing an extra parameter for my function, GTKMM C++
I am writing a snakes and ladders game and I defined a function called draw_snake as follows:
void draw_snake(const Cairo::RefPtr<Cairo::Context>& cr,
...
1
vote
0answers
34 views
How can I show an image widget on top of a Button
refBuilder->get_widget("image1", image);
if(image){
pButton1->set_image(*image);
//Glib::PropertyProxy<bool> prop;
...
0
votes
1answer
93 views
How can I get pkg-config to work within eclipse juno (Mac OS X)?
I try to get gtkmm running within eclipse. This is my makefile (without the cleaning):
all : main.cpp
@export PATH+=/opt/local/bin;
@echo PATH=$(PATH);
g++ -v `pkg-config gtkmm-2.4 --cflags` \
...
0
votes
1answer
25 views
Anyway to pass parameters to a method called when a Gtkmm button is pressed?
I'm working on a gtkmm program and I would like to have a button that, when pressed, changes a given variable. For intensive purposes lets say I can't make this variable global. Is it still possible ...
0
votes
1answer
40 views
Conflicting declarations in gtkmm headers
I'm beginning to think I need to scrap everything and redo it from scratch.
I've been manually adding libraries from GTK and gtkmm in the codeblocks compiler settings, when I finally see something ...
1
vote
1answer
25 views
How to delete the user_data in a custom TreeModel in in gtkmm?
I create user_data something like this:
bool
MyTreeModel::iter_nth_root_child_vfunc (int index, iterator & iter) const
{
iter .gobj () -> user_data = new UserData (...);
return true;
}
...
0
votes
1answer
78 views
gdkmm: how to destroy gdk window?
Status quo:
I have a custom widget (MyWidget) with an event window.
Problem: if I create, show and then, later, hide and destroy the widget I get the following message from the application:
...
0
votes
2answers
62 views
Gtkmm 3.0: How to get user class data in on_draw method of DrawingArea
In my first Gtkmm 3.0 program, I’m having trouble with the program structure and getting access to my class data from a DrawingArea class.
Based on a demo program from the gnome website (“Drawing ...
0
votes
1answer
84 views
c++ gtkmm 3.0 How to access argc, argv
I'm trying to get the right structure for my first gtk application which will simulate a board game. I have a single command line argument which is a filename.
I'm going to read this file within my ...
0
votes
0answers
31 views
Setting a Gtk::ComboBoxText to non editable
how would I set a Gtk::ComboBoxText to non-editable, what I mean here is there may be say 10 selections in the combo box to choose from how can I make it so your simply not allowed to choose something ...
0
votes
1answer
23 views
Error Creating Gtk::Dialog
I am trying to create a dialog when a button is cicked. The function that is called when the button is clicked is this:
void clicked(){
const std::string title = "Title";
Gtk::Dialog *m_dialog(title, ...
0
votes
1answer
27 views
gtkmm is it possible to add same widget to a vbox more than once
Here is my problem. I have this form of information I want to display. I have already made a vbox in another class that contains this information.
The information is about their additional work ...
0
votes
1answer
61 views
GTK++ Window Confusion
I am experimenting with GTK++ on Ubuntu and I'm not having much luck. Just for testing purposes, I wanted to see if I could get a Boolean describing whether or not a window is resizable. Here is my ...
0
votes
0answers
19 views
override signal handler in gtkmm
I struggled with the following code. My signal handler on_button_press_event() is never called but I have no idea why. Could someone have a look on it? Maybe someone is able to run through the gtkmm ...
0
votes
1answer
37 views
GTKMM Error: Void Value Not Ignored As it Ought to Be
I am trying to create a simple window in GTKMM that contains a box. I've got the window part working, but I can't get my box code to work. I am following along with this tutorial
I think the tutorial ...
-1
votes
2answers
75 views
gtkmm for desktop application
Is it a good idea to use gtkmm gui toolkit for some desktop client application ?
Is this toolkit stable and is there enough documentation online ?
0
votes
1answer
86 views
Trace/breakpoint trap (core dumped) Gtkmm
This Is HomeWork
Hey im using Gtkmm for an Assignment and i have been doing well with it all and all however im getting an odd problem in a function i use to fill a TreeView u get the error
...
0
votes
1answer
64 views
Gtkmm TreeView: Accessing dynamically added columns
I'm currently doing this to add numCols columns to a TreeView (ColumnRecord columns):
Gtk::TreeModelColumn<Glib::ustring>* c;
for( int i = 0; i < numCols; i++ ) {
c = new ...
0
votes
0answers
66 views
Learning Gtkmm, can not display the button anchored in a textview
I am learning gtkmm, and I found an textview example in the gnome.org:
https://developer.gnome.org/gtkmm-tutorial/2.22/sec-textview-examples.html.en
I change the fill_buffers() code to add button ...
0
votes
0answers
54 views
Gtkmm TreeView: Search across multiple columns
Is there a way to have multiple search entries for one TreeView, each for a different column, or having one search entry handle all columns? The effect I'm looking for is (for example) having three ...
0
votes
1answer
134 views
gtkmm - multiple windows/popup window
I've been searching a lot and I still can't find a good example of how to have multiple windows inside the same application with GTK. My program is in C++ but I don't mind an example in C which would ...
-1
votes
1answer
246 views
Building a graphical user interface for an existing large C++ code [closed]
I'm currently developing on a tool with some existing large C++ code. I'm currently thinking about using a model-view-controller (MVC) design. The model should contain all the C++ code. The view is ...
0
votes
0answers
4 views
goocanvasmm grouping method does not works
While adding items into goovanvasmm group, the child number of group becames -1. But it should show a positive integer value. For ex, If we have rect1, ellipse1, text1 means total child numbers are 3. ...
0
votes
0answers
84 views
Code blocks gtkmm error in list.h
I try to use gtkmm with code blocks. I installed everything but it shows me error in list.h
Error is in line
namespace Gdk {
Error message is
C:\gtkmm\include\gdkmm-2.4\gdkmm\list.h|4|error: ...
0
votes
0answers
109 views
Code Blocks libsigc++ error
I try to use gtkmm with code blocks. I installed everything but it shows me error in libsigc++ header signal.h
fatal error: list: No such file or directory
I couldn't find what is wrong...
The ...
0
votes
1answer
32 views
How to connect a Toolbar Button to a Slot of another Widget?
I'am trying some tutorials with Glade and GTKmm. For now I have a Main Window with a Toolbar. This is my Main Menu. Every Toolbarbutton should trigger the "show" and "hide" option of a widget.
In this ...
0
votes
0answers
58 views
clipping in gtk+/gtkmm
I already asked a while ago for a simple drawing area where I can draw simple items like boxes and lines. I started to use goocanvasmm, but I now all washed up at clipping some lines in a box. I could ...
0
votes
0answers
20 views
how to clip region in gtkmm goocanvasmm
I have a lot of rect objects in a canvas, created like this:
m_rect = Goocanvas::Rect::create(...)
Glib::RefPtr<Goocanvas::Item> root = canvas->get_root_item();
root->add_child( m_rect);
...
0
votes
0answers
38 views
How to give color to widgets using css in gtkmm3?
I am currently working with Gtkmm3. Would you please tell me how to give color to widgets(label,window,textbox, menu, toolbar etc.,) using css in gtkmm3. Please give any sample program. Thanks in ...
0
votes
0answers
20 views
breaking a gtk UI into seperate header and source files
I am creating a gtkmm application using unbutu and c++, this app is to create teaching assistant applications, what i am currently doing is creating a sequential interfaces in which there are multiple ...
0
votes
1answer
65 views
gtkmm linker error
Hello stackoverflow:),
I am compiling a basic gui program that takes sums of 2 doubles and prints them out. My code is actually pretty simple, I will first post the 3 files that I compile by ...
3
votes
1answer
75 views
How to transpose cairo context or change the orientation of an axis?
I need to visualize a playing field for a robot game. Unfortunately, the game uses a right handed coordinate system, with the y axis pointing up.
Is there a way to adjust the cairo context of a ...
1
vote
1answer
263 views
C++ multiple inheritance and access specifiers: inherit from a base class and its derived
This is an unexpected issue I've run into. I'm writing a GUI application, and I use two classes from the GUI library: a Model class and a View class. The Model contents are rendered by the View class ...
0
votes
1answer
40 views
Whats the datatype of a Glade file?
following the official tutorial of gtkmm 3, this is how to instantiate a glade file:
Glib::RefPtr<Gtk::Builder> builder=Gtk::Builder::create_from_file("basic.glade");
So, what's the datatype ...
0
votes
0answers
22 views
in Gtkmm how to retrieve data from combo boxes
I'm currently writing an application in which I have 3 combo boxes for day/year/month, I'm wondering how to retrieve the data currently selected from the combo box and save it when a button is ...
0
votes
0answers
69 views
how to set gtkmm window to open in the centre of the screen?
I am trying make my windows in GTKmm open in the centre of the screen and I can't find a working solution anywhere online. Any insights?
I have been trying everything I can think of with no ...
0
votes
1answer
29 views
Acessing fields in a gtkmm ComboBoxText
I am having some troubles using the get_active text function on the ComboBoxText instances in my program. The error i get is
(out:4258): GLib-CRITICAL **: g_utf8_collate: assertion `str2 != NULL' ...
0
votes
0answers
29 views
How to implement editable text objects(photoshop/gimp/inkscape like text tool) in goocanvasmm using gtkmm3?
I am programming with gtkmm3 and goocanvasmm. How to implement photoshop/gimp/inkscape like editable text objects(text tool) ? After clicked text tool, a cursor should appear in window(canvas) to type ...
0
votes
0answers
31 views
How to create splash window in gtkmm3?
I am using gtkmm3(gtk c++ version) with glade. Would you please tell me how to create and show splash window ? If possible means give an example program. Thanks in advance...




