You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
153 lines
4.8 KiB
153 lines
4.8 KiB
/* ****************************************************************************
|
|
This file is part of KBabel
|
|
|
|
Copyright (C) 2002-2003 by Marco Wegner <mail@marcowegner.de>
|
|
Copyright (C) 2005, 2006 by Nicolas GOUTTE <goutte@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
In addition, as a special exception, the copyright holders give
|
|
permission to link the code of this program with any edition of
|
|
the TQt library by Trolltech AS, Norway (or with modified versions
|
|
of TQt that use the same license as TQt), and distribute linked
|
|
combinations including the two. You must obey the GNU General
|
|
Public License in all respects for all of the code used other than
|
|
TQt. If you modify this file, you may extend this exception to
|
|
your version of the file, but you are not obligated to do so. If
|
|
you do not wish to do so, delete this exception statement from
|
|
your version.
|
|
|
|
**************************************************************************** */
|
|
|
|
|
|
#ifndef SVNDIALOG_H
|
|
#define SVNDIALOG_H
|
|
|
|
// KDE include files
|
|
#include <kdialog.h>
|
|
// Project specific include files
|
|
#include "svnresources.h"
|
|
// Forwarding TQt classes
|
|
class TQCheckBox;
|
|
class TQComboBox;
|
|
class TQListBox;
|
|
class TQPushButton;
|
|
class TQString;
|
|
class TQStringList;
|
|
class TQTextEdit;
|
|
// Forwarding KDE classes
|
|
class TDEProcess;
|
|
class KTempFile;
|
|
class TDESharedConfig;
|
|
|
|
/**
|
|
* This class represents the dialog which is used for executing SVN commands
|
|
* in KBabel's Catalog Manager. The dialog shows the list of files to be
|
|
* processed as well as the output from the command.
|
|
*
|
|
* In Commit mode there is also an option for automatically executing
|
|
* 'svn add' if necessary.
|
|
*
|
|
* @short Dialog for SVN support in Catalog Manager
|
|
*/
|
|
class SVNDialog : public KDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
/**
|
|
* Constructor for creating the dialog.
|
|
* @param cmd The type of command to be executed.
|
|
*/
|
|
SVNDialog( SVN::Command cmd, TQWidget * parent, TDESharedConfig* config );
|
|
~SVNDialog();
|
|
/**
|
|
* Set the list of files which will be used for the SVN command.
|
|
* @param files The list of files.
|
|
*/
|
|
void setFiles( const TQStringList& files );
|
|
/**
|
|
* Set the command line for the execution of the SVN command.
|
|
* @param command The command line.
|
|
*/
|
|
void setCommandLine( const TQString& command );
|
|
/**
|
|
* Set the command line for adding files to the SVN repository.
|
|
* This method is only used together with a 'svn commit' for automatically
|
|
* adding files which are not yet in the repository.
|
|
* @param command The command line.
|
|
*/
|
|
void setAddCommand( const TQString& command );
|
|
/**
|
|
* Return the output of a 'svn status' command.
|
|
* @returns The complete output.
|
|
*/
|
|
TQString statusOutput( );
|
|
|
|
protected:
|
|
/**
|
|
* This method is overwritten so that the settings can be saved after
|
|
* pressing the 'Close' button.
|
|
*/
|
|
virtual void accept( );
|
|
/** Read the dialog's settings. */
|
|
void readSettings( );
|
|
/** Save the dialog's settings. */
|
|
void saveSettings( );
|
|
|
|
protected slots:
|
|
/** Slot for executing the SVN Command. */
|
|
void slotExecuteCommand( );
|
|
/** Slot for processing the stdout of the SVN Command. */
|
|
void slotProcessStdout( TDEProcess*, char * buffer, int len );
|
|
/** Slot for processing the stderr of the SVN Command. */
|
|
void slotProcessStderr( TDEProcess*, char * buffer, int len );
|
|
/** Slot for post-processing after the SVN command is fninished. */
|
|
void slotProcessExited( TDEProcess * p );
|
|
/// Slot for combox having been activated
|
|
void slotComboActivated( int );
|
|
|
|
private:
|
|
SVN::Command _cmd;
|
|
|
|
TQPushButton * mainBtn;
|
|
TQPushButton * cancelBtn;
|
|
TQListBox * filebox;
|
|
TQComboBox * oldMessages;
|
|
TQTextEdit * logedit;
|
|
TQTextEdit * output;
|
|
TQCheckBox * autoAddBox;
|
|
|
|
TDEProcess * p;
|
|
|
|
TQString _commandLine;
|
|
TQString _addCommand;
|
|
TQString _statusOutput;
|
|
|
|
/// Log messages (long version)
|
|
TQStringList m_logMessages;
|
|
/// Log messages (short version)
|
|
TQStringList m_squeezedLogMessages;
|
|
|
|
/// Temporary file (for commits)
|
|
KTempFile* m_tempFile;
|
|
|
|
/// Configuration data (of the KBabel project)
|
|
TDESharedConfig* m_config;
|
|
};
|
|
|
|
#endif // SVNDIALOG_H
|