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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*
* Copyright (C) 2009, 2010, 2011 Nicolas Bonnefon and other contributors
*
* This file is part of glogg.
*
* glogg 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 3 of the License, or
* (at your option) any later version.
*
* glogg 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 glogg. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QtGui>
#include "optionsdialog.h"
#include "log.h"
#include "persistentinfo.h"
#include "configuration.h"
// Constructor
OptionsDialog::OptionsDialog( QWidget* parent ) : QDialog(parent)
{
setupUi( this );
setupFontList();
setupRegexp();
connect(buttonBox, SIGNAL( clicked( QAbstractButton* ) ),
this, SLOT( onButtonBoxClicked( QAbstractButton* ) ) );
connect(fontFamilyBox, SIGNAL( currentIndexChanged(const QString& ) ),
this, SLOT( updateFontSize( const QString& ) ));
updateDialogFromConfig();
}
//
// Private functions
//
// Populates the 'family' ComboBox
void OptionsDialog::setupFontList()
{
QFontDatabase database;
fontFamilyBox->addItems(database.families());
}
// Populate the regexp ComboBoxes
void OptionsDialog::setupRegexp()
{
QStringList regexpTypes;
regexpTypes << tr("Extended Regexp")
<< tr("Wildcards") << tr("Fixed Strings");
mainSearchBox->addItems( regexpTypes );
quickFindSearchBox->addItems( regexpTypes );
}
// Convert a regexp type to its index in the list
int OptionsDialog::getRegexpIndex( SearchRegexpType syntax ) const
{
return static_cast<int>( syntax );
}
// Convert the index of a regexp type to its type
SearchRegexpType OptionsDialog::getRegexpTypeFromIndex( int index ) const
{
return static_cast<SearchRegexpType>( index );;
}
// Updates the dialog box using values in global Config()
void OptionsDialog::updateDialogFromConfig()
{
Configuration& config = Persistent<Configuration>( "settings" );
// Main font
QFontInfo fontInfo = QFontInfo( config.mainFont() );
int familyIndex = fontFamilyBox->findText( fontInfo.family() );
if ( familyIndex != -1 )
fontFamilyBox->setCurrentIndex( familyIndex );
int sizeIndex = fontSizeBox->findText( QString::number(fontInfo.pointSize()) );
if ( sizeIndex != -1 )
fontSizeBox->setCurrentIndex( sizeIndex );
// Regexp types
mainSearchBox->setCurrentIndex(
getRegexpIndex( config.mainRegexpType() ) );
quickFindSearchBox->setCurrentIndex(
getRegexpIndex( config.quickfindRegexpType() ) );
}
//
// Slots
//
void OptionsDialog::updateFontSize(const QString& fontFamily)
{
QFontDatabase database;
QString oldFontSize = fontSizeBox->currentText();
QList<int> sizes = database.pointSizes( fontFamily, "" );
fontSizeBox->clear();
foreach (int size, sizes) {
fontSizeBox->addItem( QString::number(size) );
}
// Now restore the size we had before
int i = fontSizeBox->findText(oldFontSize);
if ( i != -1 )
fontSizeBox->setCurrentIndex(i);
}
void OptionsDialog::updateConfigFromDialog()
{
Configuration& config = Persistent<Configuration>( "settings" );
QFont font = QFont(
fontFamilyBox->currentText(),
(fontSizeBox->currentText()).toInt() );
config.setMainFont(font);
config.setMainRegexpType(
getRegexpTypeFromIndex( mainSearchBox->currentIndex() ) );
config.setQuickfindRegexpType(
getRegexpTypeFromIndex( quickFindSearchBox->currentIndex() ) );
emit optionsChanged();
}
void OptionsDialog::onButtonBoxClicked( QAbstractButton* button )
{
QDialogButtonBox::ButtonRole role = buttonBox->buttonRole( button );
if ( ( role == QDialogButtonBox::AcceptRole )
|| ( role == QDialogButtonBox::ApplyRole ) ) {
updateConfigFromDialog();
}
if ( role == QDialogButtonBox::AcceptRole )
accept();
else if ( role == QDialogButtonBox::RejectRole )
reject();
}
|