summaryrefslogtreecommitdiff
path: root/riscos/window.c
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-5025/+0
|
* update RISC OS frontend to not use the depricated warn_user APIVincent Sanders2016-04-261-61/+61
|
* Split utils header into string functions and everything elseVincent Sanders2016-04-211-0/+1
| | | | | split out the string handling API from the rest of the utils header and fix up all the fallout.
* change to use nsutils monotonic time APIVincent Sanders2016-04-211-11/+16
|
* Fix RISC OS pointer shape issueDave Higton2016-02-071-0/+1
| | | | | | | | | This is a patch for Mantis issue 2170. The bug is that, if you hover over a link in a window and then close the window with Control-F2, the pointer remains as the link pointer shape. The fix restores the pointer to the default shape before destroying the window.
* Make nsurl utf8 string conversion function consistent with nsurl API.Michael Drake2015-10-251-1/+1
|
* Update RISC OS frontend to new APIChris Young2015-10-241-7/+11
|
* Enable RISC OS to display decoded IDNs in the URL bar (subject to local ↵Chris Young2015-10-241-1/+9
| | | | charset restrictions)
* Change LOG() macro to be varadicVincent Sanders2015-05-281-107/+56
| | | | | | | | | | | | 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.
* Convert RISC OS to use bitmap render operationVincent Sanders2015-04-241-4/+2
|
* remove unrequired includes from riscos thumbnail headerVincent Sanders2015-04-191-0/+1
|
* Update RISC OS frontend to use bitmap operation tableVincent Sanders2015-04-151-3/+3
|
* pass a url info the RISC OS object info preparationVincent Sanders2015-03-281-11/+13
| | | | | | | | | The target url was previously being passed as a string derived from nsurl_access which was asserting if the target_url was NULL. The nsurl is now passed and a null check performed before attempting to access it. Closes #2298
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-271-26/+26
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* Remove url from content thumbnailers APIVincent Sanders2015-03-151-2/+3
| | | | | | | | | | | | | | | | The content thumbnailers for each frontend were being provided the contents url. This was only ever used to call the urldb thumbnail setting API. This changes it so the single callsite that passed a valid url adds the bitmap to that url itself in desktop_history.c instead of forcing every frontend to require the urldb API. Additionally the old API could pass the url as NULL which was causing asserts where this was not an expected parameter value. Because of this this fixes bug #2286 which was also present in the monkey frontend as both called nsurl_access() on the url without the NULL check and caused an assertion.
* RISC OS: squash warnings from GCC 4.7John-Mark Bell2015-02-251-13/+11
|
* Error in RISC OS form entry API changes.Vincent Sanders2014-11-151-1/+1
| | | | | | | When the form entry changes were made the RISC OS implementation was updated but the loop that counts entries was using an incorrect loop iterator variable which was never incremented hence causing an infinite loop.
* make the form select menu API smaller.Vincent Sanders2014-11-131-14/+23
| | | | | | By hiding all but the form selection menu option structure from code outside of render this reduces the API to the absolute minimum to support this feature.
* Doxygen cleanupsVincent Sanders2014-11-121-3/+3
|
* Doxygen cleanups in frontendsVincent Sanders2014-11-111-4/+4
|
* Doxygen warning fixesVincent Sanders2014-11-101-2/+2
|
* remove uneeded html render includeVincent Sanders2014-11-071-1/+0
|
* Improve content encoding information APIVincent Sanders2014-11-071-5/+3
| | | | | Extend the content_get_encoding() API to retrieve the source of the encoding as well as the actual encoding.
* Allow content handlers to have debug values set through APIVincent Sanders2014-11-061-1/+2
| | | | | | | | Previously content handler debugging features were accessed by global variables. This allows the setting of debugging parameters via a content API giving per content control over debugging features. Currently only used by the html content handler to toggle global redraw debugging.
* Make the fetching of a contents encoding generic.Vincent Sanders2014-11-051-2/+2
| | | | | | | The frontends previously had to use an html renderer API to get the encoding of a content. This also required the explicit checking of the contents type rather than using the existing content API to abstract this knowledge.
* replace save_link operation table entry usage of textural url with nsurlVincent Sanders2014-11-031-6/+4
|
* change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-021-3/+4
|
* Change contextual content retrieval to browser features.Vincent Sanders2014-11-021-16/+7
| | | | | | | | | | | | | 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.
* Do not attempt to convert an empty url on RISC OS menu clickVincent Sanders2014-11-011-2/+4
| | | | | | | | | | When updating the RISC OS frontend to using nsurl for its menu operations (as part of getting rid of url_nice) the check for null (empty) url strings in the url under the mouse was omitted leading to a crash. Additionaly a use of url where current_menu_url was intended was missed leading to crashes when "open in new window" was used.
* Remove useless includes of utils/url.hMichael Drake2014-10-311-1/+0
|
* use nsurl_nice and remove url_niceVincent Sanders2014-10-311-40/+40
| | | | | change all callers over to using new API for generating nice filenames from a url and remove the old API.
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-291-5/+6
|
* Throbber code was doing mad things with browser windows.Michael Drake2014-10-251-4/+2
|
* Don't need browser_private in the RISC OS front end any more.Michael Drake2014-10-251-1/+1
|
* Use core browser window scrollbar type function instead of dereffing bw.Michael Drake2014-10-251-2/+5
|
* Use browser_window_is_frameset instead of dereffing bw.Michael Drake2014-10-251-4/+4
|
* Move create_form_select_menu to window gui table.Michael Drake2014-10-241-1/+2
|
* Any top level window border is entierly up to the front end.Michael Drake2014-10-231-4/+2
|
* Ensure correct initial scale.Michael Drake2014-10-221-1/+1
|
* Keep throbber status in the gui_window.Michael Drake2014-10-181-1/+4
|
* Fix typo.Michael Drake2014-10-181-1/+1
|
* Need to use API for content.Michael Drake2014-10-181-1/+2
|
* Use proper content aquisution API.Michael Drake2014-10-181-2/+2
|
* More conversion to use proper browser_window API.Michael Drake2014-10-181-4/+4
|
* Use API instead of dereffing bw.Michael Drake2014-10-181-21/+22
|
* Use can_select, rather than using insider knowledge of contents.Michael Drake2014-10-181-4/+1
|
* Shouldn't need to have "insider knowledge" of contents. Use the bw API.Michael Drake2014-10-181-5/+3
|
* Remove redundant declaration of gui.Michael Drake2014-10-181-2/+0
|
* Replace a browser_window deref with browser_window_has_content()Michael Drake2014-10-181-7/+8
|
* Use core API to acquire content, rather than poking inside the bw.Michael Drake2014-10-181-3/+8
|