~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to src/commentwidget.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 <qmultilineedit.h>
22
 
#include <qlayout.h>
23
 
#include <qcheckbox.h>
24
 
#include <kdialogbase.h>
25
 
#include <kglobalsettings.h>
26
 
#include <klocale.h>
27
 
#include <kmessagebox.h>
28
 
 
29
 
#include <comment.h>
30
 
#include <element.h>
31
 
 
32
 
#include "commentwidget.h"
33
 
 
34
 
namespace KBibTeX
35
 
{
36
 
    CommentWidget::CommentWidget( BibTeX::Comment *comment, bool isReadOnly, QWidget *parent, const char *name )
37
 
            : QWidget( parent, name ), m_comment( comment ), m_isReadOnly( isReadOnly )
38
 
    {
39
 
        setupGUI();
40
 
        getCommentData();
41
 
        m_multiLineEdit->setReadOnly( isReadOnly );
42
 
    }
43
 
 
44
 
 
45
 
    CommentWidget::~CommentWidget()
46
 
    {
47
 
        // nothing
48
 
    }
49
 
 
50
 
    void CommentWidget::setupGUI()
51
 
    {
52
 
        setMinimumWidth( 384 );
53
 
        QVBoxLayout * layout = new QVBoxLayout( this, 0, KDialog::spacingHint() );
54
 
 
55
 
        QLabel *label = new QLabel( i18n( "Co&mment:" ), this );
56
 
        layout->addWidget( label );
57
 
 
58
 
        m_multiLineEdit = new QMultiLineEdit( this );
59
 
        m_multiLineEdit->setFont( KGlobalSettings::fixedFont() );
60
 
        layout->addWidget( m_multiLineEdit );
61
 
        label->setBuddy( m_multiLineEdit );
62
 
        m_multiLineEdit->setReadOnly( m_isReadOnly );
63
 
 
64
 
        m_checkboxUseCommand = new QCheckBox( i18n( "&Use @Comment for comment instead of plain text" ), this );
65
 
        layout->addWidget( m_checkboxUseCommand );
66
 
    }
67
 
 
68
 
    void CommentWidget::getCommentData()
69
 
    {
70
 
        m_multiLineEdit->setText( m_comment->text() );
71
 
        m_checkboxUseCommand->setChecked( m_comment->useCommand() );
72
 
    }
73
 
 
74
 
    void CommentWidget::setCommentData()
75
 
    {
76
 
        m_comment->setText( m_multiLineEdit->text() );
77
 
        m_comment->setUseCommand( m_checkboxUseCommand->isChecked() );
78
 
    }
79
 
 
80
 
    QDialog::DialogCode CommentWidget::execute( BibTeX::Comment *comment, bool isReadOnly, QWidget *parent, const char *name )
81
 
    {
82
 
        KDialogBase * dlg = new KDialogBase( parent, name, true, i18n( "Edit BibTeX Comment" ), KDialogBase::Ok | KDialogBase::Cancel );
83
 
        CommentWidget* ui = new CommentWidget( comment, isReadOnly, dlg, "kbibtex::commentwidget" );
84
 
        dlg->setMainWidget( ui );
85
 
 
86
 
        QDialog::DialogCode result = ( QDialog::DialogCode ) dlg->exec();
87
 
        if ( !isReadOnly && result == QDialog::Accepted )
88
 
            ui->setCommentData();
89
 
 
90
 
        delete( ui );
91
 
        delete( dlg );
92
 
 
93
 
        return result;
94
 
    }
95
 
}
96
 
 
97
 
#include "commentwidget.moc"
98