// http://msdn.microsoft.com/en-us/library/windows/desktop/bb775498%28v=vs.85%29.aspx // FIXME: slider widget. // FIXME: number widget // osx style menu search. // would be cool for a scroll bar to have marking capabilities // kinda like vim's marks just on clicks etc and visual representation // generically. may be cool to add an up arrow to the bottom too // // leave a shadow of where you last were for going back easily // So a window needs to have a selection, and that can be represented by a type. This is manipulated by various // functions like cut, copy, paste. Widgets can have a selection and that would assert teh selection ownership for // the window. // so what about context menus? // https://docs.microsoft.com/en-us/windows/desktop/Controls/about-custom-draw // FIXME: make the scroll thing go to bottom when the content changes. // add a knob slider view... you click and go up and down so basically same as a vertical slider, just presented as a round image // FIXME: the scroll area MUST be fixed to use the proper apis under the hood. // FIXME: add a command search thingy built in and implement tip. // FIXME: omg omg what if menu functions have arguments and it can pop up a gui or command line script them?! // On Windows: // FIXME: various labels look broken in high contrast mode // FIXME: changing themes while the program is upen doesn't trigger a redraw // add note about manifest to documentation. also icons. // a pager control is just a horizontal scroll area just with arrows on the sides instead of a scroll bar // FIXME: clear the corner of scrollbars if they pop up // minigui needs to have a stdout redirection for gui mode on windows writeln // I kinda wanna do state reacting. sort of. idk tho // need a viewer widget that works like a web page - arrows scroll down consistently // I want a nanovega widget, and a svg widget with some kind of event handlers attached to the inside. // FIXME: the menus should be a bit more discoverable, at least a single click to open the others instead of two. // and help info about menu items. // and search in menus? // FIXME: a scroll area event signaling when a thing comes into view might be good // FIXME: arrow key navigation and accelerators in dialog boxes will be a must // FIXME: unify Windows style line endings /* TODO: pie menu class Form with submit behavior -- see AutomaticDialog disabled widgets and menu items TrackBar controls event cleanup tooltips. api improvements margins are kinda broken, they don't collapse like they should. at least. a table form btw would be a horizontal layout of vertical layouts holding each column that would give the same width things */ /* 1(15:19:48) NotSpooky: Menus, text entry, label, notebook, box, frame, file dialogs and layout (this one is very useful because I can draw lines between its child widgets */ /++ minigui is a smallish GUI widget library, aiming to be on par with at least HTML4 forms and a few other expected gui components. It uses native controls on Windows and does its own thing on Linux (Mac is not currently supported but may be later, and should use native controls) to keep size down. The Linux appearance is similar to Windows 95 and avoids using images to maintain network efficiency on remote X connections, though you can customize that. minigui's only required dependencies are [arsd.simpledisplay] and [arsd.color]. Its #1 goal is to be useful without being large and complicated like GTK and Qt. It isn't hugely concerned with appearance - on Windows, it just uses the native controls and native theme, and on Linux, it keeps it simple and I may change that at any time. I love Qt, if you want something full featured, use it! But if you want something you can just drop into a small project and expect the basics to work without outside dependencies, hopefully minigui will work for you. The event model is similar to what you use in the browser with Javascript and the layout engine tries to automatically fit things in, similar to a css flexbox. FOR BEST RESULTS: be sure to link with the appropriate subsystem command `-L/SUBSYSTEM:WINDOWS:5.0`, for example, because otherwise you'll get a console and other visual bugs. HTML_To_Classes: `` = [LineEdit] `