Classes | |
class | ProgressInfo |
Provides progress information for the transfer operation. More... | |
Typedefs | |
typedef Glib::ListHandle< Glib::ustring > | ListHandleStrings |
typedef Glib::ListHandle< Glib::RefPtr< const Uri > > | ListHandleUris |
typedef sigc::slot< gint, const ProgressInfo & > | SlotProgress |
For instance, gint on_transfer_progress(const Gnome::Vfs::Transfer::ProgressInfo& info);. | |
Functions | |
void | transfer_list (const Glib::StringArrayHandle &source_uri_list, const Glib::StringArrayHandle &target_uri_list, TransferOptions options, ErrorMode error_mode, OverwriteMode overwrite_mode, const SlotProgress &slot) |
This function will transfer multiple files to multiple targets, given source URIs and destination URIs. | |
void | transfer_list_uris (const ListHandleUris &source_uri_list, const ListHandleUris &target_uri_list, TransferOptions options=XFER_DEFAULT, ErrorMode error_mode=XFER_ERROR_MODE_ABORT, OverwriteMode overwrite_mode=XFER_OVERWRITE_MODE_ABORT, const SlotProgress &progress_callback=SlotProgress()) |
This function will transfer multiple files to multiple targets, given source URIs and destination URIs. | |
void | transfer (const Glib::ustring &source_uri, const Glib::ustring &target_uri, TransferOptions options=XFER_DEFAULT, ErrorMode error_mode=XFER_ERROR_MODE_ABORT, OverwriteMode overwrite_mode=XFER_OVERWRITE_MODE_ABORT, const SlotProgress &progress_callback=SlotProgress()) |
This function works exactly like transfer_list(), and is a convenience wrapper for only acting on one source/target URI pair. | |
void | transfer (const Glib::RefPtr< const Uri > &source_uri, const Glib::RefPtr< const Uri > &target_uri, TransferOptions options=XFER_DEFAULT, ErrorMode error_mode=XFER_ERROR_MODE_ABORT, OverwriteMode overwrite_mode=XFER_OVERWRITE_MODE_ABORT, const SlotProgress &progress_callback=SlotProgress()) |
This function works exactly like transfer_list_uris(), and is a convenience wrapper for only acting on one source/target URI pair. | |
void | remove_list (const Glib::StringArrayHandle &source_uri_list, TransferOptions options, ErrorMode error_mode, const SlotProgress &slot) |
Unlinks items in the source_uri_list from their filesystems. | |
void | remove_list_uris (const ListHandleUris &source_uri_list, TransferOptions options=XFER_DEFAULT, ErrorMode error_mode=XFER_ERROR_MODE_ABORT, const SlotProgress &progress_callback=SlotProgress()) |
Unlinks items in the source_uri_list from their filesystems. | |
void | remove (const Glib::ustring &source_uri, TransferOptions options=XFER_DEFAULT, ErrorMode error_mode=XFER_ERROR_MODE_ABORT, const SlotProgress &progress_callback=SlotProgress()) |
This function works exactly like remove_list(), and is a convenience wrapper for only acting on one source URI. | |
void | remove (const Glib::RefPtr< const Uri > &source_uri, TransferOptions options=XFER_DEFAULT, ErrorMode error_mode=XFER_ERROR_MODE_ABORT, const SlotProgress &progress_callback=SlotProgress()) |
This function works exactly like remove_list_uris(), and is a convenience wrapper for only acting on one source URI. |
|
|
|
|
|
For instance, gint on_transfer_progress(const Gnome::Vfs::Transfer::ProgressInfo& info);.
|
|
This function works exactly like remove_list_uris(), and is a convenience wrapper for only acting on one source URI.
|
|
This function works exactly like remove_list(), and is a convenience wrapper for only acting on one source URI.
|
|
Unlinks items in the source_uri_list from their filesystems.
|
|
Unlinks items in the source_uri_list from their filesystems.
|
|
This function works exactly like transfer_list_uris(), and is a convenience wrapper for only acting on one source/target URI pair.
|
|
This function works exactly like transfer_list(), and is a convenience wrapper for only acting on one source/target URI pair.
|
|
This function will transfer multiple files to multiple targets, given source URIs and destination URIs. There are a list of options that your application can use to control how the transfer is done. If you want to do asynchronous file transfers, you have to use the functionality provided by the Async2 namespace instead.
|
|
This function will transfer multiple files to multiple targets, given source URIs and destination URIs. There are a list of options that your application can use to control how the transfer is done. If you want to do asynchronous file transfers, you must use the functionality provided by the Async2 namespace instead.
|