NiGui icon indicating copy to clipboard operation
NiGui copied to clipboard

Cross-platform desktop GUI toolkit written in Nim

Results 67 NiGui issues
Sort by recently updated
recently updated
newest added

Thank you for nice work! That's what I want. How to use controls such as select list,checkbox,radio? BTW, how to add address bar when open dialog? Thank you!

feature

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...

question

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...

question

```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[0 .. ^2] #remove last char, as number...

feature

![Capture](https://user-images.githubusercontent.com/26684644/64474823-da62d100-d1ac-11e9-910b-6e742076bd8f.PNG) i wanted to make a color tool, using nim and nigui. but nigui probably doesn't have any slider. is there any plan to add it in nigui. https://github.com/trustable-code/NiGui/issues/18#issuecomment-343758347 so...

feature

Here is an implementation of a combobox feature for NiGui (Windows only). Comboboxes can have several styles: `CBS_SIMPLE`, `CBS_DROPDOWN`, or `CBS_DROPDOWNLIST` so I included a way to pass the desired...

i am a beginner in nim . And i fall in love with nigui, it is easy, fast compile and small executable. please make it complete and don't abandon this...

It looks like if I want bold or italics its not ready yet since there is no style option that I can see. But maybe it would not be hard...

feature

I propose this basic concept and want to hear your comments: * NiGuiObject is the base type for all complex types like Window, Control, Button, etc. * NiGuiObject types are...

RFC

- Added onShow, onShowOnce, onHide, onHideOnce, onVisibleChanged events to window widget. - Added showOnce (read only) and hideOnce (read only) attributes to get if the window has been shown/hide once....