@@ -163,7 +163,7 @@ impl WindowBuilder {
163
163
164
164
pub fn show_titlebar ( & mut self , _show_titlebar : bool ) {
165
165
// not sure how to do this, maybe _MOTIF_WM_HINTS?
166
- warn ! ( "WindowBuilder::show_titlebar is currently unimplemented for X11 platforms ." ) ;
166
+ warn ! ( "WindowBuilder::show_titlebar is currently unimplemented for X11 backend ." ) ;
167
167
}
168
168
169
169
pub fn set_transparent ( & mut self , transparent : bool ) {
@@ -877,7 +877,7 @@ impl Window {
877
877
878
878
/// Set whether the window should show titlebar
879
879
fn show_titlebar ( & self , _show_titlebar : bool ) {
880
- warn ! ( "Window::show_titlebar is currently unimplemented for X11 platforms ." ) ;
880
+ warn ! ( "Window::show_titlebar is currently unimplemented for X11 backend ." ) ;
881
881
}
882
882
883
883
fn get_position ( & self ) -> Point {
@@ -1644,12 +1644,12 @@ impl WindowHandle {
1644
1644
}
1645
1645
1646
1646
pub fn content_insets ( & self ) -> Insets {
1647
- warn ! ( "WindowHandle::content_insets unimplemented for X11 platforms ." ) ;
1647
+ warn ! ( "WindowHandle::content_insets unimplemented for X11 backend ." ) ;
1648
1648
Insets :: ZERO
1649
1649
}
1650
1650
1651
1651
pub fn set_level ( & self , _level : WindowLevel ) {
1652
- warn ! ( "WindowHandle::set_level unimplemented for X11 platforms ." ) ;
1652
+ warn ! ( "WindowHandle::set_level unimplemented for X11 backend ." ) ;
1653
1653
}
1654
1654
1655
1655
pub fn set_size ( & self , size : Size ) {
@@ -1670,16 +1670,16 @@ impl WindowHandle {
1670
1670
}
1671
1671
1672
1672
pub fn set_window_state ( & self , _state : window:: WindowState ) {
1673
- warn ! ( "WindowHandle::set_window_state is currently unimplemented for X11 platforms ." ) ;
1673
+ warn ! ( "WindowHandle::set_window_state is currently unimplemented for X11 backend ." ) ;
1674
1674
}
1675
1675
1676
1676
pub fn get_window_state ( & self ) -> window:: WindowState {
1677
- warn ! ( "WindowHandle::get_window_state is currently unimplemented for X11 platforms ." ) ;
1677
+ warn ! ( "WindowHandle::get_window_state is currently unimplemented for X11 backend ." ) ;
1678
1678
window:: WindowState :: Restored
1679
1679
}
1680
1680
1681
1681
pub fn handle_titlebar ( & self , _val : bool ) {
1682
- warn ! ( "WindowHandle::handle_titlebar is currently unimplemented for X11 platforms ." ) ;
1682
+ warn ! ( "WindowHandle::handle_titlebar is currently unimplemented for X11 backend ." ) ;
1683
1683
}
1684
1684
1685
1685
pub fn bring_to_front_and_focus ( & self ) {
@@ -1800,19 +1800,19 @@ impl WindowHandle {
1800
1800
1801
1801
pub fn open_file ( & mut self , _options : FileDialogOptions ) -> Option < FileDialogToken > {
1802
1802
// TODO(x11/file_dialogs): implement WindowHandle::open_file
1803
- warn ! ( "WindowHandle::open_file is currently unimplemented for X11 platforms ." ) ;
1803
+ warn ! ( "WindowHandle::open_file is currently unimplemented for X11 backend ." ) ;
1804
1804
None
1805
1805
}
1806
1806
1807
1807
pub fn save_as ( & mut self , _options : FileDialogOptions ) -> Option < FileDialogToken > {
1808
1808
// TODO(x11/file_dialogs): implement WindowHandle::save_as
1809
- warn ! ( "WindowHandle::save_as is currently unimplemented for X11 platforms ." ) ;
1809
+ warn ! ( "WindowHandle::save_as is currently unimplemented for X11 backend ." ) ;
1810
1810
None
1811
1811
}
1812
1812
1813
1813
pub fn show_context_menu ( & self , _menu : Menu , _pos : Point ) {
1814
1814
// TODO(x11/menus): implement WindowHandle::show_context_menu
1815
- warn ! ( "WindowHandle::show_context_menu is currently unimplemented for X11 platforms ." ) ;
1815
+ warn ! ( "WindowHandle::show_context_menu is currently unimplemented for X11 backend ." ) ;
1816
1816
}
1817
1817
1818
1818
pub fn get_idle_handle ( & self ) -> Option < IdleHandle > {
0 commit comments