summaryrefslogtreecommitdiff
path: root/framebuffer
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Add caret to browser window widgets. Caret now shows when editing forms.Michael Drake2012-07-311-1/+57
|
* Add basic awareness of text input caret to ftbk and functions to get/set ↵Michael Drake2012-07-313-0/+72
| | | | caret pos.
* Scrollbar behaviour fixes.Michael Drake2012-07-272-6/+13
| | | | | Stop scrollbar sliding at different rate from pointer. Stop jump on drag start when scrollbar position indicator isn't at zero.
* Only warp pointer once for a sequence of consecutive move events. Further ↵Michael Drake2012-07-261-5/+28
| | | | reduces lag when dragging scrollbar.
* Handle consecutive queued mouse move events together. Reduces pointer lag ↵Michael Drake2012-07-261-29/+35
| | | | when busy.
* Change a couple of 'if's to 'else if's.Michael Drake2012-07-261-7/+6
|
* Avoid a load of repeat operations when panning by greater than viewport size.Michael Drake2012-07-261-2/+4
|
* Avoid redrawing the whole screen when scrolling by zero pixels.Michael Drake2012-07-261-3/+10
|
* A few tweaks from when I was looking for internal font renderer bug in wrong ↵Michael Drake2012-07-261-6/+8
| | | | place.
* Add welcome page resources. Add symlinks to English welcome page to gtk and ↵Michael Drake2012-07-211-0/+1
| | | | framebuffer.
* Update URLs for glyph data.Michael Drake2012-07-154-4/+4
|
* Fix colour string matching. Lose unneeded case insensitivity in matching.Michael Drake2012-03-271-3/+1
| | | | svn path=/trunk/netsurf/; revision=13739
* Constify param to gui_system_colour_char function.Michael Drake2012-03-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=13737
* fix up framebuffer build flagsVincent Sanders2012-03-241-2/+2
| | | | | | fix select attributes svn path=/trunk/netsurf/; revision=13643
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-224-275/+272
| | | | svn path=/trunk/netsurf/; revision=13548
* Constify rect param to gui_window_drag_start.Michael Drake2012-01-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=13397
* Pass pointer constraints for drag out to front ends. Ensure content ↵Michael Drake2012-01-111-2/+2
| | | | | | scrollbar drag termination always informs the browser window layer that the drag is over. svn path=/trunk/netsurf/; revision=13395
* Pass whether background images are wanted in redraw_context.Michael Drake2011-12-233-0/+3
| | | | svn path=/trunk/netsurf/; revision=13335
* Fix framebuffer build.Michael Drake2011-12-022-0/+32
| | | | svn path=/trunk/netsurf/; revision=13222
* Call core to see if handles scroll wheel event first.Michael Drake2011-11-291-2/+12
| | | | svn path=/trunk/netsurf/; revision=13198
* Update for modified libnsfb APIVincent Sanders2011-11-2118-204/+294
| | | | | | Make thumbnailing work svn path=/trunk/netsurf/; revision=13159