├── .gitignore ├── 7guis-reflex.cabal ├── README.md ├── Setup.hs ├── index.css ├── index.html ├── src ├── GUIs │ ├── CRUD.hs │ ├── Cells.hs │ ├── Cells │ │ ├── Parser.hs │ │ ├── References.hs │ │ ├── Sheet.hs │ │ └── Types.hs │ ├── CircleDrawer.hs │ ├── CircleDrawer │ │ └── Stack.hs │ ├── Counter.hs │ ├── FlightBooker.hs │ ├── TemperatureConverter.hs │ └── Timer.hs ├── Main.hs ├── Utils.hs └── Widgets.hs └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | -------------------------------------------------------------------------------- /7guis-reflex.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/7guis-reflex.cabal -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/index.html -------------------------------------------------------------------------------- /src/GUIs/CRUD.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/CRUD.hs -------------------------------------------------------------------------------- /src/GUIs/Cells.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/Cells.hs -------------------------------------------------------------------------------- /src/GUIs/Cells/Parser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/Cells/Parser.hs -------------------------------------------------------------------------------- /src/GUIs/Cells/References.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/Cells/References.hs -------------------------------------------------------------------------------- /src/GUIs/Cells/Sheet.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/Cells/Sheet.hs -------------------------------------------------------------------------------- /src/GUIs/Cells/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/Cells/Types.hs -------------------------------------------------------------------------------- /src/GUIs/CircleDrawer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/CircleDrawer.hs -------------------------------------------------------------------------------- /src/GUIs/CircleDrawer/Stack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/CircleDrawer/Stack.hs -------------------------------------------------------------------------------- /src/GUIs/Counter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/Counter.hs -------------------------------------------------------------------------------- /src/GUIs/FlightBooker.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/FlightBooker.hs -------------------------------------------------------------------------------- /src/GUIs/TemperatureConverter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/TemperatureConverter.hs -------------------------------------------------------------------------------- /src/GUIs/Timer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/GUIs/Timer.hs -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/Main.hs -------------------------------------------------------------------------------- /src/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/Utils.hs -------------------------------------------------------------------------------- /src/Widgets.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/src/Widgets.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themoritz/7guis-reflex/HEAD/stack.yaml --------------------------------------------------------------------------------