Browse Source

Fri Apr 3 12:14:08 1998 Norbert Warmuth <k3190@fh-sw.de>

* tk/tkmenu.c (menubar_arrange, destroy_menu): Added small stubs in order
to make it compile.

* tk/Makefile.in: Use tkmenu* instead of menu*

* src/TODO: Removed obsolete entries: Similar entries in tree view
are displayed correct; user specific files has been moved
to ~/.mc/
Added: Check what to do with menubar_arrange/destroy_menu stubs
in tk/tkmenu.c; the interal editor (not portet yet) adds entries
to the wrong menubar
Norbert Warmuth 27 years ago
parent
commit
551dec7a7f
5 changed files with 39 additions and 9 deletions
  1. 9 0
      src/ChangeLog
  2. 8 6
      src/TODO
  3. 7 0
      tk/ChangeLog
  4. 3 3
      tk/Makefile.in
  5. 12 0
      tk/tkmenu.c

+ 9 - 0
src/ChangeLog

@@ -1,3 +1,12 @@
+Fri Apr  3 12:23:28 1998  Norbert Warmuth  <k3190@fh-sw.de>
+
+	* TODO: Removed obsolete entries: Similar entries in tree view 
+	are displayed correct; user specific files has been moved 
+	to ~/.mc/
+	Added: Check what to do with menubar_arrange/destroy_menu stubs 
+	in tk/tkmenu.c; the interal editor (not portet yet) adds entries 
+	to the wrong menubar
+
 Wed Apr  1 00:15:30 1998  Norbert Warmuth  <k3190@fh-sw.de>
 
 	* key.c, key.h (numeric_keypad_mode, application_keypad_mode): New

+ 8 - 6
src/TODO

@@ -10,8 +10,6 @@
 
   - Make the buttonbar for the tree box work.
 
-  - Fix the tree: it displays similar entries wrong.
-
   - In the incremental search mode, when backspacing, select the
     correct file, do not stop in current file.
 
@@ -41,9 +39,9 @@
  
   - Click on the pathname should take you to that directory.
 
-  - Viewer breask with object libraries prev_color is miss computed.
+  - Viewer breaks with object libraries prev_color is miss computed.
 
-   - Tk/Winfo: The program should not recompute the file system information
+  - Tk/Winfo: The program should not recompute the file system information
     for each file, it should keep a cache
 
   - The control of the buttonbar is broken in Tk, try quick view and
@@ -62,6 +60,12 @@
   
   - The mini status has not been coded.
 
+  - menubar_arrange, destroy_menu: implement
+
+  - Port the interal editor
+
+  - the interal editor adds it's entries to the wrong menu
+
 * XView/mc
 
   - Dropping files on root window should create action icon.
@@ -85,8 +89,6 @@
 
 * Extensions
 
-   - rename ~/.mc.XXX to ~/.mc/XXX
-
    - Hotlist should allow people to edit the entry (like we do in the external
      panelize thing).
 

+ 7 - 0
tk/ChangeLog

@@ -1,3 +1,10 @@
+Fri Apr  3 12:14:08 1998  Norbert Warmuth  <k3190@fh-sw.de>
+
+	* tkmenu.c (menubar_arrange, destroy_menu): Added small stubs in order
+	to make it compile.
+
+	* Makefile.in: Use tkmenu* instead of menu*
+
 Fri Mar 20 18:41:40 1998  Norbert Warmuth  <k3190@fh-sw.de>
 
 	* tkmain.c (x_init_dlg): added dummy function to make it

+ 3 - 3
tk/Makefile.in

@@ -14,10 +14,10 @@ INSTALL = @INSTALL@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_DATA = @INSTALL_DATA@
 
-TKSRCS = tkmain.c menu.c tkscreen.c tkwidget.c mc.tcl tkkey.c tkview.c \
+TKSRCS = tkmain.c tkmenu.c tkscreen.c tkwidget.c mc.tcl tkkey.c tkview.c \
 	 tkinfo.c gd.tcl
 
-TKHDRS = tkmain.h tkscreen.h tkwidget.h tkinfo.h tkconf.h menu.h
+TKHDRS = tkmain.h tkscreen.h tkwidget.h tkinfo.h tkconf.h
 
 GUIS   = gui.dbits.tcl gui.display.tcl gui.findfile.tcl gui.hotlist.tcl   \
 	gui.listbox.tcl gui.mfind.tcl gui.option.tcl gui.panelize.tcl     \
@@ -46,7 +46,7 @@ OOBJS = main.o dlg.o screen.o widget.o wtools.o info.o layout.o boxes.o \
 	option.o cmd.o utilunix.o popt.o xslint.o
 
 OBJS = $(LOBJS) $(OOBJS) \
-	menu.o tkmain.o tkscreen.o tkwidget.o tkkey.o tkview.o \
+	tkmenu.o tkmain.o tkscreen.o tkwidget.o tkkey.o tkview.o \
 	tkinfo.o
 
 #

+ 12 - 0
tk/tkmenu.c

@@ -110,3 +110,15 @@ WMenu *menubar_new (int y, int x, int cols, Menu menu [], int items)
     return menubar;
 }
 
+void
+menubar_arrange (WMenu* menubar)
+{
+    /* nothing to do I think (Norbert) */
+}
+
+void
+destroy_menu (Menu menu)
+{
+    /* FIXME: need to implement? (Norbert) */
+}
+