summaryrefslogtreecommitdiff
path: root/gtk/res/netsurf.gresource.xml
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-70/+0
|
* Initial pass removing gtk frontend theme codeVincent Sanders2016-03-081-0/+1
|
* Allow gtk preferences language selection resource to be inlineVincent Sanders2015-06-251-0/+1
| | | | | | | This allows the languages resource to be read from file or from inline data. Additionally it fixes a bug where the language combo box would always be reset to en as the default regardless of what was currently configured.
* Allow GTK to include inline resources for default cssVincent Sanders2015-06-221-0/+3
|
* Add direct resources to GTKVincent Sanders2015-06-171-0/+22
| | | | | | 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-0/+9
|
* Make GTK resource handling configurableVincent Sanders2015-06-171-2/+3
| | | | | | | | This makes the GTK resource handling configurable in the same way as all other pkg-config style feature options. It is now possible to completely disable compiled in resources if wanted as well as forcing inline pixdata on if desired.
* update default gtk window icon source to use resourcesVincent Sanders2015-06-171-0/+1
|
* Change GTK UI builder handling to use resource APIVincent Sanders2015-06-171-0/+32
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.