summaryrefslogtreecommitdiff
path: root/framebuffer
Commit message (Collapse)AuthorAgeFilesLines
* Update framebuffer front end to implement new clipboard API.Michael Drake2013-01-081-89/+34
|
* move common include path setup to core MakefileVincent Sanders2012-12-201-1/+1
|
* split target defaults outVincent Sanders2012-12-131-0/+47
|
* make macro name more correctVincent Sanders2012-12-131-5/+5
|
* Remove libxmlJohn-Mark Bell2012-11-101-4/+1
|
* Use FatMessages in framebuffer frontendRob Kendrick (fatigue)2012-11-041-5/+6
|
* Port save complete to libdom.John-Mark Bell2012-11-032-49/+1
|
* add javascript build support to framebufferVincent Sanders2012-10-221-0/+4
|
* Fix "error setting certificate verify locations" problem when the Choices ↵Michael Drake2012-10-171-13/+14
| | | | file doesn't exist. Now there's a single place for front ends to set options overrides. Fix nsoption_setnull_charp leak.
* Remove suspension of bmp/gif images. It's completely redundant with the ↵Michael Drake2012-10-141-13/+0
| | | | convert on demand core image cache.
* Widget can't be NULL.Michael Drake2012-10-111-0/+3
|
* Fix up ripples from urldb change.Michael Drake2012-10-113-3/+3
|
* trivial docuemntation cleanups to address some of the huge number of ↵Vincent Sanders2012-10-081-4/+5
| | | | docuemntation warnings
* Install netsurf.png too.Michael Drake2012-09-291-1/+1
|
* Add missing resources to intall target.Michael Drake2012-09-291-1/+5
|
* Add OSK icon.Michael Drake2012-09-285-12/+21
|
* Split install and package targets.Vincent Sanders2012-08-231-1/+17
| | | | Install target is for installing on the local machine and package generates a package
* make the framebuffer resource path setting betterVincent Sanders2012-08-222-2/+2
|
* Move browser_window struct to private header. Places that shouldn't include ↵Michael Drake2012-08-223-0/+4
| | | | | | | | | | | | | | | | | it do, such as front end code. Frontends that have been updated to build: framebuffer gtk monkey riscos TODO: amiga atari beos cocoa windows
* Pass font plot style out to front end clipboard append function.Michael Drake2012-08-131-1/+2
|
* Squash warning.Michael Drake2012-08-101-2/+2
|
* Squash set but unused variable warning.Michael Drake2012-08-101-1/+4
|
* Ensure text is at the right height for Freetype and Internal fonts.Michael Drake2012-08-081-1/+6
|
* Grab pointer during drag.Michael Drake2012-08-021-0/+15
|
* Use selection_copy_to_clipboard instead of peering at core innards.Michael Drake2012-08-021-38/+1
|
* Fix click travel tolerance calc. Has to travel more than 5px to become drag.Michael Drake2012-08-021-2/+2
|
* Fix freetype nsfont_position_in_string to return nearest, rather than next.Michael Drake2012-08-011-0/+6
|
* Simple clipboard support. Only used within browser window.Michael Drake2012-08-013-30/+187
|
* Cleanup drag end.Michael Drake2012-08-011-1/+6
|
* Convert move pointer during build and use it for page drag-scroll.Michael Drake2012-08-013-0/+7
|
* Pass drags to core. Enables page drag-scrolling, text selection, frames ↵Michael Drake2012-08-011-28/+74
| | | | scrollbars, etc.
* Use enum instead of magic numbers for tracking key modifier states. Pass ↵Michael Drake2012-08-014-31/+131
| | | | special keys to core (e.g. WORD_LEFT, SELECT_ALL, etc).
* Pass pointer hotspots to libnsfb.Michael Drake2012-08-012-2/+4
|
* Scroll text in writable text widget so caret is always in view.Michael Drake2012-08-011-16/+19
|
* Only writable text widget needs caret rendering.Michael Drake2012-08-011-18/+0
|
* Handle CTRL modifier too. CTRL with cursor left/right is same as SHIFT. ↵Michael Drake2012-07-311-0/+29
| | | | CTRL+U clears writable.
* Cursor left/right keys plus modifier move caret to extrems.Michael Drake2012-07-311-6/+15
|
* Factor out some repeated code.Michael Drake2012-07-311-23/+10
|
* Make text input widget remove caret on "strip focus" event.Michael Drake2012-07-311-2/+17
|
* Make browser window widget remove caret on "strip focus" event.Michael Drake2012-07-311-0/+15
|
* Add widget callback for getting stripped of focus. Call it in the input ↵Michael Drake2012-07-312-0/+11
| | | | setter, on previous input holder.
* Use setter when giving clicked input focus.Michael Drake2012-07-311-1/+1
|
* When a text input widget has its text set, and it has the caret, move the ↵Michael Drake2012-07-311-0/+21
| | | | caret to the end.
* Core's gui_window_remove_caret should only remove caret if the bw in ↵Michael Drake2012-07-311-2/+6
| | | | question owns the caret.
* Claim, position, and render caret in text input widget. Currently does not ↵Michael Drake2012-07-311-38/+156
| | | | remove caret when input widget is stripped of focus (because widget doesn't know).
* Round to nearest point between chars in nsfont_position_in_string, instead ↵Michael Drake2012-07-311-1/+2
| | | | of rounding down.
* When setting fbtk caret, register callback for redrawing caret removal.Michael Drake2012-07-314-25/+31
|
* Remove strlen from redraw functions.Michael Drake2012-07-311-2/+2
|
* Add support for editing text input widget contents from arbitrary position ↵Michael Drake2012-07-312-11/+33
| | | | in string (instead of just end).
* Split out common code to generate a font style for text input widget.Michael Drake2012-07-311-13/+15
|