Changeset 1858
- Timestamp:
- 04/28/07 14:04:02
- Files:
-
- trunk/libtinymail-camel/tny-camel-imap-store-account.c (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-msg-remove-strategy.c (modified) (1 diff)
- trunk/libtinymail-camel/tny-session-camel.c (modified) (3 diffs)
- trunk/libtinymail-gnome-desktop/tny-gnome-account-store.c (modified) (1 diff)
- trunk/libtinymail-gnome-desktop/tny-gnome-device.c (modified) (1 diff)
- trunk/libtinymail/tny-account.h (modified) (2 diffs)
- trunk/libtinymail/tny-header.c (modified) (1 diff)
- trunk/libtinymail/tny-list.c (modified) (1 diff)
- trunk/libtinymail/tny-msg-remove-strategy.c (modified) (1 diff)
- trunk/libtinymail/tny-noop-lockable.c (modified) (1 diff)
- trunk/libtinymail/tny-pair.c (modified) (2 diffs)
- trunk/libtinymail/tny-simple-list.c (modified) (1 diff)
- trunk/libtinymail/tny-status.c (modified) (2 diffs)
- trunk/libtinymailui-gtk/tny-gtk-account-list-model.c (modified) (1 diff)
- trunk/libtinymailui-gtk/tny-gtk-attach-list-model.c (modified) (1 diff)
- trunk/libtinymailui-gtk/tny-gtk-mime-part-save-strategy.c (modified) (3 diffs)
- trunk/libtinymailui-gtk/tny-gtk-msg-view.c (modified) (4 diffs)
- trunk/libtinymailui-gtk/tny-gtk-msg-window.c (modified) (1 diff)
- trunk/libtinymailui-gtk/tny-gtk-password-dialog.c (modified) (1 diff)
- trunk/libtinymailui-gtk/tny-gtk-text-mime-part-view.c (modified) (1 diff)
- trunk/libtinymailui-mozembed/tny-moz-embed-html-mime-part-view.c (modified) (1 diff)
- trunk/libtinymailui-mozembed/tny-moz-embed-msg-view.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-camel/tny-camel-imap-store-account.c
r1692 r1858 93 93 * tny_camel_imap_store_account_new: 94 94 * 95 * Create a imap store account 95 96 * 96 97 * Return value: A new IMAP #TnyStoreAccount instance implemented for Camel trunk/libtinymail-camel/tny-camel-msg-remove-strategy.c
r1567 r1858 91 91 * tny_camel_msg_remove_strategy_new: 92 92 * 93 * Create a default remove strategy for TnyCamelFolder instances. 93 94 * 94 95 * Return value: a new #TnyMsgRemoveStrategy instance implemented for a #TnyCamelFolder trunk/libtinymail-camel/tny-session-camel.c
r1730 r1858 527 527 * @device: a #TnyDevice instance 528 528 * 529 * Set the device of @self. 529 530 * 530 531 **/ … … 554 555 * @account_store: A #TnyAccountStore account store instance 555 556 * 556 * 557 * Set the account store of @self. 557 558 **/ 558 559 void … … 596 597 * tny_session_camel_new: 597 598 * @account_store: A TnyAccountStore instance 599 * 600 * A #CamelSession for tinymail 598 601 * 599 602 * Return value: The #TnySessionCamel singleton instance trunk/libtinymail-gnome-desktop/tny-gnome-account-store.c
r1855 r1858 527 527 * tny_gnome_account_store_new: 528 528 * 529 * Create a #TnyAccountStore for GNOME desktops that uses GConf for storing 530 * the account information and detecting changes to that configuration. 529 531 * 530 532 * Return value: A new #TnyAccountStore instance trunk/libtinymail-gnome-desktop/tny-gnome-device.c
r1844 r1858 182 182 183 183 184 185 184 /** 186 185 * tny_gnome_device_new: 187 186 * 187 * Create a #TnyDevice for GNOME desktops. If available, it uses NetworkManager 188 * to know about the network status and changes of your computer. 189 * 188 190 * Return value: A new #TnyDevice instance 189 191 **/ trunk/libtinymail/tny-account.h
r1718 r1858 53 53 void (*set_id_func) (TnyAccount *self, const gchar *id); 54 54 void (*set_name_func) (TnyAccount *self, const gchar *name); 55 void (*set_mech_func) (TnyAccount *self, const gchar * name);55 void (*set_mech_func) (TnyAccount *self, const gchar *mech); 56 56 void (*set_proto_func) (TnyAccount *self, const gchar *proto); 57 57 void (*set_user_func) (TnyAccount *self, const gchar *user); … … 82 82 void tny_account_set_id (TnyAccount *self, const gchar *id); 83 83 void tny_account_set_name (TnyAccount *self, const gchar *name); 84 void tny_account_set_mech (TnyAccount *self, const gchar * name);84 void tny_account_set_mech (TnyAccount *self, const gchar *mech); 85 85 void tny_account_set_proto (TnyAccount *self, const gchar *proto); 86 86 void tny_account_set_user (TnyAccount *self, const gchar *user); trunk/libtinymail/tny-header.c
r1762 r1858 29 29 30 30 /** 31 * tny_header_set_ bcc:31 * tny_header_set_replyto: 32 32 * @self: a #TnyHeader object 33 33 * @to: the reply-to header trunk/libtinymail/tny-list.c
r1856 r1858 25 25 * tny_list_get_length: 26 26 * @self: A #TnyList instance 27 * 28 * Get the amount of items in @self. 27 29 * 28 30 * Return value: the length of the list trunk/libtinymail/tny-msg-remove-strategy.c
r1732 r1858 25 25 26 26 /** 27 * tny_msg_remove_strategy_pe form_remove:27 * tny_msg_remove_strategy_perform_remove: 28 28 * @self: A #TnyMsgRemoveStrategy instance 29 29 * @folder: The #TnyFolder instance from which the message will be removed trunk/libtinymail/tny-noop-lockable.c
r1399 r1858 70 70 * tny_noop_lockable_new: 71 71 * 72 * Create a lockable that does nothing 73 * 72 74 * Return value: a #TnyLockable instance that does nothing 73 75 **/ trunk/libtinymail/tny-pair.c
r1379 r1858 56 56 * tny_pair_get_name: 57 57 * @self: a #TnyPair instance 58 * 59 * Get the name of the pair, the returned value must not be freed 58 60 * 59 * Return value: the name of the pair , the result must not be freed61 * Return value: the name of the pair 60 62 **/ 61 63 const gchar* … … 88 90 * @self: a #TnyPair instance 89 91 * 90 * Return value: the value of the pair, the result must not be freed 92 * Get the value of the pair, the returned value must not be freed 93 * 94 * Return value: the value of the pair 91 95 **/ 92 96 const gchar* trunk/libtinymail/tny-simple-list.c
r1010 r1858 194 194 * tny_simple_list_new: 195 195 * 196 * Create a general purpose #TnyList instance 197 * 196 198 * Return value: A general purpose #TnyList instance 197 199 **/ trunk/libtinymail/tny-status.c
r1833 r1858 52 52 } 53 53 54 /** 55 * tny_status_set_fraction: 56 * @fraction: the fraction to set 57 * 58 * Set the fraction of @status. The of_total member of @status will be set to 100 59 * by this method. 60 * 61 **/ 54 62 void 55 63 tny_status_set_fraction (TnyStatus *status, gdouble fraction) … … 59 67 } 60 68 69 /** 70 * tny_status_get_fraction: 71 * 72 * Get the fraction of @status 73 * 74 * Return value: the fraction of @status 75 **/ 61 76 gdouble 62 77 tny_status_get_fraction (TnyStatus *status) trunk/libtinymailui-gtk/tny-gtk-account-list-model.c
r1802 r1858 46 46 * tny_gtk_account_list_model_new: 47 47 * 48 * 49 * Return value: a new #GtkTreeModel instance suitable for showing50 * #TnyMimePart instances48 * Create a new #GtkTreeModel instance suitable for showing a #TnyMimePart. 49 * 50 * Return value: a new #GtkTreeModel instance suitable for showing a #TnyMimePart 51 51 **/ 52 52 GtkTreeModel* trunk/libtinymailui-gtk/tny-gtk-attach-list-model.c
r1192 r1858 111 111 * tny_gtk_attach_list_model_new: 112 112 * 113 * 114 * Return value: a new #GtkTreeModel instance suitable for showing115 * #TnyMimePart instances113 * Get a new #GtkTreeModel instance suitable for showing #TnyMimePart. 114 * 115 * Return value: a new #GtkTreeModel instance suitable for showing a #TnyMimePart 116 116 **/ 117 117 GtkTreeModel* trunk/libtinymailui-gtk/tny-gtk-mime-part-save-strategy.c
r1136 r1858 121 121 (GTK_FILE_CHOOSER (dialog), g_get_home_dir ()); 122 122 123 /* TNY TODO: detect this at runtime */ 123 124 #ifndef GNOME 124 125 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (dialog), TRUE); … … 131 132 { 132 133 gchar *uri; 134 135 /* TNY TODO: detect this at runtime */ 133 136 #ifdef GNOME 134 137 uri = gtk_file_chooser_get_uri (GTK_FILE_CHOOSER (dialog)); … … 166 169 * tny_gtk_mime_part_save_strategy_new: 167 170 * 171 * Create a new #TnyMimePartSaveStrategy instance implemented for Gtk+. It will 172 * use the GtkFileChooserDialog type and if available support for GnomeVFS. 168 173 * 169 174 * Return value: a new #TnyMimePartSaveStrategy instance implemented for Gtk+ trunk/libtinymailui-gtk/tny-gtk-msg-view.c
r1426 r1858 93 93 * @self: A #TnyGtkMsgView instance 94 94 * 95 * Get whether or not to display text/html mime parts 96 * 95 97 * Return value: whether or not to display text/html mime parts 96 98 **/ … … 106 108 * @self: A #TnyGtkMsgView instance 107 109 * 110 * Get whether or not to display message/rfc822 mime parts 111 * 108 112 * Return value: whether or not to display message/rfc822 mime parts 109 113 **/ … … 119 123 * @self: A #TnyGtkMsgView instance 120 124 * 125 * Get whether or not to display attachments 126 * 121 127 * Return value: whether or not to display attachments 122 128 **/ … … 132 138 * @self: A #TnyGtkMsgView instance 133 139 * 140 * Get whether or not to display text/plain mime parts 141 * 134 142 * Return value: whether or not to display text/plain mime parts 135 143 **/ trunk/libtinymailui-gtk/tny-gtk-msg-window.c
r1477 r1858 208 208 /** 209 209 * tny_gtk_msg_window_new: 210 * 210 * @msgview: a #TnyMsgView to decorate 211 * 212 * Create a GtkWindow that implements #TnyMsgView by decorating @msgview. 211 213 * 212 214 * Return value: a new #TnyMsgWindow instance implemented for Gtk+ trunk/libtinymailui-gtk/tny-gtk-password-dialog.c
r1784 r1858 104 104 * tny_gtk_password_dialog_new: 105 105 * 106 * Create a dialog window that will ask the user for a password 106 107 * 107 108 * Return value: A new #GtkDialog password dialog instance implemented for Gtk+ trunk/libtinymailui-gtk/tny-gtk-text-mime-part-view.c
r1192 r1858 131 131 /** 132 132 * tny_gtk_text_mime_part_view_new: 133 * 134 * Create a new #TnyMimePartView for Gtk+ 133 135 * 134 136 * Return value: a new #TnyMimePartView instance implemented for Gtk+ trunk/libtinymailui-mozembed/tny-moz-embed-html-mime-part-view.c
r1219 r1858 110 110 /** 111 111 * tny_moz_embed_html_mime_part_view_new: 112 * 113 * Create a #TnyMimePartView that can display HTML mime parts 112 114 * 113 115 * Return value: a new #TnyMimePartView instance implemented for Gtk+ trunk/libtinymailui-mozembed/tny-moz-embed-msg-view.c
r1278 r1858 29 29 /** 30 30 * tny_moz_embed_msg_view_new: 31 * 32 * Create a new #TnyMsgView that can display HTML messages. 31 33 * 32 34 * Return value: a new #TnyMsgView instance implemented for Gtk+
