使用gtk crate

时间:2015-07-12 07:14:49

标签: gtk rust

我正在尝试在Rust中编写简单的GTK应用程序,但是遇到了无法向菜单项添加信号的问题。有简化的代码来重现问题:

Glade文件(“interface.glade”):

<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.16.1 -->
<interface>
  <requires lib="gtk+" version="3.10"/>
  <object class="GtkWindow" id="window1">
    <property name="can_focus">False</property>
    <child>
      <object class="GtkBox" id="box1">
        <property name="visible">True</property>
        <property name="can_focus">False</property>
        <property name="orientation">vertical</property>
        <child>
          <object class="GtkMenuBar" id="menubar1">
            <property name="visible">True</property>
            <property name="can_focus">False</property>
            <child>
              <object class="GtkMenuItem" id="menuitem1">
                <property name="visible">True</property>
                <property name="can_focus">False</property>
                <property name="label" translatable="yes">File</property>
                <property name="use_underline">True</property>
                <child type="submenu">
                  <object class="GtkMenu" id="menu1">
                    <property name="visible">True</property>
                    <property name="can_focus">False</property>
                    <child>
                      <object class="GtkImageMenuItem" id="FileMenu">
                        <property name="label">gtk-new</property>
                        <property name="visible">True</property>
                        <property name="can_focus">False</property>
                        <property name="use_underline">True</property>
                        <property name="use_stock">True</property>
                      </object>
                    </child>
                  </object>
                </child>
              </object>
            </child>
          </object>
          <packing>
            <property name="expand">False</property>
            <property name="fill">True</property>
            <property name="position">0</property>
          </packing>
        </child>
        <child>
          <placeholder/>
        </child>
      </object>
    </child>
  </object>
</interface>

Rust代码(“main.rs”):

extern crate gtk;

mod example {
    use gtk;
    use gtk::traits::*;
    use gtk::signal::Inhibit;
    use gtk::widgets::{
        Builder,
        MenuItem
    };
    use gtk::Window;

    pub fn main() {
        gtk::init().unwrap_or_else(|_| panic!("Failed to initialize GTK."));
        let builder = Builder::new_from_file("./interface.glade").unwrap();
        let window: Window = builder.get_object("window1").unwrap();

        window.connect_delete_event(|_, _| {
            gtk::main_quit();
            Inhibit(true)
        });

        let file_menu: MenuItem = builder.get_object("FileMenu").unwrap();
        file_menu.connect_activate(|_| {
            println!("Activated");
        });

        window.show_all();
        gtk::main();
    }
}

fn main() {
    example::main()
}

当我尝试编译它时,我收到一个错误:

src/main.rs:24:19: 26:11 error: no method named `connect_activate` found for type `gtk::widgets::menu_item::MenuItem` in the current scope
src/main.rs:24         file_menu.connect_activate(|_| {
src/main.rs:25             println!("Activated");
src/main.rs:26         });
src/main.rs:24:19: 26:11 note: the method `connect_activate` exists but the following trait bounds were not satisfied: `gtk::widgets::menu_item::MenuItem : gtk::traits::button::ButtonTrait`

我做错了吗?

1 个答案:

答案 0 :(得分:3)

  

我做错了吗?

是的!您没有阅读并解决错误消息:

  

方法connect_activate存在,但不满足以下特征限制:gtk::widgets::menu_item::MenuItem : gtk::traits::button::ButtonTrait

当然,此错误消息的措辞是钝的。它说类型MenuItem没有实现特征ButtonTrait。说实话,这是我第一次看到错误信息的这一特定措辞,所以我可能有点不对劲。如果您查看MenuItem的文档(1),您可以看到它没有实现ButtonTrait。这使您无法调用该方法。

我不知道合适的解决方法是什么。我没有看到任何examples that use MenuItem。 3个链接的示例项目也不使用它。完全有可能它还没有实现所有适当的特性。也许这对你来说是一个很好的机会,让你有机会参与一个即将到来的项目! ^ _ ^

我也找不到任何允许您直接拨打connect的后备方法或特征。

(1):我希望我可以链接到文档,但是我找不到官方托管的版本。