diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-12-31 02:19:17 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-01-05 03:48:22 +0100 |
commit | b935b0baf868014d741bdbbf288c7b6a82fb0749 (patch) | |
tree | 3c79a6193d73dfc98b550349a41f4e40497bf969 /fiv-sidebar.h | |
parent | 2ac918b7abb148038a3c8312b3e789d6d2ad3701 (diff) | |
download | fiv-b935b0baf868014d741bdbbf288c7b6a82fb0749.tar.gz fiv-b935b0baf868014d741bdbbf288c7b6a82fb0749.tar.xz fiv-b935b0baf868014d741bdbbf288c7b6a82fb0749.zip |
Use a unified filesystem model
This removes some duplication of effort.
So far, sorting adjustments are not exposed in the UI.
Diffstat (limited to 'fiv-sidebar.h')
-rw-r--r-- | fiv-sidebar.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fiv-sidebar.h b/fiv-sidebar.h index 8a3f14a..2d0888a 100644 --- a/fiv-sidebar.h +++ b/fiv-sidebar.h @@ -1,7 +1,7 @@ // // fiv-sidebar.h: molesting GtkPlacesSidebar // -// Copyright (c) 2021, Přemysl Eric Janouch <p@janouch.name> +// Copyright (c) 2021 - 2022, Přemysl Eric Janouch <p@janouch.name> // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted. @@ -17,11 +17,13 @@ #pragma once +#include "fiv-io.h" + #include <gtk/gtk.h> #define FIV_TYPE_SIDEBAR (fiv_sidebar_get_type()) G_DECLARE_FINAL_TYPE(FivSidebar, fiv_sidebar, FIV, SIDEBAR, GtkScrolledWindow) -void fiv_sidebar_set_location(FivSidebar *self, GFile *location); +GtkWidget *fiv_sidebar_new(FivIoModel *model); void fiv_sidebar_show_enter_location(FivSidebar *self); GtkBox *fiv_sidebar_get_toolbar(FivSidebar *self); |