blob: 5484bf4132bf9d4b5abe6a0e660deb6fc6eed586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
* SPDX-FileCopyrightText: 2023 Méven Car <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef GENERALTAB_H
#define GENERALTAB_H
#include "settings/settingspagebase.h"
class QRadioButton;
class QSpinBox;
class ContentDisplayTab : public SettingsPageBase
{
Q_OBJECT
public:
ContentDisplayTab(QWidget *parent);
public:
// SettingsPageBase interface
void applySettings() override;
void restoreDefaults() override;
private:
void loadSettings();
QRadioButton *m_numberOfItems;
QRadioButton *m_sizeOfContents;
QSpinBox *m_recursiveDirectorySizeLimit;
QRadioButton *m_useRelatetiveDates;
QRadioButton *m_useShortDates;
QRadioButton *m_useSymbolicPermissions;
QRadioButton *m_useNumericPermissions;
QRadioButton *m_useCombinedPermissions;
};
#endif // GENERALTAB_H
|