~ubuntu-branches/ubuntu/raring/kbibtex/raring

« back to all changes in this revision

Viewing changes to src/fieldlistview.h

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2011-07-18 09:29:48 UTC
  • mfrom: (1.1.6) (2.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20110718092948-ksxjmg7kdfamolmg
Tags: 0.3-1
* First upstream release for KDE4 (Closes: #634255). A number of search
  engines are still missing, in comparison to the 0.2 series.
* Bumped Standards-Version to 3.9.2, no changes necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
*   Copyright (C) 2004-2006 by Thomas Fischer                             *
3
 
*   fischer@unix-ag.uni-kl.de                                             *
4
 
*                                                                         *
5
 
*   This program is free software; you can redistribute it and/or modify  *
6
 
*   it under the terms of the GNU General Public License as published by  *
7
 
*   the Free Software Foundation; either version 2 of the License, or     *
8
 
*   (at your option) any later version.                                   *
9
 
*                                                                         *
10
 
*   This program is distributed in the hope that it will be useful,       *
11
 
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
*   GNU General Public License for more details.                          *
14
 
*                                                                         *
15
 
*   You should have received a copy of the GNU General Public License     *
16
 
*   along with this program; if not, write to the                         *
17
 
*   Free Software Foundation, Inc.,                                       *
18
 
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 
***************************************************************************/
20
 
#ifndef KBIBTEXFIELDLISTVIEW_H
21
 
#define KBIBTEXFIELDLISTVIEW_H
22
 
 
23
 
#include <qwidget.h>
24
 
 
25
 
#include <value.h>
26
 
#include <entryfield.h>
27
 
 
28
 
class QString;
29
 
class KListView;
30
 
class QListViewItem;
31
 
class QPushButton;
32
 
class QCheckBox;
33
 
 
34
 
namespace KBibTeX
35
 
{
36
 
 
37
 
    /**
38
 
     @author Thomas Fischer <fischer@unix-ag.uni-kl.de>
39
 
    */
40
 
    class FieldListView : public QWidget
41
 
    {
42
 
        Q_OBJECT
43
 
    public:
44
 
        FieldListView( const QString& caption, const QString& prefixNew, bool isReadOnly, QWidget *parent = 0, const char *name = 0 );
45
 
        ~FieldListView();
46
 
 
47
 
        void setValue( const BibTeX::Value *value );
48
 
        BibTeX::Value *value();
49
 
 
50
 
        void setEnabled( bool enabled );
51
 
 
52
 
        void setFieldType( BibTeX::EntryField::FieldType fieldType );
53
 
 
54
 
        QString caption();
55
 
 
56
 
        bool isEmpty();
57
 
 
58
 
        bool isModified();
59
 
 
60
 
        virtual bool eventFilter( QObject *o, QEvent * e );
61
 
 
62
 
    private slots:
63
 
        void updateGUI();
64
 
        void slotAdd();
65
 
        void slotEdit();
66
 
        void slotDelete();
67
 
        void slotUp();
68
 
        void slotDown();
69
 
        void slotComplex();
70
 
        void slotListViewDoubleClicked( QListViewItem * );
71
 
        void slotItemRenamed( QListViewItem * item, int col, const QString & text );
72
 
        void apply();
73
 
 
74
 
    private:
75
 
        BibTeX::Value *m_value;
76
 
        QString m_caption;
77
 
        QString m_prefixNew;
78
 
        bool m_isReadOnly;
79
 
        bool m_enabled;
80
 
        bool m_isComplex;
81
 
        bool m_isModified;
82
 
        int m_newValueCounter;
83
 
        BibTeX::EntryField::FieldType m_fieldType;
84
 
        KListView *m_listViewElements;
85
 
        QPushButton *m_pushButtonAdd;
86
 
        QPushButton *m_pushButtonEdit;
87
 
        QPushButton *m_pushButtonDelete;
88
 
        QPushButton *m_pushButtonUp;
89
 
        QPushButton *m_pushButtonDown;
90
 
        QPushButton *m_pushButtonComplexEdit;
91
 
        QCheckBox *m_checkBoxEtAl;
92
 
 
93
 
        void setupGUI();
94
 
        void reset();
95
 
        void itemRenameDone();
96
 
        bool isSimple();
97
 
    };
98
 
 
99
 
}
100
 
 
101
 
#endif