blob: 0da2540528f7993b08c393545d433146878756d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Interface for the Evolution shell views.
*
* Authors:
* Ettore Perazzoli <ettore@ximian.com>
*
* Copyright (C) 2000, 2001 Ximian, Inc.
*/
#include <Bonobo.idl>
module GNOME {
module Evolution {
interface ShellView : Bonobo::Unknown {
void setMessage (in string message,
in boolean busy);
void unsetMessage ();
void changeCurrentView (in string uri);
void setTitle (in string title);
};
};
};
|