~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/html/HtmlWindow.h

  • 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
#ifndef __SB_HTMLWINDOW_H__
 
23
#define __SB_HTMLWINDOW_H__
 
24
 
 
25
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 
26
#pragma interface "HtmlWindow.h"
 
27
#endif
 
28
 
 
29
#include "wx/html/htmlwin.h"
 
30
 
 
31
class lmHtmlWindow : public wxHtmlWindow
 
32
{
 
33
public:
 
34
    lmHtmlWindow() : wxHtmlWindow() { m_rScale = 1.0; }
 
35
    lmHtmlWindow(wxWindow *parent, wxWindowID id = wxID_ANY,
 
36
                 const wxPoint& pos = wxDefaultPosition,
 
37
                 const wxSize& size = wxDefaultSize,
 
38
                 long style = wxHW_DEFAULT_STYLE | wxSIMPLE_BORDER ,
 
39
                 const wxString& name = wxT("htmlWindow"))
 
40
        : wxHtmlWindow(parent, id, pos, size, style, name) { m_rScale = 1.0; }
 
41
    ~lmHtmlWindow() {}
 
42
 
 
43
    // -- overrides --
 
44
 
 
45
    // Called when user clicked on hypertext link. The idea is to intercept and 
 
46
    // deal with user commands
 
47
    void OnLinkClicked(const wxHtmlLinkInfo& link);
 
48
 
 
49
    //In tabbed interface this method fails. I suppose it fails as it is not possible
 
50
    // to set up the frame title. So I override it to save the title but not change
 
51
    // the frame title
 
52
    void OnSetTitle(const wxString& title)
 
53
        {
 
54
            m_OpenedPageTitle = title;
 
55
        }
 
56
 
 
57
    // to deal with scale for scores
 
58
    void SetScale(double rScale) { m_rScale = rScale; }
 
59
    double GetScale() { return m_rScale; }
 
60
 
 
61
private:
 
62
    double      m_rScale;
 
63
 
 
64
};
 
65
 
 
66
 
 
67
 
 
68
#endif // __SB_HTMLWINDOW_H__
 
69