summaryrefslogtreecommitdiff
path: root/area.go
AgeCommit message (Expand)Author
2014-04-20More TODOs (because I can't think right now).Pietro Gagliardi
2014-04-14Added click-to-focus to GTK+ Areas and documented that click-to-focus happens...Pietro Gagliardi
2014-04-14Clarified the previous commit.Pietro Gagliardi
2014-04-14Ensured that pressing Modifiers+Key/ExtKey does not produce an event with jus...Pietro Gagliardi
2014-04-13Pinned down horizontal scrollbar behavior on Listboxes; also reworded the Are...Pietro Gagliardi
2014-04-12Documented the thread safety of AreaHandler and Area.SetSize().Pietro Gagliardi
2014-04-12Switched to ARGB drawing in Areas on GTK+.Pietro Gagliardi
2014-04-11Rewrote Area code on Windows to use alpha-premultiplied RGB and only use GDI ...Pietro Gagliardi
2014-04-11Added a general-purpose function to produce a native-endian ARGB representati...Pietro Gagliardi
2014-04-11Changed from using image.NRGBA to image.RGBA (premultiplied alpha) in Area.Pa...Pietro Gagliardi
2014-04-10Added bounds checking to NewArea() and Area.SetSize() such that an Area must ...Pietro Gagliardi
2014-04-10Documented scrollbars on Listbox and Area to the best of my ability, shufflin...Pietro Gagliardi
2014-04-09Fixed Area drawing assuming the first pixel of the *image.NRGBA is at i.Pix[0].Pietro Gagliardi
2014-04-07Updated Area's KeyEvent documentation to talk about some window managers on U...Pietro Gagliardi
2014-04-01Removed the initText parameter from sysData.make() and changed all invocation...Pietro Gagliardi
2014-03-30Updated the documentation: Area now works on all platforms, Modifiers behavio...Pietro Gagliardi
2014-03-30Implemented Area mouse events on Mac OS X. Also fixed a few other things left...Pietro Gagliardi
2014-03-29Documented that the clip area in AreaHandler.Paint() more properly and indica...Pietro Gagliardi
2014-03-29Re-added the numeric keypad keys to ExtKey and removed predefkeys in area_uni...Pietro Gagliardi
2014-03-29Removed the numpad constants pending re-evaluation of how to handle those.Pietro Gagliardi
2014-03-28Changed the definition of KeyEvent to be positional. The implementation has n...Pietro Gagliardi
2014-03-27Added a flag to AreaHandler.Key()/Mouse() to indicate that a repaint is neede...Pietro Gagliardi
2014-03-23Fixed a slight documentation error in area.go.Pietro Gagliardi
2014-03-23Added Area resizing. Everything mostly works, but not making things smaller...Pietro Gagliardi
2014-03-23Had ExtKey start at 1 so KeyEvent.ExtKey can be 0.Pietro Gagliardi
2014-03-17Changed the new resizing code so that it uses the same allocated slice per wi...Pietro Gagliardi
2014-03-17Changed window resizes so that the actual Control.setRect() functions appende...Pietro Gagliardi
2014-03-17Removed the mutexes from Labels and Areas because I'm at my wits end about se...Pietro Gagliardi
2014-03-16Changed Area to use a delegate handler object that implements the new AreaHan...Pietro Gagliardi
2014-03-15Clarified that MouseEvent.Held will not include Down/Up.Pietro Gagliardi
2014-03-15Added note in MouseEvent documentation about both Down and Up being 0 represe...Pietro Gagliardi
2014-03-15Added (untested) GTK+ implementation of Area's mouse events.Pietro Gagliardi
2014-03-15Added portable code for Area's MouseEvent.Pietro Gagliardi
2014-03-15Documented the details of Area's coordinate system.Pietro Gagliardi
2014-03-14Added the portable code for Area.Pietro Gagliardi