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

« back to all changes in this revision

Viewing changes to src/preamblewidget.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 <qlabel.h>
21
 
#include <qlayout.h>
22
 
 
23
 
#include <kdialogbase.h>
24
 
#include <klocale.h>
25
 
 
26
 
#include "preamblewidget.h"
27
 
 
28
 
namespace KBibTeX
29
 
{
30
 
 
31
 
    QDialog::DialogCode PreambleWidget::execute( BibTeX::Preamble *preamble, bool isReadOnly, QWidget *parent, const char *name )
32
 
    {
33
 
        KDialogBase * dlg = new KDialogBase( parent, name, TRUE, i18n( "Edit BibTeX Preamble" ), KDialogBase::Ok | KDialogBase::Cancel );
34
 
        PreambleWidget* preambleWidget = new PreambleWidget( preamble, isReadOnly, dlg, "PreambleWidget" );
35
 
 
36
 
        dlg->setMainWidget( preambleWidget );
37
 
        connect( dlg, SIGNAL( okClicked() ), preambleWidget, SLOT( apply() ) );
38
 
 
39
 
        QDialog::DialogCode result = ( QDialog::DialogCode ) dlg->exec();
40
 
 
41
 
        delete( preambleWidget );
42
 
        delete( dlg );
43
 
 
44
 
        return result;
45
 
    }
46
 
 
47
 
    PreambleWidget::PreambleWidget( BibTeX::Preamble *bibtexpreamble, bool isReadOnly, QWidget *parent, const char *name ) : QWidget( parent, name ), m_isReadOnly( isReadOnly ), m_bibtexpreamble( bibtexpreamble )
48
 
    {
49
 
        setupGUI();
50
 
        reset();
51
 
    }
52
 
 
53
 
 
54
 
    PreambleWidget::~PreambleWidget()
55
 
    {
56
 
// nothing
57
 
    }
58
 
 
59
 
    void PreambleWidget::apply()
60
 
    {
61
 
        BibTeX::Value *value = m_fieldLineEditPreambleValue->value();
62
 
        m_bibtexpreamble->setValue( value );
63
 
    }
64
 
 
65
 
    void PreambleWidget::reset()
66
 
    {
67
 
        m_fieldLineEditPreambleValue->setValue( m_bibtexpreamble->value() );
68
 
    }
69
 
 
70
 
    void PreambleWidget::setupGUI()
71
 
    {
72
 
        setMinimumWidth( 384 );
73
 
 
74
 
        QVBoxLayout * layout = new QVBoxLayout( this, 0, KDialog::spacingHint() );
75
 
 
76
 
        QLabel *label = new QLabel( i18n( "&Preamble:" ), this );
77
 
        layout->addWidget( label );
78
 
        m_fieldLineEditPreambleValue = new KBibTeX::FieldLineEdit( i18n( "Preamble" ), KBibTeX::FieldLineEdit::itMultiLine, m_isReadOnly, this, "m_fieldLineEditPreambleValue" );
79
 
        layout->addWidget( m_fieldLineEditPreambleValue );
80
 
        label->setBuddy( m_fieldLineEditPreambleValue );
81
 
    }
82
 
 
83
 
}