Add documentation comments.

This commit is contained in:
Michael Drake 2013-06-18 17:22:56 +01:00
parent 99e1246cab
commit d6ee11de93
1 changed files with 39 additions and 0 deletions

View File

@ -23,15 +23,54 @@
#include "desktop/core_window.h" #include "desktop/core_window.h"
/**
* Initialise the global history.
*
* This iterates through the URL database, generating the global history data,
* and creates a treeview.
*
* This must be called before any other global_history_* function.
*
* \param cw_t Callback table for core_window containing the treeview
* \param cw The core_window in which the treeview is shown
* \return NSERROR_OK on success, appropriate error otherwise
*/
nserror global_history_init(struct core_window_callback_table *cw_t, nserror global_history_init(struct core_window_callback_table *cw_t,
void *core_window_handle); void *core_window_handle);
/**
* Finalise the global history.
*
* This destroys the global history treeview and the global history module's
* internal data. After calling this if global history is required again,
* global_history_init must be called.
*
* \param cw_t Callback table for core_window containing the treeview
* \param cw The core_window in which the treeview is shown
* \return NSERROR_OK on success, appropriate error otherwise
*/
nserror global_history_fini(struct core_window_callback_table *cw_t, nserror global_history_fini(struct core_window_callback_table *cw_t,
void *core_window_handle); void *core_window_handle);
/**
* Redraw the global history.
*
* \param x X coordinate to render treeview at
* \param x Y coordinate to render treeview at
* \param clip Current clip rectangle (wrt tree origin)
* \param ctx Current redraw context
*/
void global_history_redraw(int x, int y, struct rect *clip, void global_history_redraw(int x, int y, struct rect *clip,
const struct redraw_context *ctx); const struct redraw_context *ctx);
/**
* Handles all kinds of mouse action
*
* \param mouse The current mouse state
* \param x X coordinate
* \param y Y coordinate
*/
void global_history_mouse_action(browser_mouse_state mouse, int x, int y); void global_history_mouse_action(browser_mouse_state mouse, int x, int y);
#endif #endif