summaryrefslogtreecommitdiff
path: root/cocoa/BrowserView.m
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-757/+0
|
* cleanup some warnings in cocoa frontendVincent Sanders2016-05-021-6/+8
|
* update cocoa frontend to not use depricated warn_user APIVincent Sanders2016-05-021-3/+3
|
* clean up cocoa warnings on os x yosemite sdkVincent Sanders2016-02-091-399/+422
|
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-271-20/+20
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* Remove usage of browser private interfacesVincent Sanders2014-11-211-9/+10
| | | | | | | | The cocoa frontend was directly acessing browser internals instead of using the API. In the case of gui.m there was a check for the browser window not being root (browser->parent != NULL) . As gui windows can only ever be associated with the root brower window (i.e. its parent will always be NULL) this was completely redundant.
* fix typo in cocoa frontend context cleanupVincent Sanders2014-11-021-1/+1
|
* Change contextual content retrieval to browser features.Vincent Sanders2014-11-021-4/+4
| | | | | | | | | | | | | Update the API which allows frontends to acquire the page features (images, link urls or form elements) present at the given coordinates within a browser window. By making this an explicit browser_window API and using the browser.h header for the associated data structure with a more appropriate API naming the usage is much more obvious and contained. Additionally the link url is now passed around as a nsurl stopping it being converted from nsurl to text and back again several times.
* change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-011-28/+1
|
* Make history internal to browser_window module.Michael Drake2014-02-151-1/+0
|
* Make browser_window_navigate (un)verifiable flag match browser_window_create.Michael Drake2014-02-101-4/+2
|
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-9/+9
| | | | browser_window_navigate flags.
* fix remaining include errorsVincent Sanders2014-02-031-0/+1
|
* s/history_core/local_history/Michael Drake2013-07-101-1/+1
|
* move options includeVincent Sanders2013-05-281-1/+1
|
* Front ends have no reason to include desktop/selection.h now.Michael Drake2013-05-101-1/+0
|
* Various warning squashes and fixes.Michael Drake2013-02-221-0/+1
|
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-181-9/+9
|
* change browser_window_create and refactor all callsitesVincent Sanders2013-02-181-2/+33
|
* browser_window_navigate refactorVincent Sanders2013-02-181-8/+40
|
* Fix some build warnings.Michael Drake2012-10-111-1/+1
|
* Include browser_private.h.Michael Drake2012-08-221-1/+1
|
* Pass whether background images are wanted in redraw_context.Michael Drake2011-12-231-0/+1
| | | | svn path=/trunk/netsurf/; revision=13335
* Fix up for nsurl changes. Untested.Michael Drake2011-10-031-1/+1
| | | | svn path=/trunk/netsurf/; revision=12930
* Port cocoa front end to browser_window_get_contextual_content.Michael Drake2011-09-061-7/+10
| | | | svn path=/trunk/netsurf/; revision=12759
* Remove chained self-assignment.Michael Drake2011-09-061-1/+1
| | | | svn path=/trunk/netsurf/; revision=12751
* Don't need to set current_redraw_browser any more.Michael Drake2011-08-241-3/+0
| | | | svn path=/trunk/netsurf/; revision=12657
* Remove plotter table global. Pass a redraw context around redraw functions. ↵Michael Drake2011-06-301-1/+6
| | | | | | Knockout could be handled better. Note: untested on most front ends. svn path=/trunk/netsurf/; revision=12543
* Frond ends signal end of drag with call to browser_window_mouse_track.Michael Drake2011-06-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=12515
* If iframes are reformatted due to containing document reflow, don't need to ↵Michael Drake2011-06-241-1/+1
| | | | | | redraw them since they will be redrawn when the containing document is redrawn. Make iframe handling more robust. svn path=/trunk/netsurf/; revision=12497
* Add code to open the source file into Xcode. Currently called by the context ↵François Revel2011-05-121-0/+2
| | | | | | menu because I didn't want to dig the .xib files, feel free to move it to the View main menu. svn path=/trunk/netsurf/; revision=12387
* Getting rid of cocoa_set_font_scale_factorSven Weidauer2011-03-141-1/+0
| | | | svn path=/trunk/netsurf/; revision=12042
* Minimal implementation of NSTextInput protocol. Allows accented characters ↵Sven Weidauer2011-03-071-0/+63
| | | | | | to be typed. Might not work with other, more complex input methods (chinese, ...) svn path=/trunk/netsurf/; revision=11930
* Checking for public.url pasteboard type first, so dragging a .webloc file ↵Sven Weidauer2011-03-041-1/+1
| | | | | | from the Finder opens the URL and not the .webloc file itself. svn path=/trunk/netsurf/; revision=11901
* Accepting URLs dropped onto the browser view.Sven Weidauer2011-03-041-0/+44
| | | | svn path=/trunk/netsurf/; revision=11900
* More keyboard shortcuts: scroll down with space bar and go back with ↵Sven Weidauer2011-03-021-2/+7
| | | | | | backspace key. svn path=/trunk/netsurf/; revision=11885
* Handling keyboard events for local history view.Sven Weidauer2011-02-271-1/+5
| | | | svn path=/trunk/netsurf/; revision=11851
* Resetting cursor when mouse moves out of browser view.Sven Weidauer2011-02-271-1/+6
| | | | svn path=/trunk/netsurf/; revision=11839
* Using NSTrackingArea to get mouseMoved: events in the browser view.Sven Weidauer2011-02-271-1/+12
| | | | svn path=/trunk/netsurf/; revision=11838
* Local history view now is responsible for hiding itself after selecting a ↵Sven Weidauer2011-02-271-1/+6
| | | | | | web page. Also gets redrawn when selecting other pages using the back/forward buttons. svn path=/trunk/netsurf/; revision=11837
* Prepared for localizing string literals in source code.Sven Weidauer2011-02-251-11/+22
| | | | svn path=/trunk/netsurf/; revision=11795
* Cleanup in redraw code for browser view.Sven Weidauer2011-02-171-7/+6
| | | | svn path=/trunk/netsurf/; revision=11706
* New local history panel with scrollbars. Still needs to resize itself to fit ↵Sven Weidauer2011-02-171-3/+5
| | | | | | the history. svn path=/trunk/netsurf/; revision=11705
* Pass clip rect to browser_window_redraw as pointer.Michael Drake2011-02-131-1/+1
| | | | svn path=/trunk/netsurf/; revision=11672
* Pass clip rect to browser_window_redraw as struct.Michael Drake2011-02-111-6/+8
| | | | svn path=/trunk/netsurf/; revision=11648
* improve browser_window_redraw width and height handlingVincent Sanders2011-02-111-2/+0
| | | | svn path=/trunk/netsurf/; revision=11642
* add browser_window_redraw() method to make content_redraw calls from ↵Vincent Sanders2011-02-101-15/+7
| | | | | | frontends common RISC OS, atari, amiga and beos have not been updated svn path=/trunk/netsurf/; revision=11640
* Reorganized includes.Sven Weidauer2011-01-311-5/+4
| | | | svn path=/trunk/netsurf/; revision=11567
* Implemented context menu.Sven Weidauer2011-01-281-0/+95
| | | | svn path=/trunk/netsurf/; revision=11520
* Timer based reformatting, so reformat happens also while resizing windows.Sven Weidauer2011-01-281-2/+28
| | | | svn path=/trunk/netsurf/; revision=11519