summaryrefslogtreecommitdiff
path: root/gtk
Commit message (Collapse)AuthorAgeFilesLines
* Fixup gtk3 ssl certificate dialog and ensure its parent is set.Vincent Sanders2015-04-122-185/+165
|
* Refactor GTK toolbar handling to correctly cope with text labelsVincent Sanders2015-04-125-715/+704
|
* remove usage of deprecated gtk alignment interfaceVincent Sanders2015-04-115-59/+82
|
* Add gtk compatability for margin setting.Vincent Sanders2015-04-113-1/+28
|
* Add widget alignment gtk compatability interface.Vincent Sanders2015-04-113-10/+74
|
* Improve the stock icon/icon name compatability logic to be explicitVincent Sanders2015-04-113-35/+51
|
* Fixup deprication of gtk_icon_size_lookup_for_settings in gtk 3.10Vincent Sanders2015-04-103-1/+18
|
* cope with deprication of image menus in GTK 3.10Vincent Sanders2015-04-107-101/+151
|
* remove no longer required gtk_dialog_get_action_area compatability interfaceVincent Sanders2015-04-103-13/+10
|
* Change gtk about dialog construction to use the API as intended.Vincent Sanders2015-04-101-39/+47
| | | | | | | | | | The about dialog box construction was awkward and brittle using several depricated interfaces. This changes it to use a more generic dialog creation and uses the response API to simplify click processing. It would be even better to use the gtk about dialog but that is a more invasive change.
* extend GTK 3 compatability with opacity and viewport helpersVincent Sanders2015-04-103-2/+27
|
* Fix up silly recusrsion typo in nsgtk_button_new_from_stock compatabilityVincent Sanders2015-04-101-2/+2
|
* fixup default toolbar button creation for depricated GTK 3 operationsVincent Sanders2015-04-103-13/+38
|
* Extend gtk compatability to fix more items depricated in GTK 3.10Vincent Sanders2015-04-093-18/+63
|
* cope with deprication of gtk_style_context_get_fontVincent Sanders2015-04-092-1/+13
|
* Ensure the about dialog construction does not cause warningsVincent Sanders2015-04-091-9/+14
| | | | | The about dialog construction calls were missing a NULL sentinal which was causing warnings on GTK 3 builds.
* Only define compatability helpers for sexy icons if required.Vincent Sanders2015-04-092-11/+23
| | | | | The helper nsgtk_widget_get_state is only necessary for sexy icons and introduces unecessary GTK 3 compatability issues otehrwise.
* Update gtk compatability header to cope with deprication of stock icon interfaceVincent Sanders2015-04-0815-154/+240
|
* Improve split message generationVincent Sanders2015-04-076-6/+6
| | | | | | | | | | | | | Changes the way message files are generated to be driven by make as rules rather than from explicit macro calls causing their regeneration every build. A secondary benefit is that errors in message generation actually stop the build instead of being ignored Each frontend will require its filter settings updated to avoid getting the default message filter of "any". Initially gtk has been adapted as proof of concept.
* Fix up some doxygen errorsVincent Sanders2015-04-031-1/+1
|
* define _DEFAULT_SOURCE as well as _BSD_SOURCE to supress warnings in glibc 2.12Vincent Sanders2015-03-281-0/+1
|
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-275-42/+42
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* Remove url from content thumbnailers APIVincent Sanders2015-03-151-7/+1
| | | | | | | | | | | | | | | | 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.
* Fixup gtk viewdata window to open at appropriate sizeVincent Sanders2015-03-062-145/+205
| | | | | | | | | The size hints given were insufficient for gtk to open the window at a sensible size or position. This fixes it to open with a default 640x480 size which is a reasonable compromise. The gtk3 ui builder file was completely reconstructed from fresh as it was broken and was not working.
* Use forward declaration instead of #include for nsurl.Michael Drake2015-02-261-0/+1
|
* Move FILE_SCHEME_PREFIX to corestrings.Michael Drake2015-02-261-1/+1
|
* GTK: inherit GTK version from environment.John-Mark Bell2015-02-241-1/+1
|
* add missing includesVincent Sanders2014-12-271-0/+1
|
* remove unecessary includes from gtk guiVincent Sanders2014-12-271-11/+0
|
* Add XDG desktop file for GTK frontendVincent Sanders2014-12-251-0/+68
| | | | | | | | | The XDG spec allows for software to specify how it is executed and presented in a graphical environment by using a desktop file http://standards.freedesktop.org/desktop-entry-spec/latest/ This version is taken from my Debian packaging but should be useful for other operating systems.
* move host based default settings to core as tehy are not frontend dependantVincent Sanders2014-12-211-18/+0
|
* ensure gtk build on freebsd uses the correct iconvVincent Sanders2014-12-211-0/+6
|
* remove some warnings from freebsd buildVincent Sanders2014-12-211-6/+4
|
* Cope with freebsd gdk pathsVincent Sanders2014-12-211-0/+4
|
* make the form select menu API smaller.Vincent Sanders2014-11-131-6/+11
| | | | | | 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 cleanups in utilsVincent Sanders2014-11-121-1/+1
|
* cleanup Doxygen warningsVincent Sanders2014-11-121-8/+9
|
* Doxygen cleanupsVincent Sanders2014-11-121-2/+5
|
* Typo fix: maintinance → maintenance in gtk frontend (closes #2217)Anthony J. Bentley2014-11-102-4/+4
|
* Doxygen warning fixesVincent Sanders2014-11-102-5/+9
|
* Doxygen cleanups and documentation additionsVincent Sanders2014-11-103-8/+11
|
* Continue doxygen error cleanup.Vincent Sanders2014-11-084-13/+16
|
* fix up more doxygen errorsVincent Sanders2014-11-083-8/+15
|
* Improve Doxygen documentationVincent Sanders2014-11-081-2/+2
|
* Fix several doxygen issuesVincent Sanders2014-11-081-1/+2
|
* Improve content encoding information APIVincent Sanders2014-11-071-4/+4
| | | | | 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-2/+7
| | | | | | | | 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.
* move themse install to its own headerVincent Sanders2014-11-061-0/+1
|
* Make the fetching of a contents encoding generic.Vincent Sanders2014-11-051-2/+1
| | | | | | | 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.
* ensure gtk thumbnail content has a minimum render width. (fix coverity 1109861)Vincent Sanders2014-11-041-3/+4
|