Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ Library : Other (not classified elsewhere) » Problem displaying using TURTLE (Problem displaying docking windows using TURTLE)
Re: Problem displaying using TURTLE [message #43029 is a reply to message #42821] Thu, 24 April 2014 15:31 Go to previous messageGo to previous message
Slade is currently offline  Slade
Messages: 10
Registered: February 2013
Promising Member

I found that adding the line StateH(OPEN) to the following method in package turtle file Top.cpp fixed the problem with docking control from not displaying.

I have also discovered another issue using either Chrome or Internet Explorer, whenever the back space key is pressed while editing a text field then the browser jumps back to a previous page. This does not seem to be a problem with FireFox. Does anyone know if something cleaver can be added to turtle.brc java script file that will tell the browser the back space key has been used so it does not try to jump back a page. Thank you.

void TopWindow::Open(Ctrl *owner)
{
GuiLock __;
LLOG("Open " << Upp::Name(owner));
Rect r = GetRect();
if(r.IsEmpty())
SetRect(GetDefaultWindowRect());
else
if(r.left == 0 && r.top == 0)
if(owner && center == 1)
SetRect(owner->GetRect().CenterRect(r.GetSize()));
else
if(center)
SetRect(GetWorkArea().CenterRect(r.GetSize()));
frame->SetClient(GetRect());
frame->window = this;
frame->PopUp(owner, false, true);
PopUp(frame, false, true);
popup = false;
SetRect(frame->GetClient());
StateH(OPEN); // <<<<< Add this line
SyncCaption();
PlaceFocus();
if(state == MAXIMIZED)
frame->Maximize();
}
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Zip all files in a directory
Next Topic: How to disable the sort of the gridctrl with respect a given column
Goto Forum:
  


Current Time: Tue Apr 23 19:06:23 CEST 2024

Total time taken to generate the page: 0.02119 seconds