aboutsummaryrefslogtreecommitdiffstats
path: root/mail/Mail.idl
blob: 74c6ba74d4ec3200c6389d3bae654479866b1286 (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
24
25
26
27
28
29
30
/*
 * mail.idl: Mail interfaces for Evolution
 *
 * Author:
 *   Miguel de Icaza (miguel@helixcode.com)
 * 
 * (C) 2000 Helix Code, Inc.
 */

#include <bonobo.idl>

module Evolution {
    
    interface MessageList : GNOME::Unknown {
        
        void select_message (in long message_number);
        void open_message   (in long message_number);
    };
    
    /*
     * FolderBrowser object.
     *
     * configuration of this widget is done trough 
     * Bonobo Properties
     */
    interface FolderBrowser : GNOME::Unknown {
        MessageList get_message_list ();
    };
};