Created
          August 26, 2015 15:13 
        
      - 
      
- 
        Save saleph/a301957b16dff7ad2892 to your computer and use it in GitHub Desktop. 
    [qt5] grid layout - calculator skeleton
  
        
  
    
      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
    
  
  
    
  | __author__ = 'tom' | |
| import sys | |
| from PyQt5.QtWidgets import (QWidget, QGridLayout, | |
| QPushButton, QApplication) | |
| class Example(QWidget): | |
| def __init__(self): | |
| super().__init__() | |
| self.init_ui() | |
| def init_ui(self): | |
| grid = QGridLayout() | |
| self.setLayout(grid) | |
| names = ['Cls', 'Bck', '', 'Close', | |
| '7', '8', '9', '/', | |
| '4', '5', '6', '*', | |
| '1', '2', '3', '-', | |
| '0', '.', '=', '+'] | |
| positions = [(i,j) for i in range(5) for j in range(4)] | |
| for position, name in zip(positions, names): | |
| if name == '': | |
| continue | |
| btn = QPushButton(name) | |
| grid.addWidget(btn, *position) | |
| self.move(300,150) | |
| self.setWindowTitle('Calculator') | |
| self.show() | |
| if __name__ == "__main__": | |
| app = QApplication(sys.argv) | |
| ex = Example() | |
| sys.exit(app.exec_()) | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment