forked from fjvallarino/monomer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
25f81c3
commit 8958b65
Showing
4 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,22 +6,23 @@ Maintainer : [email protected] | |
Stability : experimental | ||
Portability : non-portable | ||
This is the package that should be imported by applications. | ||
Main module, re-exporting all the modules of the library. This is the module | ||
that should be imported by applications. | ||
If you want to create custom Widgets, check: | ||
- "Monomer.Widgets.Single" for self contained widgets | ||
- "Monomer.Widgets.Container" for widgets with children | ||
If you don't want to use all the helper modules, or import them unqualified, the | ||
basic modules you will need are these: | ||
If you don't want to use all the helper modules, or you don't want to import | ||
them unqualified, the basic modules you will need are: | ||
- 'Monomer.Common' | ||
- 'Monomer.Core' | ||
- 'Monomer.Event' | ||
- 'Monomer.Graphics' | ||
- 'Monomer.Main' | ||
- 'Monomer.Widgets' | ||
- "Monomer.Common" | ||
- "Monomer.Core" | ||
- "Monomer.Event" | ||
- "Monomer.Graphics" | ||
- "Monomer.Main" | ||
- "Monomer.Widgets" | ||
-} | ||
module Monomer ( | ||
module Monomer.Common, | ||
|
@@ -31,6 +32,7 @@ module Monomer ( | |
module Monomer.Event, | ||
module Monomer.Graphics, | ||
module Monomer.Graphics.ColorTable, | ||
module Monomer.Graphics.RemixIcon, | ||
module Monomer.Main, | ||
module Monomer.Widgets | ||
) where | ||
|
@@ -42,5 +44,6 @@ import Monomer.Core.Themes.SampleThemes | |
import Monomer.Event | ||
import Monomer.Graphics | ||
import Monomer.Graphics.ColorTable | ||
import Monomer.Graphics.RemixIcon | ||
import Monomer.Main | ||
import Monomer.Widgets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{-| | ||
Module : Monomer.Widgets.Util.RemixIcon | ||
Module : Monomer.Graphics.RemixIcon | ||
Copyright : (c) 2018 Francisco Vallarino | ||
License : BSD-3-Clause (see the LICENSE file) | ||
Maintainer : [email protected] | ||
|
@@ -23,7 +23,7 @@ _"remixDeleteBinFill"_). | |
-} | ||
{-# LANGUAGE BinaryLiterals #-} | ||
|
||
module Monomer.Widgets.Util.RemixIcon where | ||
module Monomer.Graphics.RemixIcon where | ||
|
||
import Data.Text (Text) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters