~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/app/DlgDebug.cpp

  • Committer: cecilios
  • Date: 2007-05-19 11:39:03 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:trunk:236

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//--------------------------------------------------------------------------------------
 
2
//    LenMus Phonascus: The teacher of music
 
3
//    Copyright (c) 2002-2007 Cecilio Salmeron
 
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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, 
 
15
//    Fifth Floor, Boston, MA  02110-1301, USA.
 
16
//
 
17
//    For any comment, suggestion or feature request, please contact the manager of 
 
18
//    the project at cecilios@users.sourceforge.net
 
19
//
 
20
//-------------------------------------------------------------------------------------
 
21
 
 
22
#ifdef __GNUG__
 
23
// #pragma implementation
 
24
#endif
 
25
 
 
26
// For compilers that support precompilation, includes "wx/wx.h".
 
27
#include "wx/wxprec.h"
 
28
 
 
29
#ifdef __BORLANDC__
 
30
#pragma hdrstop
 
31
#endif
 
32
 
 
33
#ifndef WX_PRECOMP
 
34
#include "wx/wx.h"
 
35
#endif
 
36
 
 
37
#include <wx/dialog.h>
 
38
#include <wx/html/htmlwin.h>
 
39
#include <wx/button.h>
 
40
#include <wx/sizer.h>
 
41
 
 
42
 
 
43
#include "DlgDebug.h"
 
44
 
 
45
BEGIN_EVENT_TABLE(lmDlgDebug, wxDialog)
 
46
   EVT_BUTTON(wxID_OK, lmDlgDebug::OnOK)
 
47
END_EVENT_TABLE()
 
48
 
 
49
IMPLEMENT_CLASS(lmDlgDebug, wxDialog)
 
50
 
 
51
lmDlgDebug::lmDlgDebug(wxWindow * parent, wxString sTitle, wxString sData)
 
52
    :  wxDialog(parent, -1, sTitle,
 
53
            wxDefaultPosition, wxSize(800, 430), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER )
 
54
{
 
55
    Centre();
 
56
 
 
57
    wxBoxSizer * pMainSizer = new wxBoxSizer(wxVERTICAL);
 
58
 
 
59
    m_pTxtData = new wxTextCtrl(this, -1, sData, 
 
60
                                wxPoint(10, 10),
 
61
                                wxSize(780, 380), 
 
62
                                wxTE_MULTILINE | wxHSCROLL | wxTE_READONLY );
 
63
    m_pTxtData->SetFont(wxFont(10, wxFONTFAMILY_MODERN, wxNORMAL, wxNORMAL, FALSE, _T("Courier")));
 
64
 
 
65
    pMainSizer->Add(m_pTxtData,
 
66
                    1,            // make vertically stretchable
 
67
                    wxEXPAND |    // make horizontally stretchable
 
68
                    wxALL,        //   and make border all around
 
69
                    10 );         // set border width to 10
 
70
 
 
71
 
 
72
    wxButton *cmdOK = new wxButton(this, wxID_OK,
 
73
                                _("OK"),
 
74
                                wxPoint(150, 390),
 
75
                                wxSize(80, 25));
 
76
    cmdOK->SetDefault();
 
77
    cmdOK->SetFocus();
 
78
    pMainSizer->Add(cmdOK, 0, wxALIGN_CENTER | wxALL, 10);
 
79
 
 
80
    // set autolayout based on sizers
 
81
    SetAutoLayout(true);
 
82
    SetSizer(pMainSizer);
 
83
 
 
84
}
 
85
 
 
86
lmDlgDebug::~lmDlgDebug()
 
87
{
 
88
}
 
89
 
 
90
void lmDlgDebug::OnOK(wxCommandEvent& WXUNUSED(event))
 
91
{
 
92
   EndModal(wxID_OK);
 
93
}
 
94
 
 
95
void lmDlgDebug::AppendText(wxString sText)
 
96
{
 
97
    m_pTxtData->AppendText(sText);
 
98
}
 
99