summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-09-23Fix onTextChange: "event.control" was not settrustable-code
2019-09-23Move onTextChange from Control to TextBoxtrustable-code
TextChangeEvent is now only available for TextBox and TextArea
2019-09-23Extend Checkbox and add Gtk implementationtrustable-code
- Add `checked=` to set the status - Add `onToggle` event to react on toggle by the user - Toggling works also by Space and Enter
2019-09-10Rename Checkbox.isChecked() to Checkbox.checked()trustable-code
2019-09-10Rename Checkbox.getState() to Checkbox.isChecked()trustable-code
2019-09-10Cleanup: Remove variable initializations, since Nim initializes variables to ↵trustable-code
zero
2019-09-10Cleanup: Nim 0.19: The nil state for strings/seqs is gone.trustable-code
2019-09-09Add checkbox to windowsPhillips
2019-09-05Fix #56 window.onResize was not triggeredtrustable-code
2019-09-05Add Key_CapsLocktrustable-code
2019-09-02Add Key_NumpadEntertrustable-code
/run/media/user/server_hdd_3tb_1/Simon/Main/Develop/ActPub/NiGui/repo--/src/nigui.nim
2019-09-02Implement more keys #55trustable-code
2019-09-01Gtk: Fix TextBox onKeyDown handlingtrustable-code
2019-08-31Rework initialization of colorstrustable-code
2019-08-31Fix typotrustable-code
2019-08-31Fix typotrustable-code
2019-08-31Remove unused codetrustable-code
2019-08-31Fix widget background color on Gtktrustable-code
2019-08-31Fix #50 Label color doesn't change using textColor (Windows)trustable-code
2019-08-31Rework error handling, related to #48trustable-code
2019-08-23Remove unused constant CW_USEDEFAULT from windows.nimtrustable-code
2019-08-17Implement bold font option for controls and canvastrustable-code
2019-08-17Fix #46 Apps don't run on Windows 7 any moretrustable-code
2019-08-15Fix #45Simon Krauter
2019-08-01Apply scaling to fixed valuesSimon Krauter
2019-07-28Fix: change default font size back to 15trustable-code
2019-07-26Implemented High-DPI support for Windows.Simon Krauter
Applications should use ``scaleToDpi()`` to convert pixel numbers from 96 DPI to system DPI.
2019-06-20Eliminate one more multi methodtrustable-code
2019-06-19Eliminate multi methodstrustable-code
Fix #42
2019-03-21fix gtk container scrolling being applied before it's readyMatthias Hager
2019-03-21Fix Gtk container scrollingtrustable-code
The scroll mode wasn't updated.
2019-03-21Merge branch 'master' of https://github.com/trustable-code/NiGuitrustable-code
2019-03-21Respect size of scrollbars for layouttrustable-code
This fixes the issue, that one scrollbar triggers the other scrollbar, because the additional space for the scrollbar was not respected.
2019-02-13Fix #35Gitea
2019-02-11Fix #34trustable-code
Right align did not work
2019-02-06Fix #34Gitea
2019-02-03Gtk: Fix memory leak on image loadingMarkus Anschober
2018-12-21Cleanuptrustable-code
2018-12-21Fix relayout issue on font changetrustable-code
2018-12-16Gtk: drawText(): Use cairo_translate() instead of cairo_move_to()trustable-code
Fix: With cairo_move_to() there was a wrong line.
2018-12-06Add drawing methods drawEllipseArea(), drawEllipseOutline() and drawArcOutline()trustable-code
2018-12-06Add Canvas lineWidth propertytrustable-code
2018-12-06Add saveToBitmapFile() methodtrustable-code
2018-11-03TextArea clipboard persistencetrustable-code
2018-09-27Gtk: Make key press on button workingtrustable-code
2018-09-24Windows: Remove SS_CENTERIMAGE to allow multiline Labelstrustable-code
2018-09-24Improve control focus under Windowstrustable-code
- Focused buttons are now highlighted - A windows saves its focused control and restores it when the window is focused
2018-09-24Improve messages boxes and buttonstrustable-code
- Message box: button1 will be focused - Buttons: Key_Return and Key_Space are now handled in platform-independent code
2018-09-13Don't use nil for strings any moretrustable-code
2018-09-03Compatibility with latest Nimtrustable-code