1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
mod action_row;
pub use self::action_row::ActionRow;
mod animation;
pub use self::animation::Animation;
mod animation_target;
pub use self::animation_target::AnimationTarget;
mod application;
pub use self::application::Application;
mod application_window;
pub use self::application_window::ApplicationWindow;
mod avatar;
pub use self::avatar::Avatar;
mod bin;
pub use self::bin::Bin;
mod button_content;
pub use self::button_content::ButtonContent;
mod callback_animation_target;
pub use self::callback_animation_target::CallbackAnimationTarget;
mod carousel;
pub use self::carousel::Carousel;
mod carousel_indicator_dots;
pub use self::carousel_indicator_dots::CarouselIndicatorDots;
mod carousel_indicator_lines;
pub use self::carousel_indicator_lines::CarouselIndicatorLines;
mod clamp;
pub use self::clamp::Clamp;
mod clamp_layout;
pub use self::clamp_layout::ClampLayout;
mod clamp_scrollable;
pub use self::clamp_scrollable::ClampScrollable;
mod combo_row;
pub use self::combo_row::ComboRow;
mod enum_list_item;
pub use self::enum_list_item::EnumListItem;
mod enum_list_model;
pub use self::enum_list_model::EnumListModel;
mod expander_row;
pub use self::expander_row::ExpanderRow;
mod flap;
pub use self::flap::Flap;
mod header_bar;
pub use self::header_bar::HeaderBar;
mod leaflet;
pub use self::leaflet::Leaflet;
mod leaflet_page;
pub use self::leaflet_page::LeafletPage;
mod preferences_group;
pub use self::preferences_group::PreferencesGroup;
mod preferences_page;
pub use self::preferences_page::PreferencesPage;
mod preferences_row;
pub use self::preferences_row::PreferencesRow;
mod preferences_window;
pub use self::preferences_window::PreferencesWindow;
mod split_button;
pub use self::split_button::SplitButton;
mod spring_animation;
pub use self::spring_animation::SpringAnimation;
mod squeezer;
pub use self::squeezer::Squeezer;
mod squeezer_page;
pub use self::squeezer_page::SqueezerPage;
mod status_page;
pub use self::status_page::StatusPage;
mod style_manager;
pub use self::style_manager::StyleManager;
mod swipe_tracker;
pub use self::swipe_tracker::SwipeTracker;
mod swipeable;
pub use self::swipeable::Swipeable;
mod tab_bar;
pub use self::tab_bar::TabBar;
mod tab_page;
pub use self::tab_page::TabPage;
mod tab_view;
pub use self::tab_view::TabView;
mod timed_animation;
pub use self::timed_animation::TimedAnimation;
mod toast;
pub use self::toast::Toast;
mod toast_overlay;
pub use self::toast_overlay::ToastOverlay;
mod view_stack;
pub use self::view_stack::ViewStack;
mod view_stack_page;
pub use self::view_stack_page::ViewStackPage;
mod view_switcher;
pub use self::view_switcher::ViewSwitcher;
mod view_switcher_bar;
pub use self::view_switcher_bar::ViewSwitcherBar;
mod view_switcher_title;
pub use self::view_switcher_title::ViewSwitcherTitle;
mod window;
pub use self::window::Window;
mod window_title;
pub use self::window_title::WindowTitle;
mod spring_params;
pub use self::spring_params::SpringParams;
mod enums;
pub use self::enums::AnimationState;
pub use self::enums::CenteringPolicy;
pub use self::enums::ColorScheme;
pub use self::enums::Easing;
pub use self::enums::FlapFoldPolicy;
pub use self::enums::FlapTransitionType;
pub use self::enums::FoldThresholdPolicy;
pub use self::enums::LeafletTransitionType;
pub use self::enums::NavigationDirection;
pub use self::enums::SqueezerTransitionType;
pub use self::enums::ToastPriority;
pub use self::enums::ViewSwitcherPolicy;
pub mod functions;
#[doc(hidden)]
pub mod traits {
pub use super::action_row::ActionRowExt;
pub use super::animation::AnimationExt;
pub use super::application::AdwApplicationExt;
pub use super::application_window::AdwApplicationWindowExt;
pub use super::bin::BinExt;
pub use super::combo_row::ComboRowExt;
pub use super::expander_row::ExpanderRowExt;
pub use super::preferences_group::PreferencesGroupExt;
pub use super::preferences_page::PreferencesPageExt;
pub use super::preferences_row::PreferencesRowExt;
pub use super::preferences_window::PreferencesWindowExt;
pub use super::swipeable::SwipeableExt;
pub use super::window::AdwWindowExt;
}
#[doc(hidden)]
pub mod builders {
pub use super::action_row::ActionRowBuilder;
pub use super::application::ApplicationBuilder;
pub use super::application_window::ApplicationWindowBuilder;
pub use super::avatar::AvatarBuilder;
pub use super::bin::BinBuilder;
pub use super::button_content::ButtonContentBuilder;
pub use super::carousel::CarouselBuilder;
pub use super::carousel_indicator_dots::CarouselIndicatorDotsBuilder;
pub use super::carousel_indicator_lines::CarouselIndicatorLinesBuilder;
pub use super::clamp::ClampBuilder;
pub use super::clamp_layout::ClampLayoutBuilder;
pub use super::clamp_scrollable::ClampScrollableBuilder;
pub use super::combo_row::ComboRowBuilder;
pub use super::expander_row::ExpanderRowBuilder;
pub use super::flap::FlapBuilder;
pub use super::header_bar::HeaderBarBuilder;
pub use super::leaflet::LeafletBuilder;
pub use super::preferences_group::PreferencesGroupBuilder;
pub use super::preferences_page::PreferencesPageBuilder;
pub use super::preferences_row::PreferencesRowBuilder;
pub use super::preferences_window::PreferencesWindowBuilder;
pub use super::split_button::SplitButtonBuilder;
pub use super::spring_animation::SpringAnimationBuilder;
pub use super::squeezer::SqueezerBuilder;
pub use super::status_page::StatusPageBuilder;
pub use super::swipe_tracker::SwipeTrackerBuilder;
pub use super::tab_bar::TabBarBuilder;
pub use super::tab_view::TabViewBuilder;
pub use super::timed_animation::TimedAnimationBuilder;
pub use super::toast::ToastBuilder;
pub use super::view_stack::ViewStackBuilder;
pub use super::view_switcher::ViewSwitcherBuilder;
pub use super::view_switcher_bar::ViewSwitcherBarBuilder;
pub use super::view_switcher_title::ViewSwitcherTitleBuilder;
pub use super::window::WindowBuilder;
pub use super::window_title::WindowTitleBuilder;
}