setFullScreenCapable(self.mainWindow)
-if platform.system() == "Darwin":
+if platform.system() == "Darwin": #Mac magic. Dragons live here. THis sets full screen options.
try:
import ctypes, objc
_objc = ctypes.PyDLL(objc._objc.__file__)
from OpenGL.GL import *
from Cura.gui.util import openglHelpers
-
+#TODO: Rename these. Name is vague.
class toolNone(object):
def __init__(self, parent):
self.parent = parent
+"""
+Api for taskbar. Only for windows 7 or higher (filling up the icon while its progressing).
+"""
__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
try:
version = f.readline()
f.close()
return version.strip()
- return "?"
+ return "?" #No idea what the version is. TODO:Tell the user.
def isDevVersion():
gitPath = os.path.abspath(os.path.join(os.path.split(os.path.abspath(__file__))[0], "../../.git"))