Implemented CommitAction, DeleteAction, RevertAction, NewRepository, OpenRepository

New Action: Open containing folder
New filetypes ADDED, DELETED
We now detect invalid or outdated repositories


FossilOrigin-Name: 2ac3cf9717f3529f809ffde1e802295988dfda05
This commit is contained in:
kostas
2011-08-04 15:52:07 +00:00
parent dd9e18f113
commit 54ca948fae
10 changed files with 532 additions and 106 deletions

22
RepoDialog.h Normal file
View File

@ -0,0 +1,22 @@
#ifndef REPODIALOG_H
#define REPODIALOG_H
#include <QDialog>
namespace Ui {
class RepoDialog;
}
class RepoDialog : public QDialog
{
Q_OBJECT
public:
explicit RepoDialog(QWidget *parent = 0);
~RepoDialog();
private:
Ui::RepoDialog *ui;
};
#endif // REPODIALOG_H