summaryrefslogtreecommitdiffstats
path: root/src/idsuggestionswidget.h
blob: 103029c09963917b764674d713b29a19a7db57a0 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/***************************************************************************
 *   Copyright (C) 2004-2009 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 KBIBTEXIDSUGGESTIONSWIDGET_H
#define KBIBTEXIDSUGGESTIONSWIDGET_H

#include <qwidget.h>
#include <qdialog.h>

class QCheckBox;
class QScrollView;
class QSpinBox;
class KComboBox;
class KLineEdit;
class KPushButton;

namespace KBibTeX
{
    class IdSuggestionComponent: public QFrame
    {
        Q_OBJECT
    public:
        IdSuggestionComponent( const QString& title, QWidget *parent );
        virtual QString text() const = 0;
        void setEnableUpDown( bool enableUp, bool enableDown );

    signals:
        void modified();
        void moved();
        void deleted();

    protected:
        QWidget *moveWidgets( QWidget *parent );

        bool m_toBeDeleted;
        QString m_title;
        QWidget *m_parent;
        KPushButton *m_pushButtonDel;
        KPushButton *m_pushButtonUp;
        KPushButton *m_pushButtonDown;

    protected slots:
        void slotUp();
        void slotDown();
        void slotDelete();
    };

    class IdSuggestionComponentAuthor: public IdSuggestionComponent
    {
    public:
        IdSuggestionComponentAuthor( const QString &text, QWidget *parent );
        QString text() const;
    protected:
        KComboBox *m_comboBoxWhichAuthors;
        KComboBox *m_comboBoxCasing;
        KLineEdit *m_lineEditInBetween;
        QSpinBox *m_spinBoxLen;
    };

    class IdSuggestionComponentTitle: public IdSuggestionComponent
    {
    public:
        IdSuggestionComponentTitle( const QString &text, QWidget *parent );
        QString text() const;
    protected:
        QCheckBox *m_checkBoxRemoveSmallWords;
        KComboBox *m_comboBoxCasing;
        KLineEdit *m_lineEditInBetween;
        QSpinBox *m_spinBoxLen;
    };

    class IdSuggestionComponentYear: public IdSuggestionComponent
    {
    public:
        IdSuggestionComponentYear( const QString &text, QWidget *parent );
        QString text() const;
    protected:
        KComboBox *m_comboBoxDigits;
    };

    class IdSuggestionComponentText: public IdSuggestionComponent
    {
    public:
        IdSuggestionComponentText( const QString &text, QWidget *parent );
        QString text() const;
    protected:
        KLineEdit *m_lineEditInBetween;
    };

    class IdSuggestionsScrollView : public QScrollView
    {
        Q_OBJECT
    public:
        IdSuggestionsScrollView( QWidget *parent, const char*name = NULL );
        ~IdSuggestionsScrollView();

        void setMainWidget( QWidget *widget ) {m_widget = widget;}

    protected:
        void viewportResizeEvent( QResizeEvent * );

    private:
        QWidget *m_widget;
    };

    /**
     @author Thomas Fischer <fischer@unix-ag.uni-kl.de>
    */
    class IdSuggestionsWidget : public QWidget
    {
        Q_OBJECT
    public:
        ~IdSuggestionsWidget();
        int numComponents();

        static QDialog::DialogCode execute( QString &formatStr, QWidget *parent = 0, const char *name = 0 );

    protected:
        IdSuggestionsWidget( const QString &formatStr, KDialogBase *parent, const char *name = 0 );

        QString m_originalFormatStr;
        int m_componentCount;

        void reset( const QString& formatStr );
        void apply( QString& formatStr );

    private:
        static QString exampleBibTeXEntry;
        BibTeX::Entry *m_example;
        IdSuggestionsScrollView *m_scrollViewComponents;
        QLabel *m_labelExample;
        QWidget *m_listOfComponents;
        KPushButton *m_pushButtonAdd;
        KDialogBase *m_parent;

        void setupGUI();

    private slots:
        void addMenuActivated( int id );
        void updateGUI();
        void componentDeleted();
        void updateExample();
    };

}

#endif