Changeset 429

Show
Ignore:
Timestamp:
05/30/06 01:04:46
Author:
pvanhoof
Message:

Privatizing stuff

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libtinymailui-gtk/Makefile.am

    r424 r429  
    1515        tny-msg-window.h                \ 
    1616        tny-msg-header-list-model.h     \ 
    17         tny-msg-header-list-iterator.h  \ 
    1817        tny-account-tree-model.h        \ 
    1918        tny-attach-list-model.h         \ 
     
    2120        tny-msg-header-view.h 
    2221 
    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         \ 
     22libtinymailui_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            \ 
    3535        tny-msg-header-view.c 
    3636 
  • trunk/libtinymailui-gtk/tny-msg-header-list-iterator-priv.h

    r428 r429  
    4040typedef struct _TnyMsgHeaderListIteratorClass TnyMsgHeaderListIteratorClass; 
    4141 
     42void _tny_msg_header_list_iterator_set_model (TnyMsgHeaderListIterator *self, TnyMsgHeaderListModel *model); 
     43TnyMsgHeaderListIterator* _tny_msg_header_list_iterator_new (TnyMsgHeaderListModel *model); 
     44void _tny_msg_header_list_iterator_travel_to_nth (TnyMsgHeaderListIterator *self, guint cur, guint nth); 
    4245 
    4346 
  • trunk/libtinymailui-gtk/tny-msg-header-list-iterator.c

    r428 r429  
    2121 
    2222#include <tny-msg-header-list-model.h> 
    23 #include <tny-msg-header-list-iterator.h> 
    2423 
    2524static GObjectClass *parent_class = NULL; 
    2625 
     26#include "tny-msg-header-list-iterator-priv.h" 
    2727#include "tny-msg-header-list-model-priv.h" 
    2828 
     
    4141}; 
    4242 
    43 /** 
    44  * tny_msg_header_list_iterator_set_model: 
    45  * @self: a #TnyMsgHeaderListIterator instance 
    46  * @model: The model 
    47  * 
    48  * 
    49  **/ 
    5043void  
    5144_tny_msg_header_list_iterator_set_model (TnyMsgHeaderListIterator *self, TnyMsgHeaderListModel *model) 
     
    7669 
    7770 
    78 /** 
    79  * tny_msg_header_list_iterator_new: 
    80  * @model: The model 
    81  * 
    82  * 
    83  * Return value: a new #TnyMsgHeaderListIteratorIface instance 
    84  **/ 
     71 
    8572TnyMsgHeaderListIterator* 
    8673_tny_msg_header_list_iterator_new (TnyMsgHeaderListModel *model) 
  • trunk/libtinymailui-gtk/tny-msg-header-list-model.c

    r428 r429  
    3030#include <tny-iterator-iface.h> 
    3131 
    32 #include <tny-msg-header-list-iterator.h> 
    33  
    34 #define G_LIST(o) ((GList *) o) 
    35  
    3632static GObjectClass *parent_class; 
    3733 
    3834#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" 
    4536 
    4637