summaryrefslogtreecommitdiff
path: root/atari
Commit message (Collapse)AuthorAgeFilesLines
* Reverted local adjustments to Makefile.target.Ole Loots2013-10-062-126/+6
|
* Removed unused files.Ole Loots2013-10-062-4401/+0
|
* Removed old files.Ole Loots2013-10-062-427/+0
|
* Option atari_transparency is int, not bool - use nsoption_set_int().Ole Loots2013-10-061-1/+1
|
* Added commentsOle Loots2013-10-062-0/+13
|
* ldg stubs not needed anymore since windom removalOle Loots2013-10-061-3/+0
|
* ldg stubs not needed anymore since windom removal.Ole Loots2013-10-061-15/+0
|
* Added about dialog, fixed scrolled treeview redraw.Ole Loots2013-10-0615-37/+384
|
* Removed old treeview filesOle Loots2013-10-064-487/+0
|
* Fixed warnings for incomptible pointer typeOle Loots2013-10-069-135/+139
| | | | The API expects to receive core_window as window handle now.
* Added SSL Cert Inspector WindowOle Loots2013-10-0615-38/+484
| | | | (based on treeview API)
* enabled history menu item.Ole Loots2013-10-061-1/+1
|
* Enabled atari_global_history_destry/initOle Loots2013-10-061-8/+3
|
* Hotlist and History and Cookies Manager implemented.Ole Loots2013-10-0619-145/+1167
| | | | (The Cookie Manager window is a new one)
* Include desktop/core_window.hOle Loots2013-10-061-0/+1
|
* Treeview implementation adjustedOle Loots2013-10-067-40/+664
| | | | (still requires changes at several places in the atari frontent)
* Replaced atari_treeview wrapper with a new oneOle Loots2013-10-0618-1002/+5656
| | | | (removed all modules which used the old tree API)
* Fixed RECT_TO_GRECT macroOle Loots2013-10-061-4/+4
|
* Added RECT_TO_GRECT macroOle Loots2013-10-061-0/+7
|
* Added RECT_TO_GRECT macroOle Loots2013-10-061-2/+2
|
* moved font plotter allocationOle Loots2013-10-061-48/+52
| | | | | Delayed font plotter alloction until the requested font plotter is found.
* Added plot_get/set_text_plotter and commentsOle Loots2013-10-063-135/+165
|
* Tuned frontend Makefiles for local environment.Ole Loots2013-10-062-6/+10
|
* Added initialization/finalization of treeview framework.Ole Loots2013-10-061-0/+16
|
* Added comments.Ole Loots2013-09-112-1/+13
|
* Also setup slider info before tree creation.Ole Loots2013-09-111-11/+20
|
* Set window ref before calling tree_create. Fixes crash during startup.Ole Loots2013-09-101-7/+21
| | | | | (tree_create causes an resize event which requires the window handle to be available).
* Remove old hotlist, cookies, and history_global_core modules.Michael Drake2013-09-023-9/+14
| | | | New versions of expand/collapse node functions for these modules aren't yet implemented.
* Remove cookies, history_global, and hotlist_old _initialise and _cleanup ↵Michael Drake2013-09-022-9/+0
| | | | functions.
* Remove tree icon_name globals from all the front ends.Michael Drake2013-09-021-1/+0
|
* Remove bulk of old treeview implementation.Michael Drake2013-09-022-9/+1
|
* Use TREE_HOTLIST directly.Michael Drake2013-09-021-1/+1
|
* Use TREE_HISTORY directly.Michael Drake2013-09-021-1/+1
|
* Remove tree_url_node module. Had to disable treeview scanning in amiga and ↵Michael Drake2013-09-023-23/+0
| | | | cocoa front ends. Amiga front end very likely broken.
* Allow the other front ends to use the hotlist test too.Michael Drake2013-08-161-0/+1
|
* Move old hotlist out of the way.Michael Drake2013-08-134-25/+25
|
* Fix up for cookies_old rename.Michael Drake2013-07-221-2/+1
|
* s/history_core/local_history/Michael Drake2013-07-105-5/+5
|
* Add atari_ namespace to another global history function.Michael Drake2013-07-011-1/+1
|
* Namespace the atari global history functions.Michael Drake2013-07-014-15/+15
|
* fixup atari option namesVincent Sanders2013-05-281-10/+10
|
* fixup issues with new options API mergeVincent Sanders2013-05-282-3/+3
|
* move atari to new options codeVincent Sanders2013-05-283-317/+45
|
* fix mismatched option name and variable namesVincent Sanders2013-05-281-2/+2
| | | | | block_ads should be block_advertisments to match option name toolbar_status_width should be toolbar_status_size to match option name
* move options includeVincent Sanders2013-05-2814-15/+15
|
* change all core and frontend options headers to new formatVincent Sanders2013-05-281-67/+23
|
* move the logging initialisation out to be call by frontendsVincent Sanders2013-05-231-0/+6
| | | | | This allows each frontend to pass a distinct callback to configure the output file stream appropriately for their use.
* Front ends have no reason to include desktop/selection.h now.Michael Drake2013-05-102-2/+0
|
* Remove struct selection from gui_drag_save_selection, so gui.h doesn't need ↵Michael Drake2013-05-101-1/+1
| | | | it now.
* Remove search context from browser window, simplify search interface for ↵Michael Drake2013-05-071-8/+6
| | | | | | | | | | | | | | | | | | | | | | front ends. Added content interface for search. Removed bw->cur_search search context. Desktop layer now does nothing except pass search requests from front end onto the bw's current_content via the content interface. Search API reduced to a pair of functions at each level: {desktop|content|html|textplain}_search and {desktop|content|html|textplain}_search_clear Updated front ends to use simplified search API. Only tested GTK and RO builds. These confine the search stuff to render/. However search still uses struct selection. The handling for which is still spread over desktop/ and render/. Also the render/search code itself still fiddles inside html and textplain privates.