mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Implemented saving.
--HG-- branch : gsoc2014-dfighter
This commit is contained in:
parent
fbc1632d04
commit
05216897f0
2 changed files with 35 additions and 1 deletions
|
@ -553,7 +553,9 @@ void CMainWindow::mergeSingleFile()
|
||||||
void CMainWindow::onUxtClicked()
|
void CMainWindow::onUxtClicked()
|
||||||
{
|
{
|
||||||
UXTEditor *e = new UXTEditor();
|
UXTEditor *e = new UXTEditor();
|
||||||
e->open( work_path + "/" + QString( Constants::WK_UXT ) );
|
QString path = work_path + "/" + QString( Constants::WK_UXT );
|
||||||
|
e->open( path );
|
||||||
|
e->setCurrentFile( path );
|
||||||
_ui.mdiArea->addSubWindow( e );
|
_ui.mdiArea->addSubWindow( e );
|
||||||
e->activateWindow();
|
e->activateWindow();
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,9 @@
|
||||||
#include <QCloseEvent>
|
#include <QCloseEvent>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
||||||
|
#include <QFile>
|
||||||
|
#include <QTextStream>
|
||||||
|
|
||||||
#include "nel/misc/diff_tool.h"
|
#include "nel/misc/diff_tool.h"
|
||||||
|
|
||||||
namespace TranslationManager
|
namespace TranslationManager
|
||||||
|
@ -89,10 +92,39 @@ void UXTEditor::open( QString filename )
|
||||||
|
|
||||||
void UXTEditor::save()
|
void UXTEditor::save()
|
||||||
{
|
{
|
||||||
|
saveAs( current_file );
|
||||||
}
|
}
|
||||||
|
|
||||||
void UXTEditor::saveAs( QString filename )
|
void UXTEditor::saveAs( QString filename )
|
||||||
{
|
{
|
||||||
|
QFile f( filename );
|
||||||
|
if( !f.open( QIODevice::WriteOnly ) )
|
||||||
|
return;
|
||||||
|
|
||||||
|
QTextStream out( &f );
|
||||||
|
|
||||||
|
std::vector< STRING_MANAGER::TStringInfo >::const_iterator itr = d_ptr->infos.begin();
|
||||||
|
while( itr != d_ptr->infos.end() )
|
||||||
|
{
|
||||||
|
QString line = "";
|
||||||
|
|
||||||
|
line += itr->Identifier.c_str();
|
||||||
|
line += "\t";
|
||||||
|
|
||||||
|
line += "[";
|
||||||
|
line += itr->Text.toUtf8().c_str();
|
||||||
|
line += "]";
|
||||||
|
|
||||||
|
line += "\r\n";
|
||||||
|
|
||||||
|
out << line;
|
||||||
|
|
||||||
|
++itr;
|
||||||
|
}
|
||||||
|
|
||||||
|
f.close();
|
||||||
|
|
||||||
|
d_ptr->changed = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void UXTEditor::activateWindow()
|
void UXTEditor::activateWindow()
|
||||||
|
|
Loading…
Reference in a new issue