* implement (INBOX) thing
[citadel.git] / webcit / roomops.h
1
2 #define VIRTUAL_MY_FLOOR -1
3
4 /*
5  * \brief This struct holds a list of rooms for \\\<G\\\>oto operations.
6  */
7 struct march {
8         struct march *next;       /* pointer to next in linked list */
9         char march_name[128];     /* name of room */
10         int march_floor;          /* floor number of room */
11         int march_order;          /* sequence in which we are to visit this room */
12 };
13
14 /* *
15  * \brief       This struct holds a list of rooms for client display.
16  *              It is a binary tree.
17  */
18 struct roomlisting {
19         struct roomlisting *lnext;      /* pointer to 'left' tree node */
20         struct roomlisting *rnext;      /* pointer to 'right' tree node */
21         char rlname[128];               /* name of room */
22         unsigned rlflags;               /* room flags */
23         int rlfloor;                    /* the floor it resides on */
24         int rlorder;                    /* room listing order */
25 };
26
27
28
29
30
31 typedef struct _floor {
32         long ID;
33         StrBuf *Name;
34         long NRooms;
35         long AlphaN;
36 } floor;
37
38 /**
39  * \brief  Data structure for roomlist-to-folderlist conversion 
40  */
41 struct __ofolder {
42         int floor;      /* which floor is it on */
43         char room[SIZ]; /* which roomname ??? */
44         char name[SIZ]; /* which is its own name??? */
45         int hasnewmsgs; /* are there unread messages inside */
46         int is_mailbox; /* is it a mailbox?  */
47         int selectable; /* can we select it ??? */
48         int view;       /* whats its default view? inbox/calendar.... */
49         int num_rooms;  /* If this is a floor, how many rooms does it have */
50 };
51
52
53
54 /**
55  * \brief  Data structure for roomlist-to-folderlist conversion 
56  */
57 typedef struct _folder {
58         /* Data citserver tells us about the room */
59         StrBuf *name;   /* the full name of the room we're talking about */
60         int QRFlags;    /* roomflags */
61         int floorid;      /* which floor is it on */
62
63         int listorder; /* todo */
64         int QRFlags2;    /* Bitbucket NO2 */
65
66         long RAFlags;
67 ///     StrBuf *ACL;    /* access Control list... */
68
69         int view;       /* whats its default view? inbox/calendar.... */
70         int defview;
71         int lastchange; /* todo... */
72
73         /* later evaluated data from the serverdata */
74         long nRoomNameParts;
75         StrBuf **RoomNameParts;
76
77         const floor *Floor;   /* pint to the floor we're on.. */
78         StrBuf *room;   /* which roomname ??? */
79
80
81         int hasnewmsgs; /* are there unread messages inside */
82         int is_inbox;   /* is it a mailbox?  */
83         int selectable; /* can we select it ??? */
84         int num_rooms;  /* If this is a floor, how many rooms does it have */
85
86 }folder;
87