| gURLChecker Reference Manual |
|---|
void uc_application_set_status_bar (const gfloat progress, const gchar *msg); void uc_application_open_project_dialog_show (void); gboolean uc_application_project_information_dialog_show (void); void uc_application_save_bookmarks (void); gboolean uc_application_treeview_get_selected_iter (const GtkTreeView *tv, GtkTreeIter *iter); void uc_application_build_url_treeview (void); void uc_application_main_tree_display_status (const guint link_status); void uc_application_main_tree_display_type (const UCLinkType link_type); void uc_application_main_tree_display_protocol (const gchar *proto); void uc_application_main_tree_display_all (void); void uc_application_main_tree_collapse_all (void); void uc_application_main_tree_expand_all (void); void uc_application_main_tree_display_branch (const UCLinkProperties *prop); void uc_application_display_search_message (const guint label_pos, const gchar *message); gboolean uc_application_dialog_yes_no_show (const gchar *message, const GtkMessageType msg_type); void uc_application_search_dialog_show (void); void uc_application_new_search_dialog_show (void); void uc_application_add_filter_directory_add (void); void uc_application_add_filter_domain_add (void); void uc_application_add_filter_domain_remove (void); void uc_application_add_filter_directory_remove (void); void uc_application_add_filter_directory_dialog_show (void); void uc_application_add_filter_domain_dialog_show (void); void uc_application_page_information_dialog_show (void); void uc_application_display_state_message (const guint label_pos, const gchar *message); void uc_application_display_informations (GtkTreeView *treeview); void uc_application_treeview_activate_popup (GdkEventButton *event); void uc_application_view_similar_links_dialog_show (void); void uc_application_new_instance_launch (void); void uc_application_launch_web_browser (const gchar *url); void uc_application_menu_set_sensitive_all (const gchar *name, const gboolean val); void uc_application_resize (void); void uc_application_open_project_resize (void); void uc_application_proxy_frame_control_sensitive (void); void uc_application_make_paths (void); void uc_application_remove_paths (void); void uc_application_view_source_dialog_show (void); void uc_application_view_image_dialog_show (void); void uc_application_dialog_show (const gchar *message, const GtkMessageType msg_type); void uc_application_globals_init (void); void uc_application_init (gchar *url); void uc_application_quit (void); void uc_application_draw_main_frames (void); void uc_application_search_get_data (void); gboolean uc_application_get_web_project_data (void); void uc_application_get_bookmarks_project_data (void); void uc_application_new_web_dialog_show (void); void uc_application_new_bookmarks_dialog_show (void); void uc_application_open_dialog_show (void); void uc_application_about_dialog_show (void); void uc_application_progress_dialog_show (); void uc_application_settings_dialog_show (void); gboolean uc_application_settings_get_data (void); void uc_application_status_code_properties_init (void); UCStatusCode* uc_application_get_status_code_properties (const gchar *status_code);
void uc_application_set_status_bar (const gfloat progress,
const gchar *msg);progress : | |
msg : |
|
void uc_application_open_project_dialog_show
(void);Show the open project dialog.
gboolean uc_application_project_information_dialog_show
(void);Show the project properties dialog.
| Returns : | TRUE if project must be saved. |
void uc_application_save_bookmarks (void);
Show dialog for saving or not bookmarks change.
gboolean uc_application_treeview_get_selected_iter
(const GtkTreeView *tv,
GtkTreeIter *iter);set the iterator for the current selection in a given treeview.
tv : | Tree view to work with. |
iter : | Iterater to fill. |
| Returns : | TRUE if it have filled the given iter with selection. |
void uc_application_build_url_treeview
(void);Build all needed elements for the main URL tree view.
void uc_application_main_tree_display_status
(const guint link_status);Only display a list a links with the given status.
link_status : | the status to display. |
void uc_application_main_tree_display_type
(const UCLinkType link_type);Only display a list a links with the given type.
link_type : | the type to display. |
void uc_application_main_tree_display_protocol
(const gchar *proto);Only display a list a links with the given protocol.
proto : | the protocol to display. |
void uc_application_main_tree_display_all
(void);Display the whole list of checked url in the main url treeview.
void uc_application_main_tree_collapse_all
(void);Collapse the main url treeview.
void uc_application_main_tree_expand_all
(void);Expand the main url treeview.
void uc_application_main_tree_display_branch
(const UCLinkProperties *prop);prop : |
|
void uc_application_display_search_message
(const guint label_pos,
const gchar *message);Display messages in the progess dialog during the search.
label_pos : | Position of the given message. |
message : | Message to display. |
gboolean uc_application_dialog_yes_no_show
(const gchar *message,
const GtkMessageType msg_type);Print a yes/no choice dialog.
message : | The message to display. |
msg_type : | Type of the message. |
| Returns : | TRUE if user clicked on the OK button. |
void uc_application_search_dialog_show
(void);Show the search dialog.
void uc_application_new_search_dialog_show
(void);Show the search dialog.
void uc_application_add_filter_directory_add
(void);Add a directory filter.
void uc_application_add_filter_domain_add
(void);Add a domain filter.
void uc_application_add_filter_domain_remove
(void);Remove a domain filter.
void uc_application_add_filter_directory_remove
(void);Remove a directory filter.
void uc_application_add_filter_directory_dialog_show
(void);Show the add directory filter dialog.
void uc_application_add_filter_domain_dialog_show
(void);Show the add domain filter dialog.
void uc_application_page_information_dialog_show
(void);Show the properties dialog.
void uc_application_display_state_message
(const guint label_pos,
const gchar *message);Display messages in the progess dialog during the check process
label_pos : | Position of the given message. |
message : | Message to display. |
void uc_application_display_informations
(GtkTreeView *treeview);Search the header of a given url in the urls list to display it.
treeview : | Tree view to work with. |
void uc_application_treeview_activate_popup
(GdkEventButton *event);Display the treview popup menu.
event : | Event. |
void uc_application_view_similar_links_dialog_show
(void);Show similar links dialog.
void uc_application_new_instance_launch
(void);Launch a new instance of gURLChecker.
void uc_application_launch_web_browser
(const gchar *url);Launch a web browser to view the selected url
url : | URL to pass to the web browser. |
void uc_application_menu_set_sensitive_all
(const gchar *name,
const gboolean val);name : | |
val : |
|
void uc_application_open_project_resize
(void);Reorganize open project frames.
void uc_application_proxy_frame_control_sensitive
(void);void uc_application_make_paths (void);
Create the directories needed by gURLChecker.
void uc_application_view_source_dialog_show
(void);Show view source dialog.
void uc_application_view_image_dialog_show
(void);Show view image dialog.
void uc_application_dialog_show (const gchar *message,
const GtkMessageType msg_type);Print a alert box.
message : | The message to display. |
msg_type : | Type of the message. |
void uc_application_globals_init (void);
Initialisation of all globals.
void uc_application_init (gchar *url);
gURLChecker initialization.
url : | If the user specified one: the command line URL. |
void uc_application_draw_main_frames (void);
Draw the two principals main frames for displaying urls list and headers.
void uc_application_search_get_data (void);
Retreive the string to search and the search properties.
gboolean uc_application_get_web_project_data
(void);Retrieving url to check and some check properties.
| Returns : | TRUE if data input is ok. |
void uc_application_get_bookmarks_project_data
(void);Retrieving bookmarks file to check.
void uc_application_new_web_dialog_show
(void);Show the new web project dialog box.
void uc_application_new_bookmarks_dialog_show
(void);Show the new bookmarks project dialog box.
void uc_application_progress_dialog_show
();Show the progess dialog.
void uc_application_settings_dialog_show
(void);Show the settings dialog box.
gboolean uc_application_settings_get_data
(void);Retrieve user input data settings.
| Returns : | TRUE if all inputs are ok. |
void uc_application_status_code_properties_init
(void);This function load the properties to associate with a server status code.
UCStatusCode* uc_application_get_status_code_properties (const gchar *status_code);
Return properties for a given status code.
status_code : | Status code to work with. |
| Returns : | UCStatusCode propertie node associated with the given status code. |
| <<< general | bookmarks >>> |