• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/

Lines Matching refs:download

30  * @note Ewk_Download_Job encapsulates a WebKit download job in order to provide
32 * path, cancel the download, ...).
53 /// Defines the possible states of a download.
55 /// The download state is unknown
57 /// The download has not started yet
59 /// The download has started
61 /// The download stopped because of a failure
63 /// The download is being cancelled
65 /// The download stopped because it was cancelled
67 /// The download completed successfully.
74 * Query the state for this download.
76 * @param download a #Ewk_Download_Job to query.
78 * @return the download state.
80 EAPI Ewk_Download_Job_State ewk_download_job_state_get(const Ewk_Download_Job *download);
83 * Query the URL request for this download.
85 * @param download a #Ewk_Download_Job to query.
87 * @return the #Ewk_Url_Request for this download.
89 EAPI Ewk_Url_Request *ewk_download_job_request_get(const Ewk_Download_Job *download);
92 * Query the URL response for this download.
94 * @param download a #Ewk_Download_Job to query.
96 * @return the #Ewk_Url_Response for this download or @c NULL if it was not received yet.
98 EAPI Ewk_Url_Response *ewk_download_job_response_get(const Ewk_Download_Job *download);
103 * @param download a #Ewk_Download_Job to query.
111 EAPI const char *ewk_download_job_destination_get(const Ewk_Download_Job *download);
114 * Sets the destination path for this download.
118 * This method needs to be called before the download transfer
119 * starts, by connecting to the "download,new" signal on the
124 * @param download #Ewk_Download_Job to update.
131 EAPI Eina_Bool ewk_download_job_destination_set(Ewk_Download_Job *download, const char *destination);
134 * Queries the suggested file name for this download.
139 * @param download #Ewk_Download_Job to query.
141 * @return The suggested file name for this download. This pointer is
149 EAPI const char *ewk_download_job_suggested_filename_get(const Ewk_Download_Job *download);
152 * Cancels the download asynchronously.
154 * When the ongoing download operation is effectively cancelled a "download,cancelled"
157 * @param download a #Ewk_Download_Job to cancel.
162 EAPI Eina_Bool ewk_download_job_cancel(Ewk_Download_Job *download);
165 * Query the estimated progress for this download.
167 * @param download a #Ewk_Download_Job to query.
169 * @return an estimate of the of the percent complete for a download
172 EAPI double ewk_download_job_estimated_progress_get(const Ewk_Download_Job *download);
177 * If the download finished, had an error or was cancelled this is
180 * @param download a #Ewk_Download_Job
182 * @return seconds since the download was started or 0.0 in case of failure.
184 EAPI double ewk_download_job_elapsed_time_get(const Ewk_Download_Job *download);