-
Notifications
You must be signed in to change notification settings - Fork 4
/
genericAlertWindow.hpp
49 lines (41 loc) · 1.15 KB
/
genericAlertWindow.hpp
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
#ifndef CPP_GENERICALERTWINDOW_CLASS_H
#define CPP_GENERICALERTWINDOW_CLASS_H
/*!
* \project_name EBU Player
* \file genericAlertWindow.hpp
* \brief Generic alert window specifications
* \details This class is used to launch a generic dialog box where will be displayed the alert messages.
* \authors Marco Dos Santos Oliveira
* \version 0.1
* \date 4 march 2013
* \copyright GNU GPLv3
*
*/
#include <gtkmm.h>
#include <gdkmm.h>
#include <iostream>
#include <string>
#include <fstream>
class genericAlertWindow : public Gtk::MessageDialog
{
public:
/*!*
* @brief Class constructor
* @brief The genericAlertWindow class constructor instantiates a new dialog message.\n\n
* @param[in] Gtk::Window& alertParent : The window which instantiates the dialog message
* @param[in] const Glib::ustring alertTitle : The title of the dialog message window
* @param[in] std::string alertMessage : The message to write into the dialog box
*/
genericAlertWindow
(
Gtk::Window& alertParent,
const Glib::ustring & alertTitle,
std::string alertMessage
);
virtual ~genericAlertWindow
(
void
);
protected:
};
#endif /*CPP_GENERICALERTWINDOW_CLASS_H*/