00001 // /// // Mx clientSDK 00002 // ///// //// Mx Crossplatform Client Library 00003 // /// XXX XXX /// 00004 // /// XXX XXX /// $RCSfile: mxcpcMessageDialog.h,v $ 00005 // /// XXX /// $Revision: 1.6 $ 00006 // /// XXX XXX /// $Date: 2006/01/05 11:56:09 $ 00007 // //// XXX XXX //// $Author: cvs-kai $ 00008 // //// //// 00009 // //// M O B O T I X //////////////////////////////////////////////// 00010 // //// Security Vision Systems ////////////////////////////////////////////// 00011 // // 00012 // Copyright (C) 2005 - 2006, MOBOTIX AG, Germany // 00013 // This software is made available under the BSD licence. Please refer // 00014 // to the file LICENCE.TXT contained in this distribution for details. // 00015 // // 00016 // ///////////////////////////////////////////////////////////////////// 00017 00018 00019 00020 #ifndef __MXCPC_MESSAGE_DIALOG_H__ 00021 #define __MXCPC_MESSAGE_DIALOG_H__ 00022 00023 00024 00025 #include <mxcpcDialog.h> 00026 00027 00028 00029 class QLabel; 00030 00031 00032 00033 //! Simple text message dialog. 00034 /*! 00035 * \ingroup mxcpc_gui 00036 */ 00037 class mxcpcMessageDialog : public mxcpcDialog { 00038 00039 private: 00040 QLabel *MessageTextLabel; 00041 00042 public: 00043 mxcpcMessageDialog(QWidget *parent = 0); 00044 00045 public: 00046 //! Sets the message displayed by the dialog. 00047 void setMessage(const QString& title, const QString& message); 00048 }; 00049 00050 00051 00052 #endif // __MXCPC_MESSAGE_DIALOG_H__ 00053