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

« back to all changes in this revision

Viewing changes to kpresenter/slidetransitiondia.h

  • 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
// -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; -*-
 
2
/* This file is part of the KDE project
 
3
   Copyright (C) 2002 Ariya Hidayat <ariya@kde.org>
 
4
   Copyright (C) 2004 Thorsten Zachmann <zachmann@kde.org>
 
5
 
 
6
   This library is free software; you can redistribute it and/or
 
7
   modify it under the terms of the GNU Library General Public
 
8
   License as published by the Free Software Foundation; either
 
9
   version 2 of the License, or (at your option) any later version.
 
10
 
 
11
   This library 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 GNU
 
14
   Library General Public License for more details.
 
15
 
 
16
   You should have received a copy of the GNU Library General Public License
 
17
   along with this library; see the file COPYING.LIB.  If not, write to
 
18
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
19
   Boston, MA 02111-1307, USA.
 
20
*/
 
21
 
 
22
#ifndef SLIDETRANSITIONDIA_H
 
23
#define SLIDETRANSITIONDIA_H
 
24
 
 
25
#include <qtimer.h>
 
26
#include <qwidget.h>
 
27
 
 
28
#include <kdialogbase.h>
 
29
 
 
30
#include "global.h"
 
31
 
 
32
class KPPageEffects;
 
33
class KPresenterView;
 
34
class KPresenterSoundPlayer;
 
35
class KURLRequester;
 
36
class SlideTransitionWidget;
 
37
 
 
38
class SlideTransitionDia : public KDialogBase
 
39
{
 
40
    Q_OBJECT
 
41
public:
 
42
    SlideTransitionDia( QWidget *parent, const char *name, KPresenterView *view );
 
43
    ~SlideTransitionDia();
 
44
 
 
45
protected:
 
46
    void apply( bool global );
 
47
    // TODO reuse
 
48
    QString getSoundFileFilter();
 
49
    
 
50
    SlideTransitionWidget *m_dialog;      
 
51
    KPresenterView *m_view;
 
52
    KPresenterSoundPlayer *m_soundPlayer;
 
53
    
 
54
    PageEffect m_effect;
 
55
    EffectSpeed m_effectSpeed;
 
56
    bool m_soundEffect;
 
57
    QString m_soundFileName;
 
58
    int m_slideTime;
 
59
 
 
60
    KPPageEffects *m_pageEffect;
 
61
    QTimer m_pageEffectTimer;
 
62
    QPixmap m_pixmap;
 
63
    QPixmap m_target;
 
64
    
 
65
protected slots:    
 
66
    void effectChanged( int );
 
67
    void playSound();
 
68
    void stopSound();
 
69
    void preview();
 
70
    void slotDoPageEffect();
 
71
    void slotOk();
 
72
    void slotRequesterClicked( KURLRequester * );
 
73
    void slotSoundFileChanged( const QString& text );
 
74
    void slotUser1();
 
75
    void soundEffectChanged();
 
76
};
 
77
 
 
78
 
 
79
#endif /* SLIDETRANSITIONDIA_H */