Changed: #1306 Implemented basic form saving.
This commit is contained in:
parent
5c8ba72685
commit
7abfe97f3e
2 changed files with 27 additions and 23 deletions
|
@ -124,6 +124,8 @@ namespace GeorgesQt
|
|||
|
||||
void GeorgesEditorForm::save()
|
||||
{
|
||||
m_lastActiveDock->write();
|
||||
m_saveAction->setEnabled(false);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -101,11 +101,13 @@ namespace GeorgesQt
|
|||
void CGeorgesTreeViewDialog::headerClicked(int section)
|
||||
{
|
||||
if (section == 0)
|
||||
{
|
||||
if (*(m_header->expanded()))
|
||||
m_ui.treeView->expandAll();
|
||||
else
|
||||
m_ui.treeView->collapseAll();
|
||||
}
|
||||
}
|
||||
|
||||
void CGeorgesTreeViewDialog::setForm(const CForm *form)
|
||||
{
|
||||
|
@ -263,12 +265,12 @@ namespace GeorgesQt
|
|||
void CGeorgesTreeViewDialog::write( )
|
||||
{
|
||||
|
||||
//COFile file;
|
||||
//std::string s = CPath::lookup(loadedForm.toStdString(), false);
|
||||
//if (file.open (s))
|
||||
//{
|
||||
// try
|
||||
// {
|
||||
NLMISC::COFile file;
|
||||
std::string s = NLMISC::CPath::lookup(loadedForm.toStdString(), false);
|
||||
if(file.open (s))
|
||||
{
|
||||
try
|
||||
{
|
||||
// if (loadedForm.contains(".typ"))
|
||||
// {
|
||||
// //nlassert (Type != NULL);
|
||||
|
@ -303,17 +305,17 @@ namespace GeorgesQt
|
|||
// }
|
||||
// else
|
||||
// {
|
||||
// nlassert (_form != NULL);
|
||||
nlassert (m_form != NULL);
|
||||
|
||||
// // Write the file
|
||||
// Write the file
|
||||
// /*if (IsModified ())
|
||||
// {
|
||||
// ((CForm*)(UForm*)Form)->Header.MinorVersion++;
|
||||
// }*/
|
||||
// //((CForm*)(UForm*)Form)->write (xmlStream.getDocument (), lpszPathName, theApp.Georges4CVS);
|
||||
// _form->write(file, false);
|
||||
// setWindowTitle(windowTitle().remove("*"));
|
||||
// _modified = false;
|
||||
m_form->write(file, false);
|
||||
setWindowTitle(windowTitle().remove("*"));
|
||||
m_modified = false;
|
||||
// //if (strcmp (xmlStream.getErrorString (), "") != 0)
|
||||
// //{
|
||||
// // char message[512];
|
||||
|
@ -327,16 +329,16 @@ namespace GeorgesQt
|
|||
// // Get the left view
|
||||
// //CView* pView = getLeftView ();
|
||||
// }
|
||||
// }
|
||||
// catch (Exception &e)
|
||||
// {
|
||||
// nlerror("Error while loading file: %s", e.what());
|
||||
// }
|
||||
//}
|
||||
//else
|
||||
//{ //if (!file.open())
|
||||
// nlerror("Can't open the file %s for writing.", s.c_str());
|
||||
//}
|
||||
}
|
||||
catch (Exception &e)
|
||||
{
|
||||
nlerror("Error while loading file: %s", e.what());
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
nlerror("Can't open the file %s for writing.", s.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
void CGeorgesTreeViewDialog::doubleClicked ( const QModelIndex & index )
|
||||
|
|
Loading…
Reference in a new issue