summaryrefslogtreecommitdiffstatshomepage
path: root/closeevent.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-02-28webview: removeJason A. Donenfeld8-1718/+0
We don't want anything resembling a browser engine near this app.
2019-02-28global: replace class namesJason A. Donenfeld17-17/+17
2019-02-28declarative: removeJason A. Donenfeld49-5458/+0
2019-02-27TableView: Fix key events not being publishedAlexander Neumann1-0/+5
2019-02-27Add support for alignment specified per widgetAlexander Neumann37-8/+93
2019-02-27[Line|Text]Edit: Rename [Set]Alignment to [Set]TextAlignmentAlexander Neumann4-8/+8
2019-02-27Add support for specifying widget alignment on layout levelAlexander Neumann4-13/+184
2019-02-26BoxLayout: Small refactoring after removing logging codeAlexander Neumann1-3/+1
2019-02-26Spacer: Add support for restricting greed locallyAlexander Neumann4-37/+67
2019-02-26declarative/Builder: Fix nested grid layout bugAlexander Neumann1-1/+7
2019-02-26Slider: Fix default LineSize + PageSizeAlexander Neumann1-2/+6
2019-02-26Slider: Add support for changing line and page sizeAlexander Neumann2-0/+20
2019-02-25AUTHORS: Add selfJason A. Donenfeld1-0/+1
2019-02-25Manifest: Revert tmpfile manifest loadingJason A. Donenfeld51-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.
2019-02-25Some more static fixesAlexander Neumann1-42/+56
2019-02-25Remove experimental run.dll performance improvement codeAlexander Neumann2-104/+17
2019-02-25Nothing to see here. Move on.Alexander Neumann8-97/+263
Who needs best practices when you can just stuff mountains of accumulated entangled cruft into a single commit?
2019-02-25FormBase: Try to fix scrolling problems with initially focused descendantAlexander Neumann1-0/+15
2019-02-25Missed a file in some previous commitAlexander Neumann1-0/+24
2019-02-25NumberEdit: Add MinValue and MaxValue propertiesAlexander Neumann1-6/+38
2019-02-25Add ItemsInserted + ItemsRemoved to ListModel and support them in ComboBox + ListBoxAlexander Neumann4-4/+114
2019-02-25Replace some occurrences of Widget with *WidgetBaseAlexander Neumann3-44/+74
2019-02-25Add two-way binding for checked menu item to bool property via Action.CheckedAlexander Neumann4-6/+91
2019-02-25WhoopsAlexander Neumann1-0/+1
2019-02-25Replace newErr with newErrorAlexander Neumann6-9/+9
2019-02-25textlabel: Remove double comment layersJason A. Donenfeld1-4/+4
Having // // +build resulted in that tag being ignored entirely.
2019-02-25boolProperty: Accept source of type ExpressionAlexander Neumann2-1/+23
2019-02-25DataBinder: Some small fixesAlexander Neumann1-2/+4
2019-02-25TableView: Add support for custom column formatting functionsAlexander Neumann3-32/+49
2019-02-25TableView: Some small fixesAlexander Neumann1-15/+11
2019-02-25Slider: Stop being greedyAlexander Neumann1-2/+2
2019-02-25Slider: Add ToolTipsHiddenAlexander Neumann2-3/+19
2019-02-25notifyicon: Use mainwindow's window instead of creating ownJason A. Donenfeld2-29/+5
This fixes problems with adding notify icons to visible main windows. Fixes: https://github.com/lxn/walk/issues/403
2019-02-25boxlayout: Use same margins and spacing for non-declarative UIsJason A. Donenfeld1-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.
2018-12-06static: Invalidate after resizeAlexander Neumann1-0/+2
2018-12-06FormBase: Fix initial minimum size regressionAlexander Neumann1-0/+2
2018-12-06Labels: Let an embedded static control do the paintingAlexander Neumann5-50/+143
2018-12-05Label, TextLabel: Make sure to publish TextChanged events when changed through Text propertyAlexander Neumann2-4/+2
2018-12-05Fix label drawing when no background is set + add comment about dynamic line wrappingAlexander Neumann3-2/+4
2018-12-05Label reformAlexander Neumann13-58/+835
2018-12-05Add support for widgets that trade height for width to layouts and do some refactoringAlexander Neumann11-290/+665
2018-12-05WindowBase: Add persistence implementations that recursively call descendant'sAlexander Neumann1-0/+36
2018-12-05WindowBase: Add ForEachDescendantAlexander Neumann1-0/+22
2018-12-05Don't activate a window when it is made visibleAlexander Neumann1-1/+1
2018-12-05ScrollView: Invalidate only after scrolling is complete to avoid flickerAlexander Neumann1-2/+6
2018-12-05Brush: Add simple method which tells us if we need to invalidate after scrollingAlexander Neumann3-10/+48
2018-12-05WidgetBase: Add ForEachAncestorAlexander Neumann1-4/+14
2018-12-05Don't panic in property accessors if type assertion failsAlexander Neumann20-24/+57
2018-12-05reflectExpression: Return nil if value is invalidAlexander Neumann1-0/+4
2018-12-05Separator: Add Greedy layout flagsAlexander Neumann1-2/+2