Created
September 4, 2016 19:37
-
-
Save manashmandal/34d91469a100ac9e20253513f126ca09 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from PyQt5.QtWidgets import QSlider, QDialog, QLabel, QHBoxLayout | |
from PyQt5.QtCore import Qt, pyqtSignal | |
class Slider_Dialog(QDialog): | |
# Added a signal | |
changedValue = pyqtSignal(int) | |
def __init__(self): | |
super(Slider_Dialog, self).__init__() | |
self.init_ui() | |
#..................... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment