Noah kirsle
  • Joined on 2018-04-12
kirsle pushed to master at go/log 2020-04-13 00:12:51 +00:00
6d7415aa25 Fix build tags
kirsle pushed to master at go/ui 2020-04-12 23:49:34 +00:00
6d6629d3c0 Add helper function IsPointInWindow
kirsle pushed to master at apps/gophertype 2020-04-10 02:17:21 +00:00
8f98e72e47 Lazy load blog post images by default
kirsle pushed to master at go/render 2020-04-09 00:31:48 +00:00
e495ec6439 Add DarkGrey to the default color names
kirsle pushed to master at go/ui 2020-04-09 00:31:22 +00:00
36db160533 Window Manager Buttons and Bugfixes
kirsle pushed to master at go/render 2020-04-07 23:33:59 +00:00
bb84347294 Add Point Comparator Function and Tests
kirsle pushed to master at go/ui 2020-04-07 06:05:01 +00:00
7d9ba79cd2 Window Manager Basics, Work in Progress
kirsle commented on issue go/ui#1 2020-04-07 05:55:41 +00:00
Window Managers

Hard bug to follow up on later:

If two windows overlap each other with the Focused window on top, and you click into the focused window in a slot covering the lower (Unfocused) window, the Unfocused window will come to the front when it shouldn't.

Root is somewhere in the event handlers for SDL's click event. Debug it like:

Set DebugClickEvents=true in lib/render/sdl/events.go

Code path is like:

  1. First call to MainWindow.Loop()
  2. engine.Poll() reads a click event from raw SDL: "[1194 ms] tick:0 MouseButton type:1025 id:0 x:483 y:285 button:1 state:1"
  3. Supervisor.Loop() called.
  4. Top focused window has its MouseDown event called. Supervisor prevents calling events on the un-focused window cuz the focused one handled it.
  5. Next call to MainWindow.Loop(). the ev.State is still the same as last tick: Button1=true etc.; SDL didn't emit any event to change our state.
kirsle opened issue go/ui#1 2020-04-05 23:09:23 +00:00
Window Managers
kirsle pushed to master at go/ui 2020-03-10 05:24:17 +00:00
49f108f302 Prevent tooltips from clipping outside window boundaries
kirsle pushed to master at go/ui 2020-03-10 00:32:34 +00:00
911585ea4d Update README
kirsle pushed to master at go/ui 2020-03-10 00:29:27 +00:00
fb9127f0d5 Add version number and documentation
f9b305679a Tooltip Widget and Event Refactor
0846fe22fc Place Strategy for Frame Widget
Compare 3 commits »
kirsle pushed to master at go/render 2020-03-10 00:28:58 +00:00
87fabf6a8d Make it a Go module + minor tweaks
kirsle pushed to master at go/applets 2020-02-28 05:18:52 +00:00
9cf3a96bfb Initial SDL2 Ripple applet
kirsle created repository go/applets 2020-02-28 05:18:39 +00:00
kirsle pushed to master at apps/gophertype 2020-02-26 20:52:00 +00:00
211b7d8318 Multitag frontend update, bug fixes
kirsle pushed to master at apps/gophertype 2020-02-20 00:36:40 +00:00
b57dfa9e64 Remove extra tag from questions.gohtml
kirsle pushed to master at apps/gophertype 2020-02-20 00:24:15 +00:00
b1ea864bd3 Trim unnecessary files from ACE editor
kirsle pushed to master at apps/gophertype 2020-02-18 19:04:44 +00:00
9e0f8c24a0 Bugfix for RSS feeds
kirsle opened issue apps/gophertype#2 2020-02-18 07:13:40 +00:00
Blog fragment keeps updating on save