summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-02 12:33:06 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-02 12:33:06 +0000
commit7c39b3d00693f1d91514fc9ad031d3cf30541f53 (patch)
tree38136e5e85a883ccc177512b0263fbca79c6c3b6 /Gui
parent7b374f9fcae38f7c1452d25ed6022c3420015793 (diff)
downloadmpv-7c39b3d00693f1d91514fc9ad031d3cf30541f53.tar.bz2
mpv-7c39b3d00693f1d91514fc9ad031d3cf30541f53.tar.xz
persistant history path from Pavel Rousar <p.rousar@sh.cvut.cz>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8714 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/mplayer/gtk/fs.c75
-rw-r--r--Gui/mplayer/gtk/fs.h6
2 files changed, 79 insertions, 2 deletions
diff --git a/Gui/mplayer/gtk/fs.c b/Gui/mplayer/gtk/fs.c
index 52dc7f7c81..2f70ebba7c 100644
--- a/Gui/mplayer/gtk/fs.c
+++ b/Gui/mplayer/gtk/fs.c
@@ -308,7 +308,16 @@ void ShowFileSelect( int type,int modal )
}
if ( fsTopList_items ) g_list_free( fsTopList_items ); fsTopList_items=NULL;
- fsTopList_items=g_list_append( fsTopList_items,(gchar *)get_current_dir_name() );
+ {
+ char hist[fsPersistant_MaxPath + 1];
+
+ bzero( hist,fsPersistant_MaxPath + 1 );
+ if ( fs_PersistantHistory( 0,hist,0 ) == 0 )
+ {
+ fsTopList_items=g_list_append( fsTopList_items,hist );
+ chdir( hist );
+ } else fsTopList_items=g_list_append( fsTopList_items,(gchar *)get_current_dir_name() );
+ }
if ( getenv( "HOME" ) ) fsTopList_items=g_list_append( fsTopList_items,getenv( "HOME" ) );
fsTopList_items=g_list_append( fsTopList_items,"/home" );
fsTopList_items=g_list_append( fsTopList_items,"/mnt" );
@@ -328,6 +337,63 @@ void HideFileSelect( void )
fsFileSelect=NULL;
}
+//----------------------------------------------------
+
+/*
+ * int fs_PersistantHistory(int rw_command, char *subject)
+ *
+ * is used to read/write in the $HOME/.mplayer/persistant_history file
+ * parameters: rw_command = (0,1) <=> (read,write)
+ * subject - for i/o
+ * pos - position in history file (line)
+ * return: 0 = ok
+ *
+ */
+
+ int fs_PersistantHistory(int rw_command, char *subject, int pos)
+ {
+ FILE *pfile;
+
+ char path[fsPersistant_MaxPath+1];
+ int fdata,fpos = 0;
+ char *subpath = NULL;
+ const char *ph_filename = fsPersistant_FilePath;
+
+ if (!subject) return -1;
+ if (pos < 0 || pos > fsPersistant_MaxPos) return -2;
+ bzero(path,fsPersistant_MaxPath+1);
+
+ subpath = getenv("HOME");
+ if (!subpath) return -3;
+ if (strlen(subpath)+strlen(fsPersistant_FilePath) > fsPersistant_MaxPath) return -4;
+ memcpy(path, subpath, strlen(subpath));
+ memcpy(path+strlen(subpath), ph_filename, strlen(ph_filename));
+
+ if (rw_command == 0)
+ {
+ pfile = fopen(path,"r");
+ if (!pfile) return -5;
+ while ((fdata = fgetc(pfile)) != EOF)
+ {
+ if (fpos > fsPersistant_MaxPath) { fclose(pfile);return -6; }
+ subject[fpos++] = fdata;
+ }
+ fclose(pfile);
+ return 0;
+ }
+
+ if (rw_command == 1)
+ {
+ pfile = fopen(path,"w+");
+ if (!pfile) return -6;
+ fprintf(pfile,"%s",subject);
+ fclose(pfile);
+ return 0;
+ }
+ else return -10;
+}
+//-----------------------------------------------
+
void fs_fsFilterCombo_activate( GtkEditable * editable,gpointer user_data )
{
fsFilter=gtk_entry_get_text( GTK_ENTRY( user_data ) );
@@ -421,6 +487,7 @@ void fs_Ok_released( GtkButton * button,gpointer user_data )
fsSelectedFile=fsThatDir;
CheckDir( fsFNameList,get_current_dir_name() );
gtk_entry_set_text( GTK_ENTRY( fsPathCombo ),(unsigned char *)get_current_dir_name() );
+ fs_PersistantHistory(1,get_current_dir_name(),0); //totem, write into history
return;
}
@@ -489,7 +556,10 @@ void fs_Ok_released( GtkButton * button,gpointer user_data )
}
void fs_Cancel_released( GtkButton * button,gpointer user_data )
-{ HideFileSelect(); }
+{
+ HideFileSelect();
+ fs_PersistantHistory(1,get_current_dir_name(),0); //totem, write into history file
+}
void fs_fsFNameList_select_row( GtkWidget * widget,gint row,gint column,GdkEventButton *bevent,gpointer user_data )
{
@@ -537,6 +607,7 @@ GtkWidget * create_FileSelect( void )
GdkBitmap * upmask;
GtkStyle * upstyle;
+
fsFileSelect=gtk_window_new( GTK_WINDOW_TOPLEVEL );
gtk_widget_set_name( fsFileSelect,"fsFileSelect" );
gtk_object_set_data( GTK_OBJECT( fsFileSelect ),"fsFileSelect",fsFileSelect );
diff --git a/Gui/mplayer/gtk/fs.h b/Gui/mplayer/gtk/fs.h
index d8a0601dc2..b0dddbc790 100644
--- a/Gui/mplayer/gtk/fs.h
+++ b/Gui/mplayer/gtk/fs.h
@@ -9,6 +9,12 @@
#define fsAudioSelector 3
#define fsFontSelector 4
+#define fsPersistant_MaxPath 512
+#define fsPersistant_MaxPos 10
+#define fsPersistant_FilePath "/.mplayer/phistory"
+
+#include <errno.h>
+
extern GtkWidget * fsFileSelect;
extern void HideFileSelect( void );