- 10 Feb, 2000 24 commits
-
-
Elliot Lee authored
* src/ntl-main.c: Add "Bonobo" to list of log domains to catch. * src/ntl-window.c: Do proper UIH setup for the menubar and toolbar. Also switch to using the hpaned temporarily, to be able to see/manipulate all the meta views. * components/history/ntl-history-view.c: Implement client side of menu merging properly.
-
John Sullivan authored
-
Jonathan Blandford authored
2000-02-10 Jonathan Blandford <jrb@redhat.com> * gnome-db2html2/sect-elements.c: added cdata support
-
John Sullivan authored
-
Jonathan Blandford authored
-
Andy Hertzfeld authored
finished hit-testing and made it activate the appropriate metaview when the corresponding tab is clicked
-
Andy Hertzfeld authored
more work on index panel, improved tab positioning, started on tab hit-testing and made the notebook hidden by default. You cant see any of this unless you define USE_NEW_TABS
-
Darin Adler authored
* fm-directory-view-icons.c: (fm_directory_view_icons_get_full_icon_text_attribute_names): (fm_directory_view_icons_set_full_icon_text_attribute_names): After talking to John, removed the asserts from both of these routines. Later, he'll figure out whether this needs refinement, but for now we just want to avoid the abort on startup!
-
John Sullivan authored
-
John Sullivan authored
blank types say "unknown type", and directories say "--" for size again (to avoid blank lines).
-
Darin Adler authored
container. Straightened out the use of various coordinate systems and bounds calculations and removed much unused code inherited from the GdkPixbuf canvas item class that Andy cloned our code from. Changed the class so it doesn't scale icons any more -- we leave that to the icon factory so the scaled icons can be cached. * libnautilus/gnome-icon-container-dnd.c: * libnautilus/gnome-icon-container-private.h: * libnautilus/gnome-icon-container.c: * libnautilus/nautilus-icons-view-icon-item.c: * libnautilus/nautilus-icons-view-icon-item.h: Made extensive changes to the icon item class, including getting rid of the "x", "y", "width", and "height" attributes, adding a new "font" attribute, changing the "label" attribute name to "text" to be more consistent with other canvas items, simplifying the update logic for now (we can recomplicate it later if need be), changing the pixbuf to have a fixed size in pixels instead of being scaled with the pixels_per_unit and changing the pixbuf when we change zoom levels, and other misc. cleanup. (nautilus_icons_view_icon_item_get_arg): Fixed bug for "label" which would return a non-strdup'd piece of text. (draw_or_measure_text_box): Fixed bug where width of the selection box would be based on the length of the last line of text, not the widest, and extra GCs would be created for each line of text. * libnautilus/nautilus-icons-controller.h: * libnautilus/nautilus-icons-controller.c: (nautilus_icons_controller_get_icon_image): * src/file-manager/fm-icons-controller.c: (fm_icons_controller_get_icon_image): Changed the interface so that the icons controller specifies the icon as a NautilusScalableIcon instead of a GdkPixbuf. This lets the icon container get the appropriate icon for size as it zooms. * libnautilus/gdk-extensions.h: * libnautilus/gdk-extensions.c: (nautilus_gdk_font_equal): Added a version of gdk_font_equal that works with NULL for the font. Maybe we need a naming scheme for these NULL-tolerant variations on basic calls. * src/ntl-uri-map.c: (nautilus_navinfo_free): * src/ntl-window-msgs.c: (nautilus_window_change_location_2): Fixed a NULL dereference that would happen when @navi was NULL. * libnautilus/nautilus-directory.c: (nautilus_directory_try_to_read_metafile): Fixed error handling for case when gnome_vfs_read fails. Fixed error handling for case where metafile_info.size won't fit into a size_t. Switched back to g_malloc instead of g_alloca, since the size of a file might be too big for the stack. In the long run, we will feed the file data directly to the XML code, so this is a bit temporary. Removed the assert that Elliot added to help track down the giant files sizes coming from gnome-vfs; the failure in g_malloc will be easy to debug, unlike the failure in g_alloca. (The assert was added without a ChangeLog entry.)
-
John Sullivan authored
blank types say "unknown type", and directories say "--" for size again (to avoid blank lines).
-
John Sullivan authored
-
Elliot Lee authored
* libnautilus/bonobo-stream-vfs.[ch]: Implement truncate. * src/nautilus-zoom-control.c: Use GINT_TO_POINTER and GPOINTER_TO_INT macros for "proper" int <-> pointer conversion.
-
Elliot Lee authored
Implement truncate.
-
John Sullivan authored
blank types say "unknown type", and directories say "--" for size again (to avoid blank lines).
-
Maciej Stachowiak authored
-
Elliot Lee authored
* src/ntl-view-bonobo-control.c: In notify_location_change, send progress back (because the Bonobo control, which might be the content view, can't do it). * src/ntl-view-bonobo-subdoc.c: As above, plus don't use PersistFile interface, plus use bonobo-stream-vfs instead of bonobo-stream-fs. * src/ntl-uri-map.c: If no content type is found, default to text/plain. * libnautilus/bonobo-stream-vfs.[ch], libnautilus/Makefile.am: Initial implementation of bonobo streams in terms of Gnome VFS.
-
Jonathan Blandford authored
-
Jonathan Blandford authored
2000-02-09 Jonathan Blandford <jrb@redhat.com> * gnome-db2html2/sect-elements.c: added many more fields. Now, we just need tables, figures, and CDATA and we're pretty much done with a rough cut.
-
Maciej Stachowiak authored
* src/ntl-meta-view.c: To avoid a bug which caused parts of the destroy function calling chain to be skipped, remove the destroy function. In the process, switch over to using the boilerplate generation macros from nautilus-gtk-macros.h
-
Darin Adler authored
container. Straightened out the use of various coordinate systems and bounds calculations and removed much unused code inherited from the GdkPixbuf canvas item class that Andy cloned our code from. Changed the class so it doesn't scale icons any more -- we leave that to the icon factory so the scaled icons can be cached. * libnautilus/gnome-icon-container-dnd.c: * libnautilus/gnome-icon-container-private.h: * libnautilus/gnome-icon-container.c: * libnautilus/nautilus-icons-view-icon-item.c: * libnautilus/nautilus-icons-view-icon-item.h: Made extensive changes to the icon item class, including getting rid of the "x", "y", "width", and "height" attributes, adding a new "font" attribute, changing the "label" attribute name to "text" to be more consistent with other canvas items, simplifying the update logic for now (we can recomplicate it later if need be), changing the pixbuf to have a fixed size in pixels instead of being scaled with the pixels_per_unit and changing the pixbuf when we change zoom levels, and other misc. cleanup. (nautilus_icons_view_icon_item_get_arg): Fixed bug for "label" which would return a non-strdup'd piece of text. (draw_or_measure_text_box): Fixed bug where width of the selection box would be based on the length of the last line of text, not the widest, and extra GCs would be created for each line of text. * libnautilus/nautilus-icons-controller.h: * libnautilus/nautilus-icons-controller.c: (nautilus_icons_controller_get_icon_image): * src/file-manager/fm-icons-controller.c: (fm_icons_controller_get_icon_image): Changed the interface so that the icons controller specifies the icon as a NautilusScalableIcon instead of a GdkPixbuf. This lets the icon container get the appropriate icon for size as it zooms. * libnautilus/gdk-extensions.h: * libnautilus/gdk-extensions.c: (nautilus_gdk_font_equal): Added a version of gdk_font_equal that works with NULL for the font. Maybe we need a naming scheme for these NULL-tolerant variations on basic calls. * src/ntl-uri-map.c: (nautilus_navinfo_free): * src/ntl-window-msgs.c: (nautilus_window_change_location_2): Fixed a NULL dereference that would happen when @navi was NULL. * libnautilus/nautilus-directory.c: (nautilus_directory_try_to_read_metafile): Fixed error handling for case when gnome_vfs_read fails. Fixed error handling for case where metafile_info.size won't fit into a size_t. Switched back to g_malloc instead of g_alloca, since the size of a file might be too big for the stack. In the long run, we will feed the file data directly to the XML code, so this is a bit temporary. Removed the assert that Elliot added to help track down the giant files sizes coming from gnome-vfs; the failure in g_malloc will be easy to debug, unlike the failure in g_alloca. (The assert was added without a ChangeLog entry.)
-
John Sullivan authored
-
Elliot Lee authored
* libnautilus/bonobo-stream-vfs.[ch]: Implement truncate. * src/nautilus-zoom-control.c: Use GINT_TO_POINTER and GPOINTER_TO_INT macros for "proper" int <-> pointer conversion.
-
- 09 Feb, 2000 7 commits
-
-
Elliot Lee authored
Add assert to try and catch the 'man:ls' bug...
-
Andy Hertzfeld authored
more work on the new index tabs; they draw properly now, but they're still not ready for prime time.
-
Jonathan Blandford authored
2000-02-08 Jonathan Blandford <jrb@redhat.com> * gnome-db2html2/sect-elements.c: started program listing. doubting SAX's strictness big time.
-
John Sullivan authored
-
John Sullivan authored
-
Maciej Stachowiak authored
-
Jonathan Blandford authored
-
- 08 Feb, 2000 9 commits
-
-
Jonathan Blandford authored
-
Elliot Lee authored
* gnome-man2html2/gnome-man2html.c, gnome-man2html2/Makefile.am: Make it look up a file location and use it, if just passed something like 'ls.1' on the cmdline. Also use zlib to handle compressed manpages.
-
Jonathan Blandford authored
-
Jonathan Blandford authored
-
Jonathan Blandford authored
-
Dave Mason authored
Dave Mason dcm@redhat.com
-
John Sullivan authored
-
Elliot Lee authored
* src/ntl-window-msgs.c: Don't segfault if an error occurs while loading the start page.
-
John Sullivan authored
-