leave room for three lines of text in function description

... so we can get a little bit more verbose. The new "this is for
interop with old ... instead use ..." description fit into the function
overview but was truncated in the parameter window.

Change-Id: I73c5e6cfb64a2b1573ab15f5ceb6aa16e6da4a99
This commit is contained in:
Eike Rathke
2015-10-08 12:42:42 +02:00
parent b69e55bdb2
commit 4c5ebb2503

View File

@@ -47,11 +47,15 @@ ParaWin::ParaWin(vcl::Window* pParent,IControlReferenceHandler* _pDlg):
get(m_pFtArgName, "parname");
get(m_pFtArgDesc, "pardesc");
//Space for two lines of text
// Space for three lines of text in function description.
m_pFtEditDesc->SetText("X\nX\nX\n");
long nEditHeight = m_pFtEditDesc->GetOptimalSize().Height();
m_pFtEditDesc->set_height_request(nEditHeight);
m_pFtEditDesc->SetText("");
// Space for two lines of text in parameter description.
m_pFtArgDesc->SetText("X\nX\n");
long nHeight = m_pFtArgDesc->GetOptimalSize().Height();
m_pFtEditDesc->set_height_request(nHeight);
m_pFtArgDesc->set_height_request(nHeight);
long nArgHeight = m_pFtArgDesc->GetOptimalSize().Height();
m_pFtArgDesc->set_height_request(nArgHeight);
m_pFtArgDesc->SetText("");
get(m_pBtnFx1, "FX1");