-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added currency window, filled tables with data
- Loading branch information
Showing
9 changed files
with
500 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,15 @@ | ||
from PyQt5.QtCore import Qt | ||
from PyQt5.QtWidgets import ( | ||
QMainWindow, | ||
) | ||
|
||
from ui.currency import Ui_CurrencyWindow | ||
|
||
|
||
class CurrencyWindow(Ui_CurrencyWindow, QMainWindow): | ||
def __init__(self, parent): | ||
super().__init__(parent, Qt.WindowCloseButtonHint | Qt.WindowMinimizeButtonHint) | ||
self.setupUi(self) | ||
|
||
def init(self): | ||
self.show() |
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
Oops, something went wrong.