diff options
author | Max Eliaser <[email protected]> | 2018-12-30 14:20:02 -0800 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-01-03 20:29:22 +0000 |
commit | 9991fb1762bd44762c4ee43b2484f30114a307d4 (patch) | |
tree | 245286d4ab0336ecd6753bb61746f1f91731b933 /libcaja-private/caja-file.h | |
parent | e51b16d36919d1f075804cffcb9739c2ce761028 (diff) | |
download | caja-9991fb1762bd44762c4ee43b2484f30114a307d4.tar.bz2 caja-9991fb1762bd44762c4ee43b2484f30114a307d4.tar.xz |
[libcaja-private] Re-check file MIME type before picking an application.
An example of when the MIME type might change: a file is initially created
with 0 bytes of content, but more data is added later. Empty files are always
detected as plain text, but the file might not be empty anymore when the user
opens it.
This commit affects the behavior when double-clicking a file and when right-
clicking on it too.
Diffstat (limited to 'libcaja-private/caja-file.h')
-rw-r--r-- | libcaja-private/caja-file.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libcaja-private/caja-file.h b/libcaja-private/caja-file.h index 9d5a1f62..e68783b8 100644 --- a/libcaja-private/caja-file.h +++ b/libcaja-private/caja-file.h @@ -144,6 +144,12 @@ void caja_file_monitor_add (CajaFile void caja_file_monitor_remove (CajaFile *file, gconstpointer client); +/* Synchronously refreshes file info from disk. + * This can call caja_file_changed, so don't call this function from any + * of the callbacks for that event. + */ +void caja_file_refresh_info (CajaFile *file); + /* Waiting for data that's read asynchronously. * This interface currently works only for metadata, but could be expanded * to other attributes as well. |