]> cygwin.com Git - cygwin-apps/setup.git/blob - package_message.h
Fix compatibility with GCC 4.x.
[cygwin-apps/setup.git] / package_message.h
1 /*
2 * Copyright (c) Christopher Faylor
3 *
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.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 */
12
13 #ifndef SETUP_PACKAGE_MESSAGE_H
14 #define SETUP_PACKAGE_MESSAGE_H
15
16 #include "UserSettings.h"
17 #include "state.h"
18 #include <stdlib.h>
19 #include <windows.h>
20
21 class packagemessage
22 {
23 std::string id;
24 std::string message;
25 public:
26 packagemessage (): id (""), message ("") {}
27 void set (const std::string& in_id, const std::string& in_message)
28 {
29 id = in_id;
30 message = in_message;
31 }
32 void display ()
33 {
34 if (unattended_mode || !id.length () || UserSettings::instance().get (id.c_str ()))
35 /* No message or already seen */;
36 else if (MessageBox (NULL, message.c_str (), "Setup Alert",
37 MB_OKCANCEL | MB_ICONSTOP | MB_SETFOREGROUND
38 | MB_TOPMOST) != IDCANCEL)
39 UserSettings::instance().set (id.c_str (), "1");
40 else
41 exit (1);
42 }
43 };
44
45 #endif /* SETUP_PACKAGE_MESSAGE_H */
46
This page took 0.039569 seconds and 6 git commands to generate.