summaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* WIP: Add rebar controlad/pkg/walk/rebarAnthony Dong2019-03-202-2/+157
|
* webview: removeJason A. Donenfeld2019-02-288-1718/+0
| | | | We don't want anything resembling a browser engine near this app.
* global: replace class namesJason A. Donenfeld2019-02-2817-17/+17
|
* declarative: removeJason A. Donenfeld2019-02-2849-5458/+0
|
* TableView: Fix key events not being publishedAlexander Neumann2019-02-271-0/+5
|
* Add support for alignment specified per widgetAlexander Neumann2019-02-2737-8/+93
|
* [Line|Text]Edit: Rename [Set]Alignment to [Set]TextAlignmentAlexander Neumann2019-02-274-8/+8
|
* Add support for specifying widget alignment on layout levelAlexander Neumann2019-02-274-13/+184
|
* BoxLayout: Small refactoring after removing logging codeAlexander Neumann2019-02-261-3/+1
|
* Spacer: Add support for restricting greed locallyAlexander Neumann2019-02-264-37/+67
|
* declarative/Builder: Fix nested grid layout bugAlexander Neumann2019-02-261-1/+7
|
* Slider: Fix default LineSize + PageSizeAlexander Neumann2019-02-261-2/+6
|
* Slider: Add support for changing line and page sizeAlexander Neumann2019-02-262-0/+20
|
* Merge branch 'jd/notifyicon-visible-mainwindow' of https://github.com/zx2c4-forks/walk into notifyicon_fixAlexander Neumann2019-02-262-29/+5
|\
| * notifyicon: Use mainwindow's window instead of creating ownJason A. Donenfeld2019-02-252-29/+5
| | | | | | | | | | | | This fixes problems with adding notify icons to visible main windows. Fixes: https://github.com/lxn/walk/issues/403
* | Merge pull request #464 from zx2c4-forks/static-wrong-build-tagAlexander Neumann2019-02-261-4/+4
|\ \ | | | | | | textlabel: Remove double comment layers
| * | textlabel: Remove double comment layersJason A. Donenfeld2019-02-251-4/+4
| |/ | | | | | | Having // // +build resulted in that tag being ignored entirely.
* | Merge pull request #462 from zx2c4-forks/jd/identical-nondeclarative-boxlayoutAlexander Neumann2019-02-262-0/+3
|\ \ | | | | | | boxlayout: Use same margins and spacing for non-declarative UIs
| * | AUTHORS: Add selfJason A. Donenfeld2019-02-251-0/+1
| | |
| * | boxlayout: Use same margins and spacing for non-declarative UIsJason A. Donenfeld2019-02-251-0/+2
| |/ | | | | | | | | | | Currently folks not using the declarative UI encounter zero margins and spacing, because only the declarative structure has these nice defaults. It's probably a good idea to give the real object the nice defaults too.
* | Merge pull request #451 from zx2c4-forks/jd/kill-manifest-hackAlexander Neumann2019-02-2651-56/+378
|\ \ | | | | | | Manifest: Revert tmpfile manifest loading
| * | Manifest: Revert tmpfile manifest loadingJason A. Donenfeld2019-02-2551-56/+378
| |/ | | | | | | | | | | | | | | | | | | | | | | | | This hack failed for a number of reasons: - Two copies of comctl32.dll get loaded (see issue #444) - HiDPI setting is ignored - A potential security problem: it's unclear that the temporary directory is safe to use in all circumstances as such. This reverts commit 185e06c4cdb3e06eb722ba056a24fd79fc3ce709. This reverts commit 9ec61009af4758321ce209c7b6f0d62eefa7bb79. This reverts commit 1afcf534b52d51572124f079c8fb53b6d5601b0e.
* | Some more static fixesAlexander Neumann2019-02-251-42/+56
| |
* | Remove experimental run.dll performance improvement codeAlexander Neumann2019-02-252-104/+17
| |
* | Nothing to see here. Move on.Alexander Neumann2019-02-258-97/+263
| | | | | | | | Who needs best practices when you can just stuff mountains of accumulated entangled cruft into a single commit?
* | FormBase: Try to fix scrolling problems with initially focused descendantAlexander Neumann2019-02-251-0/+15
| |
* | Missed a file in some previous commitAlexander Neumann2019-02-251-0/+24
| |
* | NumberEdit: Add MinValue and MaxValue propertiesAlexander Neumann2019-02-251-6/+38
| |
* | Add ItemsInserted + ItemsRemoved to ListModel and support them in ComboBox + ListBoxAlexander Neumann2019-02-254-4/+114
| |
* | Replace some occurrences of Widget with *WidgetBaseAlexander Neumann2019-02-253-44/+74
| |
* | Add two-way binding for checked menu item to bool property via Action.CheckedAlexander Neumann2019-02-254-6/+91
| |
* | WhoopsAlexander Neumann2019-02-251-0/+1
| |
* | Replace newErr with newErrorAlexander Neumann2019-02-256-9/+9
| |
* | boolProperty: Accept source of type ExpressionAlexander Neumann2019-02-252-1/+23
| |
* | DataBinder: Some small fixesAlexander Neumann2019-02-251-2/+4
| |
* | TableView: Add support for custom column formatting functionsAlexander Neumann2019-02-253-32/+49
| |
* | TableView: Some small fixesAlexander Neumann2019-02-251-15/+11
| |
* | Slider: Stop being greedyAlexander Neumann2019-02-251-2/+2
| |
* | Slider: Add ToolTipsHiddenAlexander Neumann2019-02-252-3/+19
|/
* static: Invalidate after resizeAlexander Neumann2018-12-061-0/+2
|
* FormBase: Fix initial minimum size regressionAlexander Neumann2018-12-061-0/+2
|
* Labels: Let an embedded static control do the paintingAlexander Neumann2018-12-065-50/+143
|
* Label, TextLabel: Make sure to publish TextChanged events when changed through Text propertyAlexander Neumann2018-12-052-4/+2
|
* Fix label drawing when no background is set + add comment about dynamic line wrappingAlexander Neumann2018-12-053-2/+4
|
* Label reformAlexander Neumann2018-12-0513-58/+835
|
* Add support for widgets that trade height for width to layouts and do some refactoringAlexander Neumann2018-12-0511-290/+665
|
* WindowBase: Add persistence implementations that recursively call descendant'sAlexander Neumann2018-12-051-0/+36
|
* WindowBase: Add ForEachDescendantAlexander Neumann2018-12-051-0/+22
|
* Don't activate a window when it is made visibleAlexander Neumann2018-12-051-1/+1
|
* ScrollView: Invalidate only after scrolling is complete to avoid flickerAlexander Neumann2018-12-051-2/+6
|