Miscellaneous¶
本节添加一些额外功能。
首先,当文件没有被修改时,可以设置禁用保存按钮。这样可以避免用户误操作。在on_press_maybe
中传入None
即可。同时,可以根据文件的修改情况设置按钮的样式。
fn toolbar_button<'a>(description: &str, callback: Option<Message>) -> Element<'a, Message> {
let font = Font::with_name("editor-icon");
let lower = description.to_lowercase();
let icon = text(match lower.as_str() {
"new" => '\u{E800}',
"open" => '\u{F115}',
"save" => '\u{E801}',
_ => ' '
}).font(font);
let is_disabled = callback.is_none();
tooltip(
button(container(icon)
.width(30) // Set the width of the button
.center_x() // Center the icon
).on_press_maybe(callback).style(
if is_disabled {
theme::Button::Secondary
} else {
theme::Button::Primary
}
),
description, tooltip::Position::FollowCursor
).style(theme::Container::Box).into()
}
同时修改toolbar_button
的调用。
// ... In `view` function
let controls = row![
toolbar_button("New", Some(Message::NewButtonPressed)),
toolbar_button("Open", Some(Message::OpenButtonPressed)),
toolbar_button("Save", if self.modified { Some(Message::SaveButtonPressed) } else { None }),
horizontal_space(Length::Fill),
pick_list(highlighter::Theme::ALL, Some(self.theme), Message::ThemeChanged)
].spacing(10);
我们可以添加不同的快捷键,以方便用户操作。
// In `impl Application for Editor`
fn subscription(&self) -> Subscription<Message> {
keyboard::on_key_press(|keycode, modifier| {
match (keycode, modifier) {
(keyboard::KeyCode::S, keyboard::Modifiers::COMMAND) => {
Some(Message::SaveButtonPressed)
},
(keyboard::KeyCode::O, keyboard::Modifiers::COMMAND) => {
Some(Message::OpenButtonPressed)
},
(keyboard::KeyCode::N, keyboard::Modifiers::COMMAND) => {
Some(Message::NewButtonPressed)
},
_ => None
}
})
}
这样,用户可以使用Command + S
来保存文件,Command + O
来打开文件,Command + N
来新建文件。
文件的标题栏通常显示文件路径,可以和左下角的状态栏保持同步。
// ... In `impl Application for Editor`
fn title(&self) -> String {
let path_text = match &self.path {
None => String::from("New file"),
Some(path) => path.to_string_lossy().to_string()
};
let suffix = if self.modified { "*" } else { "" };
format!("{}{}", path_text, suffix)
}
// ... In `view` function
let path_indicator = if let Some(error) = &self.error {
match error {
Error::DialogClosed => text("Dialog closed"),
Error::IO(kind) => text(format!("I/O error: {:?}", kind))
}
} else {
text(self.title())
};
以下为完整的main.rs
文件内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
|