-
I tried to compile example_01_basic_app.nim , it gave me error:
Traceback (most recent call last)
d:\Programming\Nim\NiGui-master\examples\example_01_basic_app.nim(6) example_01_basic_app
…
-
Would it be possible to modify this condition
`if uMsg == WM_LBUTTONUP and control == pLastMouseButtonDownControl`
This would allow to trigger a mousebuttonup event on a different control so that a …
-
Hello, are there any options if I want to make a terminal emulator with NiGui? From what I find, and this is most likely unrelated to NiGui, there's libvte for GTK, but there seems to be very little d…
-
I'm quite new with Nim and NiGui was my first choice for GUI framework. I gotta say that I love it to bits - it's maybe not perfectly documented, but example files are beyond amazing with explaining h…
-
I already asked this question on [stackoverflow link](https://stackoverflow.com/questions/72423748/realign-controls-inside-a-layout-in-nigui).
How can I change order of controls inside a container wi…
-
Just what the title says. I have this simple code based on the example:
```
import nigui
app.init()
var root = newWindow()
var container = newLayoutContainer(Layout_Horizontal)
root.add(co…
-
just a question but without big importance
do you plan to add some graphic thing like _lineEnd_ _lineJoin_ _lineStyle_ and _colorPatern_ on near future for canvas
oh and also I need to have _popu…
-
```Nim
textBox.onKeyDown = proc(event: KeyBoardEvent) =
let digit = {'0'..'9'}
if char(event.key) in digit:
label.text = "Number can't be name"
textBox.text = textBox.text…
-
Cannot set the icon in the upper left corner of the window
I want to modify the icon of windows
My nigui version is 0.2.8
-
Hi
Thank you for all great jobs you did specifically `fidget` and `pixie`. `fidget` made programming GUIs lot easier, specially the node structure got my attention.
I was trying to make a GUI librar…