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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
#
# gpdf2swf.py
# graphical user interface for pdf2swf
#
# Part of the swftools package.
#
# Copyright (c) 2008,2009 Matthias Kramm <kramm@quiss.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
from __future__ import division
import __builtin__
import os
import sys
#import imp
#def main_is_frozen():
# return (hasattr(sys, "frozen") or # new py2exe
# hasattr(sys, "importers") # old py2exe
# or imp.is_frozen("__main__")) # tools/freeze
#
##if not main_is_frozen():
## try:
## import wxversion
## wxversion.select("2.6")
## except:
## wxversion.select("2.8")
#
#def get_main_dir():
# if main_is_frozen():
# return os.path.dirname(sys.executable)
# return os.path.dirname(os.path.abspath(__file__))
#__builtin__.get_main_dir = get_main_dir
#__builtin__.GPDF2SWF_BASEDIR = get_main_dir()
#
#pyver = "".join(map(str, sys.version_info[0:2]))
##print >>sys.stderr, pyver
#if main_is_frozen():
# sys.path.insert(0, os.path.join("..", "python%s" % pyver))
#else:
# sys.path.insert(0, os.path.join("..", "lib", "python"))
# sys.path.insert(1, os.path.join("..", "python%s" % pyver))
import wx
#print >>sys.stderr, wx.VERSION
from lib.app import Pdf2Swf
__builtin__.GPDF2SWF_BASEDIR = os.path.dirname(os.path.abspath(sys.argv[0]))
if __name__ == "__main__":
#print "sys.argv[0]", sys.argv[0]
#print "abspath sys.argv[0]",
#print "sys.executable", sys.executable
#print "abspath sys.executable", os.path.abspath(sys.executable)
#print "GPDF2SWF_BASEDIR", GPDF2SWF_BASEDIR
app = wx.App(False)
app.SetAppName(u"gpdf2swf")
Pdf2Swf()
app.MainLoop()
|