Changeset 429
- Timestamp:
- 05/30/06 01:04:46
- Files:
-
- trunk/libtinymailui-gtk/Makefile.am (modified) (2 diffs)
- trunk/libtinymailui-gtk/tny-msg-header-list-iterator-priv.h (moved) (moved from trunk/libtinymailui-gtk/tny-msg-header-list-iterator.h) (1 diff)
- trunk/libtinymailui-gtk/tny-msg-header-list-iterator.c (modified) (3 diffs)
- trunk/libtinymailui-gtk/tny-msg-header-list-model.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymailui-gtk/Makefile.am
r424 r429 15 15 tny-msg-window.h \ 16 16 tny-msg-header-list-model.h \ 17 tny-msg-header-list-iterator.h \18 17 tny-account-tree-model.h \ 19 18 tny-attach-list-model.h \ … … 21 20 tny-msg-header-view.h 22 21 23 libtinymailui_gtk_1_0_la_SOURCES = \ 24 $(libtinymailui_gtk_1_0_headers) \ 25 tny-save-strategy.c \ 26 tny-msg-view.c \ 27 tny-msg-window.c \ 28 tny-msg-header-list-model-priv.h \ 29 tny-msg-header-list-model.c \ 30 tny-msg-header-list-iterator.c \ 31 tny-account-tree-model.c \ 32 tny-attach-list-model-priv.h \ 33 tny-attach-list-model.c \ 34 tny-text-buffer-stream.c \ 22 libtinymailui_gtk_1_0_la_SOURCES = \ 23 $(libtinymailui_gtk_1_0_headers) \ 24 tny-save-strategy.c \ 25 tny-msg-view.c \ 26 tny-msg-window.c \ 27 tny-msg-header-list-model-priv.h \ 28 tny-msg-header-list-iterator-priv.h \ 29 tny-msg-header-list-model.c \ 30 tny-msg-header-list-iterator.c \ 31 tny-account-tree-model.c \ 32 tny-attach-list-model-priv.h \ 33 tny-attach-list-model.c \ 34 tny-text-buffer-stream.c \ 35 35 tny-msg-header-view.c 36 36 trunk/libtinymailui-gtk/tny-msg-header-list-iterator-priv.h
r428 r429 40 40 typedef struct _TnyMsgHeaderListIteratorClass TnyMsgHeaderListIteratorClass; 41 41 42 void _tny_msg_header_list_iterator_set_model (TnyMsgHeaderListIterator *self, TnyMsgHeaderListModel *model); 43 TnyMsgHeaderListIterator* _tny_msg_header_list_iterator_new (TnyMsgHeaderListModel *model); 44 void _tny_msg_header_list_iterator_travel_to_nth (TnyMsgHeaderListIterator *self, guint cur, guint nth); 42 45 43 46 trunk/libtinymailui-gtk/tny-msg-header-list-iterator.c
r428 r429 21 21 22 22 #include <tny-msg-header-list-model.h> 23 #include <tny-msg-header-list-iterator.h>24 23 25 24 static GObjectClass *parent_class = NULL; 26 25 26 #include "tny-msg-header-list-iterator-priv.h" 27 27 #include "tny-msg-header-list-model-priv.h" 28 28 … … 41 41 }; 42 42 43 /**44 * tny_msg_header_list_iterator_set_model:45 * @self: a #TnyMsgHeaderListIterator instance46 * @model: The model47 *48 *49 **/50 43 void 51 44 _tny_msg_header_list_iterator_set_model (TnyMsgHeaderListIterator *self, TnyMsgHeaderListModel *model) … … 76 69 77 70 78 /** 79 * tny_msg_header_list_iterator_new: 80 * @model: The model 81 * 82 * 83 * Return value: a new #TnyMsgHeaderListIteratorIface instance 84 **/ 71 85 72 TnyMsgHeaderListIterator* 86 73 _tny_msg_header_list_iterator_new (TnyMsgHeaderListModel *model) trunk/libtinymailui-gtk/tny-msg-header-list-model.c
r428 r429 30 30 #include <tny-iterator-iface.h> 31 31 32 #include <tny-msg-header-list-iterator.h>33 34 #define G_LIST(o) ((GList *) o)35 36 32 static GObjectClass *parent_class; 37 33 38 34 #include "tny-msg-header-list-model-priv.h" 39 40 /* Private stuff */ 41 GType _tny_msg_header_list_iterator_get_type (void); 42 TnyMsgHeaderListIterator* _tny_msg_header_list_iterator_new (TnyMsgHeaderListModel *model); 43 void _tny_msg_header_list_iterator_set_model (TnyMsgHeaderListIterator *self, TnyMsgHeaderListModel *model); 44 void _tny_msg_header_list_iterator_travel_to_nth (TnyMsgHeaderListIterator *self, guint cur, guint nth); 35 #include "tny-msg-header-list-iterator-priv.h" 45 36 46 37
