@@ -3,14 +3,14 @@ use apps::{
3
3
editor:: JsonEditorExample , search:: SearchExample ,
4
4
toggle_buttons:: ToggleButtonsCustomisationDemo , Example , Show ,
5
5
} ;
6
- use egui:: global_theme_preference_buttons;
7
6
use serde_json:: json;
8
7
9
8
mod apps;
10
9
11
10
struct DemoApp {
12
11
examples : Vec < Box < dyn Show > > ,
13
12
open_example_idx : Option < usize > ,
13
+ left_sidebar_expanded : bool ,
14
14
}
15
15
16
16
impl Default for DemoApp {
@@ -42,6 +42,7 @@ impl Default for DemoApp {
42
42
Box :: new( ToggleButtonsCustomisationDemo :: new( complex_object) ) ,
43
43
] ,
44
44
open_example_idx : None ,
45
+ left_sidebar_expanded : true ,
45
46
}
46
47
}
47
48
}
@@ -50,13 +51,16 @@ impl eframe::App for DemoApp {
50
51
fn update ( & mut self , ctx : & egui:: Context , _frame : & mut eframe:: Frame ) {
51
52
egui:: SidePanel :: left ( "left-panel" )
52
53
. resizable ( false )
53
- . show ( ctx, |ui| {
54
- egui:: TopBottomPanel :: top ( "theme-preference-top-panel" )
55
- . frame ( egui:: Frame :: side_top_panel ( & ctx. style ( ) ) . inner_margin ( 10.0 ) )
56
- . show_inside ( ui, |ui| {
57
- global_theme_preference_buttons ( ui) ;
58
- } ) ;
54
+ . frame ( egui:: Frame :: side_top_panel ( & ctx. style ( ) ) . inner_margin ( 10.0 ) )
55
+ . show_animated ( ctx, self . left_sidebar_expanded , |ui| {
56
+ collapsible_sidebar_button_ui ( ui, & mut self . left_sidebar_expanded ) ;
57
+ ui. add_space ( 10.0 ) ;
58
+
59
+ ui. label ( egui:: RichText :: new ( "Theme" ) . monospace ( ) ) ;
60
+ egui:: global_theme_preference_buttons ( ui) ;
59
61
ui. add_space ( 10.0 ) ;
62
+
63
+ ui. label ( egui:: RichText :: new ( "Examples" ) . monospace ( ) ) ;
60
64
ui. with_layout ( egui:: Layout :: top_down_justified ( egui:: Align :: LEFT ) , |ui| {
61
65
for ( idx, example) in self . examples . iter ( ) . enumerate ( ) {
62
66
let is_open = self
@@ -74,36 +78,54 @@ impl eframe::App for DemoApp {
74
78
} ) ;
75
79
} ) ;
76
80
77
- match self . open_example_idx {
78
- Some ( open_idx) => {
79
- let example = & mut self . examples [ open_idx] ;
80
- egui:: TopBottomPanel :: top ( "top-panel" )
81
- . frame ( egui:: Frame :: side_top_panel ( & ctx. style ( ) ) . inner_margin ( 10.0 ) )
82
- . show ( ctx, |ui| {
81
+ let example = self
82
+ . open_example_idx
83
+ . map ( |open_idx| & mut self . examples [ open_idx] ) ;
84
+
85
+ if let Some ( example) = & example {
86
+ egui:: TopBottomPanel :: top ( "top-panel" )
87
+ . frame ( egui:: Frame :: side_top_panel ( & ctx. style ( ) ) . inner_margin ( 10.0 ) )
88
+ . show ( ctx, |ui| {
89
+ ui. horizontal_centered ( |ui| {
90
+ if !self . left_sidebar_expanded {
91
+ collapsible_sidebar_button_ui ( ui, & mut self . left_sidebar_expanded ) ;
92
+ }
83
93
ui. heading ( example. title ( ) ) ;
84
94
} ) ;
85
- egui:: CentralPanel :: default ( ) . show ( ctx, |ui| {
86
- example. show ( ui) ;
87
95
} ) ;
88
- }
89
- None => {
90
- egui:: CentralPanel :: default ( ) . show ( ctx, |ui| {
96
+ }
97
+
98
+ egui:: CentralPanel :: default ( ) . show ( ctx, |ui| {
99
+ match example {
100
+ Some ( example) => {
101
+ example. show ( ui) ;
102
+ }
103
+ None => {
104
+ if !self . left_sidebar_expanded {
105
+ collapsible_sidebar_button_ui ( ui, & mut self . left_sidebar_expanded ) ;
106
+ }
91
107
ui. with_layout (
92
108
egui:: Layout :: centered_and_justified ( egui:: Direction :: LeftToRight ) ,
93
109
|ui| {
94
110
ui. heading ( "Select an example." ) ;
95
111
} ,
96
112
) ;
97
- } ) ;
98
- }
99
- }
113
+ }
114
+ } ;
115
+ } ) ;
100
116
}
101
117
102
118
fn clear_color ( & self , visuals : & egui:: Visuals ) -> [ f32 ; 4 ] {
103
119
visuals. panel_fill . to_normalized_gamma_f32 ( )
104
120
}
105
121
}
106
122
123
+ fn collapsible_sidebar_button_ui ( ui : & mut egui:: Ui , open : & mut bool ) {
124
+ if ui. button ( "☰" ) . clicked ( ) {
125
+ * open = !* open;
126
+ }
127
+ }
128
+
107
129
#[ cfg( not( target_arch = "wasm32" ) ) ]
108
130
fn main ( ) {
109
131
let _ = eframe:: run_native (
0 commit comments