-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc: added ready-to-use widgets, updated shots
- Loading branch information
1 parent
7942e75
commit b3988e6
Showing
18 changed files
with
83 additions
and
16 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
.. _widgets: | ||
|
||
Ready-to-use widgets | ||
==================== | ||
|
||
As a complement to the :py:mod:`guidata.dataset` module which focus on automatic | ||
GUI generation for data sets editing and display, the :py:mod:`guidata.widgets` | ||
module provides a set of ready-to-use widgets for building interactive GUIs. | ||
|
||
.. note:: Most of the widgets originally come from the `Spyder`_ project | ||
(Copyright © Spyder Project Contributors, MIT-licensed). They were | ||
adapted to be used outside of the Spyder IDE and to be compatible with | ||
guidata internals. | ||
|
||
.. _Spyder: https://github.com/spyder-ide/spyder | ||
|
||
Python console | ||
-------------- | ||
|
||
.. literalinclude:: ../guidata/tests/widgets/test_console.py | ||
:start-after: guitest: | ||
|
||
.. image:: images/screenshots/console.png | ||
|
||
Code editor | ||
----------- | ||
|
||
.. literalinclude:: ../guidata/tests/widgets/test_codeeditor.py | ||
:start-after: guitest: | ||
|
||
.. image:: images/screenshots/codeeditor.png | ||
|
||
Array editor | ||
------------ | ||
|
||
.. literalinclude:: ../guidata/tests/widgets/test_arrayeditor.py | ||
:start-after: guitest: | ||
|
||
.. image:: images/screenshots/arrayeditor.png | ||
|
||
Collection editor | ||
----------------- | ||
|
||
.. literalinclude:: ../guidata/tests/widgets/test_collectionseditor.py | ||
:start-after: guitest: | ||
|
||
.. image:: images/screenshots/collectioneditor.png | ||
|
||
Dataframe editor | ||
---------------- | ||
|
||
.. literalinclude:: ../guidata/tests/widgets/test_dataframeeditor.py | ||
:start-after: guitest: | ||
|
||
.. image:: images/screenshots/dataframeeditor.png | ||
|
||
Import wizard | ||
------------- | ||
|
||
.. literalinclude:: ../guidata/tests/widgets/test_importwizard.py | ||
:start-after: guitest: | ||
|
||
.. image:: images/screenshots/importwizard.png |