aboutsummaryrefslogtreecommitdiff
path: root/fiv-browser.h
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-12-31 02:19:17 +0100
committerPřemysl Eric Janouch <p@janouch.name>2022-01-05 03:48:22 +0100
commitb935b0baf868014d741bdbbf288c7b6a82fb0749 (patch)
tree3c79a6193d73dfc98b550349a41f4e40497bf969 /fiv-browser.h
parent2ac918b7abb148038a3c8312b3e789d6d2ad3701 (diff)
downloadfiv-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-browser.h')
-rw-r--r--fiv-browser.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/fiv-browser.h b/fiv-browser.h
index 613728c..2987916 100644
--- a/fiv-browser.h
+++ b/fiv-browser.h
@@ -1,7 +1,7 @@
//
// fiv-browser.h: fast image viewer - filesystem browser widget
//
-// 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,12 +17,11 @@
#pragma once
+#include "fiv-io.h"
+
#include <gtk/gtk.h>
#define FIV_TYPE_BROWSER (fiv_browser_get_type())
G_DECLARE_FINAL_TYPE(FivBrowser, fiv_browser, FIV, BROWSER, GtkWidget)
-typedef gboolean (*FivBrowserFilterCallback) (const char *);
-
-void fiv_browser_load(
- FivBrowser *self, FivBrowserFilterCallback cb, const char *path);
+GtkWidget *fiv_browser_new(FivIoModel *model);