2007-10-11 Milan Crha <mcrha@redhat.com> ** Fix for bug #329823 * Evolution-Shell.idl: (setButtonIcon): * e-sidebar.h: (e_sidebar_change_button_icon): * e-sidebar.c: (struct Button), (button_new), (button_free), (e_sidebar_change_button_icon): * e-shell.h: (EMainShellFunc), (e_shell_foreach_shell_window): * e-shell.c: (EMainShellFunc), (e_shell_foreach_shell_window): * e-component-view.h: (e_component_view_set_button_icon): * e-component-view.c: (e_component_view_set_button_icon): * e-shell-window.h: (e_shell_window_change_component_button_icon): * e-shell-window.c: (e_shell_window_change_component_button_icon): * e-shell-view.c: (struct change_icon_struct), (change_button_icon_func), (impl_ShellView_setButtonIcon), (e_shell_view_class_init): Added support to change component's button icon. * mail-component.h: (mail_indicate_new_mail): * mail-component.c: (mail_indicate_new_mail), (struct _MailComponentPrivate), (impl_dispose), (impl_createView): New function to indicate new mails on sidebar's button and storing component_view in priv struct for later use. * em-folder-view.c: (emfv_list_done_message_selected): * mail-folder-cache.c: (real_flush_updates): Indicate changes like for plugins for new mails. svn path=/trunk/; revision=34374
88 lines
2.0 KiB
Plaintext
88 lines
2.0 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* Interface for the Evolution shell.
|
|
*
|
|
* Authors:
|
|
* Ettore Perazzoli <ettore@ximian.com>
|
|
*
|
|
* Copyright (C) 2000, 2001 Ximian, Inc.
|
|
*/
|
|
|
|
#ifndef _GNOME_EVOLUTION_SHELL_IDL
|
|
#define _GNOME_EVOLUTION_SHELL_IDL
|
|
|
|
#include <Bonobo.idl>
|
|
|
|
#ifndef __evolution_shell_COMPILATION
|
|
#ifdef __ORBIT_IDL__
|
|
%{
|
|
#pragma include_defs shell/evolution-component.h
|
|
%}
|
|
#pragma inhibit push
|
|
#endif
|
|
#endif
|
|
|
|
module GNOME {
|
|
module Evolution {
|
|
|
|
|
|
interface ShellView : Bonobo::Unknown {
|
|
/* Should really use a ComponentView i guess */
|
|
void setTitle(in string component, in string title);
|
|
void setComponent(in string component);
|
|
void setButtonIcon(in string component, in string iconName);
|
|
};
|
|
|
|
interface Shell : Bonobo::Unknown {
|
|
exception Busy {};
|
|
exception ComponentNotFound {};
|
|
exception InternalError {};
|
|
exception InvalidURI {};
|
|
exception NotFound {};
|
|
exception NotReady {};
|
|
exception UnsupportedSchema {};
|
|
|
|
/**
|
|
* createNewWindow:
|
|
* @component_id: id or alias of the component to display in the new window.
|
|
*
|
|
*/
|
|
ShellView createNewWindow (in string component_id)
|
|
raises (NotReady, ComponentNotFound, UnsupportedSchema, InternalError);
|
|
|
|
/**
|
|
* handleURI:
|
|
* @uri: URI to handle
|
|
*
|
|
* This handles the specified URI. It is different from
|
|
* `::createNewView' as it doesn't necessarily imply creating a
|
|
* new ShellView. (For example, a `mailto:' URI will invoke
|
|
* the message composer.)
|
|
*/
|
|
void handleURI (in string uri)
|
|
raises (NotReady, ComponentNotFound, NotFound, UnsupportedSchema, InvalidURI, InternalError);
|
|
|
|
/**
|
|
* setLineStatus:
|
|
*
|
|
* Set the shell into on-line or off-line mode.
|
|
*/
|
|
void setLineStatus (in boolean online)
|
|
raises (NotReady);
|
|
|
|
/*
|
|
* Lookup a component by id.
|
|
*/
|
|
/*Component findComponent(in string id)
|
|
raises (NotReady, ComponentNotFound);*/
|
|
};
|
|
};
|
|
};
|
|
|
|
#ifndef __evolution_shell_COMPILATION
|
|
#ifdef __ORBIT_IDL__
|
|
#pragma inhibit pop
|
|
#endif
|
|
#endif
|
|
#endif /* _GNOME_EVOLUTION_SHELL_IDL */
|