1
1
Этот коммит содержится в:
Miguel de Icaza 1998-05-20 06:49:08 +00:00
родитель 4de36e79d8
Коммит 9f5523e4e9
3 изменённых файлов: 8 добавлений и 19 удалений

Просмотреть файл

@ -1,5 +1,7 @@
1998-05-20 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gprop.c (perm_owner_new): Forget about history for now.
* gpageprop.c (item_properties), gprop.c: Add executable editing
(command, and terminal). Save the dentry after modification

Просмотреть файл

@ -50,8 +50,6 @@ General Comments
- needs documentation, context help, etc. Is anyone writing this?
- icon view would be nice, I realize its in the works
- the panel scrollbar is wierd - if you middle mouse click somewhere the
thumb moves there, but if you then move the mouse (while holding
middle button down) up and down, the thumb doesn't follow the mouse.
@ -79,11 +77,6 @@ Panel comments
on an ftp link, the cursor needs to change or a modal dialog popping
up saying 'getting directory listing...' or something.
- 'Compare panels' doesnt appear to do anything - i didnt see any feedback
after I chose the compare method.
- Alt-t didnt seem to change the listing mode.
- the pull-downs on the entry boxes under the floating menubar dont
seem to do anything. I thought they might act as a history of the
last few directories visited or something.
@ -120,11 +113,6 @@ VFS Options
NEW BUG LIST:
- In the properties dialog, permissions tab, the user & group drop-downs
list the same users/groups multiple times.
- Why use a GnomeEntry *everywhere* when a lot of the places don't need
the history that it provides? Only when the user changes an entry
box often and needs a history should GnomeEntry be used...?
- Find file is pretty cool, but you might want to force-set a maximum size
during the search (and then unset it after the search is done) to stop
it from dancing around while it displays all the files that it's
@ -133,13 +121,9 @@ NEW BUG LIST:
here'/'Make a tarball' menu options.
OPEN ISSUES:
- Selection of multiple files is somewhat confusing in general
- Also if you have multi-file selection, is there a way to get a popup
menu of the operations that are applicable to all those files, instead
of an empty one?
- The text in a lot of text entries disappears as soon as I start typing
in them.
Havoc Pennington comments:

Просмотреть файл

@ -3,6 +3,9 @@
* Copyright (C) 1998 The Free Software Foundation
*
* Author: Federico Mena <federico@nuclecu.unam.mx>
*
* Known bug: the problem with the multiple entries in the Properties
* is a problem with the hisotry code.
*/
#include <grp.h>
@ -71,7 +74,7 @@ gprop_filename_new (char *complete_filename, char *filename)
gtk_box_pack_start (GTK_BOX (hbox), label_new (_("Filename"), 0.0, 0.5), FALSE, FALSE, 0);
gp->filename = gnome_entry_new ("gprop_filename_filename");
gp->filename = gnome_entry_new (NULL);
gtk_entry_set_text (GTK_ENTRY (gnome_entry_gtk_entry (GNOME_ENTRY (gp->filename))), filename);
gtk_box_pack_start (GTK_BOX (hbox), gp->filename, TRUE, TRUE, 0);
gtk_widget_show (gp->filename);
@ -117,7 +120,7 @@ gprop_exec_new (GnomeDesktopEntry *dentry)
0, 1, 0, 1,
GTK_FILL, GTK_FILL, 0, 0);
ge->entry = gnome_entry_new ("gprop_filename_entry");
ge->entry = gnome_entry_new (NULL);
s = gnome_config_assemble_vector (dentry->exec_length, (const char * const *) dentry->exec);
gtk_entry_set_text (GTK_ENTRY (gnome_entry_gtk_entry (GNOME_ENTRY (ge->entry))), s);
g_free (s);
@ -304,7 +307,7 @@ perm_owner_new (char *owner)
struct passwd *passwd;
int i, sel;
gentry = gnome_entry_new ("gprop_perm_owner");
gentry = gnome_entry_new (NULL);
list = GTK_COMBO (gentry)->list;