1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/*
$Id: messagebox.h,v 1.19 2001/12/27 23:54:01 mbn Exp $
------------------------------------------------------------------------
ClanLib, the platform independent game SDK.
This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
version 2. See COPYING for details.
For a total list of contributers see CREDITS.
See http://www.clanlib.org
------------------------------------------------------------------------
*/
//! clanGUI="Controls"
//! header=gui.h
#ifndef header_messagebox
#define header_messagebox
#include "window.h"
class CL_MessageBox_Generic;
//: MessageBox component
class CL_MessageBox : public CL_Window
{
//! Construction:
public:
//: MessageBox constructor
CL_MessageBox(
CL_Component *parent,
CL_StyleManager *style = NULL);
//: MessageBox constructor
CL_MessageBox(
const std::string &title,
const std::string &text,
const std::string &button1,
const std::string &button2,
const std::string &button3,
CL_Component *parent,
CL_StyleManager *style = NULL);
//: MessageBox destructor
virtual ~CL_MessageBox();
//: Creates a messagebox "Information" with text and an OK button.
static void info(
const std::string &text,
CL_Component *parent);
//: Creates a message box with title, text and an OK button.
static void info(
const std::string &title,
const std::string &text,
CL_Component *parent);
//: Creates a message box with title, text and up to three buttons.
static int info(
const std::string &title,
const std::string &text,
const std::string &button1,
const std::string &button2,
const std::string &button3,
CL_Component *parent);
//! Attributes:
public:
//: Returns the message text.
const std::string &get_text() const;
//: Returns the index of the button clicked.
int get_result_button() const;
//! Operations:
public:
//: Sets the message text.
void set_text(const std::string &text);
//! Signals:
public:
//: Signal for button 1
CL_Signal_v0 &sig_button1();
//: Signal for button 2
CL_Signal_v0 &sig_button2();
//: Signal for button 3
CL_Signal_v0 &sig_button3();
//! Implementation:
private:
// TODO:Fix this copy constructor:
// CL_MessageBox(const CL_MessageBox ©) : CL_Window(NULL, NULL) { return; } // disallow copy construction.
CL_MessageBox_Generic *impl;
};
#endif
|