comparison src/settingsdialog.h @ 406:c567fed39559

Add ability to configure the ssh client; default to TortoisePlink on Windows
author Chris Cannam <chris.cannam@eecs.qmul.ac.uk>
date Thu, 26 May 2011 15:48:11 +0100
parents b9c153e00e84
children 2d57b81671de
comparison
equal deleted inserted replaced
405:46267ab70ef3 406:c567fed39559
41 41
42 private slots: 42 private slots:
43 void hgPathBrowse(); 43 void hgPathBrowse();
44 void diffPathBrowse(); 44 void diffPathBrowse();
45 void mergePathBrowse(); 45 void mergePathBrowse();
46 void sshPathBrowse();
46 void editPathBrowse(); 47 void editPathBrowse();
47 void extensionPathBrowse(); 48 void extensionPathBrowse();
48 49
49 void accept(); 50 void accept();
50 void reset(); 51 void reset();
55 QLineEdit *m_nameEdit; 56 QLineEdit *m_nameEdit;
56 QLineEdit *m_emailEdit; 57 QLineEdit *m_emailEdit;
57 QLineEdit *m_hgPathLabel; 58 QLineEdit *m_hgPathLabel;
58 QLineEdit *m_diffPathLabel; 59 QLineEdit *m_diffPathLabel;
59 QLineEdit *m_mergePathLabel; 60 QLineEdit *m_mergePathLabel;
61 QLineEdit *m_sshPathLabel;
60 QLineEdit *m_editPathLabel; 62 QLineEdit *m_editPathLabel;
61 63
62 QCheckBox *m_useExtension; 64 QCheckBox *m_useExtension;
63 QLineEdit *m_extensionPathLabel; 65 QLineEdit *m_extensionPathLabel;
64 66
77 79
78 static void findHgBinaryName(); 80 static void findHgBinaryName();
79 static void findExtension(); 81 static void findExtension();
80 static void findDiffBinaryName(); 82 static void findDiffBinaryName();
81 static void findMergeBinaryName(); 83 static void findMergeBinaryName();
84 static void findSshBinaryName();
82 static void findEditorBinaryName(); 85 static void findEditorBinaryName();
83 86
84 static QString m_installPath; 87 static QString m_installPath;
85 }; 88 };
86 89