// @(#)root/gui:$Name: $:$Id: TGMsgBox.h,v 1.2 2001/04/03 10:36:21 rdm Exp $ // Author: Fons Rademakers 09/01/98 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TGMsgBox #define ROOT_TGMsgBox ////////////////////////////////////////////////////////////////////////// // // // TMsgBox // // // // A message dialog box. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TGFrame #include "TGFrame.h" #endif #ifndef ROOT_TGString #include "TGString.h" #endif #ifndef ROOT_TGPicture #include "TGPicture.h" #endif //--- Icon types enum EMsgBoxIcon { kMBIconStop, kMBIconQuestion, kMBIconExclamation, kMBIconAsterisk }; //--- Button types and return codes enum EMsgBoxButton { kMBYes = BIT(0), kMBNo = BIT(1), kMBOk = BIT(2), kMBApply = BIT(3), kMBRetry = BIT(4), kMBIgnore = BIT(5), kMBCancel = BIT(6), kMBClose = BIT(7), kMBDismiss = BIT(8) }; class TGButton; class TGIcon; class TGLabel; class TGMsgBox : public TGTransientFrame { protected: TGButton *fYes, *fNo, *fOK, *fApply; // buttons in dialog box TGButton *fRetry, *fIgnore, *fCancel; // buttons in dialog box TGButton *fClose, *fDismiss; // buttons in dialog box TGIcon *fIcon; // icon TGHorizontalFrame *fButtonFrame; // frame containing buttons TGHorizontalFrame *fIconFrame; // frame containing icon and text TGVerticalFrame *fLabelFrame; // frame containing text TGLayoutHints *fL1, *fL2, *fL3, *fL4, *fL5; // layout hints TList *fMsgList; // text (list of TGLabels) Int_t *fRetCode; // address to store return code void PMsgBox(const TGWindow *main, const char *title, const char *msg, const TGPicture *icon, Int_t buttons, Int_t *ret_code); public: TGMsgBox(const TGWindow *p, const TGWindow *main, const char *title, const char *msg, const TGPicture *icon, Int_t buttons = kMBDismiss, Int_t *ret_code = 0, UInt_t options = kVerticalFrame); TGMsgBox(const TGWindow *p, const TGWindow *main, const char *title, const char *msg, EMsgBoxIcon icon, Int_t buttons = kMBDismiss, Int_t *ret_code = 0, UInt_t options = kVerticalFrame); virtual ~TGMsgBox(); virtual void CloseWindow(); virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2); ClassDef(TGMsgBox,0) // A message dialog box }; #endif