mirror of
https://github.com/xlmnxp/blue-recorder.git
synced 2025-04-04 16:54:55 +03:00
add record & stop button logic
This commit is contained in:
parent
2914365e05
commit
3daf18c7a0
@ -135,6 +135,7 @@
|
|||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can-focus">True</property>
|
<property name="can-focus">True</property>
|
||||||
<property name="receives-default">True</property>
|
<property name="receives-default">True</property>
|
||||||
|
<property name="has-tooltip">True</property>
|
||||||
</object>
|
</object>
|
||||||
</child>
|
</child>
|
||||||
<child type="end">
|
<child type="end">
|
||||||
|
177
gui/src/ui.rs
177
gui/src/ui.rs
@ -3,7 +3,7 @@ use anyhow::Result;
|
|||||||
use blue_recorder_core::ffmpeg_linux::Ffmpeg;
|
use blue_recorder_core::ffmpeg_linux::Ffmpeg;
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
use blue_recorder_core::ffmpeg_windows::Ffmpeg;
|
use blue_recorder_core::ffmpeg_windows::Ffmpeg;
|
||||||
use blue_recorder_core::utils::{is_wayland, RecordMode};
|
use blue_recorder_core::utils::{is_wayland, play_record, RecordMode};
|
||||||
use chrono::Utc;
|
use chrono::Utc;
|
||||||
use cpal::traits::{DeviceTrait, HostTrait};
|
use cpal::traits::{DeviceTrait, HostTrait};
|
||||||
use libadwaita::{Application, Window};
|
use libadwaita::{Application, Window};
|
||||||
@ -116,6 +116,7 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
|
|||||||
let screen_grab_icon: Image = builder.object("screen_grab_icon").unwrap();
|
let screen_grab_icon: Image = builder.object("screen_grab_icon").unwrap();
|
||||||
let screen_grab_label: Label = builder.object("screen_grab_label").unwrap();
|
let screen_grab_label: Label = builder.object("screen_grab_label").unwrap();
|
||||||
let select_window: Window = builder.object("select_window").unwrap();
|
let select_window: Window = builder.object("select_window").unwrap();
|
||||||
|
#[cfg(target_os = "windows")]
|
||||||
let select_window_label: Label = builder.object("select_window_label").unwrap();
|
let select_window_label: Label = builder.object("select_window_label").unwrap();
|
||||||
let speaker_switch: CheckButton = builder.object("speakerswitch").unwrap();
|
let speaker_switch: CheckButton = builder.object("speakerswitch").unwrap();
|
||||||
let stop_button: Button = builder.object("stopbutton").unwrap();
|
let stop_button: Button = builder.object("stopbutton").unwrap();
|
||||||
@ -195,7 +196,7 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
|
|||||||
let output_device = if host_output_device.is_some() {
|
let output_device = if host_output_device.is_some() {
|
||||||
host_output_device.unwrap().name()?
|
host_output_device.unwrap().name()?
|
||||||
} else {
|
} else {
|
||||||
String::from("")
|
String::new()
|
||||||
};
|
};
|
||||||
|
|
||||||
audio_source_combobox.append(Some("default"), &get_bundle("audio-input", None));
|
audio_source_combobox.append(Some("default"), &get_bundle("audio-input", None));
|
||||||
@ -771,19 +772,24 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
// Record button
|
// Record button
|
||||||
|
let _audio_input_switch = audio_input_switch.clone();
|
||||||
//let bundle_msg = get_bundle("already-exist", None);
|
//let bundle_msg = get_bundle("already-exist", None);
|
||||||
let _delay_spin = delay_spin.clone();
|
let _delay_spin = delay_spin.clone();
|
||||||
delay_window_button.set_label(&get_bundle("delay-window-stop", None));
|
delay_window_button.set_label(&get_bundle("delay-window-stop", None));
|
||||||
delay_window_title.set_label(&get_bundle("delay-title", None));
|
delay_window_title.set_label(&get_bundle("delay-title", None));
|
||||||
let _delay_window = delay_window.clone();
|
let _delay_window = delay_window.clone();
|
||||||
let _delay_window_button = delay_window_button.clone();
|
let _delay_window_button = delay_window_button.clone();
|
||||||
|
let _error_dialog = error_dialog.clone();
|
||||||
|
let _error_message = error_message.clone();
|
||||||
let _ffmpeg_record_interface = ffmpeg_record_interface.clone();
|
let _ffmpeg_record_interface = ffmpeg_record_interface.clone();
|
||||||
//let main_context = glib::MainContext::default();
|
//let main_context = glib::MainContext::default();
|
||||||
let _main_window = main_window.clone();
|
let _main_window = main_window.clone();
|
||||||
let _play_button = play_button.clone();
|
let _play_button = play_button.clone();
|
||||||
let _record_button = record_button.clone();
|
let _record_button = record_button.clone();
|
||||||
let _record_time_label = record_time_label.clone();
|
let _record_time_label = record_time_label.clone();
|
||||||
|
let _speaker_switch = speaker_switch.clone();
|
||||||
let _stop_button = stop_button.clone();
|
let _stop_button = stop_button.clone();
|
||||||
|
let _video_switch = video_switch.clone();
|
||||||
record_button.set_tooltip_text(Some(&get_bundle("record-tooltip", None)));
|
record_button.set_tooltip_text(Some(&get_bundle("record-tooltip", None)));
|
||||||
record_label.set_label(&get_bundle("record", None));
|
record_label.set_label(&get_bundle("record", None));
|
||||||
//let wayland_record = main_context.block_on(WaylandRecorder::new());
|
//let wayland_record = main_context.block_on(WaylandRecorder::new());
|
||||||
@ -807,37 +813,159 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
|
|||||||
_area_capture.height,
|
_area_capture.height,
|
||||||
mode,
|
mode,
|
||||||
);
|
);
|
||||||
/*match start_video_record {
|
let start_audio_input_record = _ffmpeg_record_interface.borrow_mut().start_input_audio();
|
||||||
None => {
|
let start_audio_output_record = _ffmpeg_record_interface.borrow_mut().start_output_audio();
|
||||||
// Do nothing if the start_record function return nothing
|
if !_audio_input_switch.is_active() &&
|
||||||
|
!_speaker_switch.is_active() &&
|
||||||
|
!_video_switch.is_active()
|
||||||
|
{
|
||||||
|
// Do nothing
|
||||||
|
} else {
|
||||||
|
start_timer(record_time_label.clone());
|
||||||
|
record_time_label.set_visible(true);
|
||||||
|
if hide_switch.is_active() {
|
||||||
|
_main_window.minimize();
|
||||||
}
|
}
|
||||||
_ => {
|
_audio_input_switch.set_sensitive(false);
|
||||||
//start_timer(record_time_label.clone());
|
_speaker_switch.set_sensitive(false);
|
||||||
record_time_label.set_visible(true);
|
_video_switch.set_sensitive(false);
|
||||||
if hide_switch.is_active() {
|
_play_button.hide();
|
||||||
_main_window.minimize();
|
_record_button.hide();
|
||||||
|
_stop_button.show();
|
||||||
|
if _audio_input_switch.is_active() {
|
||||||
|
match start_audio_input_record {
|
||||||
|
Ok(_) => {
|
||||||
|
// Do nothing
|
||||||
|
},
|
||||||
|
Err(error) => {
|
||||||
|
let text_buffer = TextBuffer::new(None);
|
||||||
|
text_buffer.set_text(&format!("{}", error));
|
||||||
|
_error_message.set_buffer(Some(&text_buffer));
|
||||||
|
_error_dialog.show();
|
||||||
|
_audio_input_switch.set_sensitive(true);
|
||||||
|
_speaker_switch.set_sensitive(true);
|
||||||
|
_video_switch.set_sensitive(true);
|
||||||
|
_record_button.show();
|
||||||
|
_stop_button.hide();
|
||||||
|
},
|
||||||
}
|
}
|
||||||
_play_button.hide();
|
|
||||||
_record_button.hide();
|
|
||||||
_stop_button.show();
|
|
||||||
}
|
}
|
||||||
}*/
|
if _speaker_switch.is_active() {
|
||||||
|
match start_audio_output_record {
|
||||||
|
Ok(_) => {
|
||||||
|
// Do nothing
|
||||||
|
},
|
||||||
|
Err(error) => {
|
||||||
|
let text_buffer = TextBuffer::new(None);
|
||||||
|
text_buffer.set_text(&format!("{}", error));
|
||||||
|
_error_message.set_buffer(Some(&text_buffer));
|
||||||
|
_error_dialog.show();
|
||||||
|
_audio_input_switch.set_sensitive(true);
|
||||||
|
_speaker_switch.set_sensitive(true);
|
||||||
|
_video_switch.set_sensitive(true);
|
||||||
|
_record_button.show();
|
||||||
|
_stop_button.hide();
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if _video_switch.is_active() {
|
||||||
|
match start_video_record {
|
||||||
|
Ok(_) => {
|
||||||
|
// Do nothing
|
||||||
|
},
|
||||||
|
Err(error) => {
|
||||||
|
let text_buffer = TextBuffer::new(None);
|
||||||
|
text_buffer.set_text(&format!("{}", error));
|
||||||
|
_error_message.set_buffer(Some(&text_buffer));
|
||||||
|
_error_dialog.show();
|
||||||
|
_audio_input_switch.set_sensitive(true);
|
||||||
|
_speaker_switch.set_sensitive(true);
|
||||||
|
_video_switch.set_sensitive(true);
|
||||||
|
_record_button.show();
|
||||||
|
_stop_button.hide();
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Stop record button
|
// Stop record button
|
||||||
|
let _audio_input_switch = audio_input_switch.clone();
|
||||||
|
let _error_dialog = error_dialog.clone();
|
||||||
|
let _error_message = error_message.clone();
|
||||||
let mut _ffmpeg_record_interface = ffmpeg_record_interface.clone();
|
let mut _ffmpeg_record_interface = ffmpeg_record_interface.clone();
|
||||||
let _play_button = play_button.clone();
|
let _play_button = play_button.clone();
|
||||||
|
let _speaker_switch = speaker_switch.clone();
|
||||||
let _stop_button = stop_button.clone();
|
let _stop_button = stop_button.clone();
|
||||||
|
let _video_switch = video_switch.clone();
|
||||||
stop_button.set_tooltip_text(Some(&get_bundle("stop-tooltip", None)));
|
stop_button.set_tooltip_text(Some(&get_bundle("stop-tooltip", None)));
|
||||||
stop_label.set_label(&get_bundle("stop-recording", None));
|
stop_label.set_label(&get_bundle("stop-recording", None));
|
||||||
stop_button.connect_clicked(move |_| {
|
stop_button.connect_clicked(move |_| {
|
||||||
_record_time_label.set_visible(false);
|
_record_time_label.set_visible(false);
|
||||||
//stop_timer(_record_time_label.clone());
|
stop_timer(_record_time_label.clone());
|
||||||
//_ffmpeg_record_interface.borrow_mut().clone().stop_record();
|
if _audio_input_switch.is_active() {
|
||||||
|
match _ffmpeg_record_interface.borrow_mut().stop_input_audio() {
|
||||||
|
Ok(_) => {
|
||||||
|
// Do nothing
|
||||||
|
},
|
||||||
|
Err(error) => {
|
||||||
|
let text_buffer = TextBuffer::new(None);
|
||||||
|
text_buffer.set_text(&format!("{}", error));
|
||||||
|
_error_message.set_buffer(Some(&text_buffer));
|
||||||
|
_error_dialog.show();
|
||||||
|
_audio_input_switch.set_sensitive(true);
|
||||||
|
_speaker_switch.set_sensitive(true);
|
||||||
|
_video_switch.set_sensitive(true);
|
||||||
|
record_button.show();
|
||||||
|
_stop_button.hide();
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if _speaker_switch.is_active() {
|
||||||
|
match _ffmpeg_record_interface.borrow_mut().stop_output_audio() {
|
||||||
|
Ok(_) => {
|
||||||
|
// Do nothing
|
||||||
|
},
|
||||||
|
Err(error) => {
|
||||||
|
let text_buffer = TextBuffer::new(None);
|
||||||
|
text_buffer.set_text(&format!("{}", error));
|
||||||
|
_error_message.set_buffer(Some(&text_buffer));
|
||||||
|
_error_dialog.show();
|
||||||
|
_audio_input_switch.set_sensitive(true);
|
||||||
|
_speaker_switch.set_sensitive(true);
|
||||||
|
_video_switch.set_sensitive(true);
|
||||||
|
record_button.show();
|
||||||
|
_stop_button.hide();
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if _video_switch.is_active() {
|
||||||
|
match _ffmpeg_record_interface.borrow_mut().stop_video() {
|
||||||
|
Ok(_) => {
|
||||||
|
// Do nothing
|
||||||
|
},
|
||||||
|
Err(error) => {
|
||||||
|
let text_buffer = TextBuffer::new(None);
|
||||||
|
text_buffer.set_text(&format!("{}", error));
|
||||||
|
_error_message.set_buffer(Some(&text_buffer));
|
||||||
|
_error_dialog.show();
|
||||||
|
_audio_input_switch.set_sensitive(true);
|
||||||
|
_speaker_switch.set_sensitive(true);
|
||||||
|
_video_switch.set_sensitive(true);
|
||||||
|
record_button.show();
|
||||||
|
_stop_button.hide();
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_audio_input_switch.set_sensitive(true);
|
||||||
|
_speaker_switch.set_sensitive(true);
|
||||||
|
_video_switch.set_sensitive(true);
|
||||||
record_button.show();
|
record_button.show();
|
||||||
_stop_button.hide();
|
_stop_button.hide();
|
||||||
_play_button.show();
|
_play_button.show();
|
||||||
|
_play_button.set_sensitive(false);
|
||||||
|
_play_button.set_tooltip_text(Some(&get_bundle("play-inactive-tooltip", None)));
|
||||||
});
|
});
|
||||||
|
|
||||||
// Delay window button
|
// Delay window button
|
||||||
@ -845,9 +973,22 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
|
|||||||
delay_window_button.connect_clicked(move |_| {});
|
delay_window_button.connect_clicked(move |_| {});
|
||||||
|
|
||||||
// Play button
|
// Play button
|
||||||
//let mut _ffmpeg_record_interface = ffmpeg_record_interface.clone();
|
let _error_dialog = error_dialog.clone();
|
||||||
|
let _error_message = error_message.clone();
|
||||||
|
let mut _ffmpeg_record_interface = ffmpeg_record_interface.clone();
|
||||||
play_button.connect_clicked(move |_| {
|
play_button.connect_clicked(move |_| {
|
||||||
//_ffmpeg_record_interface.borrow_mut().clone().play_record();
|
let file_name = _ffmpeg_record_interface.borrow_mut().filename.clone();
|
||||||
|
match play_record(&file_name) {
|
||||||
|
Ok(_) => {
|
||||||
|
// Do nothing
|
||||||
|
},
|
||||||
|
Err(error) => {
|
||||||
|
let text_buffer = TextBuffer::new(None);
|
||||||
|
text_buffer.set_text(&format!("{}", error));
|
||||||
|
_error_message.set_buffer(Some(&text_buffer));
|
||||||
|
_error_dialog.show();
|
||||||
|
},
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// About dialog
|
// About dialog
|
||||||
|
@ -172,13 +172,15 @@ format-tooltip = لاختيار صيغة الخَرج
|
|||||||
frames-tooltip = عدد الإطارات في الثانية
|
frames-tooltip = عدد الإطارات في الثانية
|
||||||
hide-tooltip = لإخفاء نافذة المسجل الأزرق عند بدء التسجيل
|
hide-tooltip = لإخفاء نافذة المسجل الأزرق عند بدء التسجيل
|
||||||
mouse-tooltip = يظهر مؤشر الفأرة عند التسجيل
|
mouse-tooltip = يظهر مؤشر الفأرة عند التسجيل
|
||||||
video-bitrate-tooltip = Set video bitrate in KB/s
|
play-tooltip = Click to play video
|
||||||
|
play-inactive-tooltip = Please wait until the file is saved
|
||||||
record-tooltip = يبدأ تسجيل الشاشة
|
record-tooltip = يبدأ تسجيل الشاشة
|
||||||
screen-tooltip = يحدد الشاشة ليسجلها
|
screen-tooltip = يحدد الشاشة ليسجلها
|
||||||
show-area-tooltip = Show selected area during record
|
show-area-tooltip = Show selected area during record
|
||||||
speaker-tooltip = Speakr sound recording
|
speaker-tooltip = Speakr sound recording
|
||||||
stop-tooltip = وقف تسجيل الشاشة
|
stop-tooltip = وقف تسجيل الشاشة
|
||||||
tray-minimize-tooltip = Minimize application to tray icon
|
tray-minimize-tooltip = Minimize application to tray icon
|
||||||
|
video-bitrate-tooltip = Set video bitrate in KB/s
|
||||||
video-tooltip = يسجل الشاشة
|
video-tooltip = يسجل الشاشة
|
||||||
wayland-tooltip = غير مدعوم في وايلاند
|
wayland-tooltip = غير مدعوم في وايلاند
|
||||||
window-tooltip = يحدد نافذة ليسجلها
|
window-tooltip = يحدد نافذة ليسجلها
|
||||||
|
@ -172,13 +172,15 @@ format-tooltip = لاختيار صيغة الخَرج
|
|||||||
frames-tooltip = عدد الإطارات في الثانية
|
frames-tooltip = عدد الإطارات في الثانية
|
||||||
hide-tooltip = لإخفاء نافذة المسجل الأزرق عند بدء التسجيل
|
hide-tooltip = لإخفاء نافذة المسجل الأزرق عند بدء التسجيل
|
||||||
mouse-tooltip = يظهر مؤشر الفأرة عند التسجيل
|
mouse-tooltip = يظهر مؤشر الفأرة عند التسجيل
|
||||||
video-bitrate-tooltip = Set video bitrate in KB/s
|
play-tooltip = Click to play video
|
||||||
|
play-inactive-tooltip = Please wait until the file is saved
|
||||||
record-tooltip = يبدأ تسجيل الشاشة
|
record-tooltip = يبدأ تسجيل الشاشة
|
||||||
screen-tooltip = يحدد الشاشة ليسجلها
|
screen-tooltip = يحدد الشاشة ليسجلها
|
||||||
show-area-tooltip = Show selected area during record
|
show-area-tooltip = Show selected area during record
|
||||||
speaker-tooltip = Speakr sound recording
|
speaker-tooltip = Speakr sound recording
|
||||||
stop-tooltip = وقف تسجيل الشاشة
|
stop-tooltip = وقف تسجيل الشاشة
|
||||||
tray-minimize-tooltip = Minimize application to tray icon
|
tray-minimize-tooltip = Minimize application to tray icon
|
||||||
|
video-bitrate-tooltip = Set video bitrate in KB/s
|
||||||
video-tooltip = يسجل الشاشة
|
video-tooltip = يسجل الشاشة
|
||||||
wayland-tooltip = غير مدعوم في وايلاند
|
wayland-tooltip = غير مدعوم في وايلاند
|
||||||
window-tooltip = يحدد نافذة ليسجلها
|
window-tooltip = يحدد نافذة ليسجلها
|
||||||
|
@ -172,13 +172,15 @@ format-tooltip = Select file format
|
|||||||
frames-tooltip = Set frames rate
|
frames-tooltip = Set frames rate
|
||||||
hide-tooltip = Hide window when start recording
|
hide-tooltip = Hide window when start recording
|
||||||
mouse-tooltip = Mouse appears in video recording
|
mouse-tooltip = Mouse appears in video recording
|
||||||
video-bitrate-tooltip = Set video bitrate in KB/s
|
play-tooltip = Click to play video
|
||||||
|
play-inactive-tooltip = Please wait until the file is saved
|
||||||
record-tooltip = Start screen record
|
record-tooltip = Start screen record
|
||||||
screen-tooltip = Select screen to record
|
screen-tooltip = Select screen to record
|
||||||
show-area-tooltip = Show selected area during record
|
show-area-tooltip = Show selected area during record
|
||||||
speaker-tooltip = Speakr sound recording
|
speaker-tooltip = Speakr sound recording
|
||||||
stop-tooltip = Stop screen recording
|
stop-tooltip = Stop screen recording
|
||||||
tray-minimize-tooltip = Minimize application to tray icon
|
tray-minimize-tooltip = Minimize application to tray icon
|
||||||
|
video-bitrate-tooltip = Set video bitrate in KB/s
|
||||||
video-tooltip = Video recording
|
video-tooltip = Video recording
|
||||||
wayland-tooltip = Not supported in Wayland
|
wayland-tooltip = Not supported in Wayland
|
||||||
window-tooltip = Select window to record
|
window-tooltip = Select window to record
|
||||||
|
@ -172,13 +172,15 @@ format-tooltip = Select file format
|
|||||||
frames-tooltip = Set frames rate
|
frames-tooltip = Set frames rate
|
||||||
hide-tooltip = Hide window when start recording
|
hide-tooltip = Hide window when start recording
|
||||||
mouse-tooltip = Mouse appears in video recording
|
mouse-tooltip = Mouse appears in video recording
|
||||||
video-bitrate-tooltip = Set video bitrate in KB/s
|
play-tooltip = Click to play video
|
||||||
|
play-inactive-tooltip = Please wait until the file is saved
|
||||||
record-tooltip = Start screen record
|
record-tooltip = Start screen record
|
||||||
screen-tooltip = Select screen to record
|
screen-tooltip = Select screen to record
|
||||||
show-area-tooltip = Show selected area during record
|
show-area-tooltip = Show selected area during record
|
||||||
speaker-tooltip = Speakr sound recording
|
speaker-tooltip = Speakr sound recording
|
||||||
stop-tooltip = Stop screen recording
|
stop-tooltip = Stop screen recording
|
||||||
tray-minimize-tooltip = Minimize application to tray icon
|
tray-minimize-tooltip = Minimize application to tray icon
|
||||||
|
video-bitrate-tooltip = Set video bitrate in KB/s
|
||||||
video-tooltip = Video recording
|
video-tooltip = Video recording
|
||||||
wayland-tooltip = Not supported in Wayland
|
wayland-tooltip = Not supported in Wayland
|
||||||
window-tooltip = Select window to record
|
window-tooltip = Select window to record
|
||||||
|
Loading…
Reference in New Issue
Block a user