summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Native select menu interface shouldn't force front end to dig inside bw struct.Michael Drake2014-02-089-28/+37
|
* Use get_scale function instead of derefing the bw.Michael Drake2014-02-081-18/+23
|
* Use browser_window_get_extents function.Michael Drake2014-02-081-5/+4
|
* Add function to get browser window's extents.Michael Drake2014-02-083-0/+38
|
* Move browser_window_update_extent to browser_private.hMichael Drake2014-02-083-9/+11
|
* Use browser_window_has_content.Michael Drake2014-02-081-2/+1
|
* Use browser_window_has_content.Michael Drake2014-02-081-2/+2
|
* Function to determine whether bw has a content.Michael Drake2014-02-082-0/+21
|
* Remove pointless variable.Michael Drake2014-02-081-2/+1
|
* Use browser_window URL accessor.Michael Drake2014-02-081-6/+7
|
* Use clean accessor for bw URL.Michael Drake2014-02-081-2/+1
|
* Remove includes of browser_private.h and hlcache.hMichael Drake2014-02-081-9/+2
|
* Add function to get bw's URL.Michael Drake2014-02-084-0/+42
|
* Avoid includes of desktop/browser_private.h and content/hlcache.hMichael Drake2014-02-081-10/+4
|
* Simplify browser_window_refresh_url_bar.Michael Drake2014-02-085-71/+73
| | | | Reduces front end need to access bw internals.
* Initialise AmigaGuide help system only at the point of first use.Chris Young2014-02-074-7/+7
|
* Only allocate printing resources for the period of time we need them.Chris Young2014-02-072-12/+11
|
* BracketsChris Young2014-02-061-1/+1
|
* Only allocate a signal for screen closure at the point we need it. This ↵Chris Young2014-02-061-8/+11
| | | | ensures there are enough free signals for popupmenu.library (at the moment, at least)
* Formatting.Chris Young2014-02-061-7/+6
|
* Avoid a potential crash when two tabs are opened and one of them is closed.Chris Young2014-02-061-0/+6
|
* Use libcurl's cache if it's new enough. Fixes #2064.John-Mark Bell2014-02-061-7/+32
|
* Ensure pkg-config pulls in all the curl libs we needChris Young2014-02-041-1/+1
|
* remove uncessary include os render/html.hVincent Sanders2014-02-041-4/+3
|
* beos: Fix build (missing include)François Revol2014-02-041-0/+1
|
* remove unecessary desktop/browser.h includesVincent Sanders2014-02-042-6/+3
|
* remove unecessary includeVincent Sanders2014-02-041-3/+1
|
* fix sign extension issue on 64bit platforms (coverity 1109898)Vincent Sanders2014-02-041-2/+4
|
* atari fix for undefined PATH_MAXVincent Sanders2014-02-031-3/+4
|
* try to make atari limits.h set PATH_MAXVincent Sanders2014-02-031-0/+2
|
* atari limits includeVincent Sanders2014-02-032-1/+4
|
* fix atari PATH_MAX includeVincent Sanders2014-02-031-3/+3
|
* fix remaining include errorsVincent Sanders2014-02-035-5/+5
|
* fixup missing includesVincent Sanders2014-02-0311-6/+22
|
* reduce desktop/browser.h unecessary includesVincent Sanders2014-02-0312-16/+33
|
* stop monkey pulling in headers from gtkVincent Sanders2014-02-031-1/+2
|
* remove unecessary includesVincent Sanders2014-02-034-48/+22
|
* ensure documentation includes c++ and objective c filesVincent Sanders2014-02-031-7/+4
|
* beos: Drop unneeded desktop/gui.h includeFrançois Revol2014-02-031-1/+0
|
* beos: Fix build (missing includes)François Revol2014-02-023-0/+5
|
* add missing stddef include for size_tVincent Sanders2014-02-021-0/+2
|
* fix missing stdlib includeVincent Sanders2014-02-012-1/+3
|
* fix missing includesVincent Sanders2014-02-014-1/+8
|
* move utf8 local conversion operations to tableVincent Sanders2014-02-0138-269/+262
|
* remove further extraneous includesVincent Sanders2014-02-014-10/+11
|
* remove unnecessary includesVincent Sanders2014-02-014-11/+14
|
* make clipboard table operations static and remove unecessary includesVincent Sanders2014-02-014-24/+15
|
* make the clipboard operation table and members static to textselection ↵Vincent Sanders2014-02-016-35/+43
| | | | module and cleanup unnecessary includes
* Merge remote-tracking branch 'origin/stevef/menus'Vincent Sanders2014-01-315-38/+45
|\
| * Provide a dedicated interface for destroying open menus.Steve Fryatt2014-01-295-38/+45
| | | | | | | | | | Add ro_gui_menu_destroy(), so that this specific task does not share the same code as the more general task of tidying up after menus have been closed by other means. The original ro_gui_menu_closed() now simply cleans up from a known (or assumed) closure, without forcing a closure itself.