mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2013 by Azat Khuzhin <a3at.mail@gmail.com> *
|
|
* *
|
|
* This program 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. *
|
|
***************************************************************************/
|
|
|
|
|
|
#include "textdocumentsettings.h"
|
|
#include "textdocumentsettings_p.h"
|
|
#include "ui_textdocumentsettings.h"
|
|
|
|
#include <KFontRequester>
|
|
#include <KLocale>
|
|
|
|
#include <QLabel>
|
|
|
|
|
|
using namespace Okular;
|
|
|
|
/**
|
|
* TextDocumentSettingsWidget
|
|
*/
|
|
|
|
TextDocumentSettingsWidget::TextDocumentSettingsWidget( QWidget *parent )
|
|
: QWidget( parent )
|
|
, d_ptr( new TextDocumentSettingsWidgetPrivate( new Ui_TextDocumentSettings() ) )
|
|
{
|
|
Q_D( TextDocumentSettingsWidget );
|
|
|
|
d->mUi->setupUi( this );
|
|
|
|
// @notice I think this will be useful in future.
|
|
#define ADD_WIDGET( property, widget, objectName, labelName ) \
|
|
d->property = new widget( this ); \
|
|
d->property->setObjectName( QString::fromUtf8( objectName ) ); \
|
|
addRow( labelName, d->property );
|
|
|
|
ADD_WIDGET( mFont, KFontRequester, "kcfg_Font", i18n("&Default Font:") );
|
|
#undef ADD_WIDGET
|
|
}
|
|
|
|
TextDocumentSettingsWidget::~TextDocumentSettingsWidget()
|
|
{
|
|
Q_D( TextDocumentSettingsWidget );
|
|
|
|
delete d->mUi;
|
|
}
|
|
|
|
void TextDocumentSettingsWidget::addRow( const QString& labelText, QWidget *widget )
|
|
{
|
|
Q_D( TextDocumentSettingsWidget );
|
|
|
|
d->mUi->formLayout->addRow( labelText, widget );
|
|
}
|
|
|
|
|
|
/**
|
|
* TextDocumentSettings
|
|
*/
|
|
|
|
TextDocumentSettings::TextDocumentSettings( const QString& config, QObject *parent )
|
|
: KConfigSkeleton( config, parent )
|
|
, d_ptr( new TextDocumentSettingsPrivate() )
|
|
{
|
|
Q_D( TextDocumentSettings );
|
|
|
|
addItemFont( "Font", d->mFont );
|
|
}
|
|
|
|
QFont TextDocumentSettings::font() const
|
|
{
|
|
Q_D( const TextDocumentSettings );
|
|
return d->mFont;
|
|
}
|