comparison src/settingsdialog.h @ 617:2d5b831c1a0a

Added new functionality to limit the total number of items shown in the graph. For projects with a fairly high number of commits, makes every action is very slow. Was added to the settings dialog to select a QDateEdit day from which the log is to be displayed.
author Mikel <mikel.fernandez@bqreaders.com>
date Tue, 24 Jul 2012 15:33:02 +0200
parents 533519ebc0cb
children 5dc24f89b791
comparison
equal deleted inserted replaced
616:32b8f32f14a6 617:2d5b831c1a0a
23 #include <QLabel> 23 #include <QLabel>
24 #include <QPushButton> 24 #include <QPushButton>
25 #include <QCheckBox> 25 #include <QCheckBox>
26 #include <QComboBox> 26 #include <QComboBox>
27 #include <QTabWidget> 27 #include <QTabWidget>
28 #include <QDateEdit>
28 29
29 class SettingsDialog : public QDialog 30 class SettingsDialog : public QDialog
30 { 31 {
31 Q_OBJECT 32 Q_OBJECT
32 33
74 QLineEdit *m_extensionPathLabel; 75 QLineEdit *m_extensionPathLabel;
75 76
76 QCheckBox *m_showIconLabels; 77 QCheckBox *m_showIconLabels;
77 QCheckBox *m_showExtraText; 78 QCheckBox *m_showExtraText;
78 QComboBox *m_dateFormat; 79 QComboBox *m_dateFormat;
80
81 QDateEdit *m_dateFrom;
82
79 #ifdef NOT_IMPLEMENTED_YET 83 #ifdef NOT_IMPLEMENTED_YET
80 QComboBox *m_workHistoryArrangement; 84 QComboBox *m_workHistoryArrangement;
81 #endif 85 #endif
82 86
83 QPushButton *m_ok; 87 QPushButton *m_ok;