我正在尝试将文件夹图标作为纹理加载。我现在已经尝试了几乎所有的东西,但由于某种原因我无法让它工作
我认为this thread正是我正在寻找的,但它太先进了。我现在想要它很简单。
由于某种原因,我无法让this工作/翻译它。
这是我最终得到的代码。不知道现在该做什么。
class nicholas
{
Gtk.Window window;
GtkClutter.Embed clutter;
Clutter.Rectangle r;
Clutter.Texture t;
public nicholas ()
{
window = new Gtk.Window ();
clutter = new GtkClutter.Embed ();
var stage = clutter.get_stage () as Clutter.Stage;
stage.background_color = Clutter.Color.from_string ("black");
var o = new Cogl.Texture.from_file("/usr/share/icons/gnome/48x48/places/folder.png", Cogl.TextureFlags.NONE, Cogl.PixelFormat.ANY);
t = new Clutter.Texture.set_cogl_texture(o);
t.x = 80;
t.y = 80;
stage.add_child (t);
window.add (clutter);
window.destroy.connect (Gtk.main_quit);
window.set_default_size (500, 300);
window.show_all ();
}
}
public static void main (string [] args)
{
GtkClutter.init (ref args);
nicholas nicholas = new nicholas ();
Gtk.main ();
}
答案 0 :(得分:0)
我没有看到任何关于Emmanuele答案的任何进展......这是一个Vala端口,有一些额外的代码可以实际使用Clutter.Image
作为Clutter.Actor
的内容:
private static Clutter.Actor create_clutter_actor_from_file (string filename) throwsGLib.Error {
Gdk.Pixbuf pixbuf = new Gdk.Pixbuf.from_file (filename);
Clutter.Image image = new Clutter.Image ();
image.set_data (pixbuf.get_pixels (),
pixbuf.has_alpha ? Cogl.PixelFormat.RGBA_8888 : Cogl.PixelFormat.RGB_888,
pixbuf.width,
pixbuf.height,
pixbuf.rowstride);
Clutter.Actor actor = new Clutter.Actor ();
actor.content = image;
actor.set_size (pixbuf.width, pixbuf.height);
return actor;
}