Uses of Class
uk.co.caprica.vlcj.binding.internal.libvlc_dialog_id
-
Packages that use libvlc_dialog_id Package Description uk.co.caprica.vlcj.binding Provides the JNA bindings, and related classes, to use the libvlc native library.uk.co.caprica.vlcj.binding.internal Internal JNA bindings for libvlc, bindings to native types and structures. -
-
Uses of libvlc_dialog_id in uk.co.caprica.vlcj.binding
Methods in uk.co.caprica.vlcj.binding with parameters of type libvlc_dialog_id Modifier and Type Method Description intLibVlc. libvlc_dialog_dismiss(libvlc_dialog_id p_id)Dismiss a dialog.com.sun.jna.PointerLibVlc. libvlc_dialog_get_context(libvlc_dialog_id p_id)Return the opaque pointer associated with the dialog id.intLibVlc. libvlc_dialog_post_action(libvlc_dialog_id p_id, int i_action)Post a question answer.intLibVlc. libvlc_dialog_post_login(libvlc_dialog_id p_id, String psz_username, String psz_password, int b_store)Post a login answer.voidLibVlc. libvlc_dialog_set_context(libvlc_dialog_id p_id, com.sun.jna.Pointer p_context)Associate an opaque pointer with the dialog id. -
Uses of libvlc_dialog_id in uk.co.caprica.vlcj.binding.internal
Methods in uk.co.caprica.vlcj.binding.internal with parameters of type libvlc_dialog_id Modifier and Type Method Description voidlibvlc_dialog_cancel_cb. callback(com.sun.jna.Pointer p_data, libvlc_dialog_id p_id)Called when a displayed dialog needs to be cancelled The implementation must call libvlc_dialog_dismiss() to really release the dialog.voidlibvlc_dialog_display_login_cb. callback(com.sun.jna.Pointer p_data, libvlc_dialog_id p_id, String psz_title, String psz_text, String psz_default_username, int b_ask_store)Called when a login dialog needs to be displayedvoidlibvlc_dialog_display_progress_cb. callback(com.sun.jna.Pointer p_data, libvlc_dialog_id p_id, String psz_title, String psz_text, int b_indeterminate, float f_position, String psz_cancel)Called when a progress dialog needs to be displayedvoidlibvlc_dialog_display_question_cb. callback(com.sun.jna.Pointer p_data, libvlc_dialog_id p_id, String psz_title, String psz_text, int i_type, String psz_cancel, String psz_action1, String psz_action2)Called when a question dialog needs to be displayedvoidlibvlc_dialog_update_progress_cb. callback(com.sun.jna.Pointer p_data, libvlc_dialog_id p_id, float f_position, String psz_text)Called when a progress dialog needs to be updated
-