Update README.

pull/1/head
Ivan Olexyn 6 years ago
parent 9e20b7c5d2
commit 0614c4dae4

@ -6,7 +6,16 @@ This is a frontend for the collection of tools used by the zebra.
### Contents
| File | Description |
|---|---|
|`wiondow.py` | The main window. Run from here.|
| `oneDimView.py` | Widget containing the 1D Mode.|
| `plot_canvas.py` | Example of a plot. Used by `window.py`. To reuse.|
| `prepareView.py` | Widget containing the Prepare Mode.|
| `tab.py` | Example of a tab. Standalone.|
| `test_a_widget.py` | Window wrapper for easy testing of Widgets.|
| `tools.py` | Tools used by Widgets.|
| `twoDimView.py` | Widget containing the 2D Mode.|
| `welcomeView.py` | Widget containing the Welcome Screen.|
| `window.py` | Example of a button based interface. Standalone. Legacy. |
| `zebra.py` | Main Window of the application. Run from here.
<br>

@ -2,8 +2,7 @@ import sys
from PyQt5.QtWidgets import QMainWindow, QApplication, QPushButton,QLabel, QVBoxLayout, QWidget
from two_d_mode import TwoDMode
from one_d_mode import OneDMode, OneDTable
@ -17,7 +16,7 @@ class TestAWidget(QMainWindow):
super().__init__()
self.testWidget = OneDMode()
self.testWidget = QPushButton()

Loading…
Cancel
Save