// http://msdn.microsoft.com/en-us/library/windows/desktop/bb775498%28v=vs.85%29.aspx // if doing nested menus, make sure the straight line from where it pops up to any destination on the new popup is not going to disappear the menu until at least a delay // me@arsd:~/.kde/share/config$ vim kdeglobals // FIXME: i kinda like how you can show find locations in scrollbars in the chrome browisers i wanna support that here too. // https://www.freedesktop.org/wiki/Accessibility/AT-SPI2/ // for responsive design, a collapsible widget that if it doesn't have enough room, it just automatically becomes a "more" button or whatever. // responsive minigui, menu search, and file open with a preview hook on the side. // FIXME: add menu checkbox and menu icon eventually /* im tempted to add some css kind of thing to minigui. i've not done in the past cuz i have a lot of virtual functins i use but i think i have an evil plan the virtual functions remain as the default calculated values. then the reads go through some proxy object that can override it... */ // FIXME: a popup with slightly shaped window pointing at the mouse might eb useful in places // FIXME: text label must be copyable to the clipboard, at least as a full chunk. // FIXME: opt-in file picker widget with image support // FIXME: number widget // https://www.codeguru.com/cpp/controls/buttonctrl/advancedbuttons/article.php/c5161/Native-Win32-ThemeAware-OwnerDraw-Controls-No-MFC.htm // https://docs.microsoft.com/en-us/windows/win32/controls/using-visual-styles // 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 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], on which it is built. simpledisplay provides the low-level interfaces and minigui builds the concept of widgets inside the windows on top of it. 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, though after May 2021, you can customize some things with css-inspired [Widget.Style] classes. (On Windows, if you compile with `-version=custom_widgets`, you can use the custom implementation there too, but... you shouldn't.) 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` and -L/entry:mainCRTStartup`. If using ldc instead of dmd, use `-L/entry:wmainCRTStartup` instead of `mainCRTStartup`; note the "w". Otherwise you'll get a console and possibly other visual bugs. But if you do use the subsystem:windows, note that Phobos' writeln will crash the program! HTML_To_Classes: $(SMALL_TABLE HTML Code | Minigui Class `` | [LineEdit] `