gobject Questions

3

Over the last few days of headaches, I've found 3 possible methods to do this, all of which have issues. PyGObject's pip install fails due to a lack of Cairo and probably other dependencies. Whil...
Urogenital asked 12/1, 2018 at 1:32

3

Solved

I have a warning when I run my GTK (Python GObject introspection) application and I can't figure out its source. When the application is loading and I'm populating a GtkListStore, after the very fi...
Impale asked 11/8, 2011 at 20:15

5

Solved

I'm trying to get pygobject-2.28.6 to compile in cygwin (version in repository is 2.28.4 which has some issues). Here is the tail of ./configure: checking for GLIB - version >= 2.24.0... yes (v...
Apostles asked 2/8, 2013 at 20:37

5

Solved

I am trying to run the following program: import gi gi.require_version('Gst', '1.0') from gi.repository import GObject, Gst Bu I am getting: Traceback (most recent call last): File "applicat...
Eon asked 14/8, 2017 at 5:10

8

I'm trying to launch python script on Ubuntu 10.04: from gi.repository import Nautilus, GObject It doesn't work: Traceback (most recent call last): File "script.py", line 1, in <module> ...
Heartbeat asked 8/5, 2014 at 15:50

2

I have one module which uses python "threading" for concurrency, and "signal" for shutdown hook: signal.signal(signal.SIGINT, self.shutdownhook) I have another module which uses dbus and gobject...
Benedic asked 5/12, 2017 at 6:16

2

Solved

I have been looking into the source code of python-mpdor and it mentions that it is gobject-based, for easy event handling (in the high-level client class). Can someone explain to me in simpl...
Frodin asked 2/7, 2012 at 20:57

2

Solved

I’m trying to create a custom audio sink plugin for gstreamer using the Gst::AudioSink as a base class. For me this involves multiple learning curves as I’m new to gstreamer, gstreamermm and gobjec...
Ungotten asked 23/4, 2018 at 17:30

1

Solved

I am trying to install totem-pl-parser-3.10.7 on my Ubuntu 14.04, and after the autogen.sh + configure end successfully, I build with make. But I receive the following error: Couldn't find include...
Kalsomine asked 27/2, 2017 at 11:50

3

Solved

I'm new to Vala. I'm not familiar with GObject. As I understand it, GObject was spun off from the GLib project from GNOME. Correct me if I'm wrong. I do like the syntax and implementation of Vala ...
Quinsy asked 3/3, 2012 at 21:26

3

Solved

What does it offer to an object oriented language such as C++? or is it not possible to use GTK+ without it? Is the GObject implementation of objects is of a similar quality to that of C++ in term...
Docila asked 5/11, 2011 at 14:1

4

Solved

Is Vala generated code are optimized like normal hand-written C code? Is there any performance overhead in using GObject system over not using it? NOTE: In my next C project I am researching over ...
Hairspring asked 12/6, 2013 at 5:37

1

Solved

do you know how do you create a custom widget in GTK 3 ? I tried to subclass GtkDrawingArea in C for hours. Gnome.org only provides a succinct tutorial on how to subclass G_OBJECT. My issue is that...
Rowley asked 13/9, 2014 at 14:58

2

Solved

I am trying to get started with GTK, but I find the documentation for signals (https://developer.gnome.org/gobject/stable/signal.html) hard to understand. It seems as there is a difference between...
Pryer asked 16/7, 2014 at 13:26

1

I write openweathermap site appindicator in python, but i need only text label in indicator without icon. But when i leave "" then show me empty icon. Why, i need only text. In Ubuntu 12.04 python-...
Laudatory asked 9/5, 2014 at 15:43

5

Solved

PyGObject appears to have no real documentation. This tutorial is as close as it gets. I've been struggling all morning simply trying to find a description of the arguments accepted by the Gtk.Wind...
Agentival asked 20/7, 2012 at 20:16

3

I just compiled exiv2 and gexiv2 for my debian machiene and now I want to start working with gexiv2 to edit IPTC data using python. The gexiv2 website presents the following line of code: from gi....
Co asked 3/10, 2013 at 4:43

3

Solved

In my plain C99 project, I have an external C library that defines an interface (via GObject interfaces) that I need to implement: void interface_function (const char *address, [...]); Now, with...
Theatricals asked 2/10, 2013 at 7:31

3

Solved

I'm repeatedly bumping into the problem of setting up signal handlers in GTK+ code, not needing several of the parameters and tempted to use the same function as the handler for several signals, wh...
Repentance asked 24/4, 2013 at 10:53

1

The standard method of creating a new element type in plugin is gobject-style "derivation" from GstElement type with all this gobject magic, like this. I'm writting a project in C++ which use GStr...
Footed asked 7/3, 2012 at 21:17

1

GObject library is really awfully documented. It's damn hard to figure the purposes of entities created. Namely, I don't get the roles of GValue, GTypeValueTable, GTypeInfo, GParamSpec and TypeData...
Forcible asked 12/2, 2013 at 19:42

1

Solved

After a handler of an instance has been blocked with g_signal_handler_block, is it possible to check if the handler is still being blocked or has been unblocked by g_signal_handler_unblock in the m...
Firehouse asked 21/1, 2013 at 0:15

1

I can't seem to get cairo regions working in within using the gintrospection. For example from gi.repository import cairo reg = cairo.Region() will give me Traceback (most recent call last):...
Loyola asked 26/5, 2011 at 4:19

1

Solved

I'm trying to develop a GTK application in Python and I'm really stuck with the correct usage of a gtk.TreeStore. My main problem: I've already parsed some JSON and I have my own data structure whi...
Sharynshashlik asked 24/6, 2012 at 15:38

6

Solved

I am comfortable with C. but need to learn GObject and Glib for gstreamer. All i found on net is Gobject reference manual. Its good but looking for tutorial for Gobject/Glib as the main focus...
Cochleate asked 1/2, 2009 at 9:43

© 2022 - 2024 — McMap. All rights reserved.