gpt4 book ai didi

rust - 在 GTK4 中制作可点击框

转载 作者:行者123 更新时间:2023-12-02 01:53:29 28 4
gpt4 key购买 nike

如何在 gtk_rs 中使 gtk4::Box 可点击?

在 GTK3 中,似乎使用 EventBox 是实现此目的的方法,但在 GTK4 中:

Stop using GtkEventBox

GtkEventBox is no longer needed and has been removed.

All widgets receive all events.

https://docs.gtk.org/gtk4/migrating-3to4.html#stop-using-gtkeventbox

所以看起来点击处理程序现在应该直接附加到小部件。但是,我找不到任何关于如何执行此操作的明确文档或示例。

如果有人能给我一个将点击监听器附加到 gtk4::Box 的示例,我将不胜感激。

最佳答案

您可以使用 gtk::GestureClick 执行此操作如此所示 example .

这是一个完整的例子(点击窗口内的某处,因为框实际上是不可见的):

use gtk::prelude::*;
use gtk::{Application, ApplicationWindow};

fn main() {
// Create a new application
let app = Application::builder()
.application_id("org.gtk-rs.example")
.build();

// Connect to "activate" signal of `app`
app.connect_activate(|app| {
build_ui(app);
});

// Run the application
app.run();
}

fn build_ui(app: &Application) {
// Create a window and set the title
let window = ApplicationWindow::builder()
.application(app)
.title("My GTK App")
.build();

// Create a box
let gtk_box = gtk::builders::BoxBuilder::new()
.height_request(200)
.width_request(300)
.build();

// Assign a click listener
let gesture = gtk::GestureClick::new();
gesture.connect_released(|gesture, _, _, _| {
gesture.set_state(gtk::EventSequenceState::Claimed);
println!("Box pressed!");
});
gtk_box.add_controller(&gesture);

// Add the box
window.set_child(Some(&gtk_box));

// Present window to the user
window.present();
}

一个更复杂的例子

假设您实际上也想看到该框,并可能提供一些关于鼠标悬停的用户反馈。然后,您将需要使用 CSS 规则来实现这一目标。

将您的 main.rs 更改为:

use gtk::gdk::Display;
use gtk::{CssProvider, StyleContext, prelude::*};
use gtk::{Application, ApplicationWindow};

fn main() {
// Create a new application
let app = Application::builder()
.application_id("org.gtk-rs.example")
.build();

// Connect to "activate" signal of `app`
app.connect_activate(|app| {
// Load a CSS stylesheet from the included bytes.
let provider = CssProvider::new();
provider.load_from_data(include_bytes!("style.css"));

// Give the CssProvider to the default screen so the CSS rules are
// applied to the window.
StyleContext::add_provider_for_display(
&Display::default().expect("Error initializing gtk css provider."),
&provider,
gtk::STYLE_PROVIDER_PRIORITY_APPLICATION,
);

build_ui(app);
});

// Run the application
app.run();
}

fn build_ui(app: &Application) {
// Create a window and set the title
let window = ApplicationWindow::builder()
.application(app)
.title("My GTK App")
.build();

// Create a box
let gtk_box = gtk::builders::BoxBuilder::new()
.height_request(200)
.width_request(300)
.margin_bottom(20)
.margin_end(20)
.margin_start(20)
.margin_top(20)
.css_classes(vec![String::from("hover-box")])
.build();

// Assign a click listener
let gesture = gtk::GestureClick::new();
gesture.connect_released(|gesture, _, _, _| {
gesture.set_state(gtk::EventSequenceState::Claimed);
println!("Box pressed!");
});
gtk_box.add_controller(&gesture);

// Add the box
window.set_child(Some(&gtk_box));

// Present window to the user
window.present();
}

并在 src/ 目录(main.rs 所在目录)中创建一个 style.css 文件内容:

.hover-box {
background-color: blue;
border-radius: 5px;
}

.hover-box:hover {
background-color: rgb(11, 133, 240);
border-radius: 5px;
}

现在你得到了一个 gtk4::Box,它有一个 5px 的边框半径和 blue 背景颜色,当你将鼠标悬停在盒子。

关于rust - 在 GTK4 中制作可点击框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69891299/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com