~ubuntu-branches/ubuntu/breezy/koffice/breezy-security

« back to all changes in this revision

Viewing changes to krita/plugins/cimg/kis_cimgconfig_widget.cc

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-10-11 14:49:50 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051011144950-lwpngbifzp8nk0ds
Tags: 1:1.4.1-0ubuntu7
* SECURITY UPDATE: fix heap based buffer overflow in the RTF importer of KWord
* Opening specially crafted RTF files in KWord can cause
  execution of abitrary code.
* Add kubuntu_01_rtfimport_heap_overflow.diff
* References:
  CAN-2005-2971
  CESA-2005-005
  http://www.koffice.org/security/advisory-20051011-1.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of Krita
 
3
 *
 
4
 * Copyright (c) 2005 Boudewijn Rempt <boud@valdyas.org>
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
19
 *
 
20
 * Ported from the CImg Gimp plugin by Victor Stinner and David Tschumperlé.
 
21
 */
 
22
#include "qlayout.h"
 
23
#include "qcheckbox.h"
 
24
#include "qpushbutton.h"
 
25
 
 
26
#include "knuminput.h"
 
27
 
 
28
#include "kis_filter_configuration_widget.h"
 
29
#include "wdg_cimg.h"
 
30
#include "kis_cimgconfig_widget.h"
 
31
#include "kis_cimg_filter.h"
 
32
 
 
33
KisCImgconfigWidget::KisCImgconfigWidget(KisFilter* nfilter, QWidget * parent, const char * name, WFlags f)
 
34
        : KisFilterConfigurationWidget(nfilter, parent, name, f)
 
35
{
 
36
        m_page = new WdgCImg(this);
 
37
        Q_CHECK_PTR(m_page);
 
38
 
 
39
        QHBoxLayout * l = new QHBoxLayout(this);
 
40
        Q_CHECK_PTR(l);
 
41
 
 
42
        l -> add(m_page);
 
43
        filter() -> setAutoUpdate(false);
 
44
        connect( m_page -> bnRefresh, SIGNAL(clicked()), filter(), SLOT(refreshPreview()));
 
45
}
 
46
 
 
47
 
 
48
KisCImgFilterConfiguration * KisCImgconfigWidget::config()
 
49
{
 
50
        KisCImgFilterConfiguration * cfg = new KisCImgFilterConfiguration();
 
51
        Q_CHECK_PTR(cfg);
 
52
 
 
53
        cfg -> power1         = m_page -> numDetail -> value();
 
54
        cfg -> power2         = m_page -> numGradient -> value();
 
55
        cfg -> dt             = m_page -> numTimeStep -> value();
 
56
        cfg -> sigma          = m_page -> numBlur -> value();
 
57
        cfg -> nb_iter        = m_page -> numBlurIterations -> value();
 
58
        cfg -> dtheta         = m_page -> numAngularStep -> value();
 
59
        cfg -> dlength        = m_page -> numIntegralStep -> value();
 
60
        cfg -> gauss_prec     = m_page -> numGaussian -> value();
 
61
        cfg -> linear         = m_page -> chkLinearInterpolation -> isChecked();
 
62
        cfg -> onormalize     = m_page -> chkNormalize -> isChecked();
 
63
 
 
64
        return cfg;
 
65
 
 
66
}
 
67
#include "kis_cimgconfig_widget.moc"