summaryrefslogtreecommitdiff
path: root/gtk/gui.c
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-1161/+0
|
* update gtk to stop using depricated warn_user APIVincent Sanders2016-04-261-10/+4
|
* use the miscellaneous table warning entryVincent Sanders2016-04-251-1/+12
| | | | | | | change all the frontends to provide the warning callback in the miscelaneous table instead of using the warn_user function. Changing all the warn_user callsites still requires completion.
* Update gtk frontend to use layout tableVincent Sanders2016-04-231-1/+3
|
* complete the rename of the gui browser tableVincent Sanders2016-04-161-2/+2
| | | | | | When the operations tables were created the browser table was renamed to miscellaneous except the actual rename patch was never applied, this fixes that situation.
* remove theme optionVincent Sanders2016-03-081-1/+1
|
* Initial pass removing gtk frontend theme codeVincent Sanders2016-03-081-27/+10
|
* update gtk resource path setting to use makefile variableVincent Sanders2016-02-201-4/+4
|
* Change gtk message and language handling to use resource namesVincent Sanders2015-06-231-25/+16
| | | | | | | | | | The GTK resource handling can now provide the path to resources rather than having to compute them separately. This reduces run time allocation and allows for the resources to be built in if required. Additionally this tweaks the resource scheme handling to redirect favicon.ico to resource:favicon.png instead of rewriting directly to file scheme path allowing the favicon to be a compiled in resource.
* Allow translation messages to be compiled in as GTK resourcesVincent Sanders2015-06-211-6/+15
|
* This moves message loading out of netsurf_init into each frontendVincent Sanders2015-06-211-8/+27
| | | | | | | | | | The translated message loading is dependant on configuration of resource location in each frontend, additionally they should have the ability to deal with errors in this loading in a implementation specific manner. This also extends the message loading API to be capable of loading from an inline memory buffer instead of from a file.
* Change GTK resource path to use the users netsurf directoryVincent Sanders2015-06-211-2/+37
| | | | | | This changes the path used to find resources from containg a hard coded ${HOME}/.netsurf to using the computed path to the users netsurf config.
* Add direct resources to GTKVincent Sanders2015-06-171-19/+24
| | | | | | This adds API to obtain direct pointers to arrays of data from compiled in resources. Additionally it hooks this up to provide data for the resourece scheme handler.
* Change gtk to use resource API for throbberVincent Sanders2015-06-171-35/+6
|
* update default gtk window icon source to use resourcesVincent Sanders2015-06-171-5/+7
|
* Change GTK UI builder handling to use resource APIVincent Sanders2015-06-171-129/+75
| | | | | | | | | | | | | | GTK UI builder resources have till now been exclusively stored on disc requiring netsurf to ship numerous additional resource files. This requires going to disc every time a UI action is performed which can become a lot of unwanted file handling. GLib/GTK has moved towards GResource handling for such resources instead. It now seems that migrating to this style of usage is expected and indeed the only portable way to include pixbufs. This introduces an API to hide the various implementation details of how resources are handled from the rest of the codebase.
* Change LOG() macro to be varadicVincent Sanders2015-05-281-18/+18
| | | | | | | | | | | | 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.
* chnage GTK frontend to using bitmap operation tableVincent Sanders2015-04-131-0/+2
|
* split out gtk SSL certificate verification dialog impementation.Vincent Sanders2015-04-121-107/+3
|
* Fixup gtk3 ssl certificate dialog and ensure its parent is set.Vincent Sanders2015-04-121-48/+49
|
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-271-23/+23
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* remove unecessary includes from gtk guiVincent Sanders2014-12-271-11/+0
|
* fix amiga pdf save includeVincent Sanders2014-10-271-4/+0
|
* Clean up saving as PDFVincent Sanders2014-10-261-51/+68
| | | | | | | | | | | | This removes the global PDF_Password interface that had completely bitrotted and moves it into the standard misc operation table with a sensible defualt implementation. This also cleans up and fixes the gtk frontend implementation of the pdf password callback so it compiles. Finally this moves the implementation to a sensible place alongside the other exporters reducing target makefile complexity futher.
* remove the die API from the core.Vincent Sanders2014-10-261-5/+13
| | | | | | | | The die() API for abnormal termination does not belong within the core of netsurf and instead errors are propogated back to the callers. This is the final part of this change and the API is now only used within some parts of the frontends
* Don't take core/front-end choice away from user.Michael Drake2014-10-241-3/+0
|
* Move create_form_select_menu to window gui table.Michael Drake2014-10-241-54/+0
|
* Update gtk frontend to cope with split operations table headersVincent Sanders2014-10-161-10/+10
|
* Fix core create_form_select_menu API to pass gw, rather than bw out to front ↵Michael Drake2014-10-161-1/+1
| | | | ends.
* Remove seemingly unused global.Michael Drake2014-10-161-2/+0
|
* add API to set DPIVincent Sanders2014-10-131-5/+2
|
* move gtk to using its own main loop instead of core pollingVincent Sanders2014-09-221-37/+48
|
* move gtk execution loop to main()Vincent Sanders2014-09-221-7/+9
|
* fix menu and C-q gtk exiting (closes bug #2184)Vincent Sanders2014-08-231-1/+0
|
* extend gtk viewdata to open files in an editor using the freedesktop default ↵Vincent Sanders2014-08-161-1/+1
| | | | app specification
* rationalise source viewVincent Sanders2014-08-011-0/+6
|
* clean up gtk scaffolding interface, remove lots of cruft and globalsVincent Sanders2014-07-271-4/+1
|
* stop using certificate data from the stack outside the message context.Vincent Sanders2014-07-171-5/+8
|
* change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-011-5/+0
|
* convert all frontends to scheduled fetch operationVincent Sanders2014-06-261-41/+28
|
* extend file table with mkdir all and make fs backing store use it.Vincent Sanders2014-06-051-2/+2
| | | | enable fs backing store for RISC OS.
* make launch_url core operation use nsurlVincent Sanders2014-05-271-4/+6
|
* Completely re-write web search provider handlingVincent Sanders2014-05-251-10/+8
|
* ensure new config directories can be created.Vincent Sanders2014-05-131-3/+3
|
* Enable filesystem based cache in gtk frontendVincent Sanders2014-05-131-1/+115
|
* add backing store storage path to browser initialisationVincent Sanders2014-05-131-1/+1
|
* fix gtk options loadingVincent Sanders2014-05-121-1/+1
|
* ensure operations tables are registered as early as possible.Vincent Sanders2014-05-101-2/+7
|
* remove unecessary utils/url.h includesVincent Sanders2014-05-091-1/+0
|
* add file operations table and make all frontends use it.Vincent Sanders2014-05-071-25/+30
| | | | | | | | | | | | | This rationalises the path construction and basename file operations. The default implementation is POSIX which works for all frontends except windows, riscos and amiga which have differeing path separators and rules. These implementations are significantly more robust than the previous nine implementations and also do not use unsafe strncpy or buffers with arbitrary length limits. These implementations also carry full documentation comments.