~ubuntu-branches/ubuntu/edgy/koffice/edgy-updates

« back to all changes in this revision

Viewing changes to lib/kformula/MatrixDialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040509113300-xi5t1z4yxe7n03x7
Tags: upstream-1.3.1
ImportĀ upstreamĀ versionĀ 1.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define MATRIXDIALOG_H_INCLUDED
22
22
 
23
23
#include <qwidget.h>
24
 
#include <qdialog.h>
 
24
#include <kdialogbase.h>
25
25
#include <qvalidator.h>
26
26
 
27
 
#include "formuladefs.h"
 
27
#include "kformuladefs.h"
28
28
 
29
29
KFORMULA_NAMESPACE_BEGIN
30
30
 
31
31
/**
32
32
 * Dialog for entering matrix sizes.
33
 
 * @internal
34
 
 * @author Ilya Baran (ibaran@mit.edu)
35
 
 * @version $Id: MatrixDialog.h,v 1.16 2001/06/09 21:10:21 kuettler Exp $
36
33
 */
37
 
class MatrixDialog : public QDialog
 
34
class MatrixDialog : public KDialogBase
38
35
{
39
36
    Q_OBJECT
40
37
 
43
40
    int w;
44
41
    int h;
45
42
 
46
 
    MatrixDialog(QWidget *parent);
 
43
    MatrixDialog( QWidget *parent, int width = 3, int height = 3 );
47
44
    ~MatrixDialog() {}
48
45
 
49
46
protected slots: