Ejemplo n.º 1
0
 def environmentVariables(self):
     environment = SupportBaseManager.environmentVariables(self)
     #Extend wiht the user shell variables
     for var in self.shellVariables:
         if var['enabled']:
             environment[var['variable']] = var['value']
     return environment
Ejemplo n.º 2
0
 def buildAdHocSnippet(self, *largs, **kwargs):
     return BundleItemTreeNode(SupportBaseManager.buildAdHocSnippet(self, *largs, **kwargs))
Ejemplo n.º 3
0
 def runSystemCommand(self, **attrs):
     if attrs.get("asynchronous", False):
         return self.runQtProcessCommand(**attrs)
     else:
         return SupportBaseManager.runSystemCommand(self, **attrs)
Ejemplo n.º 4
0
 def loadSupport(self, *largs, **kwargs):
     self.bundleProxyTreeModel.setDynamicSortFilter(True)
     SupportBaseManager.loadSupport(self, *largs, **kwargs)
Ejemplo n.º 5
0
 def buildBundleItemStorage(self):
     return SupportBaseManager.buildBundleItemStorage(self)
Ejemplo n.º 6
0
 def loadSupport(self, message_handler):
     SupportBaseManager.loadSupport(self, message_handler)
     self.bundleProxyTreeModel.sort(0, QtCore.Qt.AscendingOrder)