summaryrefslogtreecommitdiff
path: root/beos/gui.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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++...
* move 401 login into operation tableVincent Sanders2014-01-161-1/+1
|
* move filename_from_path and path_add_part into gui operation tablesVincent Sanders2014-01-161-3/+4
|
* split browser gui operations upVincent Sanders2014-01-151-12/+20
|
* complete move of remaining core gui functionsVincent Sanders2014-01-151-16/+8
|
* move download operations to download tableVincent Sanders2014-01-141-0/+5
|
* move teh final optional window operations into the tableVincent Sanders2014-01-131-8/+0
|
* split gui operations into core and window and move more operations into tablesVincent Sanders2014-01-121-14/+3
|
* move set title, set url, start and stop throbber window operations to gui tableVincent Sanders2014-01-121-0/+7
|
* move window creation and destruction into tableVincent Sanders2014-01-111-2/+4
|
* Initial conversion of netsurf gui to callback vtableVincent Sanders2014-01-111-123/+123
|
* Fix some log statementsDaniel Silverstone2014-01-051-1/+1
|
* Change gui_file_gadget_interface to pass gui_window not browser_window, add ↵Rob Kendrick2014-01-051-1/+1
| | | | GTK implementation that of course does not work.
* Add new gui entry point for file open dialogue requestsRob Kendrick2014-01-051-0/+8
|
* beos: remap resource:favicon.ico to favicon.pngFrançois Revol2014-01-041-3/+9
| | | | We don't use it yet though.
* beos: Drop duplicate throbber PNG resourcesFrançois Revol2014-01-041-1/+1
| | | | They are also added with another path by the makefile.
* beos: Load Messages files for current languageFrançois Revol2014-01-041-6/+18
| | | | | | For now we just check for LC_MESSAGES in the environment, which should even work in BeOS. Someday we should probably use Haiku's BLocale API instead.
* beos: Add missing call to lwc_string_unref()François Revol2014-01-041-3/+4
|
* beos: Fix permission on temp directories creationFrançois Revol2014-01-041-1/+1
| | | | TODO: use filename_initialize() instead when it's fixed.
* Fix indentationFrançois Revol2013-12-071-10/+10
|