source: src/mlx/mlx.py@ 35:d32890325137

Last change on this file since 35:d32890325137 was 29:5bcc0ef808c5, checked in by István Váradi <ivaradi@…>, 12 years ago

The status icon and hiding/showing the window works

File size: 280 bytes
RevLine 
[18]1# The main program
2
[28]3from .gui.gui import GUI
[29]4from .gui.common import *
[27]5
[29]6import os
[27]7
[29]8def main(iconDirectory):
9 """The main operation of the program."""
10 gui = GUI()
[27]11
[29]12 gui.build(iconDirectory)
[27]13
[18]14 gui.run()
[27]15
[20]16if __name__ == "__main__":
[29]17 main(os.path.dirname(__file__))
[18]18
19
Note: See TracBrowser for help on using the repository browser.