aboutsummaryrefslogtreecommitdiffstats
path: root/mail/Mail.idl
blob: 14e17b399325e95892553f500b72d08a772c8be0 (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
31
32
/*
 * mail.idl: Mail interfaces for Evolution
 *
 * Author:
 *   Miguel de Icaza (miguel@helixcode.com)
 * 
 * (C) 2000 Helix Code, Inc.
 */

#include <Bonobo.idl>

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