summaryrefslogtreecommitdiff
path: root/beos
Commit message (Collapse)AuthorAgeFilesLines
* Pass clip rect as struct through content_redraw api. Update the front ends ↵Michael Drake2011-02-132-6/+14
| | | | | | to use this. Note only RO build tested. svn path=/trunk/netsurf/; revision=11670
* Pick the CSS system colours from ui_color() and BScreen::DesktopColor(). ↵François Revel2011-01-306-45/+198
| | | | | | Update those when they are updated in ZETA. Also update the toolbar and statusbar background. svn path=/trunk/netsurf/; revision=11535
* Fix BeOS build.François Revel2011-01-301-5/+17
| | | | svn path=/trunk/netsurf/; revision=11531
* add default system colour handlers to each frontendVincent Sanders2011-01-302-1/+285
| | | | svn path=/trunk/netsurf/; revision=11530
* Attempt to exit the main loop properly from the replicant view destructor. ↵François Revel2010-12-121-4/+9
| | | | | | There are still some issues with multiple instances or on second instanciation though... svn path=/trunk/netsurf/; revision=11030
* Fix passing replicant args. Remove debug output.François Revel2010-12-121-4/+2
| | | | svn path=/trunk/netsurf/; revision=11029
* Fix Replicant instanciation, though it doesn't get the url correctly yet, ↵François Revel2010-12-121-5/+12
| | | | | | and leaves stuff behind when removed (like the main thread). svn path=/trunk/netsurf/; revision=11028
* Remove last remnants of AliasesRob Kendrick2010-12-051-1/+0
| | | | svn path=/trunk/netsurf/; revision=11003
* Purge Aliases file stuff.Michael Drake2010-12-041-1/+0
| | | | svn path=/trunk/netsurf/; revision=10982
* Remove Hubbub and Wapcaplet initialisation and finalisation.Michael Drake2010-12-041-10/+0
| | | | svn path=/trunk/netsurf/; revision=10980
* Futher simplification of the makefileVincent Sanders2010-10-291-0/+23
| | | | | | Use target makefiles to set build sources svn path=/trunk/netsurf/; revision=10916
* Beginning of NetSurf build infrastructure cleanupVincent Sanders2010-10-271-0/+81
| | | | | | Provide makefile fragment for each target, isolates the target makefile changes into one place simplifying the top level makefile svn path=/trunk/netsurf/; revision=10910
* Merge treeview-redux to trunkJohn Mark Bell2010-10-056-321/+56
| | | | svn path=/trunk/netsurf/; revision=10865
* Remove todo comment for something already done.Michael Drake2010-08-141-1/+0
| | | | svn path=/trunk/netsurf/; revision=10708
* Fix colors on copying to clipboard.François Revel2010-08-141-1/+2
| | | | svn path=/trunk/netsurf/; revision=10704
* Remove printfs from bitmap plotter.Michael Drake2010-08-141-2/+1
| | | | svn path=/trunk/netsurf/; revision=10699
* Delete dead code and tweak polygon plotter. Still wrong, but better.Michael Drake2010-08-131-39/+1
| | | | svn path=/trunk/netsurf/; revision=10692
* Turn on knockout rendering.Michael Drake2010-08-131-1/+1
| | | | svn path=/trunk/netsurf/; revision=10691
* While bitmap_test_opaque() is unimplemented, it is unsafe to assume it is ↵Michael Drake2010-08-131-2/+2
| | | | | | opaque, so return false instead. svn path=/trunk/netsurf/; revision=10690
* Remove dead code. Fix bitmap_set_opaque() to apply the opacity value it's ↵Michael Drake2010-08-131-5/+2
| | | | | | passed, rather than just setting it to true. svn path=/trunk/netsurf/; revision=10689
* Copy over the gtk implementation of url_to_path/path_to_url(). This fixes ↵François Revel2010-08-121-5/+20
| | | | | | getting the mime type of local files. svn path=/trunk/netsurf/; revision=10688
* Include the resource id enumeration header. Not used yet.François Revel2010-08-031-0/+2
| | | | svn path=/trunk/netsurf/; revision=10682
* Move the resource id enum to its own header. Add a ersizing handle pic for ↵François Revel2010-08-032-13/+48
| | | | | | the replicant. svn path=/trunk/netsurf/; revision=10681
* Fix BeOS build:François Revel2010-08-027-70/+96
| | | | | | | | | | - struct content -> hlcache_handle - login window (though it won't work yet as the message isn't handled, and since we don't have the window pointer anymore we can't add the alert as subset of the window...), - rsrc fetcher, - netsurf_init() args (but the replicant is still broken due to this), - export the realpath() hack as it's needed elsewhere too. svn path=/trunk/netsurf/; revision=10677
* Amiga: Add "cut" option; make cut/copy/paste menus context sensitive; allow ↵Chris Young2010-07-241-0/+4
| | | | | | | | | | | dragging selections within NetSurf window to text fields (does not work across windows). todo: switching tabs will reset cut/copy/paste menus to initial state; cut option is putting something on the clipboard which causes a crash when pasting it back svn path=/trunk/netsurf/; revision=10660
* Fix inventory file leafname.Michael Drake2010-07-091-1/+1
| | | | svn path=/trunk/netsurf/; revision=10624
* Check the last character for a path separator, rather than the NULL string ↵Chris Young2010-07-091-1/+1
| | | | | | termination. svn path=/trunk/netsurf/; revision=10622
* Replace unnecessarily complicated path concatenation with something simpler andChris Young2010-07-091-0/+19
| | | | | | easily adaptable to different platform path structures. svn path=/trunk/netsurf/; revision=10621
* + Refactor input handling from browser window code into contentMichael Drake2010-06-042-2/+3
| | | | | | | | | | | | | handlers. + Disentangle all box tree manipulation from browser window code and put it where it belongs. + Move other content specific and other irrelevant code from browser window handling to appropriate places. + Put mouse state enum in new mouse header, since it's not just used by browser window code, and it is used by treeview windows on the treeview branch. svn path=/trunk/netsurf/; revision=10561
* It turns out that realloc(ptr, 0) --> free(ptr) is not actually required by ↵John Mark Bell2010-04-301-0/+5
| | | | | | | | the C standard (whereas realloc(NULL, size) --> malloc(size) is). Therefore, explicitly model the behaviour expected by our libraries (that realloc of 0 size is equivalent to free). svn path=/trunk/netsurf/; revision=10524
* remove _GNU_SOURCE define from everywhere.Vincent Sanders2010-04-243-5/+0
| | | | | | strndup is not standard so provide an implementation. svn path=/trunk/netsurf/; revision=10474
* Make downloads work again.John Mark Bell2010-04-051-6/+6
| | | | svn path=/trunk/netsurf/; revision=10243
* rationalise the usage of the file schemeVincent Sanders2010-03-311-3/+3
| | | | svn path=/trunk/netsurf/; revision=10221
* first part of initialisation refactor move gui_init2 into frontendsVincent Sanders2010-03-291-18/+22
| | | | svn path=/trunk/netsurf/; revision=10202
* Merge jmb/new-cache; r=dsilvers,rs=vinceDaniel Silverstone2010-03-282-6/+24
| | | | svn path=/trunk/netsurf/; revision=10180
* Move code which extracts the filename from a given path into frontend.Chris Young2010-03-211-0/+20
| | | | svn path=/trunk/netsurf/; revision=10139
* Use correct length definitionJohn Mark Bell2010-01-231-2/+2
| | | | svn path=/trunk/netsurf/; revision=9867
* Construct font_family from core family name.John Mark Bell2010-01-221-3/+9
| | | | svn path=/trunk/netsurf/; revision=9863
* Refactor main into the frontendsVincent Sanders2010-01-201-0/+7
| | | | | | remove unused embedded global svn path=/trunk/netsurf/; revision=9851
* Add missing gui_window_scroll_visible().François Revel2010-01-031-0/+6
| | | | svn path=/trunk/netsurf/; revision=9784
* Default BeOS implementation for save_complete_gui_save() and ↵François Revel2010-01-021-0/+87
| | | | | | save_complete_htmlSaveFileFormat(). svn path=/trunk/netsurf/; revision=9780
* Fix getting the box style to a BFont. for the clipboard.François Revel2010-01-021-1/+4
| | | | svn path=/trunk/netsurf/; revision=9778
* Accomodate for plotter API change.François Revel2010-01-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=9777
* Actually fake stdbool inclusion here as well.François Revel2010-01-021-1/+2
| | | | svn path=/trunk/netsurf/; revision=9776
* Remove copy-paste leftover ?François Revel2010-01-021-2/+0
| | | | svn path=/trunk/netsurf/; revision=9775
* Handle new parameter to fetch_send_callback().François Revel2010-01-021-12/+12
| | | | svn path=/trunk/netsurf/; revision=9774
* s/TRANSPARENT/NS_TRANSPARENT/François Revel2010-01-021-5/+5
| | | | svn path=/trunk/netsurf/; revision=9773
* Merge branches/MarkieB/gtkmain to trunk.John Mark Bell2009-12-172-0/+91
| | | | svn path=/trunk/netsurf/; revision=9729
* Typo.François Revel2009-08-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=8984
* Merge LibCSS port to trunk.John Mark Bell2009-07-233-5/+12
| | | | svn path=/trunk/netsurf/; revision=8752