diff options
author | Camil Staps | 2019-10-28 09:24:11 +0100 |
---|---|---|
committer | Camil Staps | 2019-10-28 09:24:11 +0100 |
commit | 1af27a3bb964caad3a1fd5ec80e94e681ae57e10 (patch) | |
tree | 32a6c8f597001c919bda8cd6895511b7f3c48d0d /src/Gtk/Tune.icl | |
parent | Add many functions for action bars, buttons, list stores, tree views, and more (diff) |
Add GtkLabel, GtkGrid, and alignment tuning for GtkWidget
Diffstat (limited to 'src/Gtk/Tune.icl')
-rw-r--r-- | src/Gtk/Tune.icl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Gtk/Tune.icl b/src/Gtk/Tune.icl index d04d691..a275ea2 100644 --- a/src/Gtk/Tune.icl +++ b/src/Gtk/Tune.icl @@ -7,18 +7,6 @@ import Control.Monad import Gtk -instance tune elem (oa,ob) | tune elem oa & tune elem ob -where - tune (a,b) elem = tune a elem >>= tune b - -instance tune elem (oa,ob,oc) | tune elem oa & tune elem ob & tune elem oc -where - tune (a,b,c) elem = tune a elem >>= tune b >>= tune c - -instance tune elem (oa,ob,oc,od) | tune elem oa & tune elem ob & tune elem oc & tune elem od -where - tune (a,b,c,d) elem = tune a elem >>= tune b >>= tune c >>= tune d - (<<@) infixl 2 :: !(GtkM elem) !option -> GtkM elem | tune elem option (<<@) elemf option = elemf >>= tune option |