initial windows support

This commit is contained in:
ochibani 2024-12-04 21:24:38 +02:00
parent 172616d5fe
commit f80ad41188
9 changed files with 1248 additions and 478 deletions

1651
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0.86"
async-std = {version = "1.12.0", features = ["attributes"]}
blue-recorder-core = { git = "https://github.com/ochibani/blue-recorder-core.git", rev = "fb3ff78" }
blue-recorder-core = { git = "https://github.com/ochibani/blue-recorder-core.git", rev = "85c9d8f" }
cpal = "0.15.3"
dark-light = "1.0.0"
dirs = "4.0.0"

View File

@ -423,7 +423,7 @@
</object>
</child>
<child>
<object class="GtkCheckButton" id="trayswitch">
<object class="GtkCheckButton" id="areaswitch">
<property name="label" translatable="yes">checkbutton</property>
<property name="visible">True</property>
<property name="can-focus">True</property>
@ -437,9 +437,9 @@
</object>
</child>
<child>
<object class="GtkCheckButton" id="areaswitch">
<object class="GtkCheckButton" id="trayswitch">
<property name="label" translatable="yes">checkbutton</property>
<property name="visible">True</property>
<property name="visible">False</property>
<property name="can-focus">True</property>
<property name="receives-default">False</property>
<property name="active">True</property>

View File

@ -147,8 +147,8 @@ show-area = Show Area
# Show mouse label
show-mouse = إظهار مؤشر الفأرة
# Show tray icon
show-tray = Show Tray
# Minimize to tray icon
tray-minimize = Minimize to tray
# Video bitrate label
video-bitrate = B/Video:
@ -173,9 +173,10 @@ video-bitrate-tooltip = Set video bitrate in KB/s
record-tooltip = يبدأ تسجيل الشاشة
screen-tooltip = يحدد الشاشة ليسجلها
show-area-tooltip = Show selected area during record
show-tray-tooltip = Show tray icon
speaker-tooltip = Speakr sound recording
stop-tooltip = وقف تسجيل الشاشة
tray-minimize-tooltip = Minimize application to tray icon
video-tooltip = يسجل الشاشة
wayland-tooltip = غير مدعوم في وايلاند
window-tooltip = يحدد نافذة ليسجلها
windows-unsupported-tooltip = Not supported in windows platform

View File

@ -147,8 +147,8 @@ show-area = Show Area
# Show mouse label
show-mouse = إظهار مؤشر الفأرة
# Show tray icon
show-tray = Show Tray
# Minimize to tray icon
tray-minimize = Minimize to tray
# Video bitrate label
video-bitrate = B/Video:
@ -173,9 +173,10 @@ video-bitrate-tooltip = Set video bitrate in KB/s
record-tooltip = يبدأ تسجيل الشاشة
screen-tooltip = يحدد الشاشة ليسجلها
show-area-tooltip = Show selected area during record
show-tray-tooltip = Show tray icon
speaker-tooltip = Speakr sound recording
stop-tooltip = وقف تسجيل الشاشة
tray-minimize-tooltip = Minimize application to tray icon
video-tooltip = يسجل الشاشة
wayland-tooltip = غير مدعوم في وايلاند
window-tooltip = يحدد نافذة ليسجلها
windows-unsupported-tooltip = Not supported in windows platform

View File

@ -144,8 +144,8 @@ show-area = Show Area
# Show mouse label
show-mouse = Show Mouse
# Show tray icon
show-tray = Show Tray
# Minimize to tray icon
tray-minimize = Minimize to tray
# Video bitrate label
video-bitrate = B/Video:
@ -170,9 +170,10 @@ video-bitrate-tooltip = Set video bitrate in KB/s
record-tooltip = Start screen record
screen-tooltip = Select screen to record
show-area-tooltip = Show selected area during record
show-tray-tooltip = Show tray icon
speaker-tooltip = Speakr sound recording
stop-tooltip = Stop screen recording
tray-minimize-tooltip = Minimize application to tray icon
video-tooltip = Video recording
wayland-tooltip = Not supported in Wayland
window-tooltip = Select window to record
windows-unsupported-tooltip = Not supported in windows platform

View File

@ -144,8 +144,8 @@ show-area = Show Area
# Show mouse label
show-mouse = Show Mouse
# Show tray icon
show-tray = Show Tray
# Minimize to tray icon
tray-minimize = Minimize to tray
# Video bitrate label
video-bitrate = B/Video:
@ -170,9 +170,10 @@ video-bitrate-tooltip = Set video bitrate in KB/s
record-tooltip = Start screen record
screen-tooltip = Select screen to record
show-area-tooltip = Show selected area during record
show-tray-tooltip = Show tray icon
speaker-tooltip = Speakr sound recording
stop-tooltip = Stop screen recording
tray-minimize-tooltip = Minimize application to tray icon
video-tooltip = Video recording
wayland-tooltip = Not supported in Wayland
window-tooltip = Select window to record
windows-unsupported-tooltip = Not supported in windows platform

View File

@ -10,8 +10,9 @@ pub fn get_bundle(message_id: &str, arg: Option<&FluentArgs>) -> String {
current_exec_dir
}.join(Path::new("locales"));
if !ftl_path.exists() {
let var = std::env::var("LC_DIR");
ftl_path = std::fs::canonicalize(Path::new(
&std::env::var("LC_DIR").unwrap_or_else(|_| String::from("locales")),
&var.unwrap_or_else(|_| String::from("locales")),
)).unwrap();
}
let supported_lang: Vec<String> = std::fs::read_dir(&ftl_path)
@ -27,8 +28,9 @@ pub fn get_bundle(message_id: &str, arg: Option<&FluentArgs>) -> String {
locale = String::from("en_US");
}
}
let ftl_in_loacle = ftl_path.join(Path::new(&locale.split('.').next().unwrap()));
let ftl_file = std::fs::read_to_string(
format!("{}/{}.ftl", ftl_path.to_str().unwrap(),locale.split('.').next().unwrap())
format!("{}.ftl", ftl_in_loacle.to_str().unwrap())
).unwrap();
let res = FluentResource::try_new(ftl_file).unwrap();
let mut bundle = FluentBundle::default();

