about summary refs log blame commit diff stats
path: root/html/051scenario_test.mu.html
blob: f4f9b2dd1107aff191335492dbb0beb8d2cd7028 (plain) (tree)
class="w"> jabber_get_tls_peer_cert(void) { return NULL; } void cons_show_tlscert(TLSCertificate *cert) {} void cons_show_tlscert_summary(TLSCertificate *cert) {} void ui_prune_wins(void) {} void ui_handle_login_account_success(ProfAccount *account, int secured) {} void ui_update_presence(const resource_presence_t resource_presence, const char * const message, const char * const show) {} char* inp_readline(void) { return NULL; } void inp_nonblocking(gboolean reset) {} void ui_inp_history_append(char *inp) {} void ui_invalid_command_usage(const char * const usage, void (*setting_func)(void)) {} gboolean ui_win_has_unsaved_form(int num) { return FALSE; } void ui_status_bar_inactive(const int win) {} void ui_status_bar_active(const int win) {} void ui_status_bar_new(const int win) {} void ui_write(char *line, int offset) {} // console window actions void cons_show(const char * const msg, ...) { va_list args; va_start(args, msg); vsnprintf(output, sizeof(output), msg, args); check_expected(output); va_end(args); } void cons_show_padded(int pad, const char * const msg, ...) {} void cons_show_help(const char *const cmd, CommandHelp *help) {} void cons_about(void) {} void cons_help(void) {} void cons_navigation_help(void) {} void cons_prefs(void) {} void cons_show_ui_prefs(void) {} void cons_show_desktop_prefs(void) {} void cons_show_chat_prefs(void) {} void cons_show_log_prefs(void) {} void cons_show_presence_prefs(void) {} void cons_show_connection_prefs(void) {} void cons_show_otr_prefs(void) {} void cons_show_pgp_prefs(void) {} void cons_show_account(ProfAccount *account) { check_expected(account); } void cons_debug(const char * const msg, ...) {} void cons_show_time(void) {} void cons_show_word(const char * const word) {} void cons_show_error(const char * const cmd, ...) { va_list args; va_start(args, cmd); vsnprintf(output, sizeof(output), cmd, args); check_expected(output); va_end(args); } void cons_show_contacts(GSList * list) {} void cons_show_roster(GSList * list) { check_expected(list); } void cons_bad_cmd_usage(const char * const cmd) { check_expected(cmd); } void cons_show_roster_group(const char * const group, GSList * list) {} void cons_show_wins(gboolean unread) {} void cons_show_status(const char * const barejid) {} void cons_show_info(PContact pcontact) {} void cons_show_caps(const char * const fulljid, resource_presence_t presence) {} void cons_show_themes(GSList *themes) {} void cons_show_scripts(GSList *scripts) {} void cons_show_script(const char *const script, GSList *commands) {} void cons_show_aliases(GList *aliases) { check_expected(aliases); } void cons_show_login_success(ProfAccount *account, int secured) {} void cons_show_software_version(const char * const jid, const char * const presence, const char * const name, const char * const version, const char * const os) {} void cons_show_account_list(gchar **accounts) { check_expected(accounts); } void cons_show_room_list(GSList *room, const char * const conference_node) {} void cons_show_bookmarks(const GList *list) { check_expected(list); } void cons_show_disco_items(GSList *items, const char * const jid) {} void cons_show_disco_info(const char *from, GSList *identities, GSList *features) {} void cons_show_room_invite(const char * const invitor, const char * const room, const char * const reason) {} void cons_check_version(gboolean not_available_msg) {} void cons_show_typing(const char * const barejid) {} void cons_show_incoming_room_message(const char *const nick, const char *const room, const int win_index, gboolean mention, GList *triggers, int unread) {} void cons_show_incoming_message(const char * const short_from, const int win_index, int unread) {} void cons_show_room_invites(GList *invites) {} void cons_show_received_subs(void) {} void cons_show_sent_subs(void) {} void cons_alert(void) {} void cons_theme_setting(void) {} void cons_privileges_setting(void) {} void cons_beep_setting(void) {} void cons_console_setting(void) {} void cons_flash_setting(void) {} void cons_splash_setting(void) {} void cons_vercheck_setting(void) {} void cons_resource_setting(void) {} void cons_occupants_setting(void) {} void cons_roster_setting(void) {} void cons_presence_setting(void) {} void cons_wrap_setting(void) {} void cons_winstidy_setting(void) {} void cons_encwarn_setting(void) {} void cons_time_setting(void) {} void cons_mouse_setting(void) {} void cons_statuses_setting(void) {} void cons_wintitle_setting(void) {} void cons_notify_setting(void) {} void cons_states_setting(void) {} void cons_outtype_setting(void) {} void cons_intype_setting(void) {} void cons_gone_setting(void) {} void cons_history_setting(void) {} void cons_carbons_setting(void) {} void cons_receipts_setting(void) {} void cons_log_setting(void) {} void cons_chlog_setting(void) {} void cons_grlog_setting(void) {} void cons_autoaway_setting(void) {} void cons_reconnect_setting(void) {} void cons_autoping_setting(void) {} void cons_autoconnect_setting(void) {} void cons_inpblock_setting(void) {} void cons_winpos_setting(void) {} void cons_tray_setting(void) {} void cons_show_contact_online(PContact contact, Resource *resource, GDateTime *last_activity) { check_expected(contact); check_expected(resource); check_expected(last_activity); } void cons_show_contact_offline(PContact contact, char *resource, char *status) {} void cons_theme_colours(void) {} void cons_theme_properties(void) {} // title bar void title_bar_set_presence(contact_presence_t presence) {} // status bar void status_bar_inactive(const int win) {} void status_bar_active(const int win) {} void status_bar_new(const int win) {} void status_bar_set_all_inactive(void) {} // roster window void rosterwin_roster(void) {} // occupants window void occupantswin_occupants(const char * const room) {} // window interface ProfWin* win_create_console(void) { return (ProfWin*)mock(); } ProfWin* win_create_xmlconsole(void) { return NULL; } ProfWin* win_create_chat(const char * const barejid) { return (ProfWin*)mock(); } ProfWin* win_create_muc(const char * const roomjid) { return NULL; } ProfWin* win_create_muc_config(const char * const title, DataForm *form) { return NULL; } ProfWin* win_create_private(const char * const fulljid) { return NULL; } ProfWin* win_create_plugin(const char *const plugin_name, const char * const tag) { return NULL; } void win_update_virtual(ProfWin *window) {} void win_free(ProfWin *window) {} gboolean win_notify_remind(ProfWin *window) { return TRUE; } int win_unread(ProfWin *window) { return 0; } void win_resize(ProfWin *window) {} void win_hide_subwin(ProfWin *window) {} void win_show_subwin(ProfWin *window) {} void win_refresh_without_subwin(ProfWin *window) {} void win_refresh_with_subwin(ProfWin *window) {} void win_println(ProfWin *window, theme_item_t theme, const char ch, const char *const message, ...) { va_list args; va_start(args, message); vsnprintf(output, sizeof(output), message, args); check_expected(output); va_end(args); } void win_print(ProfWin *window, theme_item_t theme_item, const char ch, const char *const message, ...) {} void win_appendln(ProfWin *window, theme_item_t theme_item, const char *const message, ...) {} char* win_get_title(ProfWin *window) { return NULL; } void win_show_occupant(ProfWin *window, Occupant *occupant) {} void win_show_occupant_info(ProfWin *window, const char * const room, Occupant *occupant) {} void win_show_contact(ProfWin *window, PContact contact) {} void win_show_info(ProfWin *window, PContact contact) {} void win_println_indent(ProfWin *window, int pad, const char * const message, ...) {} void win_clear(ProfWin *window) {} char* win_to_string(ProfWin *window) { return NULL; } // desktop notifier actions void notifier_uninit(void) {} void notify_typing(const char * const handle) {} void notify_message(const char *const name, int win, const char *const text) {} void notify_room_message(const char * const handle, const char * const room, int win, const char * const text) {} void notify_remind(void) {} void notify_invite(const char * const from, const char * const room, const char * const reason) {} void notify_subscription(const char * const from) {} void notify(const char * const message, int timeout, const char * const category) {}