summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update RISC OS frontend to use bitmap operation tableVincent Sanders2015-04-158-169/+196
|
* Convert windows frontend to using bitmap operation tableVincent Sanders2015-04-154-27/+45
|
* Update monkey frontend to use bitmap operation table.Vincent Sanders2015-04-155-16/+66
|
* Convert framebuffer frontend to bitmap operations table.Vincent Sanders2015-04-146-22/+71
|
* chnage GTK frontend to using bitmap operation tableVincent Sanders2015-04-134-22/+42
|
* Move bitmap operations into an operation table.Vincent Sanders2015-04-1315-194/+324
| | | | | | | The generic bitmap handlers provided by each frontend are called back from the core and therefore should be in an operation table. This was one of the very few remaining interfaces stopping the core code from being split into a library.
* Fix win32 frontend bitmap creation with flagsVincent Sanders2015-04-121-1/+5
| | | | | | The windows win32 frontend bitmap creation was ignoring the creation flags, specifically those related to bitmap opacity so was plotting images as transparent even if they had no alpha channel values set.
* fix documentation errors in gtk introduced by recent updates.Vincent Sanders2015-04-122-6/+19
|
* clean up gtk gui header usage and includesVincent Sanders2015-04-129-13/+11
|
* actually add the files from the previous gtk ssl rework commitVincent Sanders2015-04-122-0/+171
|
* split out gtk SSL certificate verification dialog impementation.Vincent Sanders2015-04-124-116/+9
|
* 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-114-11/+75
|
* 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-102-46/+67
| | | | | | | | | | 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
|
* Allow URL completion to pick up non-visited URLsChris Young2015-04-091-1/+2
|
* 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
|
* update beos meakfile to filter split messagesVincent Sanders2015-04-071-1/+3
|
* Update amiga makefile to set filter for split messagesVincent Sanders2015-04-071-1/+3
|
* Update RISC OS make target to filter split messagesVincent Sanders2015-04-071-5/+5
|
* Improve split message generationVincent Sanders2015-04-078-37/+67
| | | | | | | | | | | | | 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.
* Improve the make target validationVincent Sanders2015-04-061-20/+8
|
* Move some beos specific make rules into its MAkefile.targetVincent Sanders2015-04-052-11/+16
|
* Move some RISc OS specific Makefile rules into its Makefile.targetVincent Sanders2015-04-052-52/+40
|
* Fix up some doxygen errorsVincent Sanders2015-04-035-5/+5
|
* Use nsutils unistd operations for pread and pwrite to get consistant interfaceVincent Sanders2015-04-021-2/+3
|
* Revert "Fix RISC OS not having a pread/pwrite implementation."Vincent Sanders2015-04-023-47/+0
| | | | | | | This reverts commit 82c7a7a4baf4a7a15381ee720799dc41c3d54909. Conflicts: content/fs_backing_store.c
* extend backing store logging to show errno values ofter operationsVincent Sanders2015-04-011-22/+31
|
* Remove inclusion of my async backing store code whilst it's not being used.Chris Young2015-03-314-3/+8
|
* Fix RISC OS not having a pread/pwrite implementation.Vincent Sanders2015-03-313-5/+53
|
* ensure entry invalidation copes with entries in blocksVincent Sanders2015-03-311-13/+47
|
* Improve file naming inside cacheVincent Sanders2015-03-311-87/+84
|
* allocate small block using block use bitmaps to find free entries.Vincent Sanders2015-03-311-12/+69
|
* implement block read and write operations.Vincent Sanders2015-03-311-62/+141
|
* Block file usage bitmaps (de)serialisingVincent Sanders2015-03-311-5/+179
|
* define block store parametersVincent Sanders2015-03-311-0/+20
|
* Change backing store fetch operation to always perform the allocationsVincent Sanders2015-03-312-71/+95
| | | | | | The fetch API previously allowed for the caller to supply the storage, this was never used and was preventing the refactoring necessary for small black storage to be available.