Mark TODOs and prep for merging main

This commit is contained in:
Mikayla 2024-02-07 11:39:26 -08:00
parent e3ae7c4fe0
commit 3734a390b2
No known key found for this signature in database
13 changed files with 77 additions and 15 deletions

View file

@ -170,14 +170,19 @@ impl Platform for LinuxPlatform {
self.state.lock().quit_requested = true;
}
//todo!(linux)
fn restart(&self) {}
//todo!(linux)
fn activate(&self, ignoring_other_apps: bool) {}
//todo!(linux)
fn hide(&self) {}
//todo!(linux)
fn hide_other_apps(&self) {}
//todo!(linux)
fn unhide_other_apps(&self) {}
fn displays(&self) -> Vec<Rc<dyn PlatformDisplay>> {
@ -199,6 +204,7 @@ impl Platform for LinuxPlatform {
)))
}
//todo!(linux)
fn active_window(&self) -> Option<AnyWindowHandle> {
None
}
@ -324,6 +330,7 @@ impl Platform for LinuxPlatform {
unimplemented!()
}
//todo!(linux)
fn set_menus(&self, menus: Vec<Menu>, keymap: &Keymap) {}
fn local_timezone(&self) -> UtcOffset {
@ -334,14 +341,16 @@ impl Platform for LinuxPlatform {
unimplemented!()
}
//todo!(linux)
fn set_cursor_style(&self, style: CursorStyle) {}
fn should_auto_hide_scrollbars(&self) -> bool {
false
}
//todo!(linux)
fn should_auto_hide_scrollbars(&self) -> bool {}
//todo!(linux)
fn write_to_clipboard(&self, item: ClipboardItem) {}
//todo!(linux)
fn read_from_clipboard(&self) -> Option<ClipboardItem> {
None
}