summaryrefslogtreecommitdiffstats
path: root/src/settingsediting.h
blob: fef66dc49fb69f12ada3f866ceaf05ebc8f39388 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/***************************************************************************
*   Copyright (C) 2004-2006 by Thomas Fischer                             *
*   fischer@unix-ag.uni-kl.de                                             *
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
*   This program is distributed in the hope that it will be useful,       *
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
*   GNU General Public License for more details.                          *
*                                                                         *
*   You should have received a copy of the GNU General Public License     *
*   along with this program; if not, write to the                         *
*   Free Software Foundation, Inc.,                                       *
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
***************************************************************************/
#ifndef SETTINGSEDITING_H
#define SETTINGSEDITING_H

#include <tqwidget.h>

class TQCheckBox;
class TQPushButton;
class TQComboBox;
class TQSlider;

class KPushButton;
class KURLRequester;
class TDEListView;

namespace KBibTeX
{
    class SettingsEditingPaths: public TQWidget
    {
        TQ_OBJECT
    protected:
        SettingsEditingPaths( TQStringList& pathList, TQWidget*parent = 0, const char *name = 0 );

    public:
        static bool execute( TQWidget *parent, TQStringList &pathList );

    public slots:
        void slotApply();
        void slotTextChanged( const TQString&text );
        void slotAddDir();
        void slotSelectionChanged();
        void slotDelDir();

    private:
        TQStringList &m_pathList;
        KURLRequester *m_urlRequesterNewPath;
        KPushButton *m_pushButtonAddDir;
        TDEListView *m_listViewPathList;
        KPushButton *m_pushButtonDelDir;
    };

    class SettingsEditing : public TQWidget
    {
        TQ_OBJECT
    public:
        SettingsEditing( TQWidget *parent = 0, const char *name = 0 );
        ~SettingsEditing();

        void applyData();
        void readData();

    signals:
        void configChanged();

    protected slots:
        void slotConfigChanged();
        void slotSelectSpecialFont();
        void slotSelectDocumentSearchPath();

    private:
        TQCheckBox *m_checkBoxEnableAllFields;
        TQCheckBox *m_checkBoxSearchBarClearField;
        TQComboBox *m_comboBoxSortingColumn;
        TQComboBox *m_comboBoxSortingOrder;
        TQComboBox *m_comboBoxDoubleClickAction;
        TQComboBox *m_comboBoxDragAction;
        TQCheckBox *m_checkBoxUseSpecialFont;
        TQPushButton *m_pushButtonSpecialFont;
        TQFont m_specialFont;
        TQComboBox *m_comboBoxNameOrder;
        TQStringList m_documentSearchPaths;
        static const TQChar pathListSeparator;
        TQSlider *m_sliderBarFindDuplicatesSensitivity;

        void updateFontData();
        bool editPathList( TQStringList &pathList );

        const int m_findDuplicatesSensitivityMin, m_findDuplicatesSensitivityMax;
    };
}

#endif // SETTINGSEDITING_H