Roman Chistokhodov
Roman Chistokhodov
Is it possible to do with this library? Maybe you can provide examples that show memory-efficient usage of DOM and StAX parsers.
```d /// module mod; enum staticIf = true; /// struct S { private: version(linux) string private1; static if (staticIf) { string private2; } } ``` 
```d /** * Some doc comments. * Note: * Some note. * Throws: * Exception */ void someFunc() { } ```  'Note:' should be made into...
``` /// module main; /// interface SomeInterface { void someFunc(); } /// version(D_Ddoc){ final class SomeClass : SomeInterface { void someFunc() {} } } void main() { } ``` Result:...
 Here's screenshot of example1 starting on Linux LXDE. As you can see buttons and some other widgets are not big enough to hold their contents.
Probably I'm missing something, but the current way to set custom image (i.e. not from embedded resources) onto ImageWidget looks like this: ``` d auto imageWidget = new ImageWidget(); auto...
The current Action class has that big problem that it requires user-provided id forcing a user to use magic numbers or declare constants. Both are bad. Magic numbers are bad...
Probably it's SDL issue, but still. See https://en.wikipedia.org/wiki/Unicode_input
It seems dlangui lacks support for tristate checkboxes (ones with 'indeterminate' or 'partially checked' state) which is common UI pattern.
DlangUI should provide crossplatform support for opening native file dialogs where possible (Windows, OS X), with fallback to modal FileDialog on systems that does not have native one.