Skip to content

Commit

Permalink
Merge pull request #17 from asmithie13/Abby_Branch
Browse files Browse the repository at this point in the history
Abby branch
  • Loading branch information
magistroA authored Feb 15, 2024
2 parents 2f159e1 + abd154f commit 60a024b
Show file tree
Hide file tree
Showing 5 changed files with 692 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CTC/CTC.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class CTC:


def __init__(self):
self.stations = ["Station B", "Station A"]

def getStations(self):
return self.stations


18 changes: 18 additions & 0 deletions CTC/CTC_UI.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import sys
from PyQt5 import QtWidgets
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
from PyQt5 import uic
#from UI_temp import MainWindow

class UI(QtWidgets.QMainWindow):
def __init__(self):
super(UI, self).__init__()
uic.loadUi("CTC/CTC_UI.ui", self)
self.show()


test = QtWidgets.QApplication(sys.argv)
window = UI()
test.exec_()
Loading

0 comments on commit 60a024b

Please sign in to comment.