/****************************************************************************
** $Id: qmessagebox.h,v 2.27.2.2 1998/08/21 19:13:22 hanord Exp $
**
** Definition of QMessageBox class
**
** Created : 950503
**
** 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 QMESSAGEBOX_H
#define QMESSAGEBOX_H
#ifndef QT_H
#include "qdialog.h"
#endif // QT_H
class QLabel;
class QPushButton;
struct QMBData;
class Q_EXPORT QMessageBox : public QDialog
{
Q_OBJECT
public:
enum Icon { NoIcon = 0, Information = 1, Warning = 2, Critical = 3 };
QMessageBox( QWidget *parent=0, const char *name=0 );
QMessageBox( const char *caption, const char *text, Icon icon,
int button0, int button1, int button2,
QWidget *parent=0, const char *name=0, bool modal=TRUE,
WFlags f=0 );
~QMessageBox();
enum { Ok = 1, Cancel = 2, Yes = 3, No = 4, Abort = 5, Retry = 6,
Ignore = 7, ButtonMask = 0x07,
Default = 0x100, Escape = 0x200, FlagMask = 0x300 };
static int information( QWidget *parent, const char *caption,
const char *text,
int button0, int button1=0, int button2=0 );
static int information( QWidget *parent, const char *caption,
const char *text,
const char *button0Text = "OK",
const char *button1Text = 0,
const char *button2Text = 0,
int defaultButtonNumber = 0,
int escapeButtonNumber = -1 );
static int warning( QWidget *parent, const char *caption,
const char *text,
int button0, int button1, int button2=0 );
static int warning( QWidget *parent, const char *caption,
const char *text,
const char *button0Text = "OK",
const char *button1Text = 0,
const char *button2Text = 0,
int defaultButtonNumber = 0,
int escapeButtonNumber = -1 );
static int critical( QWidget *parent, const char *caption,
const char *text,
int button0, int button1, int button2=0 );
static int critical( QWidget *parent, const char *caption,
const char *text,
const char *button0Text = "OK",
const char *button1Text = 0,
const char *button2Text = 0,
int defaultButtonNumber = 0,
int escapeButtonNumber = -1 );
static void about( QWidget *parent, const char *caption,
const char *text );
static void aboutQt( QWidget *parent, const char *caption=0 );
#if 1 /* OBSOLETE */
static int message( const char *caption,
const char *text, const char *buttonText=0,
QWidget *parent=0, const char *name=0 );
static bool query( const char *caption,
const char *text, const char *yesButtonText=0,
const char *noButtonText=0,
QWidget *parent=0, const char *name=0 );
#endif
const char *text() const;
void setText( const char * );
Icon icon() const;
void setIcon( Icon );
const QPixmap *iconPixmap() const;
void setIconPixmap( const QPixmap & );
#if 1 /* OBSOLETE */
const char *buttonText() const;
void setButtonText( const char * );
#endif
const char *buttonText( int button ) const;
void setButtonText( int button, const char * );
void adjustSize();
void setStyle( GUIStyle );
static QPixmap standardIcon( Icon icon, GUIStyle style );
protected:
void resizeEvent( QResizeEvent * );
void keyPressEvent( QKeyEvent * );
private slots:
void buttonClicked();
private:
void init( int, int, int );
int indexOf( int ) const;
void resizeButtons();
QLabel *label;
QMBData *mbd;
void *reserved1;
void *reserved2;
private: // Disabled copy constructor and operator=
#if defined(Q_DISABLE_COPY)
QMessageBox( const QMessageBox & );
QMessageBox &operator=( const QMessageBox & );
#endif
};
#endif // QMESSAGEBOX_H
| Copyright © 1998 Troll Tech | Trademarks | Qt version 1.41
|