public
Description: Repository for a PyObjC project built in one of my tutorial series.
Homepage: http://lethain.com/
Clone URL: git://github.com/lethain/metawindow.git
metawindow / main.py
100644 26 lines (21 sloc) 0.523 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# main.py
# MetaWindow
#
# Created by Will Larson on 8/22/08.
# Copyright Will Larson 2008. All rights reserved.
#
 
#import modules required by application
import objc
import Foundation
import AppKit
 
from PyObjCTools import AppHelper
 
# import modules containing classes required to start application and load MainMenu.nib
import metaweb
import MetaWindowAppDelegate
import MWController
import MWDragWindow
import MWDragArrayController
import MWRowWindowController
 
# pass control to AppKit
AppHelper.runEventLoop()