mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
110 lines
3.5 KiB
C++
110 lines
3.5 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2011 by Vishesh Yadav <vishesh3y@gmail.com> *
|
|
* *
|
|
* 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 *
|
|
***************************************************************************/
|
|
|
|
#ifndef HGSYNCBASEDIALOG_H
|
|
#define HGSYNCBASEDIALOG_H
|
|
|
|
#include "hgwrapper.h"
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QProcess>
|
|
#include <QtCore/QSize>
|
|
#include <QtCore/QMap>
|
|
#include <kdialog.h>
|
|
|
|
#include <QLabel>
|
|
#include <QCheckBox>
|
|
#include <QGroupBox>
|
|
#include <QProgressBar>
|
|
class KLineEdit;
|
|
class KTextEdit;
|
|
class KComboBox;
|
|
class KPushButton;
|
|
class HgPathSelector;
|
|
|
|
//TODO: Save/Load dialog geometry
|
|
//TODO: HTTPS login
|
|
//
|
|
|
|
/**
|
|
* Abstract class which implements common features of Push and Pull dialog.
|
|
* Inherited by HgPushDialog and HgPullDialog.
|
|
*/
|
|
class HgSyncBaseDialog : public KDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum DialogType {PushDialog, PullDialog};
|
|
|
|
HgSyncBaseDialog(DialogType dialogType, QWidget *parent = 0);
|
|
|
|
signals:
|
|
void changeListAvailable();
|
|
|
|
protected:
|
|
void done(int r);
|
|
void setupUI();
|
|
void createOptionGroup();
|
|
void setup();
|
|
void loadSmallSize();
|
|
void loadBigSize();
|
|
virtual void setOptions() = 0;
|
|
virtual void createChangesGroup() = 0;
|
|
virtual void parseUpdateChanges(const QString &input) = 0;
|
|
virtual void appendOptionArguments(QStringList &args) = 0;
|
|
virtual void getHgChangesArguments(QStringList &args) = 0;
|
|
virtual void noChangesMessage() = 0;
|
|
|
|
protected slots:
|
|
void slotGetChanges();
|
|
void slotChangesProcessComplete(int exitCode, QProcess::ExitStatus status);
|
|
void slotChangesProcessError();
|
|
void slotOperationComplete(int exitCode, QProcess::ExitStatus status);
|
|
void slotOperationError();
|
|
void slotUpdateBusy(QProcess::ProcessState state);
|
|
void slotWriteBigSize();
|
|
virtual void writeBigSize() = 0;
|
|
virtual void readBigSize() = 0;
|
|
|
|
protected:
|
|
HgPathSelector *m_pathSelector;
|
|
QProgressBar *m_statusProg;
|
|
bool m_haveChanges;
|
|
bool m_terminated;
|
|
HgWrapper *m_hgw;
|
|
DialogType m_dialogType;
|
|
|
|
// Options
|
|
QList<QCheckBox*> m_options;
|
|
QGroupBox *m_optionGroup;
|
|
|
|
// geometry
|
|
QSize m_smallSize;
|
|
QSize m_bigSize;
|
|
|
|
// changes
|
|
KPushButton *m_changesButton;
|
|
QGroupBox *m_changesGroup;
|
|
QProcess m_process;
|
|
QProcess m_main_process; //should I use another process?
|
|
};
|
|
|
|
#endif // HGSYNCBASEDIALOG_H
|
|
|