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

« back to all changes in this revision

Viewing changes to src/entrywidgettab.cpp

  • 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-2009 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
 
#include <klocale.h>
21
 
 
22
 
#include <entry.h>
23
 
#include <entrywidgetwarningsitem.h>
24
 
#include <fieldlineedit.h>
25
 
#include "entrywidgettab.h"
26
 
 
27
 
namespace KBibTeX
28
 
{
29
 
    BibTeX::Entry *EntryWidgetTab::m_crossRefEntry = NULL;
30
 
 
31
 
    EntryWidgetTab::EntryWidgetTab(BibTeX::File *bibtexfile, bool isReadOnly, QWidget *parent, const char *name )
32
 
            : QWidget( parent, name ), m_isReadOnly( isReadOnly ), m_bibtexfile( bibtexfile )
33
 
    {
34
 
        // nothing
35
 
    }
36
 
 
37
 
    EntryWidgetTab::~EntryWidgetTab()
38
 
    {
39
 
        // nothing
40
 
    }
41
 
 
42
 
    void EntryWidgetTab::setValue( BibTeX::Entry *entry, const BibTeX::EntryField::FieldType fieldType, BibTeX::Value *value )
43
 
    {
44
 
        BibTeX::EntryField * field = entry->getField( fieldType );
45
 
 
46
 
        if ( value != NULL )
47
 
        {
48
 
            if ( field == NULL )
49
 
            {
50
 
                field = new BibTeX::EntryField( fieldType );
51
 
                entry->addField( field );
52
 
            }
53
 
            field->setValue( value );
54
 
        }
55
 
        else
56
 
        {
57
 
            if ( field != NULL )
58
 
                entry->deleteField( fieldType );
59
 
        }
60
 
    }
61
 
 
62
 
    void EntryWidgetTab::addMissingWarning( BibTeX::Entry::EntryType entryType, BibTeX::EntryField::FieldType fieldType, const QString& label, bool valid, QWidget *widget, QListView *listView )
63
 
    {
64
 
        if ( BibTeX::Entry::getRequireStatus( entryType, fieldType ) == BibTeX::Entry::frsRequired && !valid )
65
 
            new EntryWidgetWarningsItem( EntryWidgetWarningsItem::wlWarning, QString( i18n( "The field '%1' is required, but missing" ) ).arg( label ), widget, listView, "warning" );
66
 
    }
67
 
 
68
 
    void EntryWidgetTab::addCrossRefInfo( const QString& label, QWidget *widget, QListView *listView )
69
 
    {
70
 
        QString crossRefId = m_crossRefEntry != NULL ? m_crossRefEntry->id() : "???";
71
 
        new EntryWidgetWarningsItem( EntryWidgetWarningsItem::wlInformation, QString( i18n( "Using cross referenced entry '%1' for field '%2'" ) ).arg( crossRefId ).arg( label ), widget, listView, "information" );
72
 
    }
73
 
 
74
 
    void EntryWidgetTab::addFieldLineEditWarning( FieldLineEdit *fieldLineEdit, const QString& label, QListView *listView )
75
 
    {
76
 
        switch ( fieldLineEdit->error() )
77
 
        {
78
 
        case FieldLineEdit::etInvalidStringKey:
79
 
            new EntryWidgetWarningsItem( EntryWidgetWarningsItem::wlError, QString( i18n( "The field '%1' contains string keys with invalid characters" ) ).arg( label ), fieldLineEdit, listView, "error" );
80
 
            break;
81
 
        case FieldLineEdit::etNoError:
82
 
            {
83
 
                // nothing
84
 
            }
85
 
            break;
86
 
        default:
87
 
            new EntryWidgetWarningsItem( EntryWidgetWarningsItem::wlError, QString( i18n( "The field '%1' contains some unknown error" ) ).arg( label ), fieldLineEdit, listView, "error" );
88
 
        }
89
 
    }
90
 
}
91
 
#include "entrywidgettab.moc"