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

« back to all changes in this revision

Viewing changes to kspread/dialogs/kspread_dlg_subtotal.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
/* This file is part of the KDE project
 
2
   Copyright (C) 2002-2003 Norbert Andres <nandres@web.de>
 
3
             (C) 2002 Philipp Mueller <philipp.mueller@gmx.de>
 
4
             (C) 2002 Laurent Montel <montel@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
 
 
23
#ifndef __kspread_dlg_subtotal__
 
24
#define __kspread_dlg_subtotal__
 
25
 
 
26
#include <kdialogbase.h>
 
27
 
 
28
#include <qpoint.h>
 
29
#include <qrect.h>
 
30
 
 
31
class KSpreadView;
 
32
class KSpreadSheet;
 
33
class KSpreadSubtotal;
 
34
 
 
35
class QLineEdit;
 
36
 
 
37
class KSpreadSubtotalDlg : public KDialogBase
 
38
 
39
  Q_OBJECT
 
40
 
 
41
 public:
 
42
  KSpreadSubtotalDlg( KSpreadView * parent, QRect const & selection, 
 
43
                      const char * name );
 
44
  ~KSpreadSubtotalDlg();
 
45
 
 
46
  QRect const & selection() const { return m_selection; }
 
47
  KSpreadSheet * sheet() const { return m_pSheet; }
 
48
 
 
49
 private slots:
 
50
  void slotOk();
 
51
  void slotCancel();
 
52
  void slotUser1();
 
53
 
 
54
 private:
 
55
  KSpreadView  *    m_pView;
 
56
  KSpreadSheet *    m_pSheet;
 
57
  QRect             m_selection;
 
58
  KSpreadSubtotal * m_dialog;
 
59
 
 
60
  void fillColumnBoxes();
 
61
  void fillFunctionBox();
 
62
  void removeSubtotalLines();
 
63
  bool addSubtotal( int mainCol, int column, int row, int topRow, 
 
64
                    bool addRow, QString const & text );
 
65
};
 
66
 
 
67
#endif
 
68