Formatting

This commit is contained in:
Reinout Meliesie 2025-02-05 14:57:07 +01:00
commit 2803767ed8
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
11 changed files with 86 additions and 81 deletions

View file

@ -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 :: * ;

View file

@ -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 :: * ;

View file

@ -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 :: * ;

View file

@ -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 :: * ;