Qt logo

qdialog.h


This is the verbatim text of the qdialog.h include file. It is is provided only for illustration; the copyright remains with Troll Tech.
/****************************************************************************
** $Id: qdialog.h,v 2.7.2.2 1998/08/21 19:13:22 hanord Exp $
**
** Definition of QDialog class
**
** Created : 950502
**
** Copyright (C) 1992-1998 Troll Tech AS.  All rights reserved.
**
** This file is part of Troll Tech's internal development tree for Qt.
**
** This header text will be replaced by an appropriate text by the
** mkdist script which generates external distributions.
**
** If you are using the Qt Professional Edition or the Qt Free Edition,
** please notify Troll Tech at <info@troll.no> if you see this text.
**
** To Troll Tech developers: This header was generated by the script
** fixcopyright-int. It has the same number of text lines as the free
** and professional editions to avoid line number inconsistency.
**
*****************************************************************************/

#ifndef QDIALOG_H
#define QDIALOG_H

#ifndef QT_H
#include "qwidget.h"
#endif // QT_H


class QPushButton;


class Q_EXPORT QDialog : public QWidget                 // dialog widget
{
friend class QPushButton;
    Q_OBJECT
public:
    QDialog( QWidget *parent=0, const char *name=0, bool modal=FALSE,
             WFlags f=0 );
   ~QDialog();

    enum DialogCode { Rejected, Accepted };

    int         exec();
    int         result()  const { return rescode; }

    void        show();
    void        move( int x, int y );
    void        move( const QPoint &p );
    void        resize( int w, int h );
    void        resize( const QSize & );
    void        setGeometry( int x, int y, int w, int h );
    void        setGeometry( const QRect & );

protected slots:
    virtual void done( int );
    void        accept();
    void        reject();

protected:
    void        setResult( int r )      { rescode = r; }
    void        keyPressEvent( QKeyEvent * );
    void        closeEvent( QCloseEvent * );

private:
    void        setDefault( QPushButton * );
    int         rescode;
    uint        did_move   : 1;
    uint        did_resize : 1;

private:        // Disabled copy constructor and operator=
#if defined(Q_DISABLE_COPY)
    QDialog( const QDialog & );
    QDialog &operator=( const QDialog & );
#endif
};


#endif // QDIALOG_H


Copyright © 1998 Troll TechTrademarks
Qt version 1.41