comparison src/uicommon/gftpui.h @ 355:60d3da6ab336

2003-1-5 Brian Masney <masneyb@gftp.org> * src/gtk/gftp-gtk.h src/gtk/gtkui.c - when spawning a thread, make sure that the GUI will be updated properly as soon as the thread is finished. * src/uicommon/gftpuicallbacks.c src/uicommon/gftpui.h - added gftpui_common_run_ls() * src/uicommon/gftpui.c (gftpui_common_cmd_ls) src/gtk/transfer.c (ftp_list_files) - converted these functions over to use gftpui_common_run_ls()
author masneyb
date Tue, 06 Jan 2004 01:44:09 +0000
parents e5ad008e7ea8
children 7cb3327f96f7
comparison
equal deleted inserted replaced
354:2ea37b3c0158 355:60d3da6ab336
30 { 30 {
31 gftp_request * request; 31 gftp_request * request;
32 void *uidata; 32 void *uidata;
33 char *input_string, 33 char *input_string,
34 *source_string; 34 *source_string;
35 GList * files;
35 int (*run_function) (gftpui_callback_data * cdata); 36 int (*run_function) (gftpui_callback_data * cdata);
36 }; 37 };
37 38
38 39
39 typedef enum _gftpui_common_request_type 40 typedef enum _gftpui_common_request_type
98 99
99 int gftpui_common_run_chdir ( gftpui_callback_data * cdata ); 100 int gftpui_common_run_chdir ( gftpui_callback_data * cdata );
100 101
101 int gftpui_common_run_chmod ( gftpui_callback_data * cdata ); 102 int gftpui_common_run_chmod ( gftpui_callback_data * cdata );
102 103
104 int gftpui_common_run_ls ( gftpui_callback_data * cdata );
105
103 int gftpui_common_run_delete ( gftpui_callback_data * cdata ); 106 int gftpui_common_run_delete ( gftpui_callback_data * cdata );
104 107
105 int gftpui_common_run_rmdir ( gftpui_callback_data * cdata ); 108 int gftpui_common_run_rmdir ( gftpui_callback_data * cdata );
106 109
107 /* UI Functions that must be implemented by each distinct UI */ 110 /* UI Functions that must be implemented by each distinct UI */