summaryrefslogtreecommitdiff
path: root/beos/scaffolding.cpp
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-2332/+0
|
* update beos frontend to remove useage of depricated warn_user APIVincent Sanders2016-05-011-11/+11
|
* fixup errors in font layout table conversionVincent Sanders2016-04-241-1/+0
|
* UI fixes for search bar and cookie managerAdrien Destugues2016-02-011-11/+10
| | | | | | | | | - Make the "Utilities" menu enabled again, since the cookie manager is there, - Bigger default size for the cookie manager window, and activate it when shown, - Fix the layout of the top bar so the search field is visible, and make it send the search request to the right place.
* fix call to cookie manager initialisation for haikuVincent Sanders2016-01-191-2/+2
|
* fix haiku web search bar initalisationVincent Sanders2016-01-191-1/+1
|
* Add cookie management for Haiku frontendAdrián Arroyo Calle2016-01-191-11/+9
|
* Add web search bar to haiku frontendAdrián Arroyo Calle2016-01-191-0/+58
|
* BeOS/Haiku: implement some of the Help menu.Adrien Destugues2015-10-121-40/+44
|
* BeOS/Haiku: improve menus managementAdrien Destugues2015-10-121-9/+16
| | | | | | | | | * 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: Disable replicant draggerAdrien Destugues2015-10-121-0/+12
| | | | | | | | | | | * While making NetSurf replicable is nice, it doesn't work at all * The dragger is not useful: the main interest of replicability is apps programmatically embedding NetSurf, rather than manually dragging it around. * I leave this around if mmu_man wants to fix and re-enable it, but under a define so it doesn't get in the way for release builds. Fixes http://bugs.netsurf-browser.org/mantis/view.php?id=2163.
* 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
|