2009-06-01 09:55:11 +00:00
|
|
|
# Created By: Virgil Dupras
|
2009-09-27 08:44:06 +00:00
|
|
|
# Created On: 2009-09-27
|
2011-04-12 08:04:01 +00:00
|
|
|
# Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
#
|
2010-09-30 10:17:41 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-08-05 08:59:46 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2011-11-30 16:06:08 +00:00
|
|
|
import os.path as op
|
2011-09-22 13:32:09 +00:00
|
|
|
from hscommon.plat import ISWINDOWS, ISOSX, ISLINUX
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2011-11-30 16:36:29 +00:00
|
|
|
if op.exists(__file__):
|
|
|
|
# We want to get the absolute path or our root folder. We know that in that folder we're
|
|
|
|
# inside qt/base, so we just fo back two levels.
|
|
|
|
BASE_PATH = op.abspath(op.join(op.dirname(__file__), '..', '..'))
|
|
|
|
else:
|
|
|
|
# We're under a freezed environment. Our base path is ''.
|
|
|
|
BASE_PATH = ''
|
2011-11-30 16:06:08 +00:00
|
|
|
HELP_PATH = op.join(BASE_PATH, 'help')
|
|
|
|
|
2011-09-22 13:32:09 +00:00
|
|
|
if ISWINDOWS:
|
2011-11-30 16:06:08 +00:00
|
|
|
INITIAL_FOLDER_IN_DIALOGS = 'C:\\'
|
2011-09-22 13:32:09 +00:00
|
|
|
elif ISOSX:
|
2011-11-30 16:06:08 +00:00
|
|
|
INITIAL_FOLDER_IN_DIALOGS = '/'
|
2011-09-22 13:32:09 +00:00
|
|
|
elif ISLINUX:
|
2011-11-30 16:06:08 +00:00
|
|
|
INITIAL_FOLDER_IN_DIALOGS = '/'
|
2009-09-27 08:44:06 +00:00
|
|
|
else:
|
2009-10-02 11:12:25 +00:00
|
|
|
pass # unsupported platform
|