~s-cecilio/lenmus/trunk

« back to all changes in this revision

Viewing changes to lomse/trunk/src/gui_controls/lomse_hyperlink_ctrl.cpp

  • Committer: Cecilio Salmeron
  • Date: 2016-02-04 10:15:44 UTC
  • Revision ID: s.cecilios@gmail.com-20160204101544-wdodav3eyyej64ga
Prepare for GitHub migration

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//---------------------------------------------------------------------------------------
2
2
// This file is part of the Lomse library.
3
 
// Copyright (c) 2010-2013 Cecilio Salmeron. All rights reserved.
 
3
// Copyright (c) 2010-2016 Cecilio Salmeron. All rights reserved.
4
4
//
5
5
// Redistribution and use in source and binary forms, with or without modification,
6
6
// are permitted provided that the following conditions are met:
94
94
}
95
95
 
96
96
//---------------------------------------------------------------------------------------
97
 
GmoBoxControl* HyperlinkCtrl::layout(LibraryScope& libraryScope, UPoint pos)
 
97
GmoBoxControl* HyperlinkCtrl::layout(LibraryScope& UNUSED(libraryScope), UPoint pos)
98
98
{
99
99
    m_pos = pos;
100
100
    m_pMainBox = LOMSE_NEW GmoBoxControl(this, m_pos, m_width, m_height, m_style);
177
177
}
178
178
 
179
179
//---------------------------------------------------------------------------------------
180
 
void HyperlinkCtrl::set_tooltip(const string& text)
 
180
void HyperlinkCtrl::set_tooltip(const string& UNUSED(text))
181
181
{
182
182
    //TODO: HyperlinkCtrl::set_tooltip
183
183
}
184
184
 
185
185
//---------------------------------------------------------------------------------------
186
 
void HyperlinkCtrl::on_draw(Drawer* pDrawer, RenderOptions& opt)
 
186
void HyperlinkCtrl::on_draw(Drawer* pDrawer, RenderOptions& UNUSED(opt))
187
187
{
188
188
    select_font();
189
189
    Color color = (m_fEnabled ? m_currentColor : Color(192, 192, 192));