~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/widgets/MsgBox.h

  • Committer: cecilios
  • Date: 2012-07-05 18:23:21 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:branches/TRY-5.0:706
fix cmakelist

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//--------------------------------------------------------------------------------------
 
2
//    LenMus Phonascus: The teacher of music
 
3
//    Copyright (c) 2002-2010 LenMus project
 
4
//
 
5
//    This program is free software; you can redistribute it and/or modify it under the
 
6
//    terms of the GNU General Public License as published by the Free Software Foundation,
 
7
//    either version 3 of the License, or (at your option) any later version.
 
8
//
 
9
//    This program is distributed in the hope that it will be useful, but WITHOUT ANY
 
10
//    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
11
//    PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 
12
//
 
13
//    You should have received a copy of the GNU General Public License along with this
 
14
//    program. If not, see <http://www.gnu.org/licenses/>.
 
15
//
 
16
//    For any comment, suggestion or feature request, please contact the manager of
 
17
//    the project at cecilios@users.sourceforge.net
 
18
//
 
19
//-------------------------------------------------------------------------------------
 
20
 
 
21
#ifndef __LM_MSGBOX_H__        //to avoid nested includes
 
22
#define __LM_MSGBOX_H__
 
23
 
 
24
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 
25
#pragma interface "MsgBox.cpp"
 
26
#endif
 
27
 
 
28
// For compilers that support precompilation, includes <wx/wx.h>.
 
29
#include <wx/wxprec.h>
 
30
 
 
31
#ifdef __BORLANDC__
 
32
#pragma hdrstop
 
33
#endif
 
34
 
 
35
#ifndef WX_PRECOMP
 
36
#include <wx/wx.h>
 
37
#endif
 
38
 
 
39
 
 
40
class lmMsgBoxBase : public wxDialog
 
41
{
 
42
public:
 
43
    virtual ~lmMsgBoxBase();
 
44
 
 
45
    //event handlers
 
46
    void OnRespButton(wxCommandEvent& event);
 
47
 
 
48
 
 
49
protected:
 
50
    lmMsgBoxBase(const wxString& sMessage, const wxString& sTitle);
 
51
    void CreateControls();
 
52
    void FinishLayout();
 
53
    void AddButton(const wxString& sLabel, const wxString& sDescr);
 
54
 
 
55
    enum {
 
56
        lmMAX_BUTTONS = 10,     //max number of buttons allowed
 
57
    };
 
58
 
 
59
        wxBoxSizer*         m_pMainSizer;
 
60
        wxStaticBitmap*     m_pBitmap;
 
61
        wxStaticText*       m_pMessage;
 
62
        const wxString&     m_sMessage;
 
63
        wxBoxSizer*         m_pButtonsSizer;
 
64
    int                 m_nNumButtons;
 
65
    wxButton*           m_pButton[lmMAX_BUTTONS];
 
66
    wxStaticText*       m_pText[lmMAX_BUTTONS];
 
67
    int                 m_nMaxButtonWidth;
 
68
 
 
69
    DECLARE_EVENT_TABLE()
 
70
};
 
71
 
 
72
class lmErrorBox : public lmMsgBoxBase
 
73
{
 
74
public:
 
75
    lmErrorBox(const wxString& sMessage, const wxString& sButtonText);
 
76
    ~lmErrorBox() {}
 
77
 
 
78
protected:
 
79
 
 
80
};
 
81
 
 
82
//class lmInfoBox : public lmMsgBoxBase
 
83
//{
 
84
//public:
 
85
//    lmInfoBox();
 
86
//    ~lmInfoBox();
 
87
//
 
88
//protected:
 
89
//
 
90
//};
 
91
//
 
92
//class lmYesNoBox : public lmMsgBoxBase
 
93
//{
 
94
//public:
 
95
//    lmYesNoBox();
 
96
//    ~lmYesNoBox();
 
97
//
 
98
//protected:
 
99
//
 
100
//};
 
101
 
 
102
class lmQuestionBox : public lmMsgBoxBase
 
103
{
 
104
public:
 
105
    lmQuestionBox(const wxString& sMessage, int nNumButtons, ...);
 
106
    ~lmQuestionBox() {}
 
107
 
 
108
protected:
 
109
 
 
110
};
 
111
 
 
112
 
 
113
 
 
114
#endif    // __LM_MSGBOX_H__