comparison src/hgignoredialog.h @ 419:69b2338c06e1 ignore

Add "Ignore this directory"; some fixes to ignore logic (though not yet enough)
author Chris Cannam
date Thu, 16 Jun 2011 20:35:05 +0100
parents 8df07172d6da
children 533519ebc0cb
comparison
equal deleted inserted replaced
418:93cb9005bb6f 419:69b2338c06e1
27 public: 27 public:
28 enum IgnoreType { 28 enum IgnoreType {
29 IgnoreNothing, 29 IgnoreNothing,
30 IgnoreGivenFilesOnly, 30 IgnoreGivenFilesOnly,
31 IgnoreAllFilesOfGivenNames, 31 IgnoreAllFilesOfGivenNames,
32 IgnoreAllFilesOfGivenSuffixes 32 IgnoreAllFilesOfGivenSuffixes,
33 IgnoreWholeDirectory
33 }; 34 };
34 35
35 static IgnoreType confirmIgnore(QWidget *parent, 36 static IgnoreType confirmIgnore(QWidget *parent,
36 QStringList files, QStringList suffixes); 37 QStringList files,
38 QStringList suffixes,
39 QString directory);
37 40
38 private slots: 41 private slots:
39 void optionToggled(bool); 42 void optionToggled(bool);
40 43
41 private: 44 private: