~ubuntu-branches/ubuntu/lucid/nautilus/lucid-proposed

« back to all changes in this revision

Viewing changes to libnautilus-private/nautilus-window-info.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-01-06 17:14:33 UTC
  • mfrom: (1.17.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100106171433-f7tyr81dswkp6e59
Tags: 1:2.29.1-0ubuntu1
* New upstream version:
  - Make browser mode the default
  - Add split view mode
  - Browser UI reorganization
  - Better background support on multi-monitor setups
  - Support new "default location" on mounts 
  - Add extension api to lookup NautilusFileInfo objects
  - Make the search toolbar button a toggle button (lp: #57210, #392292)
  - Change text selection when using f2 several times (lp: #55996)
  - Ctrl+shift does multiple range selection in list view (lp: #148297)
  - Correctly toggle the show hidden files option (lp: #318151)
  - Opening of unknown files types displays a list of softwares (lp: #435780)
  - Fix the end key action in the image details (lp: #448786)
  - Use correct Borders for the sidebar (lp: #380838)
  - Display tooltips over sidebar bookmarks (lp: #432485)
* debian/control.in:
  - updated gnome-desktop requirement
* debian/nautilus-data.gconf-defaults:
  - don't set browser mode there since that's upstream default now
* debian/patches/01_manpage.patch:
  - the change is upstream now
* debian/patches/91_correct_rgba_use.patch:
  - change by Cody Russell to fix rgba issue (lp: #491521)
* debian/rules:
  - updated shlib version

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
}
153
153
 
154
154
void
155
 
nautilus_window_info_show_window (NautilusWindowInfo      *window)
 
155
nautilus_window_info_view_visible (NautilusWindowInfo      *window,
 
156
                                   NautilusView            *view)
156
157
{
157
158
        g_return_if_fail (NAUTILUS_IS_WINDOW_INFO (window));
158
159
 
159
 
        (* NAUTILUS_WINDOW_INFO_GET_IFACE (window)->show_window) (window);
 
160
        (* NAUTILUS_WINDOW_INFO_GET_IFACE (window)->view_visible) (window, view);
160
161
}
161
162
 
162
163
void
268
269
        return (* NAUTILUS_WINDOW_INFO_GET_IFACE (window)->get_active_slot) (window);
269
270
}
270
271
 
 
272
NautilusWindowSlotInfo *
 
273
nautilus_window_info_get_extra_slot (NautilusWindowInfo *window)
 
274
{
 
275
        g_return_val_if_fail (NAUTILUS_IS_WINDOW_INFO (window), NULL);
 
276
 
 
277
        return (* NAUTILUS_WINDOW_INFO_GET_IFACE (window)->get_extra_slot) (window);
 
278
}