blob: d155b3397c178ec1fad4fb4615d8b223e479b2a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Interface for the Evolution shell views.
*
* Authors:
* Ettore Perazzoli <ettore@helixcode.com>
*
* Copyright (C) 2000 Helix Code, Inc.
*/
#include <Bonobo.idl>
module Evolution {
interface ShellView : Bonobo::Unknown {
void set_message (in string message, in boolean busy);
void unset_message ();
void change_current_view (in string uri);
void set_title (in string title);
};
};
|