summaryrefslogtreecommitdiff
path: root/beos/gui.cpp
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-1109/+0
|
* fix erroneously removed includes in beos window headerVincent Sanders2016-05-031-1/+1
|
* allow beos frontend to make clipboard functions private.Vincent Sanders2016-05-031-5/+1
| | | | | reduces the unecessary export of clipboard functions in beos frontend and also removes inclusion of unecessary headers.
* update beos frontend to remove useage of depricated warn_user APIVincent Sanders2016-05-011-7/+2
|
* use the miscellaneous table warning entryVincent Sanders2016-04-251-27/+30
| | | | | | | change all the frontends to provide the warning callback in the miscelaneous table instead of using the warn_user function. Changing all the warn_user callsites still requires completion.
* update beos to use font layout tableVincent Sanders2016-04-241-2/+5
|
* fix missing misc table fixup on beosVincent Sanders2016-04-171-1/+1
|
* complete the rename of the gui browser tableVincent Sanders2016-04-161-2/+2
| | | | | | When the operations tables were created the browser table was renamed to miscellaneous except the actual rename patch was never applied, this fixes that situation.
* Add web search bar to haiku frontendAdrián Arroyo Calle2016-01-191-1/+3
|
* BeOS/Haiku: improve menus managementAdrien Destugues2015-10-121-32/+26
| | | | | | | | | * Embed language resources in executable, so they can be used without installing * Add a few strings we want to use * Remove most menus since they are not implemented yet Fixes http://bugs.netsurf-browser.org/mantis/view.php?id=2164
* BeOS/Haiku: use cross-platform "select" code.Adrien Destugues2015-10-121-0/+4
| | | | Fixes http://bugs.netsurf-browser.org/mantis/view.php?id=2165.
* This moves message loading out of netsurf_init into each frontendVincent Sanders2015-06-211-2/+6
| | | | | | | | | | The translated message loading is dependant on configuration of resource location in each frontend, additionally they should have the ability to deal with errors in this loading in a implementation specific manner. This also extends the message loading API to be capable of loading from an inline memory buffer instead of from a file.
* fixup all the remaining logging macro callsitesVincent Sanders2015-05-281-8/+8
| | | | | The semantic patch tool appears to have missed some difficult to reason about callsites which have now been manually cleaned up
* Change LOG() macro to be varadicVincent Sanders2015-05-281-7/+7
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* fix missing comma in beos operations tableVincent Sanders2015-04-171-1/+1
|
* convert beos to bitmap operation tableVincent Sanders2015-04-161-1/+14
|
* Move FILE_SCHEME_PREFIX to corestrings.Michael Drake2015-02-261-0/+1
|
* make the form select menu API smaller.Vincent Sanders2014-11-131-4/+0
| | | | | | By hiding all but the form selection menu option structure from code outside of render this reduces the API to the absolute minimum to support this feature.
* Continue doxygen error cleanup.Vincent Sanders2014-11-081-6/+5
|
* Doesn't look like this file uses browser window internals.Michael Drake2014-10-251-1/+1
|
* Move create_form_select_menu to window gui table.Michael Drake2014-10-241-1/+0
|
* update beos frontend to cope with updated operation tableVincent Sanders2014-10-161-11/+13
|
* Remove unused global.Michael Drake2014-10-161-1/+0
|
* remove netsurf_poll callback and netsurf main loopVincent Sanders2014-10-131-1/+0
|
* remove use of deprecated netsurf_quit variable in beosFrançois Revol2014-10-131-3/+7
| | | | | | The core no longer needs to run the event polling loop as fetches are now scheduler driven. This is part of a series which will ultimately remove netsurf_poll callback altogether.
* Merge branch 'vince/reformatpending'Vincent Sanders2014-07-061-21/+9
|\ | | | | | | | | Conflicts: amiga/gui.c
| * change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-011-21/+9
| |
* | beos: Fix an oversight with number of fds for select()François Revol2014-07-021-1/+2
| | | | | | | | | | curl_multi_fdset() does not include the +1 required for select(), so we always need to add it.
* | beos: drop @todoFrançois Revol2014-07-021-1/+0
| | | | | | | | | | | | | | From the select(2) linux manpage: "nfds is the highest-numbered file descriptor in any of the three sets, plus 1." As sEventPipe[0] is definitely a descriptor, it must be 1 more here.
* | beos: handle realpath() returning NULLFrançois Revol2014-07-021-3/+9
| | | | | | | | Else we return with an uninitialized buffer...
* | beos: Avoid crashing if FindPath() returns an errorFrançois Revol2014-07-021-7/+7
|/ | | | | This can happen when running from the build directory, without the package already installed.
* Merge branch 'vince/fetchschedule'Vincent Sanders2014-07-011-23/+11
|\
| * convert all frontends to scheduled fetch operationVincent Sanders2014-06-261-23/+11
| |
* | beos: Use PathFinder to locate resource folder.Adrien Destugues2014-06-201-5/+12
| | | | | | | | | | | | So it can work wherever NetSurf is installed... Note this uses a Haiku-specific API and definitely breaks BeOS build.
* | beos: Adjust browser_table for removed callFrançois Revol2014-06-201-2/+1
|/
* make launch_url core operation use nsurlVincent Sanders2014-05-271-4/+6
|
* rework path to url mapping functions to convert from and to nsurlVincent Sanders2014-05-261-21/+0
|
* add backing store storage path to browser initialisationVincent Sanders2014-05-131-2/+2
|
* ensure operations tables are registered as early as possible.Vincent Sanders2014-05-101-4/+14
|
* add file operations table and make all frontends use it.Vincent Sanders2014-05-071-40/+0
| | | | | | | | | | | | | This rationalises the path construction and basename file operations. The default implementation is POSIX which works for all frontends except windows, riscos and amiga which have differeing path separators and rules. These implementations are significantly more robust than the previous nine implementations and also do not use unsafe strncpy or buffers with arbitrary length limits. These implementations also carry full documentation comments.
* move scheduleing into browser operation tableVincent Sanders2014-03-091-0/+1
|
* Fix buildFrançois Revol2014-02-131-1/+1
| | | | Drop broken explicit cast.
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-1/+1
| | | | browser_window_navigate flags.
* beos: Fix build (missing include)François Revol2014-02-041-0/+1
|
* move utf8 local conversion operations to tableVincent Sanders2014-02-011-29/+0
|
* move utf8 conversion routines to use nserror instead of their own error enumVincent Sanders2014-01-281-8/+6
|
* move path_to_url and url_to_path to fetch operation tableVincent Sanders2014-01-251-12/+14
|
* create table for fetcher operations and move all operations into itVincent Sanders2014-01-231-5/+12
|
* beos: Fix updating system colorsFrançois Revol2014-01-161-3/+7
|
* beos: Fix buildFrançois Revol2014-01-161-18/+21
| | | | gcc2 doesn't know about named initializers in C++...