From ab3e71cad9dbc43eb407e7dc6e287efe0a4f4282 Mon Sep 17 00:00:00 2001 From: Hardeep Sidhu Date: Sun, 4 Jun 2006 16:36:49 +0000 Subject: Added reload_directory() to plugin api and modified text editor and sudoku plugins to call it when saving a new file. Fixes B#5360. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10053 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.c | 1 + apps/plugin.h | 3 ++- apps/plugins/sudoku/sudoku.c | 1 + apps/plugins/text_editor.c | 4 ++++ 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/plugin.c b/apps/plugin.c index f332850565..1b1c406af4 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -441,6 +441,7 @@ static const struct plugin_api rockbox_api = { utf8seek, set_int, + reload_directory, }; int plugin_load(const char* plugin, void* parameter) diff --git a/apps/plugin.h b/apps/plugin.h index 2821beeab9..de8f267ec8 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -104,7 +104,7 @@ #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 21 +#define PLUGIN_API_VERSION 22 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -520,6 +520,7 @@ struct plugin_api { bool (*set_int)(const unsigned char* string, const char* unit, int voice_unit, int* variable, void (*function)(int), int step, int min, int max, void (*formatter)(char*, int, int, const char*) ); + void (*reload_directory)(void); }; /* plugin header */ diff --git a/apps/plugins/sudoku/sudoku.c b/apps/plugins/sudoku/sudoku.c index 0c39c463ef..12924e8fe6 100644 --- a/apps/plugins/sudoku/sudoku.c +++ b/apps/plugins/sudoku/sudoku.c @@ -689,6 +689,7 @@ bool save_sudoku(struct sudoku_state_t* state) /* Add a blank line at end */ rb->write(fd,"\r\n",2); rb->close(fd); + rb->reload_directory(); /* Save a copy of the saved state - so we can reload without using the disk */ rb->memcpy(state->savedboard,state->currentboard,81); diff --git a/apps/plugins/text_editor.c b/apps/plugins/text_editor.c index e86606344d..f98194b151 100644 --- a/apps/plugins/text_editor.c +++ b/apps/plugins/text_editor.c @@ -223,6 +223,10 @@ void save_changes(int overwrite) return; } + if (!overwrite) + /* current directory may have changed */ + rb->reload_directory(); + rb->lcd_clear_display(); #ifdef HAVE_ADJUSTABLE_CPU_FREQ rb->cpu_boost(1); -- cgit v1.2.3