mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-04 13:02:01 +02:00
chore: Update todos
This commit is contained in:
parent
e7c0995aa3
commit
ee7129009a
|
@ -334,7 +334,7 @@ pub fn start_audio_box_listener<
|
||||||
get_default_name_function: &'static DBusFunction,
|
get_default_name_function: &'static DBusFunction,
|
||||||
dummy_name: &'static str,
|
dummy_name: &'static str,
|
||||||
) -> Connection {
|
) -> Connection {
|
||||||
// TODO: make the failed logs generically sound -> deynamic output for both
|
// FUTURE TODO: make the failed logs generically sound -> deynamic output for both
|
||||||
let object_added =
|
let object_added =
|
||||||
ObjectAdded::match_rule(Some(&BASE.into()), Some(&Path::from(DBUS_PATH))).static_clone();
|
ObjectAdded::match_rule(Some(&BASE.into()), Some(&Path::from(DBUS_PATH))).static_clone();
|
||||||
let object_changed =
|
let object_changed =
|
||||||
|
|
|
@ -117,7 +117,7 @@ pub fn new_entry<
|
||||||
reset_box: Arc<AudioBox>,
|
reset_box: Arc<AudioBox>,
|
||||||
) -> Arc<AudioEntry> {
|
) -> Arc<AudioEntry> {
|
||||||
let obj: Arc<AudioEntry> = Arc::new(Object::builder().build());
|
let obj: Arc<AudioEntry> = Arc::new(Object::builder().build());
|
||||||
// TODO use event callback for progress bar -> this is the "im speaking" indicator
|
// FUTURE TODO: use event callback for progress bar -> this is the "im speaking" indicator
|
||||||
{
|
{
|
||||||
let imp = obj.entry_imp();
|
let imp = obj.entry_imp();
|
||||||
let slider_obj_ref = obj.clone();
|
let slider_obj_ref = obj.clone();
|
||||||
|
|
|
@ -91,7 +91,7 @@ pub fn new_stream_entry<
|
||||||
stream: StreamObject,
|
stream: StreamObject,
|
||||||
) -> Arc<AudioStream> {
|
) -> Arc<AudioStream> {
|
||||||
let obj: Arc<AudioStream> = Arc::new(Object::builder().build());
|
let obj: Arc<AudioStream> = Arc::new(Object::builder().build());
|
||||||
// TODO use event callback for progress bar -> this is the "im speaking" indicator
|
// FUTURE TODO: use event callback for progress bar -> this is the "im speaking" indicator
|
||||||
let output_box_mute_ref = audio_box.clone();
|
let output_box_mute_ref = audio_box.clone();
|
||||||
let output_box_volume_ref = audio_box.clone();
|
let output_box_volume_ref = audio_box.clone();
|
||||||
let output_box_sink_ref = audio_box.clone();
|
let output_box_sink_ref = audio_box.clone();
|
||||||
|
|
|
@ -54,7 +54,7 @@ pub fn show_error<T: ReSetErrorImpl + Send + Sync + 'static>(
|
||||||
parent: Arc<T>,
|
parent: Arc<T>,
|
||||||
message: &'static str,
|
message: &'static str,
|
||||||
) {
|
) {
|
||||||
// TODO: Add error to log
|
// FUTURE TODO: Add error to log
|
||||||
glib::spawn_future(async move {
|
glib::spawn_future(async move {
|
||||||
glib::idle_add_once(move || {
|
glib::idle_add_once(move || {
|
||||||
let error = parent.error();
|
let error = parent.error();
|
||||||
|
|
|
@ -57,7 +57,7 @@ impl BluetoothBox {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO
|
// FUTURE TODO:
|
||||||
// handle bonded -> this means saved but not connected
|
// handle bonded -> this means saved but not connected
|
||||||
// handle rssi below x -> don't show device
|
// handle rssi below x -> don't show device
|
||||||
|
|
||||||
|
@ -185,7 +185,6 @@ pub fn populate_connected_bluetooth_devices(
|
||||||
listeners: Arc<Listeners>,
|
listeners: Arc<Listeners>,
|
||||||
bluetooth_box: Arc<BluetoothBox>,
|
bluetooth_box: Arc<BluetoothBox>,
|
||||||
) {
|
) {
|
||||||
// TODO handle saved devices -> they also exist
|
|
||||||
gio::spawn_blocking(move || {
|
gio::spawn_blocking(move || {
|
||||||
let ref_box = bluetooth_box.clone();
|
let ref_box = bluetooth_box.clone();
|
||||||
let adapters = get_bluetooth_adapters(ref_box.clone());
|
let adapters = get_bluetooth_adapters(ref_box.clone());
|
||||||
|
|
|
@ -70,7 +70,7 @@ impl BluetoothEntry {
|
||||||
});
|
});
|
||||||
let gesture = GestureClick::new();
|
let gesture = GestureClick::new();
|
||||||
// paired is not what we think
|
// paired is not what we think
|
||||||
// TODO implement paired
|
// FUTURE TODO: implement paired
|
||||||
gesture.connect_released(move |_, _, _, _| {
|
gesture.connect_released(move |_, _, _, _| {
|
||||||
let imp = entry_ref.imp();
|
let imp = entry_ref.imp();
|
||||||
let borrow = imp.bluetooth_device.borrow();
|
let borrow = imp.bluetooth_device.borrow();
|
||||||
|
|
|
@ -69,7 +69,7 @@ pub fn device_removed_handler(
|
||||||
if list_entry.imp().bluetooth_device.borrow().connected {
|
if list_entry.imp().bluetooth_device.borrow().connected {
|
||||||
imp.reset_bluetooth_connected_devices.remove(&*list_entry);
|
imp.reset_bluetooth_connected_devices.remove(&*list_entry);
|
||||||
} else {
|
} else {
|
||||||
// TODO: is there a better way for this?
|
// FUTURE TODO: is there a better way for this?
|
||||||
imp.reset_bluetooth_available_devices.remove(&*list_entry);
|
imp.reset_bluetooth_available_devices.remove(&*list_entry);
|
||||||
imp.reset_bluetooth_saved_devices.remove(&*list_entry);
|
imp.reset_bluetooth_saved_devices.remove(&*list_entry);
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,7 +55,7 @@ impl SavedWifiEntry {
|
||||||
let entry_ref = entry.clone();
|
let entry_ref = entry.clone();
|
||||||
delete_button.connect_clicked(clone!(@weak wifi_box => move |_| {
|
delete_button.connect_clicked(clone!(@weak wifi_box => move |_| {
|
||||||
delete_connection(entry_ref.imp().reset_connection_path.take());
|
delete_connection(entry_ref.imp().reset_connection_path.take());
|
||||||
// TODO handle error
|
// FUTURE TODO: handle error
|
||||||
wifi_box.reset_stored_wifi_list.remove(&*entry_ref);
|
wifi_box.reset_stored_wifi_list.remove(&*entry_ref);
|
||||||
|
|
||||||
}));
|
}));
|
||||||
|
|
|
@ -209,7 +209,7 @@ pub fn show_stored_connections(wifi_box: Arc<WifiBox>) {
|
||||||
glib::idle_add_once(move || {
|
glib::idle_add_once(move || {
|
||||||
let self_imp = wifibox_ref.imp();
|
let self_imp = wifibox_ref.imp();
|
||||||
for connection in connections {
|
for connection in connections {
|
||||||
// TODO include button for settings
|
// FUTURE TODO: include button for settings
|
||||||
let name =
|
let name =
|
||||||
&String::from_utf8(connection.1).unwrap_or_else(|_| String::from(""));
|
&String::from_utf8(connection.1).unwrap_or_else(|_| String::from(""));
|
||||||
let entry = SavedWifiEntry::new(name, connection.0, self_imp);
|
let entry = SavedWifiEntry::new(name, connection.0, self_imp);
|
||||||
|
|
|
@ -48,7 +48,7 @@ impl WifiEntry {
|
||||||
.build(),
|
.build(),
|
||||||
);
|
);
|
||||||
|
|
||||||
// TODO handle encryption thing
|
// FUTURE TODO: handle encryption
|
||||||
let wifi_strength = Image::builder()
|
let wifi_strength = Image::builder()
|
||||||
.icon_name(match strength {
|
.icon_name(match strength {
|
||||||
WifiStrength::Excellent => "network-wireless-signal-excellent-symbolic",
|
WifiStrength::Excellent => "network-wireless-signal-excellent-symbolic",
|
||||||
|
@ -177,7 +177,7 @@ pub fn click_stored_network(entry: Arc<WifiEntry>) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
// TODO crate spinner animation and block UI
|
// FUTURE TODO: crate spinner animation and block UI
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn click_new_network(entry: Arc<WifiEntry>) {
|
pub fn click_new_network(entry: Arc<WifiEntry>) {
|
||||||
|
@ -228,7 +228,7 @@ pub fn click_new_network(entry: Arc<WifiEntry>) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
// TODO crate spinner animation and block UI
|
// FUTURE TODO: crate spinner animation and block UI
|
||||||
};
|
};
|
||||||
|
|
||||||
let entry_imp = entry.imp();
|
let entry_imp = entry.imp();
|
||||||
|
|
|
@ -72,7 +72,7 @@ pub fn access_point_changed_handler(wifi_box: Arc<WifiBox>, ir: AccessPointChang
|
||||||
let name = name_opt.as_str();
|
let name = name_opt.as_str();
|
||||||
entry_imp.wifi_strength.set(strength);
|
entry_imp.wifi_strength.set(strength);
|
||||||
entry.set_title(name);
|
entry.set_title(name);
|
||||||
// TODO handle encryption thing
|
// FUTURE TODO: handle encryption thing
|
||||||
entry_imp
|
entry_imp
|
||||||
.reset_wifi_strength
|
.reset_wifi_strength
|
||||||
.borrow()
|
.borrow()
|
||||||
|
|
|
@ -207,7 +207,6 @@ impl ReSetWindow {
|
||||||
.connect_row_activated(clone!(@ weak self_imp => move |_, _| {
|
.connect_row_activated(clone!(@ weak self_imp => move |_, _| {
|
||||||
self_imp.reset_search_entry.set_text("");
|
self_imp.reset_search_entry.set_text("");
|
||||||
}));
|
}));
|
||||||
// TODO: refactor this
|
|
||||||
let mut i = 0;
|
let mut i = 0;
|
||||||
for info in sidebar_list {
|
for info in sidebar_list {
|
||||||
if info.parent.is_none() && i != 0 {
|
if info.parent.is_none() && i != 0 {
|
||||||
|
|
|
@ -11,7 +11,7 @@ use crate::components::window::sidebar_entry;
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
pub enum Categories {
|
pub enum Categories {
|
||||||
// TODO: are these ever used ?
|
// FUTURE TODO: are these ever used ?
|
||||||
// Connectivity,
|
// Connectivity,
|
||||||
// Audio,
|
// Audio,
|
||||||
// Peripherals,
|
// Peripherals,
|
||||||
|
|
Loading…
Reference in a new issue