2016-07-22 00:39:15 +00:00
|
|
|
# Copyright 2016 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
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
|
2016-07-22 00:39:15 +00:00
|
|
|
# inside qt/, so we just go back one level.
|
|
|
|
BASE_PATH = op.abspath(op.join(op.dirname(__file__), '..'))
|
2011-11-30 16:36:29 +00:00
|
|
|
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
|