]> cygwin.com Git - cygwin-apps/setup.git/blob - package_message.h
Bump displayed copyright year
[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 "msg.h"
19 #include <stdlib.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
37 {
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");
41 }
42 }
43 };
44
45 #endif /* SETUP_PACKAGE_MESSAGE_H */
This page took 0.035129 seconds and 5 git commands to generate.