Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help
Special pages
SBGrid Resources
SBGrid Consortium
SBGrid Data Bank
Software Webinars
PyMOL Webinar
PyMOL Wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Plugins Tutorial
(section)
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Filling the GUI with Widgets === [[Image:designer-demo-plugin.png|thumb|right|400px|Screenshot of Qt Designer]] The most convenient and maintainable way to create user interfaces with Qt is by using the [http://doc.qt.io/qt-5/qtdesigner-manual.html Qt Designer]. Follow these steps to get started: # Create a new "Widget" form (New Form > templates/forms > Widget > Create) # Drag widgets like "Push Button" or "Line Edit" into your form # Name your widgets ("objectName" in the "Property Editor"), this name will become a Python variable in your code # Save as a UI file (<code>*.ui</code>) inside the <code>pymol2-demo-plugin</code> directory PyMOL provides a utility function to load a UI file into a parent widget: <code>pymol.Qt.utils.loadUi(filename, widget)</code> <syntaxhighlight lang="python"> # filename of our UI file uifile = os.path.join(os.path.dirname(__file__), 'demowidget.ui') # load the UI file into our dialog from pymol.Qt.utils import loadUi form = loadUi(uifile, dialog) </syntaxhighlight>
Summary:
Please note that all contributions to PyMOL Wiki are considered to be released under the GNU Free Documentation License 1.2 (see
PyMOL Wiki:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
Plugins Tutorial
(section)
Add topic