如何组织GUI代码(用于PyQt)?

时间:2010-08-16 17:37:51

标签: python pyqt4 code-organization

我正在寻找类似的东西 Organizing GUI code,但是对于Python和PyQt4。特别是,我正在查看如何处理和存储配置数据,一般状态等的提示和示例。

编辑: 我在http://www.commandprompt.com/community/pyqt/

下找到了一些关于旧版本的提示

1 个答案:

答案 0 :(得分:8)

以下是我们对一些示例名称及其功能所做的概述(我们在实际应用中有更多功能。)

ProjectFolder/
  - src/
     - my_project/
        - model/
           - preference.py # Interact with config params
           - api.py # Interact with our REST api

        - controller/
           - startup.py # Initialization code
           - login.py # Login a user

        - view/
           - main_window.py # Application container
           - login_widget.py # Login form

        - main.py # Application entry point.

  - tests/
      - my_project_tests/
          - model/ 
          - view/
          - controller/

  - resources/
      - ui/ # The files match basically one to one with the modules in the view directory.
        - main_window.ui
        - login_widget.ui
      - images/
        - logo.png

  - setup.py # Script to build the application (calling into the build_py2exe, etc. files below)
  - build_py2exe.py # Build the py2exe exe 
  - build_py2app.py # Build the py2app app
  - build_win_installer.iss # Package up the py2exe into an installer (Using inno setup).
  - build_dmg.py #Package up the py2app into a DMG

  - runtests.py # Run the tests