blob: 75734a155c6266109523ecdaf0c2d938acb9835e (
plain) (
tree)
|
|
/* -*- 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 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);
};
};
};
|