[Cxplorer-cvs 00840] CVS update: cxplorer/src

Back to archive index

Yasumichi Akahoshi yasum****@users*****
2005年 1月 25日 (火) 21:49:34 JST


Index: cxplorer/src/Makefile.am
diff -u cxplorer/src/Makefile.am:1.10 cxplorer/src/Makefile.am:1.11
--- cxplorer/src/Makefile.am:1.10	Sat Jan 22 01:29:21 2005
+++ cxplorer/src/Makefile.am	Tue Jan 25 21:49:34 2005
@@ -35,8 +35,6 @@
 	cxplorer.c\
 	property.c\
 	property.h\
-	cxp-profile.h\
-	cxp-profile.c\
 	cxp-dir-view.h\
 	cxp-dir-view.c
 
Index: cxplorer/src/Makefile.in
diff -u cxplorer/src/Makefile.in:1.11 cxplorer/src/Makefile.in:1.12
--- cxplorer/src/Makefile.in:1.11	Sat Jan 22 01:29:21 2005
+++ cxplorer/src/Makefile.in	Tue Jan 25 21:49:34 2005
@@ -127,7 +127,7 @@
 
 bin_PROGRAMS = cxplorer
 
-cxplorer_SOURCES =  	support.h 	support.c 	main.c 	interface.h 	interface.c 	fileview.c 	fileview.h 	treecommon.c 	treecommon.h 	preview.c 	preview.h 	menubar.c 	menubar.h 	toolbar.h 	toolbar.c 	actcalls.c 	actcalls.h 	cxplorer.h 	cxplorer.c 	property.c 	property.h 	cxp-profile.h 	cxp-profile.c 	cxp-dir-view.h 	cxp-dir-view.c
+cxplorer_SOURCES =  	support.h 	support.c 	main.c 	interface.h 	interface.c 	fileview.c 	fileview.h 	treecommon.c 	treecommon.h 	preview.c 	preview.h 	menubar.c 	menubar.h 	toolbar.h 	toolbar.c 	actcalls.c 	actcalls.h 	cxplorer.h 	cxplorer.c 	property.c 	property.h 	cxp-dir-view.h 	cxp-dir-view.c
 
 
 cxplorer_LDFLAGS = 
@@ -148,8 +148,7 @@
 cxplorer_OBJECTS =  support.$(OBJEXT) main.$(OBJEXT) interface.$(OBJEXT) \
 fileview.$(OBJEXT) treecommon.$(OBJEXT) preview.$(OBJEXT) \
 menubar.$(OBJEXT) toolbar.$(OBJEXT) actcalls.$(OBJEXT) \
-cxplorer.$(OBJEXT) property.$(OBJEXT) cxp-profile.$(OBJEXT) \
-cxp-dir-view.$(OBJEXT)
+cxplorer.$(OBJEXT) property.$(OBJEXT) cxp-dir-view.$(OBJEXT)
 cxplorer_DEPENDENCIES = 
 COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -162,10 +161,10 @@
 
 TAR = tar
 GZIP_ENV = --best
-DEP_FILES =  .deps/actcalls.P .deps/cxp-dir-view.P .deps/cxp-profile.P \
-.deps/cxplorer.P .deps/fileview.P .deps/interface.P .deps/main.P \
-.deps/menubar.P .deps/preview.P .deps/property.P .deps/support.P \
-.deps/toolbar.P .deps/treecommon.P
+DEP_FILES =  .deps/actcalls.P .deps/cxp-dir-view.P .deps/cxplorer.P \
+.deps/fileview.P .deps/interface.P .deps/main.P .deps/menubar.P \
+.deps/preview.P .deps/property.P .deps/support.P .deps/toolbar.P \
+.deps/treecommon.P
 SOURCES = $(cxplorer_SOURCES)
 OBJECTS = $(cxplorer_OBJECTS)
 
Index: cxplorer/src/cxp-dir-view.c
diff -u cxplorer/src/cxp-dir-view.c:1.2 cxplorer/src/cxp-dir-view.c:1.3
--- cxplorer/src/cxp-dir-view.c:1.2	Wed Jan  5 01:33:15 2005
+++ cxplorer/src/cxp-dir-view.c	Tue Jan 25 21:49:34 2005
@@ -552,6 +552,11 @@
 	g_signal_connect(instance->priv->dirview, "cursor_changed", func, user_data);
 }
 
+void cxp_dir_view_set_show_dot_file(CxpDirView *instance, gboolean showDotFile)
+{
+	instance->priv->showDotFile = showDotFile;
+}
+
 void cxp_dir_view_refresh (CxpDirView *instance)
 {
 	gchar *currentDirectory;
Index: cxplorer/src/cxp-dir-view.h
diff -u cxplorer/src/cxp-dir-view.h:1.2 cxplorer/src/cxp-dir-view.h:1.3
--- cxplorer/src/cxp-dir-view.h:1.2	Wed Jan  5 01:33:15 2005
+++ cxplorer/src/cxp-dir-view.h	Tue Jan 25 21:49:34 2005
@@ -43,6 +43,7 @@
 gchar *cxp_dir_view_get_current_directory (CxpDirView *instance);
 gboolean cxp_dir_view_change_directory (CxpDirView *instance, const gchar *fullpath);
 void cxp_dir_view_regist_callback(CxpDirView *instance, GCallback func, gpointer user_data);
+void cxp_dir_view_set_show_dot_file(CxpDirView *instance, gboolean showDotFile);
 void cxp_dir_view_refresh (CxpDirView *instance);
 
 #endif /* CXP_DIR_VIEW_H */
Index: cxplorer/src/menubar.c
diff -u cxplorer/src/menubar.c:1.24 cxplorer/src/menubar.c:1.25
--- cxplorer/src/menubar.c:1.24	Sat Jan 22 01:29:21 2005
+++ cxplorer/src/menubar.c	Tue Jan 25 21:49:34 2005
@@ -5,7 +5,7 @@
  * This file contains functions which related menubar.
  * @author Yasumichi Akahoshi <yasum****@users*****>
  * @date Tue Jun  8 22:32:55 2004
- * $Revision: 1.24 $
+ * $Revision: 1.25 $
  ****************************************************************************/
 
 #ifdef HAVE_CONFIG_H
@@ -472,6 +472,7 @@
 
 	cxplorer = (Cxplorer *) gpData;
 	cxplorer->gbShowDotFile = gcmItem->active;
+	cxp_dir_view_set_show_dot_file (cxplorer->dirview, cxplorer->gbShowDotFile);
 	cxp_dir_view_refresh (cxplorer->dirview);
 }
 


Cxplorer-cvs メーリングリストの案内
Back to archive index