我无法将 Glib::RefPtr 转换为 GtkWidget,其中 T 派生自 Widget:
#include <gtkmm/drawingarea.h>
#include <gtkmm/application.h>
#include <gtkmm/window.h>
#include <gtkmm/fixed.h>
class MyPic : public Gtk::DrawingArea {
public:
};
int main(int argc, char* argv[]) {
Gtk::Fixed f;
Gtk::DrawingArea da; // this works.
Gtk::DrawingArea mp; // this works.
Glib::RefPtr<MyPic> rp_mp; // this not.
f.put(da, 10, 20);
f.put(mp, 10, 30);
f.put(rp_mp, 10, 40); // Line # 19
}
这不会编译:
joerg> g++ x.cpp `pkg-config --cflags --libs gtkmm-3.0`
x.cpp: In function ‘int main(int, char**)’:
x.cpp:19:24: error: no matching function for call to ‘Gtk::Fixed::put(Glib::RefPtr<MyPic>&, int, int)’
x.cpp:19:24: note: candidate is:
/usr/include/gtkmm-3.0/gtkmm/fixed.h:123:8: note: void Gtk::Fixed::put(Gtk::Widget&, int, int)
/usr/include/gtkmm-3.0/gtkmm/fixed.h:123:8: note: no known conversion for argument 1 from ‘Glib::RefPtr<MyPic>’ to ‘Gtk::Widget&’
joerg> g++ --version
g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 版权所有 (C) 2011 Free Software Foundation, Inc. 这是免费软件;查看复制条件的来源。没有保修;甚至不考虑适销性或特定用途的适用性。
Glib::RefPtr 是一个智能指针,而DrawingArea是从 Widget 派生的,所以这应该可以工作。
取消引用(如f.put(*rp_mp,...)
)故意不起作用。文档指出:“*与大多数其他智能指针不同,RefPtr 不支持通过 * object_ptr.* 取消引用”
如何从SmartPtr获取Widget&?