Mercurial > hg > easyhg-kdiff3
view kdiff3/src/kdiff3_part.cpp @ 67:ec82d69e8b0c
0.9.86
author | joachim99 |
---|---|
date | Thu, 16 Sep 2004 02:45:37 +0000 |
parents | efe33e938730 |
children | d7cafcda8c99 |
line wrap: on
line source
/* * Copyright (C) 2003 Joachim Eibl <joachim.eibl@gmx.de> */ #include "kdiff3_part.h" #include <kinstance.h> #include <kaction.h> #include <kstdaction.h> #include <kfiledialog.h> #include <qfile.h> #include <qtextstream.h> #include "kdiff3.h" #include "fileaccess.h" #include <kmessagebox.h> #include <klocale.h> #include <iostream> #include "version.h" KDiff3Part::KDiff3Part( QWidget *parentWidget, const char *widgetName, QObject *parent, const char *name ) : KParts::ReadOnlyPart(parent, name) { // we need an instance setInstance( KDiff3PartFactory::instance() ); // this should be your custom internal widget m_widget = new KDiff3App( parentWidget, widgetName, this ); // This hack is necessary to avoid a crash when the program terminates. m_bIsShell = dynamic_cast<KParts::MainWindow*>(parentWidget)!=0; // notify the part that this is our internal widget setWidget(m_widget); // create our actions //KStdAction::open(this, SLOT(fileOpen()), actionCollection()); //KStdAction::saveAs(this, SLOT(fileSaveAs()), actionCollection()); //KStdAction::save(this, SLOT(save()), actionCollection()); setXMLFile("kdiff3_part.rc"); // we are read-write by default setReadWrite(true); // we are not modified since we haven't done anything yet setModified(false); } KDiff3Part::~KDiff3Part() { if ( m_widget!=0 && ! m_bIsShell ) { m_widget->saveOptions( m_widget->isPart() ? instance()->config() : kapp->config() ); } } void KDiff3Part::setReadWrite(bool /*rw*/) { // ReadWritePart::setReadWrite(rw); } void KDiff3Part::setModified(bool /*modified*/) { /* // get a handle on our Save action and make sure it is valid KAction *save = actionCollection()->action(KStdAction::stdName(KStdAction::Save)); if (!save) return; // if so, we either enable or disable it based on the current // state if (modified) save->setEnabled(true); else save->setEnabled(false); // in any event, we want our parent to do it's thing ReadWritePart::setModified(modified); */ } bool KDiff3Part::openFile() { // m_file is always local so we can use QFile on it QFile file(m_file); if (file.open(IO_ReadOnly) == false) return false; // our example widget is text-based, so we use QTextStream instead // of a raw QDataStream QTextStream stream(&file); QString str; QString fileName1; QString fileName2; QString version1; QString version2; while (!stream.eof() && (fileName1.isEmpty() || fileName2.isEmpty()) ) { str = stream.readLine() + "\n"; if ( str.left(4)=="--- " && fileName1.isEmpty() ) { int pos = str.find("\t"); fileName1 = str.mid( 4, pos-4 ); int vpos = str.findRev("\t", -1); if ( pos>0 && vpos>0 && vpos>pos ) { version1 = str.mid( vpos+1 ); while( !version1.right(1)[0].isLetterOrNumber() ) version1.truncate( version1.length()-1 ); } } if ( str.left(4)=="+++ " && fileName2.isEmpty() ) { int pos = str.find("\t"); fileName2 = str.mid( 4, pos-4 ); int vpos = str.findRev("\t", -1); if ( pos>0 && vpos>0 && vpos>pos ) { version2 = str.mid( vpos+1 ); while( !version2.right(1)[0].isLetterOrNumber() ) version2.truncate( version2.length()-1 ); } } } file.close(); if ( fileName1.isEmpty() && fileName2.isEmpty() ) { KMessageBox::sorry(m_widget, i18n("Couldn't find files for comparison.")); return false; } FileAccess f1(fileName1); FileAccess f2(fileName2); if ( f1.exists() && f2.exists() && fileName1!=fileName2 ) { m_widget->slotFileOpen2( fileName1, fileName2, "", "", "", "", "", 0 ); return true; } else if ( version1.isEmpty() && f1.exists() ) { // Normal patch // patch -f -u --ignore-whitespace -i [inputfile] -o [outfile] [patchfile] QString tempFileName = FileAccess::tempFileName(); QString cmd = "patch -f -u --ignore-whitespace -i " + m_file + " -o "+tempFileName + " " + fileName1; ::system( cmd.ascii() ); m_widget->slotFileOpen2( fileName1, tempFileName, "", "", "", version2.isEmpty() ? fileName2 : "REV:"+version2+":"+fileName2, "", 0 ); // alias names FileAccess::removeFile( tempFileName ); } else if ( version2.isEmpty() && f2.exists() ) { // Reverse patch // patch -f -u -R --ignore-whitespace -i [inputfile] -o [outfile] [patchfile] QString tempFileName = FileAccess::tempFileName(); QString cmd = "patch -f -u -R --ignore-whitespace -i " + m_file + " -o "+tempFileName + " " + fileName2; ::system( cmd.ascii() ); m_widget->slotFileOpen2( tempFileName, fileName2, "", "", version1.isEmpty() ? fileName1 : "REV:"+version1+":"+fileName1, "", "", 0 ); // alias name FileAccess::removeFile( tempFileName ); } else if ( !version1.isEmpty() && !version2.isEmpty() ) { // Assuming that files are on CVS: Try to get them // cvs update -p -r [REV] [FILE] > [OUTPUTFILE] QString tempFileName1 = FileAccess::tempFileName(); QString cmd1 = "cvs update -p -r " + version1 + " " + fileName1 + " >"+tempFileName1; ::system( cmd1.ascii() ); QString tempFileName2 = FileAccess::tempFileName(); QString cmd2 = "cvs update -p -r " + version2 + " " + fileName2 + " >"+tempFileName2; ::system( cmd2.ascii() ); m_widget->slotFileOpen2( tempFileName1, tempFileName2, "", "", "REV:"+version1+":"+fileName1, "REV:"+version2+":"+fileName2, "", 0 ); FileAccess::removeFile( tempFileName1 ); FileAccess::removeFile( tempFileName2 ); return true; } else { KMessageBox::sorry(m_widget, i18n("Couldn't find files for comparison.")); } return true; } bool KDiff3Part::saveFile() { /* // if we aren't read-write, return immediately if (isReadWrite() == false) return false; // m_file is always local, so we use QFile QFile file(m_file); if (file.open(IO_WriteOnly) == false) return false; // use QTextStream to dump the text to the file QTextStream stream(&file); //stream << m_widget->text(); file.close(); return true; */ return false; // Not implemented } // It's usually safe to leave the factory code alone.. with the // notable exception of the KAboutData data #include <kaboutdata.h> #include <klocale.h> KInstance* KDiff3PartFactory::s_instance = 0L; KAboutData* KDiff3PartFactory::s_about = 0L; KDiff3PartFactory::KDiff3PartFactory() : KParts::Factory() { } KDiff3PartFactory::~KDiff3PartFactory() { delete s_instance; delete s_about; s_instance = 0L; } KParts::Part* KDiff3PartFactory::createPartObject( QWidget *parentWidget, const char *widgetName, QObject *parent, const char *name, const char *classname, const QStringList&/*args*/ ) { // Create an instance of our Part KDiff3Part* obj = new KDiff3Part( parentWidget, widgetName, parent, name ); // See if we are to be read-write or not if (QCString(classname) == "KParts::ReadOnlyPart") obj->setReadWrite(false); return obj; } KInstance* KDiff3PartFactory::instance() { if( !s_instance ) { s_about = new KAboutData("kdiff3part", I18N_NOOP("KDiff3Part"), VERSION); s_about->addAuthor("Joachim Eibl", 0, "joachim.eibl@gmx.de"); s_instance = new KInstance(s_about); } return s_instance; } extern "C" { void* init_libkdiff3part() { return new KDiff3PartFactory; } } // Suppress warning with --enable-final #undef VERSION #include "kdiff3_part.moc"