Script scripterng_hooks
[hide private]
[frames] | no frames]

Source Code for Script scripterng_hooks

  1  # -*- coding: utf-8 -*- 
  2  """ 
  3  This module will be a collection of functions to hook into the GUI of Scribus.  
  4   
  5  Currently it only provides functions to add items to a menubar. 
  6  Support for the toolbar, statusbar and dockarea have still to be implemented. 
  7  I have to think about how to provide this stuff to QtScript. 
  8  """ 
  9   
 10  from PyQt4.QtGui import QApplication,  QMenu 
 11   
 12  import mikro 
 13   
 14   
130