2012-10-08 05:26:28 +04:00
|
|
|
name: vty
|
2013-06-02 04:57:04 +04:00
|
|
|
version: 5.0.0
|
2012-10-08 05:26:28 +04:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: AUTHORS
|
|
|
|
maintainer: Corey O'Connor (coreyoconnor@gmail.com)
|
|
|
|
homepage: https://github.com/coreyoconnor/vty
|
|
|
|
category: User Interfaces
|
|
|
|
synopsis: A simple terminal UI library
|
|
|
|
description:
|
2009-09-04 21:29:28 +04:00
|
|
|
vty is terminal GUI library in the niche of ncurses. It is intended to be easy to use, have no
|
|
|
|
confusing corner cases, and good support for common terminal types.
|
|
|
|
.
|
|
|
|
Included in the source distribution is a program test/interactive_terminal_test.hs that
|
|
|
|
demonstrates the various features.
|
|
|
|
.
|
2013-01-28 00:37:04 +04:00
|
|
|
If your terminal is not behaving as expected the results of the vty-interactive-terminal-test
|
|
|
|
executable should be sent to the Vty maintainter to aid in debugging the issue.
|
2009-09-04 21:29:28 +04:00
|
|
|
.
|
|
|
|
Notable infelicities: Sometimes poor efficiency; Assumes UTF-8 character encoding support by the
|
|
|
|
terminal;
|
|
|
|
.
|
2013-06-13 01:45:02 +04:00
|
|
|
Project is hosted on github.com: https:\/\/github.com\/coreyoconnor\/vty
|
2011-05-25 05:07:33 +04:00
|
|
|
.
|
2013-06-13 01:45:02 +04:00
|
|
|
git clone git:\/\/github.com\/coreyoconnor\/vty.git
|
2009-12-29 02:32:18 +03:00
|
|
|
.
|
2009-09-04 21:29:28 +04:00
|
|
|
© 2006-2007 Stefan O'Rear; BSD3 license.
|
2009-12-29 02:32:18 +03:00
|
|
|
.
|
2013-01-28 00:37:04 +04:00
|
|
|
© Corey O'Connor; BSD3 license.
|
2012-10-08 05:26:28 +04:00
|
|
|
-- the test suites require >= 1.17.0
|
|
|
|
cabal-version: >= 1.14.0
|
|
|
|
build-type: Simple
|
2013-05-11 10:23:41 +04:00
|
|
|
data-files: README.md,
|
2012-10-08 05:26:28 +04:00
|
|
|
TODO,
|
|
|
|
AUTHORS,
|
|
|
|
CHANGELOG,
|
|
|
|
LICENSE
|
|
|
|
|
|
|
|
library
|
|
|
|
default-language: Haskell2010
|
|
|
|
build-depends: base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-07-08 00:55:23 +04:00
|
|
|
lens >= 3.9.0.2,
|
2012-10-08 05:26:28 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-08 05:26:28 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
exposed-modules: Graphics.Vty
|
|
|
|
Graphics.Vty.Attributes
|
2013-01-28 00:37:04 +04:00
|
|
|
Graphics.Vty.Error
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.Image
|
|
|
|
Graphics.Vty.Inline
|
2013-07-21 07:29:07 +04:00
|
|
|
Graphics.Vty.Inline.Unsafe
|
2013-01-28 00:37:04 +04:00
|
|
|
Graphics.Vty.LLInput
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.Picture
|
2013-01-28 00:37:04 +04:00
|
|
|
Graphics.Vty.Terminal
|
2013-06-01 17:47:29 +04:00
|
|
|
Graphics.Text.Width
|
2013-07-02 20:42:42 +04:00
|
|
|
-- the modules below are only meant to be used by the tests.
|
|
|
|
Codec.Binary.UTF8.Debug
|
2012-10-08 05:26:28 +04:00
|
|
|
Data.Terminfo.Parse
|
|
|
|
Data.Terminfo.Eval
|
2013-07-02 20:42:42 +04:00
|
|
|
Data.Marshalling
|
|
|
|
Graphics.Vty.Debug
|
|
|
|
Graphics.Vty.DisplayRegion
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.DisplayAttributes
|
2013-06-01 17:47:29 +04:00
|
|
|
Graphics.Vty.Image.Internal
|
2013-07-02 20:42:42 +04:00
|
|
|
Graphics.Vty.PictureToSpans
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.Span
|
2013-07-06 05:36:03 +04:00
|
|
|
Graphics.Vty.Terminal.Mock
|
|
|
|
Graphics.Vty.Terminal.Interface
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.Terminal.MacOSX
|
|
|
|
Graphics.Vty.Terminal.XTermColor
|
|
|
|
Graphics.Vty.Terminal.TerminfoBased
|
|
|
|
|
2013-07-08 00:55:23 +04:00
|
|
|
|
2012-10-08 05:26:28 +04:00
|
|
|
c-sources: cbits/gwinsz.c
|
|
|
|
cbits/set_term_timing.c
|
|
|
|
cbits/mk_wcwidth.c
|
|
|
|
|
|
|
|
include-dirs: cbits
|
|
|
|
|
|
|
|
hs-source-dirs: src
|
|
|
|
|
|
|
|
ghc-options: -O2 -funbox-strict-fields -Wall -fno-full-laziness -fspec-constr -fspec-constr-count=10
|
|
|
|
|
|
|
|
ghc-prof-options: -O2 -funbox-strict-fields -caf-all -Wall -fno-full-laziness -fspec-constr -fspec-constr-count=10
|
|
|
|
|
|
|
|
cc-options: -O2
|
|
|
|
|
|
|
|
test-suite verify-attribute-ops
|
|
|
|
default-language: Haskell2010
|
|
|
|
type: detailed-0.9
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-08 05:26:28 +04:00
|
|
|
test-module: VerifyAttributeOps
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2013-08-13 10:16:35 +04:00
|
|
|
QuickCheck >= 2.6,
|
2012-10-08 05:26:28 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-08 05:26:28 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-08 05:26:28 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2013-08-15 08:32:02 +04:00
|
|
|
test-suite verify-using-mock-terminal
|
2012-10-08 05:26:28 +04:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2013-08-15 08:32:02 +04:00
|
|
|
test-module: VerifyUsingMockTerminal
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-08 05:26:28 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.DisplayRegion
|
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-08 05:26:28 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-08 05:26:28 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-08 05:26:28 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2013-08-15 08:32:02 +04:00
|
|
|
test-suite verify-terminal
|
2013-07-08 10:31:24 +04:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
|
|
|
hs-source-dirs: test
|
|
|
|
|
2013-08-15 08:32:02 +04:00
|
|
|
test-module: VerifyTerminal
|
2013-07-08 10:31:24 +04:00
|
|
|
|
|
|
|
other-modules: Verify
|
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.DisplayRegion
|
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
2013-07-27 12:00:25 +04:00
|
|
|
Verify.Graphics.Vty.Terminal
|
2013-07-08 10:31:24 +04:00
|
|
|
|
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
|
|
|
QuickCheck >= 2.4,
|
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
|
|
|
lens,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
|
|
|
text >= 0.11.3,
|
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2012-10-08 05:33:02 +04:00
|
|
|
test-suite verify-display-attributes
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-08 05:33:02 +04:00
|
|
|
|
|
|
|
test-module: VerifyDisplayAttributes
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-08 05:33:02 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.DisplayRegion
|
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-08 05:33:02 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-08 05:33:02 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-08 05:33:02 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2012-10-08 05:33:02 +04:00
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
test-suite verify-empty-image-props
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyEmptyImageProps
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-10 07:58:00 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-suite verify-eval-terminfo-caps
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyEvalTerminfoCaps
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-10 07:58:00 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-suite verify-image-ops
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyImageOps
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-10 07:58:00 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-suite verify-image-trans
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyImageTrans
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-10 07:58:00 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-suite verify-inline
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyInline
|
|
|
|
|
2013-07-27 12:00:25 +04:00
|
|
|
other-modules: Verify
|
|
|
|
Verify.Graphics.Vty.Terminal
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-10 07:58:00 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-suite verify-parse-terminfo-caps
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyParseTerminfoCaps
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Data.Terminfo.Parse
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-10 07:58:00 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-suite verify-simple-span-generation
|
2012-10-10 07:58:00 +04:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-module: VerifySimpleSpanGeneration
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2013-08-15 23:47:39 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.DisplayRegion
|
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-suite verify-crop-span-generation
|
2012-10-10 07:58:00 +04:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-module: VerifyCropSpanGeneration
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.DisplayRegion
|
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-suite verify-layers-span-generation
|
2012-10-10 07:58:00 +04:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-module: VerifyLayersSpanGeneration
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.DisplayRegion
|
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
test-suite verify-utf8-width
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyUtf8Width
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.17.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-10-10 07:58:00 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2012-12-27 03:40:19 +04:00
|
|
|
executable vty-interactive-terminal-test
|
|
|
|
main-is: interactive_terminal_test.hs
|
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-12-27 03:40:19 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
base >= 4 && < 5,
|
2012-12-27 03:40:19 +04:00
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2012-12-27 03:40:19 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
string-qq,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-12-27 03:40:19 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
2013-01-28 09:41:59 +04:00
|
|
|
executable vty-benchmark
|
2013-01-28 11:08:08 +04:00
|
|
|
main-is: benchmark.hs
|
2013-01-28 09:41:59 +04:00
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2013-01-28 09:41:59 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
|
|
|
base >= 4 && < 5,
|
2013-01-28 09:41:59 +04:00
|
|
|
bytestring,
|
2013-05-11 10:23:41 +04:00
|
|
|
Cabal == 1.17.*,
|
2013-01-28 09:41:59 +04:00
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-05-17 00:44:04 +04:00
|
|
|
lens,
|
2013-01-28 09:41:59 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
2013-05-11 10:23:41 +04:00
|
|
|
QuickCheck >= 2.4,
|
2013-01-28 11:08:08 +04:00
|
|
|
random == 1.0.*,
|
2013-01-28 09:41:59 +04:00
|
|
|
string-qq,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2013-01-28 09:41:59 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
2012-10-08 05:26:28 +04:00
|
|
|
-- ControlTable.hs
|
|
|
|
-- HereDoc.hs
|
|
|
|
-- Test.hs
|
|
|
|
-- Test2.hs
|
|
|
|
-- Verify.hs
|
|
|
|
-- Verify/Data/Terminfo/Parse.hs
|
|
|
|
-- Verify/Graphics/Vty/Attributes.hs
|
|
|
|
-- Verify/Graphics/Vty/DisplayRegion.hs
|
|
|
|
-- Verify/Graphics/Vty/Image.hs
|
|
|
|
-- Verify/Graphics/Vty/Picture.hs
|
|
|
|
-- Verify/Graphics/Vty/Span.hs
|
|
|
|
-- vty_inline_example.hs
|
|
|
|
-- vty_issue_18.hs
|
|
|
|
-- yi_issue_264.hs
|
|
|
|
|