btcli_lib/ui/about.rs
1// Copyright (C) 2026 S.A. (@snoware)
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
7use cursive::views::{Dialog, TextView};
8
9pub fn build_about_view() -> Dialog {
10 let about_text =
11 "btcli - 百度翻译命令行工具\n\n版本: 0.5.0\n作者: S.A. (@snoware)\n许可证: MPL-2.0";
12
13 Dialog::around(TextView::new(about_text))
14 .title("关于")
15 .button("关闭", |s| {
16 let _ = s.pop_layer();
17 })
18}