├── .cabal-conf └── hackage.enc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── demos ├── image-format-guesser │ ├── ElementaryGtkProgram.cabal │ ├── Interface.glade │ ├── LICENSE │ ├── metrics.sh │ ├── src │ │ ├── CombinedEnvironment.hs │ │ ├── Controller.hs │ │ ├── Controller │ │ │ ├── Conditions.hs │ │ │ └── Conditions │ │ │ │ ├── ConditionDirection.hs │ │ │ │ ├── FilenameEntry.hs │ │ │ │ └── ResultLabel.hs │ │ ├── Extra │ │ │ └── UI │ │ │ │ └── Simplify │ │ │ │ ├── EntryBasic.hs │ │ │ │ └── LabelBasic.hs │ │ ├── Main.hs │ │ ├── Model │ │ │ ├── Model.hs │ │ │ ├── ProtectedModel.hs │ │ │ ├── ProtectedModel │ │ │ │ ├── Filename.hs │ │ │ │ └── ProtectedModelInternals.hs │ │ │ ├── ReactiveModel.hs │ │ │ └── ReactiveModel │ │ │ │ ├── Filename.hs │ │ │ │ ├── ModelEvents.hs │ │ │ │ └── ReactiveModelInternals.hs │ │ ├── View.hs │ │ └── View │ │ │ └── MainWindow │ │ │ └── Objects.hs │ └── tests │ │ ├── HLint.hs │ │ ├── HLintMain.hs │ │ └── HaddockCoverage.hs ├── keera-hails-demos-gtk-dunai │ ├── LICENSE │ ├── Setup.hs │ ├── keera-hails-demos-gtk-dunai.cabal │ ├── src │ │ └── HelloWorld.hs │ └── tests │ │ ├── HLint.hs │ │ ├── HLintMain.hs │ │ └── HaddockCoverage.hs ├── keera-hails-demos-gtk │ ├── LICENSE │ ├── Setup.hs │ ├── elementarygtkprogram │ │ ├── ElementaryGtkProgram.cabal │ │ ├── Interface.glade │ │ ├── LICENSE │ │ ├── metrics.sh │ │ ├── src │ │ │ ├── CombinedEnvironment.hs │ │ │ ├── Controller.hs │ │ │ ├── Controller │ │ │ │ └── Conditions.hs │ │ │ ├── Main.hs │ │ │ ├── Model │ │ │ │ ├── Model.hs │ │ │ │ ├── ProtectedModel.hs │ │ │ │ ├── ProtectedModel │ │ │ │ │ └── ProtectedModelInternals.hs │ │ │ │ ├── ReactiveModel.hs │ │ │ │ └── ReactiveModel │ │ │ │ │ ├── ModelEvents.hs │ │ │ │ │ └── ReactiveModelInternals.hs │ │ │ ├── View.hs │ │ │ └── View │ │ │ │ └── MainWindow │ │ │ │ └── Objects.hs │ │ └── tests │ │ │ ├── HLint.hs │ │ │ ├── HLintMain.hs │ │ │ └── HaddockCoverage.hs │ ├── keera-hails-demos-gtk.cabal │ ├── src │ │ └── HelloWorld.hs │ └── tests │ │ ├── HLint.hs │ │ ├── HLintMain.hs │ │ └── HaddockCoverage.hs ├── keera-hails-demos-small │ ├── LICENSE │ ├── Setup.hs │ ├── data │ │ ├── body.html │ │ └── head.html │ ├── keera-hails-demos-small.cabal │ └── src │ │ ├── Controller.hs │ │ ├── Data │ │ ├── Action.hs │ │ └── Calculator.hs │ │ ├── Main.hs │ │ ├── Model.hs │ │ ├── View.hs │ │ └── View │ │ ├── HTML.hs │ │ └── Types.hs ├── keera-hails-demos-soundplay │ ├── LICENSE │ ├── Setup.hs │ ├── baby.wav │ ├── keera-hails-demos-soundplay.cabal │ ├── src │ │ └── Main.hs │ └── tests │ │ ├── HLint.hs │ │ ├── HLintMain.hs │ │ └── HaddockCoverage.hs ├── keera-hails-demos-wiimote │ ├── Minimal.hs │ ├── MinimalFRP.hs │ ├── README.md │ ├── UI.glade │ ├── WMGui.hs │ ├── Wiimote.hs │ └── screenshots │ │ ├── gui.png │ │ ├── hwgui.png │ │ └── hwguiIR.png └── keera-hails-gtk-app │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── Setup.hs │ ├── data │ └── Interface.glade │ └── keera-hails-gtk-app.cabal ├── keera-hails-i18n ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-i18n.cabal ├── src │ └── Hails │ │ └── I18N │ │ ├── Gettext.hs │ │ └── Language.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-controller ├── CHANGELOG ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-mvc-controller.cabal ├── src │ └── Hails │ │ └── MVC │ │ └── Controller │ │ └── ConditionDirection.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-environment-gtk ├── LICENSE ├── Setup.hs ├── keera-hails-mvc-environment-gtk.cabal ├── src │ └── Hails │ │ └── MVC │ │ ├── DefaultGtkEnvironment.hs │ │ └── GenericCombinedEnvironment.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-environment-gtk3 ├── LICENSE ├── Setup.hs ├── keera-hails-mvc-environment-gtk3.cabal ├── src │ └── Hails │ │ └── MVC │ │ ├── DefaultGtkEnvironment.hs │ │ └── GenericCombinedEnvironment.hs └── tests │ ├── HLint.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-model-lightmodel ├── CHANGELOG ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-mvc-model-lightmodel.cabal ├── src │ └── Hails │ │ └── MVC │ │ └── Model │ │ ├── ProtectedModel.hs │ │ ├── ProtectedModel │ │ ├── Initialisation.hs │ │ └── Reactive.hs │ │ ├── ReactiveFields.hs │ │ ├── ReactiveModel.hs │ │ ├── ReactiveModel │ │ ├── Events.hs │ │ └── Initialisation.hs │ │ ├── THAccessors.hs │ │ └── THFields.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-model-protectedmodel ├── CHANGELOG ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-mvc-model-protectedmodel.cabal ├── src │ └── Hails │ │ └── MVC │ │ └── Model │ │ ├── ProtectedModel.hs │ │ ├── ProtectedModel │ │ ├── Initialisation.hs │ │ └── Reactive.hs │ │ ├── ReactiveFields.hs │ │ ├── ReactiveModel.hs │ │ ├── ReactiveModel │ │ ├── Events.hs │ │ └── Initialisation.hs │ │ ├── THAccessors.hs │ │ └── THFields.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-solutions-config ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-mvc-solutions-config.cabal ├── src │ └── Hails │ │ └── MVC │ │ └── Controller │ │ └── Conditions │ │ └── Config.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-solutions-gtk ├── LICENSE ├── Setup.hs ├── keera-hails-mvc-solutions-gtk.cabal ├── src │ ├── Hails │ │ ├── Graphics │ │ │ └── UI │ │ │ │ └── Gtk │ │ │ │ └── Simplify │ │ │ │ ├── AboutDialog.hs │ │ │ │ ├── Logger.hs │ │ │ │ ├── NameAndVersionTitleBar.hs │ │ │ │ ├── ProgramMainWindow.hs │ │ │ │ ├── RootLogger.hs │ │ │ │ ├── UpdateCheck.hs │ │ │ │ └── VersionNumberTitleBar.hs │ │ └── MVC │ │ │ └── Model │ │ │ └── ProtectedModel │ │ │ ├── LoggedModel.hs │ │ │ ├── NamedModel.hs │ │ │ ├── UpdatableModel.hs │ │ │ └── VersionedModel.hs │ └── Main.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-solutions-gtk3 ├── LICENSE ├── Setup.hs ├── keera-hails-mvc-solutions-gtk3.cabal ├── src │ ├── Hails │ │ ├── Graphics │ │ │ └── UI │ │ │ │ └── Gtk │ │ │ │ └── Simplify │ │ │ │ ├── AboutDialog.hs │ │ │ │ ├── Logger.hs │ │ │ │ ├── NameAndVersionTitleBar.hs │ │ │ │ ├── ProgramMainWindow.hs │ │ │ │ ├── RootLogger.hs │ │ │ │ ├── UpdateCheck.hs │ │ │ │ └── VersionNumberTitleBar.hs │ │ └── MVC │ │ │ └── Model │ │ │ └── ProtectedModel │ │ │ ├── LoggedModel.hs │ │ │ ├── NamedModel.hs │ │ │ ├── UpdatableModel.hs │ │ │ └── VersionedModel.hs │ └── Main.hs └── tests │ ├── HLint.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-view-gtk ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-mvc-view-gtk.cabal ├── src │ └── Hails │ │ └── MVC │ │ └── View │ │ ├── DefaultViewGtk.hs │ │ ├── GladeView.hs │ │ ├── Gtk │ │ └── Builder.hs │ │ ├── GtkView.hs │ │ └── GtkView.hs.fixed └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-view-gtk3 ├── LICENSE ├── Setup.hs ├── keera-hails-mvc-view-gtk3.cabal ├── src │ └── Hails │ │ └── MVC │ │ └── View │ │ ├── DefaultViewGtk.hs │ │ ├── GladeView.hs │ │ ├── Gtk │ │ └── Builder.hs │ │ ├── GtkView.hs │ │ └── GtkView.hs.fixed └── tests │ ├── HLint.hs │ └── HaddockCoverage.hs ├── keera-hails-mvc-view ├── CHANGELOG ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-mvc-view.cabal ├── src │ └── Hails │ │ └── MVC │ │ └── View.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-cbmvar ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-reactive-cbmvar.cabal ├── src │ └── Data │ │ └── CBMVar │ │ └── Reactive.hs └── tests │ ├── HLintMain.hs │ ├── HaddockCoverage.hs │ └── hlint.yaml ├── keera-hails-reactive-fs ├── LICENSE ├── README.md ├── keera-hails-reactive-fs.cabal ├── src │ └── Hails │ │ └── FS.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-gtk ├── CHANGELOG ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-reactive-gtk.cabal ├── src │ └── Graphics │ │ └── UI │ │ └── Gtk │ │ ├── Reactive.hs │ │ └── Reactive │ │ ├── Button.hs │ │ ├── CheckMenuItem.hs │ │ ├── ColorButton.hs │ │ ├── Entry.hs │ │ ├── Gtk2.hs │ │ ├── Image.hs │ │ ├── Label.hs │ │ ├── MenuItem.hs │ │ ├── Property.hs │ │ ├── Scale.hs │ │ ├── SpinButton.hs │ │ ├── StatusIcon.hs │ │ ├── TextView.hs │ │ ├── ToggleButton.hs │ │ ├── ToolButton.hs │ │ ├── TreeView.hs │ │ ├── TypedComboBoxUnsafe.hs │ │ ├── Widget.hs │ │ └── Window.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-gtk3 ├── LICENSE ├── Setup.hs ├── keera-hails-reactive-gtk3.cabal ├── src │ └── Graphics │ │ └── UI │ │ └── Gtk │ │ ├── Reactive.hs │ │ └── Reactive │ │ ├── Button.hs │ │ ├── CheckMenuItem.hs │ │ ├── Entry.hs │ │ ├── Label.hs │ │ ├── MenuItem.hs │ │ ├── Scale.hs │ │ ├── SpinButton.hs │ │ ├── TextView.hs │ │ ├── ToggleButton.hs │ │ ├── ToolButton.hs │ │ └── TypedComboBoxUnsafe.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-htmldom ├── LICENSE ├── Setup.hs ├── keera-hails-reactive-htmldom.cabal ├── src │ └── Hails │ │ └── MVC │ │ └── View │ │ └── HTML.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-network ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-reactive-network.cabal ├── src │ └── Hails │ │ └── Network.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-polling ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-reactive-polling.cabal ├── src │ └── Hails │ │ └── Polling.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-qt ├── .gitignore ├── LICENSE ├── README.md ├── examples │ ├── Example.hs │ ├── minimal.hs │ └── reactive.hs ├── hails-reactive-qt.cabal ├── src │ └── Graphics │ │ └── UI │ │ └── Qt │ │ └── Reactive.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-wx ├── .gitignore ├── LICENSE ├── README.md ├── examples │ ├── Calc.hs │ ├── Minimal.hs │ ├── calc.wxg │ └── test.xrc ├── keera-hails-reactive-wx.cabal ├── src │ └── Graphics │ │ └── UI │ │ └── WX │ │ └── Reactive.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactive-yampa ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-reactive-yampa.cabal ├── src │ └── Hails │ │ └── Yampa.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ └── HaddockCoverage.hs ├── keera-hails-reactivelenses ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-reactivelenses.cabal ├── src │ └── Data │ │ └── ReactiveLens.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ ├── HaddockCoverage.hs │ └── Tasty.hs ├── keera-hails-reactivevalues ├── LICENSE ├── README.md ├── Setup.hs ├── keera-hails-reactivevalues.cabal ├── src │ ├── Control │ │ └── GFunctor.hs │ └── Data │ │ └── ReactiveValue.hs └── tests │ ├── HLint.hs │ ├── HLintMain.hs │ ├── HaddockCoverage.hs │ └── Tasty.hs └── keera-hails ├── LICENSE ├── Setup.hs ├── keera-hails.cabal ├── src ├── AppDataBasic.hs ├── AppDataFull.hs ├── HailsArgs.hs ├── Main.hs └── System │ └── Application.hs ├── templates ├── CombinedEnvironment.hs ├── Controller.hs ├── Controller │ └── Conditions.hs ├── Main.hs ├── Model │ ├── Model.hs │ ├── ProtectedModel.hs │ ├── ProtectedModel │ │ ├── ProtectedFields.hs │ │ └── ProtectedModelInternals.hs │ ├── ReactiveModel.hs │ └── ReactiveModel │ │ ├── ModelEvents.hs │ │ ├── ReactiveFields.hs │ │ └── ReactiveModelInternals.hs ├── Paths.hs ├── Paths │ └── CustomPaths.hs ├── View.hs └── View │ └── Objects.hs └── tests ├── HLint.hs ├── HLintMain.hs └── HaddockCoverage.hs /.cabal-conf/hackage.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/.cabal-conf/hackage.enc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/README.md -------------------------------------------------------------------------------- /demos/image-format-guesser/ElementaryGtkProgram.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/ElementaryGtkProgram.cabal -------------------------------------------------------------------------------- /demos/image-format-guesser/Interface.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/Interface.glade -------------------------------------------------------------------------------- /demos/image-format-guesser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/LICENSE -------------------------------------------------------------------------------- /demos/image-format-guesser/metrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/metrics.sh -------------------------------------------------------------------------------- /demos/image-format-guesser/src/CombinedEnvironment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/CombinedEnvironment.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Controller.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Controller.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Controller/Conditions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Controller/Conditions.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Controller/Conditions/ConditionDirection.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Controller/Conditions/ConditionDirection.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Controller/Conditions/FilenameEntry.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Controller/Conditions/FilenameEntry.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Controller/Conditions/ResultLabel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Controller/Conditions/ResultLabel.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Extra/UI/Simplify/EntryBasic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Extra/UI/Simplify/EntryBasic.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Extra/UI/Simplify/LabelBasic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Extra/UI/Simplify/LabelBasic.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Main.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Model/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Model/Model.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Model/ProtectedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Model/ProtectedModel.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Model/ProtectedModel/Filename.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Model/ProtectedModel/Filename.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Model/ProtectedModel/ProtectedModelInternals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Model/ProtectedModel/ProtectedModelInternals.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Model/ReactiveModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Model/ReactiveModel.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Model/ReactiveModel/Filename.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Model/ReactiveModel/Filename.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Model/ReactiveModel/ModelEvents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Model/ReactiveModel/ModelEvents.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/Model/ReactiveModel/ReactiveModelInternals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/Model/ReactiveModel/ReactiveModelInternals.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/View.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/View.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/src/View/MainWindow/Objects.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/src/View/MainWindow/Objects.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/tests/HLint.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/tests/HLintMain.hs -------------------------------------------------------------------------------- /demos/image-format-guesser/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/image-format-guesser/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk-dunai/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk-dunai/LICENSE -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk-dunai/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk-dunai/keera-hails-demos-gtk-dunai.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk-dunai/keera-hails-demos-gtk-dunai.cabal -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk-dunai/src/HelloWorld.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk-dunai/src/HelloWorld.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk-dunai/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk-dunai/tests/HLint.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk-dunai/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk-dunai/tests/HLintMain.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk-dunai/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk-dunai/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/LICENSE -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/ElementaryGtkProgram.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/ElementaryGtkProgram.cabal -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/Interface.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/Interface.glade -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/LICENSE -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/metrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/metrics.sh -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/CombinedEnvironment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/CombinedEnvironment.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Controller.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Controller.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Controller/Conditions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Controller/Conditions.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Main.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/Model.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ProtectedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ProtectedModel.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ProtectedModel/ProtectedModelInternals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ProtectedModel/ProtectedModelInternals.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ReactiveModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ReactiveModel.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ReactiveModel/ModelEvents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ReactiveModel/ModelEvents.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ReactiveModel/ReactiveModelInternals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/Model/ReactiveModel/ReactiveModelInternals.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/View.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/View.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/src/View/MainWindow/Objects.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/src/View/MainWindow/Objects.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/tests/HLint.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/tests/HLintMain.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/elementarygtkprogram/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/elementarygtkprogram/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/keera-hails-demos-gtk.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/keera-hails-demos-gtk.cabal -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/src/HelloWorld.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/src/HelloWorld.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/tests/HLint.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/tests/HLintMain.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-gtk/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-gtk/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/LICENSE -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/data/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/data/body.html -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/data/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/data/head.html -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/keera-hails-demos-small.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/keera-hails-demos-small.cabal -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/src/Controller.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/src/Controller.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/src/Data/Action.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/src/Data/Action.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/src/Data/Calculator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/src/Data/Calculator.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/src/Main.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/src/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/src/Model.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/src/View.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/src/View.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/src/View/HTML.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/src/View/HTML.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-small/src/View/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-small/src/View/Types.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-soundplay/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-soundplay/LICENSE -------------------------------------------------------------------------------- /demos/keera-hails-demos-soundplay/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /demos/keera-hails-demos-soundplay/baby.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-soundplay/baby.wav -------------------------------------------------------------------------------- /demos/keera-hails-demos-soundplay/keera-hails-demos-soundplay.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-soundplay/keera-hails-demos-soundplay.cabal -------------------------------------------------------------------------------- /demos/keera-hails-demos-soundplay/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-soundplay/src/Main.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-soundplay/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-soundplay/tests/HLint.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-soundplay/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-soundplay/tests/HLintMain.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-soundplay/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-soundplay/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/Minimal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/Minimal.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/MinimalFRP.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/MinimalFRP.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/README.md -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/UI.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/UI.glade -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/WMGui.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/WMGui.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/Wiimote.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/Wiimote.hs -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/screenshots/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/screenshots/gui.png -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/screenshots/hwgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/screenshots/hwgui.png -------------------------------------------------------------------------------- /demos/keera-hails-demos-wiimote/screenshots/hwguiIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-demos-wiimote/screenshots/hwguiIR.png -------------------------------------------------------------------------------- /demos/keera-hails-gtk-app/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-gtk-app/ChangeLog.md -------------------------------------------------------------------------------- /demos/keera-hails-gtk-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-gtk-app/LICENSE -------------------------------------------------------------------------------- /demos/keera-hails-gtk-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-gtk-app/README.md -------------------------------------------------------------------------------- /demos/keera-hails-gtk-app/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /demos/keera-hails-gtk-app/data/Interface.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-gtk-app/data/Interface.glade -------------------------------------------------------------------------------- /demos/keera-hails-gtk-app/keera-hails-gtk-app.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/demos/keera-hails-gtk-app/keera-hails-gtk-app.cabal -------------------------------------------------------------------------------- /keera-hails-i18n/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-i18n/LICENSE -------------------------------------------------------------------------------- /keera-hails-i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-i18n/README.md -------------------------------------------------------------------------------- /keera-hails-i18n/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-i18n/keera-hails-i18n.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-i18n/keera-hails-i18n.cabal -------------------------------------------------------------------------------- /keera-hails-i18n/src/Hails/I18N/Gettext.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-i18n/src/Hails/I18N/Gettext.hs -------------------------------------------------------------------------------- /keera-hails-i18n/src/Hails/I18N/Language.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-i18n/src/Hails/I18N/Language.hs -------------------------------------------------------------------------------- /keera-hails-i18n/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-i18n/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-i18n/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-i18n/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-i18n/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-i18n/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-controller/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-controller/CHANGELOG -------------------------------------------------------------------------------- /keera-hails-mvc-controller/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-controller/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-controller/README.md -------------------------------------------------------------------------------- /keera-hails-mvc-controller/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-controller/keera-hails-mvc-controller.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-controller/keera-hails-mvc-controller.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-controller/src/Hails/MVC/Controller/ConditionDirection.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-controller/src/Hails/MVC/Controller/ConditionDirection.hs -------------------------------------------------------------------------------- /keera-hails-mvc-controller/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-controller/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-controller/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-controller/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-mvc-controller/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-controller/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk/keera-hails-mvc-environment-gtk.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk/keera-hails-mvc-environment-gtk.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk/src/Hails/MVC/DefaultGtkEnvironment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk/src/Hails/MVC/DefaultGtkEnvironment.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk/src/Hails/MVC/GenericCombinedEnvironment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk/src/Hails/MVC/GenericCombinedEnvironment.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk3/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk3/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk3/keera-hails-mvc-environment-gtk3.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk3/keera-hails-mvc-environment-gtk3.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk3/src/Hails/MVC/DefaultGtkEnvironment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk3/src/Hails/MVC/DefaultGtkEnvironment.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk3/src/Hails/MVC/GenericCombinedEnvironment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk3/src/Hails/MVC/GenericCombinedEnvironment.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk3/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk3/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-environment-gtk3/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-environment-gtk3/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/CHANGELOG -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/README.md -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/keera-hails-mvc-model-lightmodel.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/keera-hails-mvc-model-lightmodel.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ProtectedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ProtectedModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ProtectedModel/Initialisation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ProtectedModel/Initialisation.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ProtectedModel/Reactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ProtectedModel/Reactive.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ReactiveFields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ReactiveFields.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ReactiveModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ReactiveModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ReactiveModel/Events.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ReactiveModel/Events.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ReactiveModel/Initialisation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/ReactiveModel/Initialisation.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/THAccessors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/THAccessors.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/THFields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/src/Hails/MVC/Model/THFields.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-lightmodel/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-lightmodel/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/CHANGELOG -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/README.md -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/keera-hails-mvc-model-protectedmodel.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/keera-hails-mvc-model-protectedmodel.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ProtectedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ProtectedModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ProtectedModel/Initialisation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ProtectedModel/Initialisation.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ProtectedModel/Reactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ProtectedModel/Reactive.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ReactiveFields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ReactiveFields.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ReactiveModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ReactiveModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ReactiveModel/Events.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ReactiveModel/Events.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ReactiveModel/Initialisation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/ReactiveModel/Initialisation.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/THAccessors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/THAccessors.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/THFields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/src/Hails/MVC/Model/THFields.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-mvc-model-protectedmodel/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-model-protectedmodel/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-config/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-config/README.md -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-config/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-config/keera-hails-mvc-solutions-config.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-config/keera-hails-mvc-solutions-config.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-config/src/Hails/MVC/Controller/Conditions/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-config/src/Hails/MVC/Controller/Conditions/Config.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-config/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-config/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-config/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-config/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-config/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-config/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/keera-hails-mvc-solutions-gtk.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/keera-hails-mvc-solutions-gtk.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/AboutDialog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/AboutDialog.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/Logger.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/Logger.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/NameAndVersionTitleBar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/NameAndVersionTitleBar.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/ProgramMainWindow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/ProgramMainWindow.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/RootLogger.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/RootLogger.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/UpdateCheck.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/UpdateCheck.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/VersionNumberTitleBar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/Graphics/UI/Gtk/Simplify/VersionNumberTitleBar.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/MVC/Model/ProtectedModel/LoggedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/MVC/Model/ProtectedModel/LoggedModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/MVC/Model/ProtectedModel/NamedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/MVC/Model/ProtectedModel/NamedModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/MVC/Model/ProtectedModel/UpdatableModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/MVC/Model/ProtectedModel/UpdatableModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Hails/MVC/Model/ProtectedModel/VersionedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Hails/MVC/Model/ProtectedModel/VersionedModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/src/Main.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/keera-hails-mvc-solutions-gtk3.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/keera-hails-mvc-solutions-gtk3.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/AboutDialog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/AboutDialog.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/Logger.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/Logger.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/NameAndVersionTitleBar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/NameAndVersionTitleBar.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/ProgramMainWindow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/ProgramMainWindow.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/RootLogger.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/RootLogger.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/UpdateCheck.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/UpdateCheck.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/VersionNumberTitleBar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/Graphics/UI/Gtk/Simplify/VersionNumberTitleBar.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/MVC/Model/ProtectedModel/LoggedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/MVC/Model/ProtectedModel/LoggedModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/MVC/Model/ProtectedModel/NamedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/MVC/Model/ProtectedModel/NamedModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/MVC/Model/ProtectedModel/UpdatableModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/MVC/Model/ProtectedModel/UpdatableModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Hails/MVC/Model/ProtectedModel/VersionedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Hails/MVC/Model/ProtectedModel/VersionedModel.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/src/Main.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-solutions-gtk3/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-solutions-gtk3/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/README.md -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/keera-hails-mvc-view-gtk.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/keera-hails-mvc-view-gtk.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/src/Hails/MVC/View/DefaultViewGtk.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/src/Hails/MVC/View/DefaultViewGtk.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/src/Hails/MVC/View/GladeView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/src/Hails/MVC/View/GladeView.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/src/Hails/MVC/View/Gtk/Builder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/src/Hails/MVC/View/Gtk/Builder.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/src/Hails/MVC/View/GtkView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/src/Hails/MVC/View/GtkView.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/src/Hails/MVC/View/GtkView.hs.fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/src/Hails/MVC/View/GtkView.hs.fixed -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/keera-hails-mvc-view-gtk3.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/keera-hails-mvc-view-gtk3.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/src/Hails/MVC/View/DefaultViewGtk.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/src/Hails/MVC/View/DefaultViewGtk.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/src/Hails/MVC/View/GladeView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/src/Hails/MVC/View/GladeView.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/src/Hails/MVC/View/Gtk/Builder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/src/Hails/MVC/View/Gtk/Builder.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/src/Hails/MVC/View/GtkView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/src/Hails/MVC/View/GtkView.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/src/Hails/MVC/View/GtkView.hs.fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/src/Hails/MVC/View/GtkView.hs.fixed -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view-gtk3/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view-gtk3/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view/CHANGELOG -------------------------------------------------------------------------------- /keera-hails-mvc-view/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view/LICENSE -------------------------------------------------------------------------------- /keera-hails-mvc-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view/README.md -------------------------------------------------------------------------------- /keera-hails-mvc-view/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-mvc-view/keera-hails-mvc-view.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view/keera-hails-mvc-view.cabal -------------------------------------------------------------------------------- /keera-hails-mvc-view/src/Hails/MVC/View.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view/src/Hails/MVC/View.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-mvc-view/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-mvc-view/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-cbmvar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-cbmvar/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-cbmvar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-cbmvar/README.md -------------------------------------------------------------------------------- /keera-hails-reactive-cbmvar/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactive-cbmvar/keera-hails-reactive-cbmvar.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-cbmvar/keera-hails-reactive-cbmvar.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-cbmvar/src/Data/CBMVar/Reactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-cbmvar/src/Data/CBMVar/Reactive.hs -------------------------------------------------------------------------------- /keera-hails-reactive-cbmvar/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-cbmvar/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-cbmvar/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-cbmvar/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-cbmvar/tests/hlint.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keera-hails-reactive-fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-fs/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-fs/README.md -------------------------------------------------------------------------------- /keera-hails-reactive-fs/keera-hails-reactive-fs.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-fs/keera-hails-reactive-fs.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-fs/src/Hails/FS.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-fs/src/Hails/FS.hs -------------------------------------------------------------------------------- /keera-hails-reactive-fs/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-fs/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-fs/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-fs/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-fs/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-fs/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/CHANGELOG -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/README.md -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/keera-hails-reactive-gtk.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/keera-hails-reactive-gtk.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Button.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Button.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/CheckMenuItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/CheckMenuItem.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/ColorButton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/ColorButton.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Entry.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Entry.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Gtk2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Gtk2.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Image.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Image.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Label.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Label.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/MenuItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/MenuItem.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Property.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Property.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Scale.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Scale.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/SpinButton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/SpinButton.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/StatusIcon.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/StatusIcon.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/TextView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/TextView.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/ToggleButton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/ToggleButton.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/ToolButton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/ToolButton.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/TreeView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/TreeView.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/TypedComboBoxUnsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/TypedComboBoxUnsafe.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Widget.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Widget.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Window.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/src/Graphics/UI/Gtk/Reactive/Window.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/keera-hails-reactive-gtk3.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/keera-hails-reactive-gtk3.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/Button.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/Button.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/CheckMenuItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/CheckMenuItem.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/Entry.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/Entry.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/Label.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/Label.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/MenuItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/MenuItem.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/Scale.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/Scale.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/SpinButton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/SpinButton.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/TextView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/TextView.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/ToggleButton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/ToggleButton.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/ToolButton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/ToolButton.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/TypedComboBoxUnsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/src/Graphics/UI/Gtk/Reactive/TypedComboBoxUnsafe.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-gtk3/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-gtk3/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-htmldom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-htmldom/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-htmldom/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactive-htmldom/keera-hails-reactive-htmldom.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-htmldom/keera-hails-reactive-htmldom.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-htmldom/src/Hails/MVC/View/HTML.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-htmldom/src/Hails/MVC/View/HTML.hs -------------------------------------------------------------------------------- /keera-hails-reactive-htmldom/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-htmldom/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-htmldom/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-htmldom/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-htmldom/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-htmldom/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-network/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-network/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-network/README.md -------------------------------------------------------------------------------- /keera-hails-reactive-network/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactive-network/keera-hails-reactive-network.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-network/keera-hails-reactive-network.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-network/src/Hails/Network.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-network/src/Hails/Network.hs -------------------------------------------------------------------------------- /keera-hails-reactive-network/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-network/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-network/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-network/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-network/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-network/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-polling/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-polling/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-polling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-polling/README.md -------------------------------------------------------------------------------- /keera-hails-reactive-polling/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactive-polling/keera-hails-reactive-polling.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-polling/keera-hails-reactive-polling.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-polling/src/Hails/Polling.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-polling/src/Hails/Polling.hs -------------------------------------------------------------------------------- /keera-hails-reactive-polling/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-polling/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-polling/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-polling/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-polling/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-polling/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-qt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/.gitignore -------------------------------------------------------------------------------- /keera-hails-reactive-qt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-qt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/README.md -------------------------------------------------------------------------------- /keera-hails-reactive-qt/examples/Example.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/examples/Example.hs -------------------------------------------------------------------------------- /keera-hails-reactive-qt/examples/minimal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/examples/minimal.hs -------------------------------------------------------------------------------- /keera-hails-reactive-qt/examples/reactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/examples/reactive.hs -------------------------------------------------------------------------------- /keera-hails-reactive-qt/hails-reactive-qt.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/hails-reactive-qt.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-qt/src/Graphics/UI/Qt/Reactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/src/Graphics/UI/Qt/Reactive.hs -------------------------------------------------------------------------------- /keera-hails-reactive-qt/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-qt/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-qt/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-qt/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-wx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/.gitignore -------------------------------------------------------------------------------- /keera-hails-reactive-wx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-wx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/README.md -------------------------------------------------------------------------------- /keera-hails-reactive-wx/examples/Calc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/examples/Calc.hs -------------------------------------------------------------------------------- /keera-hails-reactive-wx/examples/Minimal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/examples/Minimal.hs -------------------------------------------------------------------------------- /keera-hails-reactive-wx/examples/calc.wxg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/examples/calc.wxg -------------------------------------------------------------------------------- /keera-hails-reactive-wx/examples/test.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/examples/test.xrc -------------------------------------------------------------------------------- /keera-hails-reactive-wx/keera-hails-reactive-wx.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/keera-hails-reactive-wx.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-wx/src/Graphics/UI/WX/Reactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/src/Graphics/UI/WX/Reactive.hs -------------------------------------------------------------------------------- /keera-hails-reactive-wx/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-wx/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-wx/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-wx/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactive-yampa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-yampa/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactive-yampa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-yampa/README.md -------------------------------------------------------------------------------- /keera-hails-reactive-yampa/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactive-yampa/keera-hails-reactive-yampa.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-yampa/keera-hails-reactive-yampa.cabal -------------------------------------------------------------------------------- /keera-hails-reactive-yampa/src/Hails/Yampa.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-yampa/src/Hails/Yampa.hs -------------------------------------------------------------------------------- /keera-hails-reactive-yampa/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-yampa/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactive-yampa/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-yampa/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactive-yampa/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactive-yampa/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactivelenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivelenses/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactivelenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivelenses/README.md -------------------------------------------------------------------------------- /keera-hails-reactivelenses/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactivelenses/keera-hails-reactivelenses.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivelenses/keera-hails-reactivelenses.cabal -------------------------------------------------------------------------------- /keera-hails-reactivelenses/src/Data/ReactiveLens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivelenses/src/Data/ReactiveLens.hs -------------------------------------------------------------------------------- /keera-hails-reactivelenses/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivelenses/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactivelenses/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivelenses/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactivelenses/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivelenses/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactivelenses/tests/Tasty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivelenses/tests/Tasty.hs -------------------------------------------------------------------------------- /keera-hails-reactivevalues/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/LICENSE -------------------------------------------------------------------------------- /keera-hails-reactivevalues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/README.md -------------------------------------------------------------------------------- /keera-hails-reactivevalues/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails-reactivevalues/keera-hails-reactivevalues.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/keera-hails-reactivevalues.cabal -------------------------------------------------------------------------------- /keera-hails-reactivevalues/src/Control/GFunctor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/src/Control/GFunctor.hs -------------------------------------------------------------------------------- /keera-hails-reactivevalues/src/Data/ReactiveValue.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/src/Data/ReactiveValue.hs -------------------------------------------------------------------------------- /keera-hails-reactivevalues/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails-reactivevalues/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails-reactivevalues/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/tests/HaddockCoverage.hs -------------------------------------------------------------------------------- /keera-hails-reactivevalues/tests/Tasty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails-reactivevalues/tests/Tasty.hs -------------------------------------------------------------------------------- /keera-hails/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/LICENSE -------------------------------------------------------------------------------- /keera-hails/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /keera-hails/keera-hails.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/keera-hails.cabal -------------------------------------------------------------------------------- /keera-hails/src/AppDataBasic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/src/AppDataBasic.hs -------------------------------------------------------------------------------- /keera-hails/src/AppDataFull.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/src/AppDataFull.hs -------------------------------------------------------------------------------- /keera-hails/src/HailsArgs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/src/HailsArgs.hs -------------------------------------------------------------------------------- /keera-hails/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/src/Main.hs -------------------------------------------------------------------------------- /keera-hails/src/System/Application.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/src/System/Application.hs -------------------------------------------------------------------------------- /keera-hails/templates/CombinedEnvironment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/CombinedEnvironment.hs -------------------------------------------------------------------------------- /keera-hails/templates/Controller.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Controller.hs -------------------------------------------------------------------------------- /keera-hails/templates/Controller/Conditions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Controller/Conditions.hs -------------------------------------------------------------------------------- /keera-hails/templates/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Main.hs -------------------------------------------------------------------------------- /keera-hails/templates/Model/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Model/Model.hs -------------------------------------------------------------------------------- /keera-hails/templates/Model/ProtectedModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Model/ProtectedModel.hs -------------------------------------------------------------------------------- /keera-hails/templates/Model/ProtectedModel/ProtectedFields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Model/ProtectedModel/ProtectedFields.hs -------------------------------------------------------------------------------- /keera-hails/templates/Model/ProtectedModel/ProtectedModelInternals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Model/ProtectedModel/ProtectedModelInternals.hs -------------------------------------------------------------------------------- /keera-hails/templates/Model/ReactiveModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Model/ReactiveModel.hs -------------------------------------------------------------------------------- /keera-hails/templates/Model/ReactiveModel/ModelEvents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Model/ReactiveModel/ModelEvents.hs -------------------------------------------------------------------------------- /keera-hails/templates/Model/ReactiveModel/ReactiveFields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Model/ReactiveModel/ReactiveFields.hs -------------------------------------------------------------------------------- /keera-hails/templates/Model/ReactiveModel/ReactiveModelInternals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Model/ReactiveModel/ReactiveModelInternals.hs -------------------------------------------------------------------------------- /keera-hails/templates/Paths.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Paths.hs -------------------------------------------------------------------------------- /keera-hails/templates/Paths/CustomPaths.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/Paths/CustomPaths.hs -------------------------------------------------------------------------------- /keera-hails/templates/View.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/View.hs -------------------------------------------------------------------------------- /keera-hails/templates/View/Objects.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/templates/View/Objects.hs -------------------------------------------------------------------------------- /keera-hails/tests/HLint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/tests/HLint.hs -------------------------------------------------------------------------------- /keera-hails/tests/HLintMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/tests/HLintMain.hs -------------------------------------------------------------------------------- /keera-hails/tests/HaddockCoverage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keera-studios/keera-hails/HEAD/keera-hails/tests/HaddockCoverage.hs --------------------------------------------------------------------------------