Formatting
This commit is contained in:
parent
547a811acf
commit
2803767ed8
11 changed files with 86 additions and 81 deletions
|
|
@ -1,17 +1,18 @@
|
|||
use {
|
||||
gtk4 :: {
|
||||
* ,
|
||||
Align :: * ,
|
||||
Orientation :: * ,
|
||||
gdk :: * ,
|
||||
gio :: * ,
|
||||
pango :: { * , Weight :: * } ,
|
||||
prelude :: * ,
|
||||
} ,
|
||||
std :: { cell :: * , iter :: * , path :: { Path , PathBuf } } ,
|
||||
} ;
|
||||
use gtk4 :: * ;
|
||||
use gtk4 :: Align :: * ;
|
||||
use gtk4 :: Orientation :: * ;
|
||||
use gtk4 :: gdk :: * ;
|
||||
use gtk4 :: gio :: * ;
|
||||
use gtk4 :: pango :: * ;
|
||||
use gtk4 :: pango :: Weight :: * ;
|
||||
use gtk4 :: prelude :: * ;
|
||||
use std :: cell :: * ;
|
||||
use std :: iter :: * ;
|
||||
use std :: path :: Path ;
|
||||
use std :: path :: PathBuf ;
|
||||
|
||||
use crate :: ui :: { collatable_container :: * , component :: * } ;
|
||||
use crate :: ui :: collatable_container :: * ;
|
||||
use crate :: ui :: component :: * ;
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
mod sort_button ;
|
||||
|
||||
use {
|
||||
gtk4 :: { Box , Align :: * , Orientation :: * , prelude :: * } ,
|
||||
std :: ops :: * ,
|
||||
} ;
|
||||
use gtk4 :: Box ;
|
||||
use gtk4 :: Align :: * ;
|
||||
use gtk4 :: Orientation :: * ;
|
||||
use gtk4 :: prelude :: * ;
|
||||
use std :: ops :: * ;
|
||||
|
||||
use crate :: ui :: {
|
||||
component :: * ,
|
||||
utility :: * ,
|
||||
collatable_container :: { * , collation_menu :: sort_button :: * } ,
|
||||
} ;
|
||||
use crate :: ui :: component :: * ;
|
||||
use crate :: ui :: utility :: * ;
|
||||
use crate :: ui :: collatable_container :: * ;
|
||||
use crate :: ui :: collatable_container :: collation_menu :: sort_button :: * ;
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
use {
|
||||
gtk4 :: { Image , ListBoxRow , Align :: * } ,
|
||||
libadwaita :: * ,
|
||||
std :: cell :: * ,
|
||||
} ;
|
||||
use gtk4 :: Image ;
|
||||
use gtk4 :: ListBoxRow ;
|
||||
use gtk4 :: Align :: * ;
|
||||
use libadwaita :: * ;
|
||||
use std :: cell :: * ;
|
||||
|
||||
use crate :: {
|
||||
utility :: * ,
|
||||
ui :: { * , utility :: * , collatable_container :: SortingDirection :: * } ,
|
||||
} ;
|
||||
use crate :: utility :: * ;
|
||||
use crate :: ui :: * ;
|
||||
use crate :: ui :: utility :: * ;
|
||||
use crate :: ui :: collatable_container :: SortingDirection :: * ;
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
mod collated_grid ;
|
||||
mod collation_menu ;
|
||||
|
||||
use gtk4 :: { * , Orientation :: * , prelude :: * } ;
|
||||
use gtk4 :: * ;
|
||||
use gtk4 :: Orientation :: * ;
|
||||
use gtk4 :: prelude :: * ;
|
||||
|
||||
use crate :: {
|
||||
data_manager :: * ,
|
||||
ui :: {
|
||||
component :: * , utility :: * ,
|
||||
collatable_container :: { collated_grid :: * , collation_menu :: * } ,
|
||||
} ,
|
||||
utility :: * ,
|
||||
} ;
|
||||
use crate :: data_manager :: * ;
|
||||
use crate :: ui :: component :: * ;
|
||||
use crate :: ui :: utility :: * ;
|
||||
use crate :: ui :: collatable_container :: collated_grid :: * ;
|
||||
use crate :: ui :: collatable_container :: collation_menu :: * ;
|
||||
use crate :: utility :: * ;
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue