Advertisement
Guest User

PyQt5 ply B

a guest
Oct 15th, 2021
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 6.74 KB | None | 0 0
  1. class MainWindow(QMainWindow, Ui_MainWindow,):                
  2.     def __init__(self):                        
  3.         super().__init__()    
  4.        
  5.         self.setupUi(self)
  6.  
  7.         self.setWindowFlags(QtCore.Qt.FramelessWindowHint)
  8.         self.old_pos = None
  9.  
  10.        
  11.         self.listWidget.clear()
  12.         self.listWidget.itemClicked.connect(self.onClicked)
  13.        
  14.         self.pushbutton_close = QPushButton('✖', self)
  15.  
  16.         self.pushbutton_stop = QPushButton('✘', self)
  17.        
  18.         self.pushbutton_pause = QPushButton('■', self)
  19.        
  20.         self.pushbutton_remove = QPushButton('⏵', self)
  21.  
  22.         self.btn = QPushButton('FILE', self)
  23.  
  24.    
  25.         self.itemlist = ['ВыборПапкиНаFile']
  26.         self.listWidget.addItems(self.itemlist)
  27.  
  28.         self.pushbutton_close.clicked.connect(self.close)
  29.         self.pushbutton_close.setStyleSheet("border:none;background-color: rgb(255, 51, 11);color: rgb(255, 255, 255);")
  30.         self.pushbutton_close.move(200,500)
  31.         self.pushbutton_close.setGeometry(560, 0, 40, 20)
  32.  
  33.         self.pushbutton_stop.clicked.connect(self.clickstop)
  34.         self.pushbutton_stop.setStyleSheet("background-color: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0.113636 rgba(0, 62, 79, 147), stop:0.306818 rgba(28, 14, 68, 156));background-color: rgb(130, 68, 206);")
  35.         self.pushbutton_stop.move(200,500)
  36.         self.pushbutton_stop.setGeometry(0, 310, 40, 20)
  37.        
  38.         self.pushbutton_pause.clicked.connect(self.clickpause)
  39.         self.pushbutton_pause.setStyleSheet("background-color: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0.113636 rgba(0, 62, 79, 147), stop:0.306818 rgba(28, 14, 68, 156));background-color: rgb(130, 68, 206);")
  40.         self.pushbutton_pause.move(200,500)
  41.         self.pushbutton_pause.setGeometry(38, 310, 40, 20)
  42.        
  43.         self.pushbutton_remove.clicked.connect(self.clickremove)
  44.         self.pushbutton_remove.setStyleSheet("background-color: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0.113636 rgba(0, 62, 79, 147), stop:0.306818 rgba(28, 14, 68, 156));background-color: rgb(130, 68, 206);")
  45.         self.pushbutton_remove.move(200,500)
  46.         self.pushbutton_remove.setGeometry(0, 310, 40, 20)
  47.  
  48.         self.btn.clicked.connect(self.update_dir)
  49.         self.btn.setStyleSheet("border:none;background-color: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0.113636 rgba(0, 62, 79, 147), stop:0.306818 rgba(28, 14, 68, 156));background-color: rgb(130, 68, 206);")
  50.         self.btn.move(200,500)
  51.         self.btn.setGeometry(600, 0, 40, 20)
  52.        
  53.         self.pushbutton_stop.hide()
  54.         self.pushbutton_remove.hide()
  55.         self.pushbutton_pause.hide()
  56.         self.listWidget.itemClicked.connect(self.onClicked)
  57.  
  58.     def onClicked(self, item):      #Самая важная часть, при нажатии на элемент списка начинает проигрываться музыка из папки.
  59.         path='2HYI.gif'
  60.         gif = QtGui.QMovie(path)
  61.         self.label.setMovie(gif)
  62.         gif.start()
  63.         try:
  64.             path_file = item.data(QtCore.Qt.UserRole)
  65.             with open(path_file, 'r') as file:
  66.                 self.pushbutton_remove.hide()
  67.                 self.pushbutton_stop.show()
  68.                 self.pushbutton_pause.show()
  69.            
  70.                 pygame.init()
  71.                 name = item.text()
  72.                 pygame.mixer.music.load(name)
  73.                 pygame.mixer.music.play(1)
  74.         except Exception:
  75.             self.pushbutton_stop.hide()
  76.             self.pushbutton_pause.hide()
  77.             self.pushbutton_remove.hide()
  78.  
  79.  
  80.     def close(self):
  81.         exit()
  82.    
  83.     def clickstop(self):            #!!!
  84.         path='2HYI.gif'
  85.         gif = QtGui.QMovie(path)
  86.         self.label.setMovie(gif)
  87.         gif.stop()
  88.         self.label.setPixmap(QtGui.QPixmap("2HYI.gif"))
  89.         try:
  90.             self.pushbutton_stop.hide()
  91.             self.pushbutton_pause.hide()
  92.             self.pushbutton_remove.hide()
  93.             pygame.mixer.music.stop()
  94.             pygame.quit()
  95.         except Exception:
  96.             pass
  97.    
  98.     def clickpause(self):                   #!!!
  99.         path='2HYI.gif'
  100.         gif = QtGui.QMovie(path)
  101.         self.label.setMovie(gif)
  102.         gif.stop()
  103.         self.label.setPixmap(QtGui.QPixmap("2HYI.gif"))
  104.         try:
  105.             self.pushbutton_pause.hide()
  106.             self.pushbutton_remove.show()
  107.            
  108.             pygame.mixer.music.pause()
  109.         except Exception:
  110.             pass
  111.    
  112.     def clickremove(self):                  #!!!
  113.         path='2HYI.gif'
  114.         gif = QtGui.QMovie(path)
  115.         self.label.setMovie(gif)
  116.         gif.start()
  117.         try:
  118.             self.pushbutton_pause.show()
  119.             self.pushbutton_remove.hide()
  120.            
  121.             pygame.mixer.music.unpause()
  122.         except Exception:
  123.             pass
  124.        
  125.     def closeEvent(self, event):            #!!!
  126.         try:
  127.             pygame.mixer.music.stop()
  128.             pygame.quit()
  129.         except Exception:
  130.             pass
  131.         finally:
  132.             pygame.quit()
  133.  
  134.  
  135.  
  136.  
  137.     def update_dir(self):                                               #!!!
  138.         path='2HYI.gif'
  139.         gif = QtGui.QMovie(path)
  140.         self.label.setMovie(gif)
  141.         gif.stop()
  142.         self.label.setPixmap(QtGui.QPixmap("2HYI.gif"))
  143.         try:
  144.             self.pushbutton_pause.hide()
  145.             self.pushbutton_remove.show()
  146.            
  147.             pygame.mixer.music.pause()
  148.         except Exception:
  149.             pass
  150.         directory = QFileDialog.getExistingDirectory(
  151.             self,
  152.             "QFileDialog.getExistingDirectory()",
  153.             '.'
  154.         )
  155.         if directory:
  156.             _list = [ file for file in os.listdir(f"{directory}") if file.endswith(".mp3") ] #/*.txt")]
  157.             if not _list:
  158.                 return
  159.             self.listWidget.clear()
  160.             for i, item in enumerate(_list):
  161.                 self.listWidget.addItem(item)
  162.                 item_data = os.path.join(directory, item).replace('\\', '/')
  163.                 self.listWidget.item(i).setData(QtCore.Qt.UserRole, item_data)
  164.  
  165.     def mousePressEvent(self, event):        
  166.         if event.button() == QtCore.Qt.LeftButton:
  167.             self.old_pos = event.pos()
  168.  
  169.  
  170.     def mouseReleaseEvent(self, event):
  171.         if event.button() == QtCore.Qt.LeftButton:
  172.             self.old_pos = None
  173.  
  174.  
  175.     def mouseMoveEvent(self, event):
  176.         if not self.old_pos:
  177.             return
  178.         delta = event.pos() - self.old_pos
  179.         self.move(self.pos() + delta)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement