~ubuntu-branches/ubuntu/precise/kbibtex/precise

« back to all changes in this revision

Viewing changes to src/entrywidgetother.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 KBIBTEXENTRYWIDGETOTHER_H
21
 
#define KBIBTEXENTRYWIDGETOTHER_H
22
 
 
23
 
#include <kurl.h>
24
 
 
25
 
#include <entrywidgettab.h>
26
 
 
27
 
class QPushButton;
28
 
class KListView;
29
 
class QLineEdit;
30
 
 
31
 
namespace KBibTeX
32
 
{
33
 
 
34
 
    class ValueListViewItem;
35
 
 
36
 
    /**
37
 
     @author Thomas Fischer <fischer@unix-ag.uni-kl.de>
38
 
    */
39
 
    class EntryWidgetOther : public EntryWidgetTab
40
 
    {
41
 
        Q_OBJECT
42
 
    public:
43
 
        EntryWidgetOther( BibTeX::File *bibtexfile, bool isReadOnly, QWidget *parent = 0, const char *name = 0 );
44
 
        ~EntryWidgetOther();
45
 
 
46
 
        bool isModified();
47
 
 
48
 
    public slots:
49
 
        void updateGUI( BibTeX::Entry::EntryType /*entryType*/, bool enableAll );
50
 
        void apply( BibTeX::Entry *entry );
51
 
        void reset( BibTeX::Entry *entry );
52
 
        void updateWarnings( BibTeX::Entry::EntryType entryType, QListView * /*listViewWarnings*/ );
53
 
 
54
 
    private:
55
 
        bool m_isModified;
56
 
 
57
 
        QPushButton *m_pushButtonAdd;
58
 
        QPushButton *m_pushButtonDelete;
59
 
        QPushButton *m_pushButtonOpen;
60
 
        QLineEdit *m_lineEditKey;
61
 
        FieldLineEdit *m_fieldLineEditValue;
62
 
        KListView *m_listViewFields;
63
 
        KURL m_internalURL;
64
 
 
65
 
        void setupGUI();
66
 
 
67
 
    private slots:
68
 
        void updateGUI();
69
 
        void fieldExecute( QListViewItem * item );
70
 
        void addClicked();
71
 
        void deleteClicked();
72
 
        void openClicked();
73
 
 
74
 
    };
75
 
 
76
 
    class ValueListViewItem : public QListViewItem
77
 
    {
78
 
    public:
79
 
        ValueListViewItem( const QString& title, BibTeX::Value *value, QListView *parent );
80
 
        ~ValueListViewItem();
81
 
 
82
 
        const BibTeX::Value *value();
83
 
        QString title();
84
 
        void setValue( BibTeX::Value *value );
85
 
        void setTitle( const QString &title );
86
 
 
87
 
    private:
88
 
        QString m_title;
89
 
        BibTeX::Value *m_value;
90
 
 
91
 
        void setTexts( const QString& title );
92
 
    };
93
 
 
94
 
}
95
 
 
96
 
#endif