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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT
* Any WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/
#include "FontInfo.h"
#include "CppUtil.h"
#include "Debug.h"
#include <QLayout>
//_____________________________________________
FontInfo::FontInfo( QWidget* parent ):
QWidget( parent )
{
Debug::Throw( "FontInfo::FontInfo.\n" );
// create checkboxes
setLayout( new QVBoxLayout );
checkBoxes_ = Base::makeT<CheckBoxMap>( {
{ Format::Bold, new QCheckBox( tr( "Bold" ), this ) },
{ Format::Italic, new QCheckBox( tr( "Italic" ), this ) },
{ Format::Underline, new QCheckBox( tr( "Underline" ), this ) },
{ Format::Strike, new QCheckBox( tr( "Strike" ), this ) },
{ Format::Overline, new QCheckBox( tr( "Overline" ), this ) },
});
for( auto&& iterator = checkBoxes_.begin(); iterator != checkBoxes_.end(); ++iterator )
{
layout()->addWidget( iterator.value() );
connect( iterator.value(), SIGNAL(toggled(bool)), SIGNAL(modified()));
}
}
//__________________________________________________
void FontInfo::setFormat( Format::TextFormatFlags format )
{
Debug::Throw( "FontInfo::setFormat.\n" );
for( CheckBoxMap::iterator iter = checkBoxes_.begin(); iter != checkBoxes_.end(); ++iter )
{ iter.value()->setChecked( format&iter.key() ); }
}
//__________________________________________________
Format::TextFormatFlags FontInfo::format() const
{
Debug::Throw( "FontInfo::format.\n" );
Format::TextFormatFlags out = Format::Default;
for( CheckBoxMap::const_iterator iter = checkBoxes_.constBegin(); iter != checkBoxes_.constEnd(); ++iter )
{ if( iter.value()->isChecked() ) out |= iter.key(); }
return out;
}
|