First, I have downloaded the latest wxFormBuilder and have been able to add/edit/modify the Misc dialog without problem. I have also been able to associate the user changes with my new m_showDebugOnRun member by duplicating what I found for the checkbox option above it in the file EditorSettingsMiscPanel.cpp, which took the first source line and made the second:
Code: Select all
EditorConfigST::Get()->SaveLongValue(wxT("ShowFullPathInFrameTitle"), m_fullFilePath->IsChecked() ? 1 : 0);
EditorConfigST::Get()->SaveLongValue(wxT("ShowDebugOnRun"), m_showDebugOnRun->IsChecked() ? 1 : 0);
Code: Select all
check = 1;
EditorConfigST::Get()->GetLongValue(wxT("ShowFullPathInFrameTitle"), check);
m_fullFilePath->SetValue(check ? true : false);
check = 1;
EditorConfigST::Get()->GetLongValue(wxT("ShowDebugOnRun"), check);
m_showDebugOnRun->SetValue(check ? true : false);
Also, for my next issue, I cannot find where the menubar formbuilder (or code) is. How do I find it? And how do I edit it?
Thanks in advance!