summaryrefslogtreecommitdiff
path: root/include/Confirm.h
blob: efd06065854d60aace1e535d19e37b210c14fccd (plain)
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
#ifndef __CONFIRM_H__
#define __CONFIRM_H__
#ifdef __cplusplus

#include <Action.h>
#include <String.h>
#include <Exceptions.h>

/*
 * Cette classe sert à afficher une boîte de dialogue de confirmation.
 *   Constructeur:
 *     - titre = titre de la boite de dialogue
 *     - msg = message a afficher
 *     - url = url de cette boite
 *     - yes = action a effectuer si on clique sur Oui
 *     - no = action a effectuer si on clique sur Non.
 */

class Confirm : public Action {
  public:
    Confirm(const String & titre, const String & msg, const String & url, Action * yes, Action * no = 0);
    virtual ~Confirm() { }
    virtual String GetTitle();
    virtual void Do(Variables *, Handle *);
  private:
    String tit, msg;
    Action * NYes, * NNo;
};

#else
#error This only works with a C++ compiler
#endif
#endif