gui
gui copied to clipboard
To Reproduce please run following code on Linux and on Windows. ``` #lang racket (require racket/gui/base) (get-file) ``` * On Windows you can create a new folder, on Linux you...
(In gui/base slider%) something like `(send a-slider set-min-value new-value)`. I find this quite practical. Currently I have to delete the slider then recreate an other
Holding a key down will on most operating systems result in repeating key presses. The OS-level key events will mark the first event as "non-repeating" and the following as "repeating"....
> > Is there a particular aspect of the current tabs you don't find 'proper'? > The current tabs can’t be dragged, re-arranged, docked and undocked from the tabs bar....
I am using Racket 8.0 on Windows 10. Run the following code. ```racket #lang racket/gui (struct dc-state (smoothing pen brush font)) (define (capture-dc-state dc) (dc-state (send dc get-smoothing) (send dc...
Hi, it is my opinion that tabs in racket/gui don't have features that users have come to expect from applications that use them: 1. _“detach” a tab into a new...
Following and investigation into tooltips being misplaced in https://github.com/alex-hhh/gui-widget-mixins/issues/3, we determined that the underlying issue is that for some reason on my system I have a non-zero offsets when calling...
I cannot get OpenGL contexts created by Racket’s `canvas%` to render anything when using the OpenGL programmable pipeline (aka OpenGL 3.0+ “Core”) on Windows. I wrote the following program to...
This PR adds a new option in "Editing | General Editing". The conventions on macOS differ from Windows/Linux when it comes the handling of the Home and End keys. On...
This issue was first reported on the [mailing list](https://groups.google.com/g/racket-users/c/v7zLoTnDwE0/m/pT5MZSqLCAAJ): some people find a blinking caret either an annoyance or an accessibility issue. Robby’s https://github.com/racket/gui/commit/1c4e78efc43036aabf77a7a1a313f19e23131b7e was a first step toward addressing...