View File

@ -1,5 +1,8 @@
use anyhow::{anyhow, Result};
#[cfg(any(target_os = "freebsd", target_os = "linux"))]
use blue_recorder_core::ffmpeg_linux::Ffmpeg;
#[cfg(target_os = "windows")]
use blue_recorder_core::ffmpeg_windows::Ffmpeg;
use blue_recorder_core::utils::is_wayland;
use cpal::traits::{DeviceTrait, HostTrait};
use libadwaita::{Application, Window};
@ -12,7 +15,7 @@ use std::ops::Add;
use std::path::Path;
use std::rc::Rc;
use crate::{area_capture, config_management, fluent::get_bundle};
use crate::{/*area_capture,*/ config_management, fluent::get_bundle};
use crate::timer::{recording_delay, start_timer, stop_timer};
pub fn run_ui(application: &Application) {
@ -196,7 +199,7 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
hide_switch.set_label(Some(&get_bundle("auto-hide", None)));
mouse_switch.set_label(Some(&get_bundle("show-mouse", None)));
speaker_switch.set_label(Some(&get_bundle("record-speaker", None)));
tray_switch.set_label(Some(&get_bundle("show-tray", None)));
tray_switch.set_label(Some(&get_bundle("tray-minimize", None)));
video_switch.set_label(Some(&get_bundle("record-video", None)));
area_switch.set_tooltip_text(Some(&get_bundle("show-area-tooltip", None)));
audio_input_switch.set_tooltip_text(Some(&get_bundle("audio-input-tooltip", None)));
@ -204,7 +207,7 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
hide_switch.set_tooltip_text(Some(&get_bundle("hide-tooltip", None)));
mouse_switch.set_tooltip_text(Some(&get_bundle("mouse-tooltip", None)));
speaker_switch.set_tooltip_text(Some(&get_bundle("speaker-tooltip", None)));
tray_switch.set_tooltip_text(Some(&get_bundle("show-tray-tooltip", None)));
tray_switch.set_tooltip_text(Some(&get_bundle("tray-minimize-tooltip", None)));
video_switch.set_tooltip_text(Some(&get_bundle("video-tooltip", None)));
let _mouse_switch = mouse_switch.clone();
@ -526,12 +529,12 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
});
// Buttons
let area_capture: Rc<RefCell<area_capture::AreaCapture>> =
Rc::new(RefCell::new(area_capture::AreaCapture::new()?));
//let area_capture: Rc<RefCell<area_capture::AreaCapture>> =
//Rc::new(RefCell::new(area_capture::AreaCapture::new()?));
area_grab_label.set_label(&get_bundle("select-area", None));
let _area_chooser_window = area_chooser_window.clone();
let mut _area_capture = area_capture.clone();
//let mut _area_capture = area_capture.clone();
let _area_switch = area_switch.clone();
area_grab_button.connect_clicked(move |_| {
config_management::set("default", "mode", "area");
@ -542,23 +545,23 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
area_apply_label.set_label(&get_bundle("apply", None));
let _area_chooser_window = area_chooser_window.clone();
let mut _area_capture = area_capture.clone();
//let mut _area_capture = area_capture.clone();
let _error_dialog = error_dialog.clone();
let _error_message = error_message.clone();
area_set_button.connect_clicked(move |_| {
let text_buffer = TextBuffer::new(None);
if _area_capture
/*if _area_capture
.borrow_mut()
.get_window_by_name(_area_chooser_window.title().unwrap().as_str()).is_err() {
text_buffer.set_text("failed to get area size value");
_error_message.set_buffer(Some(&text_buffer));
_error_dialog.show();
}
}*/
_area_chooser_window.hide();
});
let _area_chooser_window = area_chooser_window.clone();
let mut _area_capture = area_capture.clone();
//let mut _area_capture = area_capture.clone();
let _area_switch = area_switch.clone();
let _error_dialog = error_dialog.clone();
let _error_message = error_message.clone();
@ -575,15 +578,15 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
config_management::set("default", "mode", "screen");
screen_grab_button_record_window.replace(false);
_area_chooser_window.hide();
if _area_capture.borrow_mut().reset().is_err() {
/*if _area_capture.borrow_mut().reset().is_err() {
text_buffer.set_text("failed to get reset area_capture value");
_error_message.set_buffer(Some(&text_buffer));
_error_dialog.show();
}
}*/
});
let _area_chooser_window: Window = area_chooser_window.clone();
let mut _area_capture: Rc<RefCell<area_capture::AreaCapture>> = area_capture.clone();
//let mut _area_capture: Rc<RefCell<area_capture::AreaCapture>> = area_capture.clone();
let _area_switch = area_switch.clone();
let _error_dialog = error_dialog.clone();
let _error_message = error_message.clone();
@ -599,11 +602,11 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
if is_wayland() {
window_grab_button_record_window.replace(true);
} else {
if _area_capture.borrow_mut().get_area().is_err() {
/*if _area_capture.borrow_mut().get_area().is_err() {
text_buffer.set_text("failed to get window size value");
_error_message.set_buffer(Some(&text_buffer));
_error_dialog.show();
}
}*/
}
});