2 * Copyright (c) Christopher Faylor
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * A copy of the GNU General Public License can be found at
13 #ifndef SETUP_PACKAGE_MESSAGE_H
14 #define SETUP_PACKAGE_MESSAGE_H
16 #include "UserSettings.h"
26 packagemessage (): id (""), message ("") {}
27 void set (const std::string
& in_id
, const std::string
& in_message
)
34 if (unattended_mode
|| !id
.length () || UserSettings::instance().get (id
.c_str ()))
35 /* No message or already seen */;
38 mbox (NULL
, message
.c_str (), "Cygwin Setup",
39 MB_OK
| MB_ICONSTOP
| MB_SETFOREGROUND
| MB_TOPMOST
);
40 UserSettings::instance().set (id
.c_str (), "1");
45 #endif /* SETUP_PACKAGE_MESSAGE_H */