summaryrefslogtreecommitdiff
path: root/beos/scaffolding.cpp
Commit message (Collapse)AuthorAgeFilesLines
* fixup all the remaining logging macro callsitesVincent Sanders2015-05-281-4/+4
| | | | | 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-2/+2
| | | | | | | | | | | | 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.
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-271-4/+4
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* Need nsurl.Michael Drake2015-02-261-0/+1
|
* fix errors in change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-021-2/+2
|
* fix beos url setting function to return error codeVincent Sanders2014-10-291-8/+11
|
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-291-1/+3
|
* Shouldn't need bw internals now.Michael Drake2014-10-251-1/+1
|
* Use API to access content for view source.Michael Drake2014-10-251-2/+2
|
* update beos frontend to cope with updated operation tableVincent Sanders2014-10-161-1/+1
|
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-131-0/+1
| | | | | | | | | The netsurf.h header should *only* contain the registration, core initialisation and finalisation methods. Version information is best placed in its own header. Also remove any unneeded inclusion of this header limiting it to solely the places the relevant API is required.
* Put the font operations table alongside all the other core APIVincent Sanders2014-10-131-1/+1
| | | | | | | | | | | | The netsurf core is driven from numerous operation tables most of which are now set through a common netsurf_register() interface. The font and plotting interfaces are currently separate and unlike all the other operation tables are modified for differing contexts. This change moves the font operations alongside all the other operations table and remove unnecessary interaction with the renderers font internals. Further this also removes the need for css internals to be visible in frontends.
* remove use of deprecated netsurf_quit variable in beosFrançois Revol2014-10-131-3/+6
| | | | | | 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.
* beos: Disable non-working menu entriesFrançois Revol2014-07-311-9/+11
| | | | So at lest people won't expect too much.
* beos: Fix local variable shadowing a parameterFrançois Revol2014-06-201-5/+4
|
* move scheduleing into browser operation tableVincent Sanders2014-03-091-5/+4
|
* beos: Fix buildFrançois Revol2014-02-201-1/+1
| | | | One replacement was missed when changing browser_window_history_forward().
* Make history internal to browser_window module.Michael Drake2014-02-151-7/+7
|
* Make browser_window_navigate (un)verifiable flag match browser_window_create.Michael Drake2014-02-101-7/+5
|
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-11/+10
| | | | browser_window_navigate flags.
* Simplify local history interface.Michael Drake2014-02-081-2/+2
|
* beos: Fix updating system colorsFrançois Revol2014-01-161-2/+1
|
* beos: Better implementation of NSIconTextControl for the url barFrançois Revol2014-01-161-19/+66
| | | | | | | | | | | Instead of adding a child view we draw the bitmap over the child. Fixup the TextRect also in Draw() which is called just before the TextView's Draw(). It flickers a little less, and also respects the background color of the text control when using a desktop theme. Also drop a useless dynamic_cast.
* split gui operations into core and window and move more operations into tablesVincent Sanders2014-01-121-9/+0
|
* Initial conversion of netsurf gui to callback vtableVincent Sanders2014-01-111-4/+0
|
* beos: Also set LowColor on toolbar buttons when attachedFrançois Revol2014-01-041-0/+5
|
* beos: Add credits and licence buttons to about boxFrançois Revol2014-01-041-5/+44
| | | | We'll simplify it to just mention version infos like on atari.
* beos: Fix opening about from replicant popupFrançois Revol2014-01-041-0/+11
|
* beos: Fix background color for control on replicantsFrançois Revol2014-01-041-5/+17
| | | | Still some redundancy there but it works.
* beos: Add icon in url barFrançois Revol2014-01-041-3/+104
| | | | A bit hackish, flickers on resize, but it works.
* beos: Add a resize knob to replicantsFrançois Revol2014-01-041-0/+90
| | | | | | The view resizes the base view by the relative mouse movement. TODO: Add a bitmap to draw, for now it's ugly green.
* Fix Haiku buildFrançois Revol2013-12-071-1/+2
| | | | Fix build of the BeOS code due to recent untested options commits.
* s/history_core/local_history/Michael Drake2013-07-101-1/+1
|
* move options includeVincent Sanders2013-05-281-1/+1
|
* beos: Fix replicantsFrançois Revol2013-03-221-6/+12
| | | | | | | | Waiting on the semaphore was not enough, it was causing a crash on replicant removal. Now we wait for the replicant main thread to exit. It fixes replicants, at least when a single one is used per application. Using more than one still causes issues due to some libs not liking being used twice (hlcache it seems).
* beos: Fix some cpp warningsAdrien Destugues - PulkoMandy2013-03-091-63/+56
|
* Fixup for core selection change.Michael Drake2013-02-221-4/+2
|
* clean out useless outdated #if 0 blocks they serve no purpose and keep ↵Vincent Sanders2013-02-181-696/+0
| | | | causing confusion in core refactors. Better examples are available in other frontends or in teh revision control system if strictly necessary
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-181-11/+11
|
* change browser_window_create and refactor all callsitesVincent Sanders2013-02-181-10/+42
|
* browser_window_navigate refactorVincent Sanders2013-02-181-10/+81
|
* beos: Fix clipboard handling to use the new APIFrançois Revol2013-01-201-3/+3
|
* beos: Fix replicating with empty URL in archiveFrançois Revol2012-11-251-3/+4
| | | | We just got to about: when no valid URL is passed.
* beos: Partial replicant instanciation fixFrançois Revol2012-11-251-7/+15
| | | | | | * use the correct resources * work around a deadlock, allows BeHappy to start, though removing the replicant from Tracker crashes
* beos: Fix toolbar borderFrançois Revol2012-11-251-1/+4
| | | | | Use B_PLAIN_BORDER instead of the default B_FANCY_BORDER. Also force full redraw on resize to avoid artefacts.
* beos: gcc2 fixFrançois Revol2012-11-251-1/+2
|
* Update the BeOS/Haiku portAdrien Destugues - PulkoMandy2012-11-241-11/+141
| | | | | | | | * Toolbar use HVIF icons on Haiku * Download window * Some tweaks to the event loop to let network traffic happen Signed-off-by: François Revol <revol@free.fr>
* Stab at fixing beos build for private bw struct.Michael Drake2012-08-221-1/+1
|
* Use proper function for box tree dump.Michael Drake2012-08-201-7/+1
|
* Remove unused includes.Michael Drake2012-08-201-2/+0
|