summaryrefslogtreecommitdiff
path: root/cocoa
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Implemented menu for back and forward buttons.Sven Weidauer2011-02-285-242/+280
| | | | svn path=/trunk/netsurf/; revision=11857
* Adding tool tips and changing the cursor in the local history view.Sven Weidauer2011-02-282-3/+70
| | | | svn path=/trunk/netsurf/; revision=11855
* Setting path for tree icons when tree class is initialized.Sven Weidauer2011-02-282-2/+8
| | | | svn path=/trunk/netsurf/; revision=11853
* Handling keyboard events for local history view.Sven Weidauer2011-02-273-1/+22
| | | | svn path=/trunk/netsurf/; revision=11851
* Remove padding for scrollers in local history.Sven Weidauer2011-02-271-7/+1
| | | | svn path=/trunk/netsurf/; revision=11845
* Fixing display/transparency of ArrowWindow for 10.5.Sven Weidauer2011-02-271-5/+0
| | | | svn path=/trunk/netsurf/; revision=11844
* Fix pixel alignment for rendering paths with stroke_width == 0.Sven Weidauer2011-02-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=11843
* Adding icons for tree views.Sven Weidauer2011-02-276-4/+12
| | | | svn path=/trunk/netsurf/; revision=11842
* Implementing path utility functions.Sven Weidauer2011-02-271-4/+6
| | | | svn path=/trunk/netsurf/; revision=11841
* 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-272-3/+12
| | | | svn path=/trunk/netsurf/; revision=11838
* Local history view now is responsible for hiding itself after selecting a ↵Sven Weidauer2011-02-278-17/+34
| | | | | | web page. Also gets redrawn when selecting other pages using the back/forward buttons. svn path=/trunk/netsurf/; revision=11837
* Correctly centering lines on pixel grid if their width is even.Sven Weidauer2011-02-261-3/+5
| | | | svn path=/trunk/netsurf/; revision=11823
* Not retaining outlets. Fixing memory leak for favicon.Sven Weidauer2011-02-265-9/+10
| | | | svn path=/trunk/netsurf/; revision=11821
* Implemented gui_find_resource and using resource: URIs for builtin stylesheets.Sven Weidauer2011-02-262-15/+7
| | | | svn path=/trunk/netsurf/; revision=11819
* Updated preferences and search window xib to allow more space for localized ↵Sven Weidauer2011-02-252-120/+69
| | | | | | text. svn path=/trunk/netsurf/; revision=11806
* Translated UI strings to german.Sven Weidauer2011-02-258-0/+70
| | | | svn path=/trunk/netsurf/; revision=11805
* Lose space: make can sometimes be picky about such things, so avoid the ↵John Mark Bell2011-02-251-1/+1
| | | | | | potential for failure svn path=/trunk/netsurf/; revision=11804
* Building translated nib files if strings file exist.Sven Weidauer2011-02-254-5/+56
| | | | svn path=/trunk/netsurf/; revision=11802
* Added 'Localizable.strings' to bundle resources and added german ↵Sven Weidauer2011-02-257-1/+97
| | | | | | translations. Other languages use english original. svn path=/trunk/netsurf/; revision=11796
* Prepared for localizing string literals in source code.Sven Weidauer2011-02-254-23/+46
| | | | svn path=/trunk/netsurf/; revision=11795
* Saving bookmarks before quitting NetSurf.Sven Weidauer2011-02-252-0/+24
| | | | svn path=/trunk/netsurf/; revision=11794
* Get filename for downloads from core.Sven Weidauer2011-02-241-1/+1
| | | | svn path=/trunk/netsurf/; revision=11784
* add resource handlingVincent Sanders2011-02-231-0/+6
| | | | | | move gtk and framebuffer to use generic resource handling svn path=/trunk/netsurf/; revision=11772
* Fix typo so the mac port compilesSven Weidauer2011-02-211-1/+1
| | | | svn path=/trunk/netsurf/; revision=11747
* Port cocoa front end to use thumbnail_redraw(). Note: untested.Michael Drake2011-02-201-21/+16
| | | | svn path=/trunk/netsurf/; revision=11720
* Remove thumbnail_create() from browser.h. Make RO front end use the core ↵Michael Drake2011-02-191-0/+1
| | | | | | thumbnail_redraw function. Make other front ends include the right header for thumbnail_create(). svn path=/trunk/netsurf/; revision=11716
* Remove padding in arrow box.Sven Weidauer2011-02-171-4/+4
| | | | svn path=/trunk/netsurf/; revision=11709
* Making sure history popup stays on screen.Sven Weidauer2011-02-174-13/+68
| | | | svn path=/trunk/netsurf/; revision=11708
* 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-1718-81/+1110
| | | | | | the history. svn path=/trunk/netsurf/; revision=11705
* Pass clip rect to clip plotters as struct. Simplify clip rect handling in ↵Michael Drake2011-02-141-3/+3
| | | | | | debug window code. Pass clip rect to select menu as struct. svn path=/trunk/netsurf/; revision=11683
* Pass clip rect to browser_window_redraw as pointer.Michael Drake2011-02-131-1/+1
| | | | svn path=/trunk/netsurf/; revision=11672
* Pass clip rect as struct through content_redraw api. Update the front ends ↵Michael Drake2011-02-131-1/+7
| | | | | | to use this. Note only RO build tested. svn path=/trunk/netsurf/; revision=11670
* 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
* Fix copying text/plain to clipboardJohn Mark Bell2011-02-091-1/+3
| | | | svn path=/trunk/netsurf/; revision=11636
* Automatically hide tab bar for single tab.Sven Weidauer2011-02-082-4/+13
| | | | svn path=/trunk/netsurf/; revision=11630
* Fixing crash issue by disallowing last tab to be dragged out.Sven Weidauer2011-02-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=11629
* New icon for homepage button and tooltips for homepage and local history ↵Sven Weidauer2011-02-084-7/+133
| | | | | | buttons. svn path=/trunk/netsurf/; revision=11628
* Handling keyboard events in tree view.Sven Weidauer2011-02-021-0/+121
| | | | svn path=/trunk/netsurf/; revision=11602
* Basic bookmark editing.Sven Weidauer2011-02-024-45/+283
| | | | svn path=/trunk/netsurf/; revision=11601
* Workaround for stupid hotlist treeview.Sven Weidauer2011-02-011-1/+3
| | | | svn path=/trunk/netsurf/; revision=11582
* Bookmarks window. No editing yet.Sven Weidauer2011-02-018-23/+424
| | | | svn path=/trunk/netsurf/; revision=11581
* Using real path from options for the bookmarks file instead of hardcoded ↵Sven Weidauer2011-02-013-5/+20
| | | | | | test string. svn path=/trunk/netsurf/; revision=11580
* Implemented bookmarks menu.Sven Weidauer2011-02-016-3/+371
| | | | svn path=/trunk/netsurf/; revision=11579
* Implemented global history window using new Tree class.Sven Weidauer2011-02-018-190/+471
| | | | svn path=/trunk/netsurf/; revision=11578
* Factored Tree class out of TreeViewSven Weidauer2011-02-016-72/+272
| | | | svn path=/trunk/netsurf/; revision=11577