我有一个使用 gtkmm 2.4 的应用程序,它运行良好,直到我最近改用 gtkmm 3.0。我在使用 g++(版本 4.6.1)时遇到问题,它不断吐出错误“错误:'class Gtk::TextView' 没有名为'modify_font'的成员”。当我将构建包含恢复到 gtkmm 2.4(通过更改pkg-config gtkmm-3.0 --cflags --libs
回 gtkmm-2.4)时,情况并非如此。
我跟着标题返回(从代码::块中),函数标题肯定在那里。看起来 Gtk::Widget::modify_font 也没有贬值。
关于 Gtk::TextView 我的类层次结构的示例:
// The parent of the offending TextView
class popupWindow : public Gtk::Window
{
public:
popupWindow();
private:
Gtk::TextView theView;
Gtk::ScrolledWindow scrollView;
Gtk::VBox layoutBox;
Glib::RefPtr<Gtk::TextBuffer> textBuffer;
};
// The main window class
class mainWindow : public Gtk::Window
{
private:
popupWindow foo;
};
// Part of the header where I try and set the modified font
popupWindow::popupwindow() : layoutBox(false, 8)
{
// Modify the font styling of the TextView
{
Pango::FontDescription fdesc;
fdesc.set_family("monospace");
fdesc.set_size(10 * PANGO_SCALE);
theView.modify_font(fdesc);
}
// Make a new text buffer
textBuffer = Gtk::TextBuffer::create();
add(layoutBox);
layoutBox.pack_start(scrollView);
scrollView.add(theView);
theView.set_buffer(textBuffer);
}