[wxlua-users] four tabs one in each corner with wxAuiNotebook:Split()

2013-10-21 Thread Victor Bombi
Hello: How could I use wxAuiNotebook:Split() to get four tabs one in each corner. With the following code I cant get exactly that splits = {false,wx.wxRIGHT,wx.wxBOTTOM,wx.wxRIGHT} Log = {} for i=1,4 do Log[i] = CreateLog() notebookLogs:AddPage(Log[i], Log..i) if splits[i] then

Re: [wxlua-users] four tabs one in each corner with wxAuiNotebook:Split()

2013-10-21 Thread John Labenski
On Mon, Oct 21, 2013 at 2:01 PM, Victor Bombi son...@telefonica.net wrote: Hello: How could I use wxAuiNotebook:Split() to get four tabs one in each corner. I think you may need to insert a page into the beginning to get that last split. Add three pages, split into three parts. That part is

Re: [wxlua-users] four tabs one in each corner withwxAuiNotebook:Split()

2013-10-21 Thread Victor Bombi
Sorry, I dont understand!! :-( Could you please explain it with code? With my last code I get: 1 2 4 3 3 4 instead of 1 2 3 4 I am trying to improve loadNotebook and saveNotebook (for saving notebook perspectives in Zerobrane studio) to save 2D layouts instead of of just 1D. I looked at void