summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorJohn Sullivan <sullivan@src.gnome.org>2000-03-28 06:05:26 +0000
committerJohn Sullivan <sullivan@src.gnome.org>2000-03-28 06:05:26 +0000
commita2d26f63d6db296a0a71e1ad35c268bfab7150da (patch)
tree171ec349059d6b323874863c2e22ce9cb68df3f5 /idl
parent6179a7643867a820d9d0c4b3b8f4d4fa0ca13f66 (diff)
downloadnautilus-a2d26f63d6db296a0a71e1ad35c268bfab7150da.tar.gz
Gave content views the ability to specify the user-displayed title for a
location; this is used initially (and most importantly) by web pages so that bookmarks, the window title, and the index panel will display the html page title rather than the url.
Diffstat (limited to 'idl')
-rw-r--r--idl/nautilus.idl11
1 files changed, 6 insertions, 5 deletions
diff --git a/idl/nautilus.idl b/idl/nautilus.idl
index e94241fa7..263d66783 100644
--- a/idl/nautilus.idl
+++ b/idl/nautilus.idl
@@ -42,13 +42,13 @@ module Nautilus {
interface View : ::Bonobo::Unknown {
void save_state (in string config_path);
void load_state (in string config_path);
- oneway void notify_location_change (in NavigationInfo navinfo);
-
- oneway void show_properties (); // Requests that the client show its properties
-
+ oneway void notify_location_change (in NavigationInfo navinfo,
+ in string initial_title);
+ oneway void stop_location_change ();
oneway void notify_selection_change (in SelectionInfo selinfo);
+ oneway void notify_title_change (in string new_title);
- oneway void stop_location_change ();
+ oneway void show_properties (); // Requests that the client show its properties
};
interface MetaView : View {
@@ -71,6 +71,7 @@ module Nautilus {
};
interface ContentViewFrame : ViewFrame {
+ oneway void request_title_change (in string new_title);
};
// typedef sequence<double> ZoomLevelList;