Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
44b39799
Commit
44b39799
authored
Jul 14, 2015
by
Sumit Sahrawat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Formatting + Remove examples (for now)
parent
b87b0927
Changes
27
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
113 additions
and
2431 deletions
+113
-2431
IPywidgets in IHaskell.ipynb
...ay/ihaskell-widgets/Examples/IPywidgets in IHaskell.ipynb
+0
-2307
Widgets.hs
...-display/ihaskell-widgets/src/IHaskell/Display/Widgets.hs
+3
-7
CheckBox.hs
...ell-widgets/src/IHaskell/Display/Widgets/Bool/CheckBox.hs
+3
-3
ToggleButton.hs
...widgets/src/IHaskell/Display/Widgets/Bool/ToggleButton.hs
+1
-1
Box.hs
.../ihaskell-widgets/src/IHaskell/Display/Widgets/Box/Box.hs
+4
-5
FlexBox.hs
...skell-widgets/src/IHaskell/Display/Widgets/Box/FlexBox.hs
+8
-9
Accordion.hs
...skell/Display/Widgets/Box/SelectionContainer/Accordion.hs
+6
-6
Tab.hs
...rc/IHaskell/Display/Widgets/Box/SelectionContainer/Tab.hs
+4
-5
Button.hs
...y/ihaskell-widgets/src/IHaskell/Display/Widgets/Button.hs
+1
-1
BoundedFloatText.hs
...ll/Display/Widgets/Float/BoundedFloat/BoundedFloatText.hs
+5
-4
FloatProgress.hs
...skell/Display/Widgets/Float/BoundedFloat/FloatProgress.hs
+5
-5
FloatSlider.hs
...Haskell/Display/Widgets/Float/BoundedFloat/FloatSlider.hs
+9
-11
FloatRangeSlider.hs
...splay/Widgets/Float/BoundedFloatRange/FloatRangeSlider.hs
+10
-9
FloatText.hs
...l-widgets/src/IHaskell/Display/Widgets/Float/FloatText.hs
+6
-5
Image.hs
...ay/ihaskell-widgets/src/IHaskell/Display/Widgets/Image.hs
+1
-1
BoundedIntText.hs
...IHaskell/Display/Widgets/Int/BoundedInt/BoundedIntText.hs
+4
-4
IntProgress.hs
...rc/IHaskell/Display/Widgets/Int/BoundedInt/IntProgress.hs
+6
-8
IntSlider.hs
.../src/IHaskell/Display/Widgets/Int/BoundedInt/IntSlider.hs
+9
-11
IntRangeSlider.hs
...ell/Display/Widgets/Int/BoundedIntRange/IntRangeSlider.hs
+8
-8
IntText.hs
...skell-widgets/src/IHaskell/Display/Widgets/Int/IntText.hs
+4
-4
Dropdown.hs
...idgets/src/IHaskell/Display/Widgets/Selection/Dropdown.hs
+1
-1
RadioButtons.hs
...ts/src/IHaskell/Display/Widgets/Selection/RadioButtons.hs
+1
-1
Select.hs
...-widgets/src/IHaskell/Display/Widgets/Selection/Select.hs
+3
-3
SelectMultiple.hs
.../src/IHaskell/Display/Widgets/Selection/SelectMultiple.hs
+3
-3
ToggleButtons.hs
...s/src/IHaskell/Display/Widgets/Selection/ToggleButtons.hs
+1
-1
Text.hs
...skell-widgets/src/IHaskell/Display/Widgets/String/Text.hs
+4
-5
TextArea.hs
...l-widgets/src/IHaskell/Display/Widgets/String/TextArea.hs
+3
-3
No files found.
ihaskell-display/ihaskell-widgets/Examples/IPywidgets in IHaskell.ipynb
deleted
100644 → 0
View file @
b87b0927
This diff is collapsed.
Click to expand it.
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets.hs
View file @
44b39799
...
...
@@ -40,10 +40,6 @@ import IHaskell.Display.Widgets.String.TextArea as X
import
IHaskell.Display.Widgets.Common
as
X
import
IHaskell.Display.Widgets.Types
as
X
(
setField
,
getField
,
properties
)
import
IHaskell.Display.Widgets.Types
as
X
(
triggerDisplay
,
triggerChange
,
triggerClick
,
triggerSelection
,
triggerSubmit
,
ChildWidget
(
..
)
)
import
IHaskell.Display.Widgets.Types
as
X
(
triggerDisplay
,
triggerChange
,
triggerClick
,
triggerSelection
,
triggerSubmit
,
ChildWidget
(
..
))
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Bool/CheckBox.hs
View file @
44b39799
...
...
@@ -5,9 +5,9 @@
module
IHaskell.Display.Widgets.Bool.CheckBox
(
-- * The CheckBox Widget
CheckBox
,
-- * Constructor
mkCheckBox
)
where
CheckBox
,
-- * Constructor
mkCheckBox
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Bool/ToggleButton.hs
View file @
44b39799
...
...
@@ -5,7 +5,7 @@
module
IHaskell.Display.Widgets.Bool.ToggleButton
(
-- * The ToggleButton Widget
ToggleButton
,
ToggleButton
,
-- * Constructor
mkToggleButton
)
where
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Box/Box.hs
View file @
44b39799
...
...
@@ -4,11 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Box.Box
(
-- * The Box widget
Box
,
-- * Constructor
mkBox
,
)
where
-- * The Box widget
Box
,
-- * Constructor
mkBox
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Box/FlexBox.hs
View file @
44b39799
...
...
@@ -4,11 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Box.FlexBox
(
-- * The FlexBox widget
FlexBox
,
-- * Constructor
mkFlexBox
,
)
where
-- * The FlexBox widget
FlexBox
,
-- * Constructor
mkFlexBox
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
@@ -38,10 +37,10 @@ mkFlexBox = do
let
boxAttrs
=
defaultBoxWidget
"FlexBoxView"
flxAttrs
=
(
SOrientation
=::
HorizontalOrientation
)
:&
(
SFlex
=::
0
)
:&
(
SPack
=::
StartLocation
)
:&
(
SAlign
=::
StartLocation
)
:&
RNil
:&
(
SFlex
=::
0
)
:&
(
SPack
=::
StartLocation
)
:&
(
SAlign
=::
StartLocation
)
:&
RNil
widgetState
=
WidgetState
$
boxAttrs
<+>
flxAttrs
stateIO
<-
newIORef
widgetState
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Box/SelectionContainer/Accordion.hs
View file @
44b39799
...
...
@@ -4,11 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Box.SelectionContainer.Accordion
(
-- * The Accordion widget
Accordion
,
-- * Constructor
mkAccordion
,
)
where
-- * The Accordion widget
Accordion
,
-- * Constructor
mkAccordion
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
@@ -42,7 +41,8 @@ mkAccordion = do
stateIO
<-
newIORef
widgetState
let
box
=
IPythonWidget
uuid
stateIO
initData
=
object
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.Accordion"
]
initData
=
object
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.Accordion"
]
-- Open a comm for this widget, and store it in the kernel state
widgetSendOpen
box
initData
$
toJSON
widgetState
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Box/SelectionContainer/Tab.hs
View file @
44b39799
...
...
@@ -4,11 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Box.SelectionContainer.Tab
(
-- * The Tab widget
TabWidget
,
-- * Constructor
mkTabWidget
,
)
where
-- * The Tab widget
TabWidget
,
-- * Constructor
mkTabWidget
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Button.hs
View file @
44b39799
...
...
@@ -5,7 +5,7 @@
module
IHaskell.Display.Widgets.Button
(
-- * The Button Widget
Button
,
Button
,
-- * Create a new button
mkButton
)
where
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Float/BoundedFloat/BoundedFloatText.hs
View file @
44b39799
...
...
@@ -4,10 +4,11 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Float.BoundedFloat.BoundedFloatText
(
-- * The BoundedFloatText Widget
BoundedFloatText
,
-- * Constructor
mkBoundedFloatText
)
where
-- * The BoundedFloatText
-- Widget
BoundedFloatText
,
-- * Constructor
mkBoundedFloatText
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Float/BoundedFloat/FloatProgress.hs
View file @
44b39799
...
...
@@ -4,15 +4,15 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Float.BoundedFloat.FloatProgress
(
-- * The FloatProgress Widget
FloatProgress
,
-- * Constructor
mkFloatProgress
)
where
-- * The FloatProgress Widget
FloatProgress
,
-- * Constructor
mkFloatProgress
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
import
Control.Exception
(
throw
,
ArithException
(
LossOfPrecision
))
import
Control.Exception
(
throw
,
ArithException
(
LossOfPrecision
))
import
Control.Monad
(
when
,
join
)
import
Data.Aeson
import
qualified
Data.HashMap.Strict
as
HM
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Float/BoundedFloat/FloatSlider.hs
View file @
44b39799
...
...
@@ -4,10 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Float.BoundedFloat.FloatSlider
(
-- * The FloatSlider Widget
FloatSlider
,
-- * Constructor
mkFloatSlider
)
where
-- * The FloatSlider Widget
FloatSlider
,
-- * Constructor
mkFloatSlider
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
@@ -38,19 +38,17 @@ mkFloatSlider = do
let
boundedFloatAttrs
=
defaultBoundedFloatWidget
"FloatSliderView"
sliderAttrs
=
(
SOrientation
=::
HorizontalOrientation
)
:&
(
SShowRange
=::
False
)
:&
(
SReadOut
=::
True
)
:&
(
SSliderColor
=::
""
)
:&
RNil
:&
(
SShowRange
=::
False
)
:&
(
SReadOut
=::
True
)
:&
(
SSliderColor
=::
""
)
:&
RNil
widgetState
=
WidgetState
$
boundedFloatAttrs
<+>
sliderAttrs
stateIO
<-
newIORef
widgetState
let
widget
=
IPythonWidget
uuid
stateIO
initData
=
object
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.FloatSlider"
]
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.FloatSlider"
]
-- Open a comm for this widget, and store it in the kernel state
widgetSendOpen
widget
initData
$
toJSON
widgetState
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Float/BoundedFloatRange/FloatRangeSlider.hs
View file @
44b39799
...
...
@@ -4,15 +4,16 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Float.BoundedFloatRange.FloatRangeSlider
(
-- * The FloatRangeSlider Widget
FloatRangeSlider
,
-- * Constructor
mkFloatRangeSlider
)
where
-- * The FloatRangeSlider
-- Widget
FloatRangeSlider
,
-- * Constructor
mkFloatRangeSlider
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
import
Control.Exception
(
throw
,
ArithException
(
LossOfPrecision
))
import
Control.Exception
(
throw
,
ArithException
(
LossOfPrecision
))
import
Control.Monad
(
when
,
join
,
void
)
import
Data.Aeson
import
qualified
Data.HashMap.Strict
as
HM
...
...
@@ -40,10 +41,10 @@ mkFloatRangeSlider = do
let
boundedFloatAttrs
=
defaultBoundedFloatRangeWidget
"FloatSliderView"
sliderAttrs
=
(
SOrientation
=::
HorizontalOrientation
)
:&
(
SShowRange
=::
True
)
:&
(
SReadOut
=::
True
)
:&
(
SSliderColor
=::
""
)
:&
RNil
:&
(
SShowRange
=::
True
)
:&
(
SReadOut
=::
True
)
:&
(
SSliderColor
=::
""
)
:&
RNil
widgetState
=
WidgetState
$
boundedFloatAttrs
<+>
sliderAttrs
stateIO
<-
newIORef
widgetState
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Float/FloatText.hs
View file @
44b39799
...
...
@@ -4,10 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Float.FloatText
(
-- * The FloatText Widget
FloatText
,
-- * Constructor
mkFloatText
)
where
-- * The FloatText Widget
FloatText
,
-- * Constructor
mkFloatText
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
@@ -41,7 +41,8 @@ mkFloatText = do
stateIO
<-
newIORef
widgetState
let
widget
=
IPythonWidget
uuid
stateIO
initData
=
object
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.FloatText"
]
initData
=
object
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.FloatText"
]
-- Open a comm for this widget, and store it in the kernel state
widgetSendOpen
widget
initData
$
toJSON
widgetState
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Image.hs
View file @
44b39799
...
...
@@ -5,7 +5,7 @@
module
IHaskell.Display.Widgets.Image
(
-- * The Image Widget
ImageWidget
,
ImageWidget
,
-- * Constructor
mkImageWidget
)
where
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Int/BoundedInt/BoundedIntText.hs
View file @
44b39799
...
...
@@ -4,10 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Int.BoundedInt.BoundedIntText
(
-- * The BoundedIntText Widget
BoundedIntText
,
-- * Constructor
mkBoundedIntText
)
where
-- * The BoundedIntText Widget
BoundedIntText
,
-- * Constructor
mkBoundedIntText
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Int/BoundedInt/IntProgress.hs
View file @
44b39799
...
...
@@ -4,15 +4,15 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Int.BoundedInt.IntProgress
(
-- * The IntProgress Widget
IntProgress
,
-- * Constructor
mkIntProgress
)
where
-- * The IntProgress Widget
IntProgress
,
-- * Constructor
mkIntProgress
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
import
Control.Exception
(
throw
,
ArithException
(
LossOfPrecision
))
import
Control.Exception
(
throw
,
ArithException
(
LossOfPrecision
))
import
Control.Monad
(
when
,
join
)
import
Data.Aeson
import
qualified
Data.HashMap.Strict
as
HM
...
...
@@ -45,9 +45,7 @@ mkIntProgress = do
let
widget
=
IPythonWidget
uuid
stateIO
initData
=
object
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.IntProgress"
]
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.IntProgress"
]
-- Open a comm for this widget, and store it in the kernel state
widgetSendOpen
widget
initData
$
toJSON
widgetState
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Int/BoundedInt/IntSlider.hs
View file @
44b39799
...
...
@@ -4,10 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Int.BoundedInt.IntSlider
(
-- * The IntSlider Widget
IntSlider
,
-- * Constructor
mkIntSlider
)
where
-- * The IntSlider Widget
IntSlider
,
-- * Constructor
mkIntSlider
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
@@ -38,19 +38,17 @@ mkIntSlider = do
let
boundedIntAttrs
=
defaultBoundedIntWidget
"IntSliderView"
sliderAttrs
=
(
SOrientation
=::
HorizontalOrientation
)
:&
(
SShowRange
=::
False
)
:&
(
SReadOut
=::
True
)
:&
(
SSliderColor
=::
""
)
:&
RNil
:&
(
SShowRange
=::
False
)
:&
(
SReadOut
=::
True
)
:&
(
SSliderColor
=::
""
)
:&
RNil
widgetState
=
WidgetState
$
boundedIntAttrs
<+>
sliderAttrs
stateIO
<-
newIORef
widgetState
let
widget
=
IPythonWidget
uuid
stateIO
initData
=
object
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.IntSlider"
]
[
"model_name"
.=
str
"WidgetModel"
,
"widget_class"
.=
str
"IPython.IntSlider"
]
-- Open a comm for this widget, and store it in the kernel state
widgetSendOpen
widget
initData
$
toJSON
widgetState
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Int/BoundedIntRange/IntRangeSlider.hs
View file @
44b39799
...
...
@@ -4,10 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Int.BoundedIntRange.IntRangeSlider
(
-- * The IntRangeSlider Widget
IntRangeSlider
,
-- * Constructor
mkIntRangeSlider
)
where
-- * The IntRangeSlider Widget
IntRangeSlider
,
-- * Constructor
mkIntRangeSlider
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
@@ -39,10 +39,10 @@ mkIntRangeSlider = do
let
boundedIntAttrs
=
defaultBoundedIntRangeWidget
"IntSliderView"
sliderAttrs
=
(
SOrientation
=::
HorizontalOrientation
)
:&
(
SShowRange
=::
True
)
:&
(
SReadOut
=::
True
)
:&
(
SSliderColor
=::
""
)
:&
RNil
:&
(
SShowRange
=::
True
)
:&
(
SReadOut
=::
True
)
:&
(
SSliderColor
=::
""
)
:&
RNil
widgetState
=
WidgetState
$
boundedIntAttrs
<+>
sliderAttrs
stateIO
<-
newIORef
widgetState
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Int/IntText.hs
View file @
44b39799
...
...
@@ -4,10 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.Int.IntText
(
-- * The IntText Widget
IntText
,
-- * Constructor
mkIntText
)
where
-- * The IntText Widget
IntText
,
-- * Constructor
mkIntText
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Selection/Dropdown.hs
View file @
44b39799
...
...
@@ -5,7 +5,7 @@
module
IHaskell.Display.Widgets.Selection.Dropdown
(
-- * The Dropdown Widget
Dropdown
,
Dropdown
,
-- * Constructor
mkDropdown
)
where
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Selection/RadioButtons.hs
View file @
44b39799
...
...
@@ -5,7 +5,7 @@
module
IHaskell.Display.Widgets.Selection.RadioButtons
(
-- * The RadioButtons Widget
RadioButtons
,
RadioButtons
,
-- * Constructor
mkRadioButtons
)
where
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Selection/Select.hs
View file @
44b39799
...
...
@@ -5,9 +5,9 @@
module
IHaskell.Display.Widgets.Selection.Select
(
-- * The Select Widget
Select
,
-- * Constructor
mkSelect
)
where
Select
,
-- * Constructor
mkSelect
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Selection/SelectMultiple.hs
View file @
44b39799
...
...
@@ -5,9 +5,9 @@
module
IHaskell.Display.Widgets.Selection.SelectMultiple
(
-- * The SelectMultiple Widget
SelectMultiple
,
-- * Constructor
mkSelectMultiple
)
where
SelectMultiple
,
-- * Constructor
mkSelectMultiple
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/Selection/ToggleButtons.hs
View file @
44b39799
...
...
@@ -5,7 +5,7 @@
module
IHaskell.Display.Widgets.Selection.ToggleButtons
(
-- * The ToggleButtons Widget
ToggleButtons
,
ToggleButtons
,
-- * Constructor
mkToggleButtons
)
where
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/String/Text.hs
View file @
44b39799
...
...
@@ -4,11 +4,10 @@
{-# LANGUAGE TypeSynonymInstances #-}
module
IHaskell.Display.Widgets.String.Text
(
-- * The Text Widget
TextWidget
,
-- * Constructor
mkTextWidget
,
)
where
-- * The Text Widget
TextWidget
,
-- * Constructor
mkTextWidget
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
ihaskell-display/ihaskell-widgets/src/IHaskell/Display/Widgets/String/TextArea.hs
View file @
44b39799
...
...
@@ -5,9 +5,9 @@
module
IHaskell.Display.Widgets.String.TextArea
(
-- * The TextArea Widget
TextArea
,
-- * Constructor
mkTextArea
)
where
TextArea
,
-- * Constructor
mkTextArea
)
where
-- To keep `cabal repl` happy when running from the ihaskell repo
import
Prelude
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment