Tagged Questions
The GIMP ToolKit (GTK+) in its version 2.x.
7
votes
2answers
73 views
Automatically sizing a GtkTextView in a GtkScrolledWindow
I work on gschem, a free software tool for editing electronics schematic diagrams. Recently we have encountered a problem using a GtkScrolledWindow containing a GtkTextView.
Context
Recent versions ...
6
votes
2answers
373 views
4
votes
1answer
73 views
Loading GTK2 in PHP fails
I already did the following:
Installed PHP 5.3.3
Installed GTK 2.0.1
Installed the latest version of php-gtk from svn
All dependencies are resolved and installed.
I edited php.ini to load the ...
3
votes
2answers
1k views
Learning GUI programming with GTK+2 or GTK+3?
I am new to GUI programming, and I haven't found yet what library is best for my purpose (i want to make desktop environment applications, eg. docks, panels, desklets etc.)
I have started learning ...
3
votes
1answer
188 views
Glade-3 for Ada
I am trying to use Glade 3 for my Ada programs on Windows 7. I found a way with version 3.6 but gtk-builder-convert was not recognized as a script. I have tried Google to find a site that explains how ...
2
votes
1answer
48 views
gtk_main() and unix sockets
I'm working on a chat application using C and Unix low level sockets. I have succeeded in making the console version, but I want to make a gui for the application.
I would linke to use gtk for the ...
2
votes
1answer
75 views
Error while installing ruby GTK2 on mac os x
I'm trying to install the gtk2 gem on my system, but I'm getting this error:
MacBook-Air-de-Mateus:~ mateusgomesfreitas$ gem install gtk2
Building native extensions. This could take a while...
...
2
votes
1answer
127 views
Sending XKeyEvent to gtk3 applications
I used following documentation to write a method in Vala to send key press events (e.g. <Ctrl>V) to the application which has the focus.
Here is the code:
public void press(string accelerator)
...
2
votes
2answers
82 views
R RGtk2 gmenu: submenu after using gaction
In the next example we have a mainmenu with aData.
How can we have a submenu with aData1 and aData2 ?
library(gWidgets)
options(guiToolkit = "RGtk2")
aData <- gaction(label="File", icon="file")
...
2
votes
1answer
86 views
How do I find out programmatically which GTK+ theme and engine are being used?
The Murrine engine hard-codes some behavior that I need to duplicate in my own code, so I need to find out whether the Murrine engine is being used, or some other one. How can I do that? Which config ...
2
votes
1answer
63 views
Can a pixbuf inserted into a GTK+ text buffer be set as “floating”?
I'm writing an application [a Pidgin plugin, actually], which inserts an image embedded into a GtkTextBuffer. Currently, I add it using:
gtk_text_buffer_insert_pixbuf(textBuffer, &iter, pixbuf);
...
2
votes
1answer
175 views
Can I load a gtkbuilder app into a “parent” gtkbuilder frame?
I am using Glade-3 to build a suite of Gtk applications.
The applications are supposed to have a common look-and-feel, and we have decided on a common "frame" that all apps will share, that includes ...
2
votes
2answers
968 views
GTK+-based graph?
I want to be able to make a line graph using GTK+ but I'm unsure how to approach this. Has anyone got any hints or tips?
1
vote
1answer
39 views
gtk networking tutorials / resources / examples
Does anyone now where i can find some good tutorials / code samples regarding networking in gtk / glib.
I'm trying to write a client application that connects to a simple server that echos back what ...
1
vote
1answer
23 views
how can I find out about child widgets position in a gtk_table
I try to figure out how can I find out about the position of a widget in a table.
I have a table containing a child widget:
tbl = gtk_table(rows=2, columns=2)
eb = gtk_event_box()
...
1
vote
2answers
59 views
Temporarily replace container with other container
I'm currently writing a GTK app that consists of a single window with a GtkListView and a button. When the user presses the button, some form shall appear that allows to insert new data to be appended ...
1
vote
1answer
37 views
Pygtk: CellRenderer using up all vertical space
I made a user interface with a ComboBox. I'm using glade so I'm doing the following at runtime
combo_box.set_model(liststore)
cell = gtk.CellRendererText()
combo_box.pack_start(cell,False)
...
1
vote
1answer
108 views
Invoke layout manager after removing buttons
I'm writing a simple calculator in GTK using Haskell and the gtk2hs bindings.
I'm trying to implement a Basic/Scientific view like in windows calculator using Glade.
I've got a GTKTable of buttons, ...
1
vote
1answer
128 views
How do I fix the “unknown attribute `swapped'” warnings from libglade?
libglade was updated and my old Glade xml file has these "swapped" attributes for signals. These attributes generate the following warnings when the file is loaded:
libglade-WARNING **: unknown ...
1
vote
2answers
371 views
how to compile gtk2.0 program with gtk3?
i have a simple program which is compiled with gtk2.0 in ubuntu.In ubuntu11.04 i installed gtk3.then i compile the same code,i got an error in the following line
/* Add a timer callback to update the ...
1
vote
1answer
126 views
Get colors of current gtk style
I use PyGTK and I want to get colors of a widget (for example bg color), I run such a code:
gdkColorToRgb = lambda gc: (gc.red//257, gc.green//257, gc.blue//257)
widget = gtk.HBox() ## for example
...
1
vote
0answers
179 views
GTK2 multthreaded app crash
I am new to GTK. I have just started looking into a large piece of multithreaded GTK2 application code which was developed and tested using GTK2-2.18.x (GTK2 version 2.18) on a proprietary system ...
1
vote
1answer
53 views
How to use my own locale for pyGTK?
I'm writing a soft using pyGTK.
I'd like to know how to force pyGTK to use my own *.mo files for GTK.
In fact my problem is, I code under Linux but I want to distribute it under Windows. To get a ...
1
vote
1answer
43 views
How to avoid magic Gtk2 accel_key numbers?
I'm want an accelerator for a subroutine in my GTK application, using the Gtk2 bindings for Perl. Gtk2::AccelGroup->connect() takes an $accel_key as argument, which seems to be an integer ...
1
vote
1answer
38 views
Is there a list of Gtk2 widgets?
Is there a list of Gtk2 widgets along with screenshots or demonstrations somewhere? I want to find out what a widget is called.
1
vote
1answer
197 views
PHP GTK button click
I'm trying to make this button change background when you click it and this is what I have:
<?php
if (!class_exists('gtk')) {
die("Please load the php-gtk2 module in your php.ini\r\n");
}
...
1
vote
1answer
68 views
PHP GTK short path
I have the following PHP GTK code located in C:\gtk
<?php
if (!class_exists('gtk')) {
die("Please load the php-gtk2 module in your php.ini\r\n");
}
$wnd = new GtkWindow();
...
1
vote
1answer
342 views
Can't scroll to the end of TreeView PyGTK / GTK
When I try to scroll down to the end of my TreeView, which is inside a ScrolledWindow, it doesn't scroll where it should but one or two lines before.
I tried several methods and they all provide the ...
1
vote
1answer
236 views
Control tab focus (choose next element to focus) with GTK / PyGTK
How can I force the Tab to focus the element I want, is it possible to give my software a list of elements to cycle focus ?
I remember once using a property called tabindex, but I can't find it ...
1
vote
0answers
48 views
ruby memory leak Gdk::PixbufLoader
So I'm beginning to wonder how leaky the gnome2 libraries for ruby1.8.6 are.
#!/usr/bin/env ruby
require 'gtk2'
while true
sleep 0.1
pixbuf = Gdk::PixbufLoader.new
pixbuf = nil
end
this ...
1
vote
3answers
129 views
glist.c: No such file or directory
I have c/gtk+ application and GList which filled three elements, when i try to run following code with gdb:
if (g_list_length(mw->img_list) > 0)
printf(">0");
else
printf("<0");
i ...
1
vote
2answers
794 views
gnope for php-gtk2 is gone?
where can i download the gnope installer to have the php-gtk2 in my machine ?, according to the online manual, it is found at gnope.org, but I am being redirected to this tradebit website,
1
vote
1answer
712 views
g_signal_connect error invalid use of member
More GTK questions, im trying to compile some code and im getting the following error:
error: invalid use of member (did you forget the ‘&’ ?)
This is comming from the g_signal_connect call:
...
1
vote
1answer
23 views
gtk2 auto translation is choosing the wrong language
Not sure if yall can help this time, as I'm just using this particular program not coding with it...
I downloaded Deluge, a free torrent app, and it requires GTK2 Runtime which I've also installed. ...
1
vote
1answer
142 views
How do I handle button presses in Gtk2::Image objects?
I've been trying to get an Gtk2::Image object in this Perl Gtk2 application to get to react to button presses, but to no avail. The image shows as expected but the button events don't get handled. ...
1
vote
7answers
335 views
Is casting an integer value to a void* an often used paradigm in callbacks?
Rather than sending an actual pointer to a value, the value is cast to a pointer. I found these examples in the GUI interface code of a GTK program.
g_signal_connect (pastebutton[pane],
...
1
vote
2answers
878 views
Need example/help with GtkTextBuffer (of GtkTextView) serialize/deserialize
I am trying to save user's bold/italic/font/etc tags in a GtkTextView.
Using GtkTextBuffer.get_text() does not return the tags.
The best documentation I have found on this is:
...
1
vote
1answer
445 views
Can someone explain Gtk2 packing?
I need to use Gtk2 for a project. I will be using python/ruby for it. The problem is that packing seems kind of mystical to me. I tried using a VBox so that I could have the following widgets in my ...
0
votes
0answers
14 views
Using GTK2 with Eclipse Ruby plugin
I installed Eclipse with Ruby plugin on Fedora. I also install GTK+ to build GUI desktop applications using Ruby. When I open Eclipse, I could not see any option to write Ruby GTK applications.
Is it ...
0
votes
0answers
46 views
GTK: display a tooltip for a gtkButton in a gtkFixed container with gtkImage as background
I want to position a gtkButton on top of a gtkImage. I do this putting both inside a gtkFixed container. The problem now is that the button's tooltip is not shown anymore, when there is an image in ...
0
votes
2answers
31 views
How to make widget to occupy all the available space in Gtk.HBox
I am implementing a custom Gtk# widget which is based on Gtk.EventBox. When I am inserting it into the HBox or VBox it occupies the exact size that is returned by OnSizeRequested method.
How can I ...
0
votes
1answer
69 views
Getting WebKit bindings to work with Perl and gkt2
I need to use WebKit in my perl + gtk2 application. Found a package Gtk2::WebKit on CPAN, but can't get it working.
cpan> install Gtk2::WebKit
gives following output:
Package webkit-1.0 was not ...
0
votes
1answer
21 views
Is it possible to user-wide replace default gtk2 widgets with compatible custom ones derived from the original
(This is an in-theory question, to scratch a personal itch, so I am not interested in "IMHO thats-not-advisable" answers, because this is just something to fix some little things, not to be installed ...
0
votes
2answers
81 views
GTK and scrolling text view
This is what I have so far
GtkWidget* createConsoleBox()
{
GtkWidget* textArea = gtk_text_view_new();
GtkWidget* scrollbar = ...
0
votes
1answer
98 views
PyGTK: access buttons in gtk.MessageDialog?
I have a function that creates prompts using gtk.MessageDialog in PyGTK. How could I access the predefined buttons? Or would I need to manually construct a gtk.Dialog? I'd rather not, seeing as ...
0
votes
1answer
28 views
Limit GtkComboBox popup height
I was finding the way to limit of height of popup window for GtkComboBox and when that height is reached the control will get scrollbars. I cannot find wa way to do that. the list flows from top to ...
0
votes
2answers
188 views
Detect which key is pressed in C
I'm trying to find a way to find out which key is pressed down in C. This will be in a graphical environment, written in GTK2, but I don't think the answer lies there. I think I might be able to do ...
0
votes
1answer
34 views
GtkWidget -> GtkToolItem function? Adding a GtkWidget to a GtkToolItemGroup
I was looking at GtkToolPalette, it looks great. But I was wondering at the possibility to add a GtkHScale to one of the groups of the palette. I've checked GtkToolItemGroup can add only items of type ...
0
votes
2answers
283 views
What Gtk signal should I use: key-press-event or key-release-event for catching return key in a GtkEntry?
I am trying to catch the enter/return key in a GtkEntry widget. Should I make a signal hander for key-press-event or key-release event?
0
votes
0answers
401 views
compiling “ettercap-ng” under Snow Leopard with MacPorts
MACPORTS ERRORS:
> Port command started with PID 58109
> Computing dependencies for
> gnome-doc-utils Building
> gnome-doc-utils Error: Target
> org.macports.build returned: shell
> ...