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 70 71 72 73 74
|
/******************************************************************************
*
* 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 "AutoSpellConfiguration.h"
#include "GridLayout.h"
#include "Debug.h"
#include "OptionColorDisplay.h"
#include "OptionSpinBox.h"
#include "OptionFontInfo.h"
#include "XmlOptions.h"
#include <QGridLayout>
#include <QLabel>
namespace SpellCheck
{
//___________________________________________
AutoSpellConfiguration::AutoSpellConfiguration( QWidget* parent ):
QGroupBox( "Automatic Spell Check", parent ),
OptionWidgetList( this ),
Counter( "AutoSpellConfiguration" )
{
Debug::Throw( "AutoSpellConfiguration::AutoSpellConfiguration.\n" );
GridLayout* gridLayout( new GridLayout );
gridLayout->setSpacing( 5 );
gridLayout->setMargin( 5 );
gridLayout->setMaxCount( 2 );
gridLayout->setColumnAlignment( 0, Qt::AlignRight|Qt::AlignVCenter );
setLayout( gridLayout );
// suggestions
gridLayout->addWidget( new QLabel( tr( "Maximum number of suggestions:" ), this ) );
OptionSpinBox* spinbox = new OptionSpinBox( this, "MAX_SUGGESTIONS" ) ;
gridLayout->addWidget( spinbox);
spinbox->setMinimum( 0 );
spinbox->setMaximum( 50 );
spinbox->setToolTip( tr( "Maximum number of suggestions in suggestion menu.\n 0 means no limit." ) );
addOptionWidget( spinbox );
// options
gridLayout->addWidget( new QLabel( tr( "Highlight color:" ), this ), 1, 0 );
OptionColorDisplay *colordisplay = new OptionColorDisplay( this, "AUTOSPELL_COLOR" );
gridLayout->addWidget( colordisplay );
colordisplay->setToolTip( tr( "Highlight color for misspelled words" ) );
addOptionWidget( colordisplay );
gridLayout->addWidget( new QLabel( tr( "Highlight font format:" ), this ), 2, 0 );
OptionFontInfo* fontinfo = new OptionFontInfo( this, "AUTOSPELL_FONT_FORMAT" );
fontinfo->layout()->setMargin(0);
gridLayout->addWidget( fontinfo, 2, 1, 5, 1 );
fontinfo->setToolTip( tr( "Font format for misspelled words" ) );
addOptionWidget( fontinfo );
read( XmlOptions::get() );
}
}
|