mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
WIP: Start on App::add_status_bar_item
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
parent
21c91a29e7
commit
c03300df29
1 changed files with 23 additions and 0 deletions
|
@ -1926,6 +1926,29 @@ impl MutableAppContext {
|
|||
})
|
||||
}
|
||||
|
||||
// pub fn add_status_bar_item<I, M, F1, F2>(
|
||||
// &mut self,
|
||||
// build_item: F1,
|
||||
// build_menu: F2,
|
||||
// menu_bounds: Vector2F,
|
||||
// ) where
|
||||
// I: View,
|
||||
// M: View,
|
||||
// F1: FnOnce(&mut ViewContext<I>) -> I,
|
||||
// F2: FnOnce(&mut ViewContext<M>) -> M,
|
||||
// {
|
||||
// self.add_window(
|
||||
// WindowOptions {
|
||||
// bounds: menu_bounds,
|
||||
// titlebar: None,
|
||||
// title: None,
|
||||
// titlebar_appears_transparent: true,
|
||||
// traffic_light_position: (),
|
||||
// },
|
||||
// build_root_view,
|
||||
// )
|
||||
// }
|
||||
|
||||
pub fn replace_root_view<T, F>(&mut self, window_id: usize, build_root_view: F) -> ViewHandle<T>
|
||||
where
|
||||
T: View,
|
||||
|
|
Loading…
Reference in a new issue