/* This file is part of the KDE project
Copyright ( C ) 2001 , 2002 , 2003 , 2004 Laurent Montel < montel @ kde . org >
This library is free software ; you can redistribute it and / or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation ; either
version 2 of the License , or ( at your option ) any later version .
This library 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
Library General Public License for more details .
You should have received a copy of the GNU Library General Public License
along with this library ; see the file COPYING . LIB . If not , write to
the Free Software Foundation , Inc . , 51 Franklin Street , Fifth Floor ,
* Boston , MA 02110 - 1301 , USA .
*/
# include "kchartHeaderFooterConfigPage.h"
# include "kchartHeaderFooterConfigPage.moc"
# include <kapplication.h>
# include <kdialog.h>
# include <klocale.h>
# include <tqlayout.h>
# include <tqlabel.h>
# include <tqlineedit.h>
# include <tqbuttongroup.h>
# include <tqwhatsthis.h>
# include <kfontdialog.h>
# include "kchart_params.h"
namespace KChart
{
KChartHeaderFooterConfigPage : : KChartHeaderFooterConfigPage ( KChartParams * params ,
TQWidget * parent ) :
TQWidget ( parent ) , _params ( params )
{
TQGridLayout * tqlayout = new TQGridLayout ( this , 4 , 3 ) ;
tqlayout - > setSpacing ( KDialog : : spacingHint ( ) ) ;
tqlayout - > setMargin ( KDialog : : marginHint ( ) ) ;
TQLabel * lab = new TQLabel ( i18n ( " Title: " ) , this ) ;
TQWhatsThis : : add ( lab , i18n ( " Write here the title of your chart if you want one. The title will be centered on top above your chart. " ) ) ;
tqlayout - > addWidget ( lab , 0 , 0 ) ;
titleEdit = new TQLineEdit ( this ) ;
TQWhatsThis : : add ( titleEdit , i18n ( " Write here the title of your chart if you want one. The title will be centered on top above your chart. " ) ) ;
tqlayout - > addWidget ( titleEdit , 0 , 1 ) ;
titleColorButton = new KColorButton ( this ) ;
TQWhatsThis : : add ( titleColorButton , i18n ( " Click on this button to choose the color for the title font. " ) ) ;
tqlayout - > addWidget ( titleColorButton , 0 , 2 ) ;
titleFontButton = new TQPushButton ( i18n ( " Font... " ) , this ) ;
TQWhatsThis : : add ( titleFontButton , i18n ( " Click on this button to choose the font family, style and size for the title. " ) ) ;
tqlayout - > addWidget ( titleFontButton , 0 , 3 ) ;
connect ( titleFontButton , TQT_SIGNAL ( clicked ( ) ) , this , TQT_SLOT ( changeTitleFont ( ) ) ) ;
lab = new TQLabel ( i18n ( " Subtitle: " ) , this ) ;
TQWhatsThis : : add ( lab , i18n ( " Write here the subtitle of your chart if you want one. The subtitle will be centered on top just below the title. " ) ) ;
tqlayout - > addWidget ( lab , 1 , 0 ) ;
subtitleEdit = new TQLineEdit ( this ) ;
TQWhatsThis : : add ( subtitleEdit , i18n ( " Write here the subtitle of your chart if you want one. The subtitle will be centered on top just below the title. " ) ) ;
tqlayout - > addWidget ( subtitleEdit , 1 , 1 ) ;
subtitleColorButton = new KColorButton ( this ) ;
TQWhatsThis : : add ( subtitleColorButton , i18n ( " Click on this button to choose the color for the subtitle font. " ) ) ;
tqlayout - > addWidget ( subtitleColorButton , 1 , 2 ) ;
subtitleFontButton = new TQPushButton ( i18n ( " Font... " ) , this ) ;
TQWhatsThis : : add ( subtitleFontButton , i18n ( " Click on this button to choose the font family, style and size for the subtitle. " ) ) ;
tqlayout - > addWidget ( subtitleFontButton , 1 , 3 ) ;
connect ( subtitleFontButton , TQT_SIGNAL ( clicked ( ) ) , this , TQT_SLOT ( changeSubtitleFont ( ) ) ) ;
lab = new TQLabel ( i18n ( " Footer: " ) , this ) ;
TQWhatsThis : : add ( lab , i18n ( " Write here the footer of your chart if you want one. The footer will be centered at the bottom just below your chart. " ) ) ;
tqlayout - > addWidget ( lab , 2 , 0 ) ;
footerEdit = new TQLineEdit ( this ) ;
TQWhatsThis : : add ( footerEdit , i18n ( " Write here the subtitle of your chart if you want one. The subtitle will be centered on top just below the title. " ) ) ;
tqlayout - > addWidget ( footerEdit , 2 , 1 ) ;
footerColorButton = new KColorButton ( this ) ;
TQWhatsThis : : add ( footerColorButton , i18n ( " Click on this button to choose the color for the footer font. " ) ) ;
tqlayout - > addWidget ( footerColorButton , 2 , 2 ) ;
footerFontButton = new TQPushButton ( i18n ( " Font... " ) , this ) ;
TQWhatsThis : : add ( footerFontButton , i18n ( " Click on this button to choose the font family, style and size for the footer. " ) ) ;
connect ( footerFontButton , TQT_SIGNAL ( clicked ( ) ) , this , TQT_SLOT ( changeFooterFont ( ) ) ) ;
tqlayout - > addWidget ( footerFontButton , 2 , 3 ) ;
tqlayout - > addItem ( new TQSpacerItem ( 5 , 5 , TQSizePolicy : : Minimum , TQSizePolicy : : Expanding ) , 3 , 0 ) ;
tqlayout - > activate ( ) ;
}
void KChartHeaderFooterConfigPage : : init ( )
{
titleColorButton - > setColor ( _params - > headerFooterColor ( KDChartParams : : HdFtPosHeader ) ) ;
subtitleColorButton - > setColor ( _params - > headerFooterColor ( KDChartParams : : HdFtPosHeader2 ) ) ;
footerColorButton - > setColor ( _params - > headerFooterColor ( KDChartParams : : HdFtPosFooter ) ) ;
titleEdit - > setText ( _params - > header1Text ( ) ) ;
subtitleEdit - > setText ( _params - > header2Text ( ) ) ;
footerEdit - > setText ( _params - > footerText ( ) ) ;
titleFont = _params - > header1Font ( ) ;
titleFontIsRelative = _params - > headerFooterFontUseRelSize ( KDChartParams : : HdFtPosHeader )
? TQButton : : On
: TQButton : : Off ;
if ( TQButton : : On = = titleFontIsRelative )
titleFont . setPointSize ( _params - > headerFooterFontRelSize ( KDChartParams : : HdFtPosHeader ) ) ;
subtitleFont = _params - > header2Font ( ) ;
subtitleFontIsRelative = _params - > headerFooterFontUseRelSize ( KDChartParams : : HdFtPosHeader2 )
? TQButton : : On
: TQButton : : Off ;
if ( TQButton : : On = = subtitleFontIsRelative )
subtitleFont . setPointSize ( _params - > headerFooterFontRelSize ( KDChartParams : : HdFtPosHeader2 ) ) ;
footerFont = _params - > footerFont ( ) ;
footerFontIsRelative = _params - > headerFooterFontUseRelSize ( KDChartParams : : HdFtPosFooter )
? TQButton : : On
: TQButton : : Off ;
if ( TQButton : : On = = footerFontIsRelative )
footerFont . setPointSize ( _params - > headerFooterFontRelSize ( KDChartParams : : HdFtPosFooter ) ) ;
}
void KChartHeaderFooterConfigPage : : apply ( )
{
_params - > setHeaderFooterColor ( KDChartParams : : HdFtPosHeader , titleColorButton - > color ( ) ) ;
_params - > setHeaderFooterColor ( KDChartParams : : HdFtPosHeader2 , subtitleColorButton - > color ( ) ) ;
_params - > setHeaderFooterColor ( KDChartParams : : HdFtPosFooter , footerColorButton - > color ( ) ) ;
_params - > setHeader1Text ( titleEdit - > text ( ) ) ;
_params - > setHeader2Text ( subtitleEdit - > text ( ) ) ;
_params - > setFooterText ( footerEdit - > text ( ) ) ;
_params - > setHeaderFooterFont ( KDChartParams : : HdFtPosHeader , titleFont ,
titleFontIsRelative ,
titleFont . pointSize ( ) ) ;
_params - > setHeaderFooterFont ( KDChartParams : : HdFtPosHeader2 , subtitleFont ,
subtitleFontIsRelative ,
subtitleFont . pointSize ( ) ) ;
_params - > setHeaderFooterFont ( KDChartParams : : HdFtPosFooter , footerFont ,
footerFontIsRelative ,
footerFont . pointSize ( ) ) ;
}
void KChartHeaderFooterConfigPage : : changeTitleFont ( )
{
TQButton : : ToggleState state = titleFontIsRelative ;
if ( KFontDialog : : getFont ( titleFont , false , this , true , & state ) ! = TQDialog : : Rejected
& & TQButton : : NoChange ! = state )
titleFontIsRelative = state ;
}
void KChartHeaderFooterConfigPage : : changeSubtitleFont ( )
{
TQButton : : ToggleState state = subtitleFontIsRelative ;
if ( KFontDialog : : getFont ( subtitleFont , false , this , true , & state ) ! = TQDialog : : Rejected
& & TQButton : : NoChange ! = state )
subtitleFontIsRelative = state ;
}
void KChartHeaderFooterConfigPage : : changeFooterFont ( )
{
TQButton : : ToggleState state = footerFontIsRelative ;
if ( KFontDialog : : getFont ( footerFont , false , this , true , & state ) ! = TQDialog : : Rejected
& & TQButton : : NoChange ! = state )
footerFontIsRelative = state ;
}
} //KChart namespace