通过the GTK+ book中第10章的教程代码,我遇到了glade和解释输出之间的以下不一致。在我看来,工具栏(垂直对齐框中的第一个元素)设置为展开,但我特别禁用了它,并为同一vbox中的第三个元素GtkTreeView启用了它。
林间空地:
应用程序:
这是相关的Glade XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.18.3 -->
<interface>
  <requires lib="gtk+" version="3.12"/>
      [...]
      <object class="GtkToolbar" id="toolbar1">
        <property name="visible">True</property>
        <property name="can_focus">False</property>
        <property name="margin_bottom">123</property>
        <property name="toolbar_style">both</property>
        <property name="show_arrow">False</property>
        <property name="icon_size">2</property>
      </object>
      <packing>
        <property name="expand">False</property>
        <property name="fill">False</property>
        <property name="position">0</property>
      </packing>
      [...]
</interface>

由这个简单的main()加载:
void on_back_clicked(GtkToolButton *button);
void on_forward_clicked(GtkToolButton *button);
void on_up_clicked(GtkToolButton *button);
void on_refresh_clicked(GtkToolButton *button);
void on_home_clicked(GtkToolButton *button);
void on_delete_clicked(GtkToolButton *button);
void on_information_clicked(GtkToolButton *button);
void on_go_clicked(GtkToolButton *button);
void on_location_activate(GtkEntry *entry);
void on_row_activated(GtkTreeView *treeview, GtkTreePath *treepath, GtkTreeViewColumn *column);

int main(int argc, char *argv[])
{
    GtkWidget *window;
    GtkBuilder *builder;

    gtk_init(&argc, &argv);
    builder = gtk_builder_new_from_file("browser.glade");
    window = GTK_WIDGET(gtk_builder_get_object(builder, "applicationwindow1"));

    gtk_builder_connect_signals(builder, NULL);

    gtk_widget_show_all(window);
    gtk_main();

    return 0;
}

当应用程序运行时,我还收到以下错误:
(browser:4672): Gtk-CRITICAL **: gtk_application_get_menubar: assertion 'GTK_IS_APPLICATION (application)' failed

有什么线索说明这两种情况吗?

最佳答案

好吧,那太傻了。正如现在读到的任何人都可能看到的那样,我设法添加了123像素的底边距,却没有注意到。这是我第一次使用格拉德,我有点累,所以我很快就慌了。
无论如何,感谢ptomatodrahnr指引我正确的方向。

关于c - Glade布局在编译时未反射(reflect)/GTK_IS_APPLICATION断言失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24946745/

10-11 04:03