diff options
| author | DH4 | 2017-06-23 17:38:05 -0500 |
|---|---|---|
| committer | DH4 | 2017-06-23 17:38:05 -0500 |
| commit | e92e9d79f95ad67e83074ef318278c3486601eac (patch) | |
| tree | ea6f8d9e8f0e9c7acbc807a2ec74a397ce34a9ed /src/components | |
| parent | f3da72ea5402d5cd1f865b56c0a9aa3b9f3957f4 (diff) | |
QT5 Conversion + Directory Structure
Diffstat (limited to '')
| -rw-r--r-- | src/components/__base__.py (renamed from components/__base__.py) | 2 | ||||
| -rw-r--r-- | src/components/__init__.py (renamed from components/__init__.py) | 0 | ||||
| -rw-r--r-- | src/components/color.py (renamed from components/color.py) | 4 | ||||
| -rw-r--r-- | src/components/color.ui (renamed from components/color.ui) | 0 | ||||
| -rw-r--r-- | src/components/image.py (renamed from components/image.py) | 2 | ||||
| -rw-r--r-- | src/components/image.ui (renamed from components/image.ui) | 0 | ||||
| -rw-r--r-- | src/components/original.py (renamed from components/original.py) | 4 | ||||
| -rw-r--r-- | src/components/original.ui (renamed from components/original.ui) | 0 | ||||
| -rw-r--r-- | src/components/text.py (renamed from components/text.py) | 4 | ||||
| -rw-r--r-- | src/components/text.ui (renamed from components/text.ui) | 0 | ||||
| -rw-r--r-- | src/components/video.py (renamed from components/video.py) | 2 | ||||
| -rw-r--r-- | src/components/video.ui (renamed from components/video.ui) | 0 |
12 files changed, 9 insertions, 9 deletions
diff --git a/components/__base__.py b/src/components/__base__.py index bef7f0e..a4677b1 100644 --- a/components/__base__.py +++ b/src/components/__base__.py @@ -1,4 +1,4 @@ -from PyQt4 import QtGui, QtCore +from PyQt5 import QtGui, QtCore, QtWidgets from PIL import Image import os diff --git a/components/__init__.py b/src/components/__init__.py index 8b13789..8b13789 100644 --- a/components/__init__.py +++ b/src/components/__init__.py diff --git a/components/color.py b/src/components/color.py index 5ffcdea..8f9a1d1 100644 --- a/components/color.py +++ b/src/components/color.py @@ -1,6 +1,6 @@ from PIL import Image, ImageDraw -from PyQt4 import uic, QtGui, QtCore -from PyQt4.QtGui import QColor +from PyQt5 import uic, QtGui, QtCore +from PyQt5.QtGui import QColor from PIL.ImageQt import ImageQt import os from . import __base__ diff --git a/components/color.ui b/src/components/color.ui index a9dacea..a9dacea 100644 --- a/components/color.ui +++ b/src/components/color.ui diff --git a/components/image.py b/src/components/image.py index f8ae64e..8ca88d3 100644 --- a/components/image.py +++ b/src/components/image.py @@ -1,5 +1,5 @@ from PIL import Image, ImageDraw -from PyQt4 import uic, QtGui, QtCore +from PyQt5 import uic, QtGui, QtCore, QtWidgets import os from . import __base__ diff --git a/components/image.ui b/src/components/image.ui index 6df03a5..6df03a5 100644 --- a/components/image.ui +++ b/src/components/image.ui diff --git a/components/original.py b/src/components/original.py index 6222157..61f463d 100644 --- a/components/original.py +++ b/src/components/original.py @@ -1,7 +1,7 @@ import numpy from PIL import Image, ImageDraw -from PyQt4 import uic, QtGui, QtCore -from PyQt4.QtGui import QColor +from PyQt5 import uic, QtGui, QtCore +from PyQt5.QtGui import QColor import os from . import __base__ import time diff --git a/components/original.ui b/src/components/original.ui index 5808653..5808653 100644 --- a/components/original.ui +++ b/src/components/original.ui diff --git a/components/text.py b/src/components/text.py index 2375dcd..0f599ed 100644 --- a/components/text.py +++ b/src/components/text.py @@ -1,6 +1,6 @@ from PIL import Image, ImageDraw -from PyQt4.QtGui import QPainter, QColor, QFont -from PyQt4 import uic, QtGui, QtCore +from PyQt5.QtGui import QPainter, QColor, QFont +from PyQt5 import uic, QtGui, QtCore from PIL.ImageQt import ImageQt import os import io diff --git a/components/text.ui b/src/components/text.ui index 05e7f8e..05e7f8e 100644 --- a/components/text.ui +++ b/src/components/text.ui diff --git a/components/video.py b/src/components/video.py index 1d250bd..58ce7a3 100644 --- a/components/video.py +++ b/src/components/video.py @@ -1,5 +1,5 @@ from PIL import Image, ImageDraw -from PyQt4 import uic, QtGui, QtCore +from PyQt5 import uic, QtGui, QtCore import os import subprocess import threading diff --git a/components/video.ui b/src/components/video.ui index f05e8a5..f05e8a5 100644 --- a/components/video.ui +++ b/src/components/video.ui |
