Questions tagged [clutter]

An open source software library for creating dynamic graphical user interfaces.

Clutter is an open source (LGPL 2.1) software library for creating fast, compelling, portable, and dynamic graphical user interfaces.

Clutter uses OpenGL for rendering (and optionally OpenGL|ES for use on mobile and embedded platforms), but wraps an easy to use, efficient, flexible API around GL's complexity.

155 questions
2
votes
2 answers

good or bad: to make giant struct to avoid using globals / properties of a struct / lots of paramerters

I'm kind of a beginner, and I have gone off written a 10000 line program which mostly uses globals and void functions, in c++. Anyways, my program doesn't have a GUI, so I am making one for it using Clutter. So in clutter, you use a signal…
MVTC
  • 845
  • 11
  • 28
2
votes
1 answer

Missing debug info when debugging vala/clutter program in Nemiver

I'm new to vala/clutter development and trying to setup Nemiver to debug my vala/clutter programs. I'm using monodevelop to edit and build the clutter-demo example from the vala web page. I am passing the compiler the --pkg clutter-1.0 -g…
2
votes
1 answer

Persistent Logging in Gnome-Shell-Extension development?

I'm trying around with the Javascript-based bindings to build an own Gnome-Shell-Extension which just embeds an webkitview. But the following 3 lines let completely crash the gnome-shell (top panel disappears, need to re-login to start it again).…
kraiz
  • 2,178
  • 1
  • 22
  • 22
2
votes
1 answer

How can I get a window's icon name in Xorg?

I am attempting to get a window's icon name with python, for use in a pyclutter-based taskbar. I have gotten the XID via wnck, but wnck seems to only be capable of giving me a gtk.gdk.Pixbuf, which is not useful for clutter. I am sure there is some…
crazedpsyc
  • 65
  • 1
  • 4
2
votes
2 answers

Python binding for clutter-gtk and clutter-gsk

I'm using python and want to embed gtk3 widgets in clutter stage. However, it seems pyclutter-gtk and pyclutter-gsk has been stopped for a while. Is there any alternative binding that we can use in python? I tried google but with no luck. There's…
Derek Wu
  • 25
  • 5
2
votes
1 answer

How can I add a hyperlink to a ClutterText actor?

I've got a ClutterText object that I'd like to make display a clickable hyperlink. ClutterText has the option to use Pango markup but apparently not a way to mark a hyperlink. Is there an easy way of doing this?
Kazade
  • 1,297
  • 2
  • 15
  • 25
2
votes
0 answers

How do I detect events on a group in PyClutter?

I am trying to detect mouse clicks (and other events) on groups in PyClutter. But they don't seem to trigger anything. Here is what I have: import clutter col = clutter.Color(1, 0, 0) r1 = clutter.Rectangle(col) r2 =…
Skyler
  • 909
  • 1
  • 10
  • 24
2
votes
2 answers

Casting ClutterActor* to ClutterStage*

I am exploring the possibility of creating a Clutter binding for the D language ( http://d-programming-language.org/) and have started by trying some simple tests using dynamic loading of libclutter. I've run into a problem that might derive from…
Justin W
  • 2,077
  • 12
  • 17
2
votes
1 answer

Borderless window in clutter(mm)

I'm trying to use cluttermm to create a borderless window (for example, something like this). In other words, I want to draw a rectangle on screen and some text on it, but NOT in a window, and NOT with borders. Is clutter a really bad choice for…
WhyNotHugo
  • 9,423
  • 6
  • 62
  • 70
2
votes
1 answer

Python Clutter: Set display?

How does one set the X11 display in Python-Clutter? I am trying to set it to XSCREENSAVER_WINDOW. I have tried importing clutter.x11 and using set_display(), but this doesn't seem to be the correct command. Does anyone know the right way of doing…
Joel Auterson
  • 728
  • 1
  • 7
  • 26
2
votes
1 answer

Effect behind a Clutter Actor

How would it possible to make an actor apply an effect on what's behind itself in Clutter ? For example it could be a blur effect and we'd have something like this : It is possible to add a ClutterEffect to an Actor but this will apply to the…
Jecimi
  • 4,113
  • 7
  • 31
  • 40
2
votes
1 answer

ClutterShaderEffect with gnome extension

The purpose of my project is to implement a shader and attach it on stage. I want a whole screen deformation using JS gnome extension system. (I did it in C and recompile gnome but I would like to use a technology without any compilation…
2
votes
1 answer

Zooming into a Clutter CairoTexture while re-drawing

I am using python-clutter 1.0 My question in the form of a challenge Write code to allow zooming up to a CairoTexture actor, by pressing a key, in steps such that at each the actor can be re-drawn (by cairo) so that the image remains high-res but…
Donn
  • 121
  • 1
  • 8
2
votes
1 answer

How can your gnome-shell-extension grab key focus?

I have a BoxLayout with multiple actors in it. One of the actors is a St.Entry. I want this Entry to have keyboard-focus, so when the window is created, I can start typing right away. I already found the "grab_key_focus()" method, but if I call…
Algram
  • 94
  • 11
2
votes
2 answers

In Gtk, is it possible to make widgets fade in and out?

I would like to have a Label (or at least the text on the label) do a quick fade-in. It looks like this is possible in clutter, but I don't want to use clutter until clutter-sharp is packaged for Ubuntu. Is there any way to do this that doesn't…
Matthew
  • 28,056
  • 26
  • 104
  • 170
1
2
3
10 11