mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Changed: #1306 Implemented basic form saving.
This commit is contained in:
parent
5c8ba72685
commit
7abfe97f3e
2 changed files with 27 additions and 23 deletions
|
@ -63,7 +63,7 @@ namespace GeorgesQt
|
|||
|
||||
m_undoStack = new QUndoStack(this);
|
||||
|
||||
Core::MenuManager *menuManager = Core::ICore::instance()->menuManager();
|
||||
Core::MenuManager *menuManager = Core::ICore::instance()->menuManager();
|
||||
m_openAction = menuManager->action(Core::Constants::OPEN);
|
||||
|
||||
m_newAction = new QAction(tr("&New..."), this);
|
||||
|
@ -124,6 +124,8 @@ namespace GeorgesQt
|
|||
|
||||
void GeorgesEditorForm::save()
|
||||
{
|
||||
m_lastActiveDock->write();
|
||||
m_saveAction->setEnabled(false);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -101,10 +101,12 @@ 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);
|
||||
|
@ -281,7 +283,7 @@ namespace GeorgesQt
|
|||
// // flushValueChange ();
|
||||
// //}
|
||||
// //Type->write (xmlStream.getDocument (), theApp.Georges4CVS);
|
||||
// //modify (NULL, NULL, false);
|
||||
// //modify (NULL, NULL, false);
|
||||
// //flushValueChange ();
|
||||
// //UpdateAllViews (NULL);
|
||||
// //return TRUE;
|
||||
|
@ -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