Hi,
Hi to everybody,
My application consists of one frame with menu bar and an AuiManager.
I now tried to append/include an AuiNotebook into the AuiManager.
Apparently, that doesn’t work - my app crashes without any error. I’m
working with DeVIDE (medical DRE) and I’d first like to know if it’s
possible to do that architecture (AuiNotebook inside AuiManager),
which therefore means the error must be in the IDE, or if that’s not
possible or not how it’s meant to be used.
Of course if is possible, see the AUI demo (refactored):
wx.Frame.init(self, parent, id, title, pos, size, style)
self._mgr = aui.AuiManager()
…
book = aui.AuiNotebook(self, -1, agwStyle=whatever)
self._mgr.AddPane(book, aui.AuiPaneInfo().Name(“notebook_content”).
CenterPane().PaneBorder(False))
It would also be nice to know to which AUI stuff you are referring: is it the one from wx.aui or the pure-Python version from wx.lib.agw.aui? Whic Python, wxPython versions? AGW from SVN? Platform?
Andrea.
“Imagination Is The Only Weapon In The War Against Reality.”
http://xoomer.alice.it/infinity77/
import PyQt4.QtGui
Traceback (most recent call last):
File “”, line 1, in
ImportError: No module named PyQt4.QtGui
import pygtk
Traceback (most recent call last):
File “”, line 1, in
ImportError: No module named pygtk
···
On 5 October 2011 10:43, Christian wrote:
import wx