summaryrefslogtreecommitdiff
path: root/src/Gtk/Tune.icl
diff options
context:
space:
mode:
authorCamil Staps2019-10-28 09:24:11 +0100
committerCamil Staps2019-10-28 09:24:11 +0100
commit1af27a3bb964caad3a1fd5ec80e94e681ae57e10 (patch)
tree32a6c8f597001c919bda8cd6895511b7f3c48d0d /src/Gtk/Tune.icl
parentAdd 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.icl12
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