You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.8 KiB
C++
96 lines
2.8 KiB
C++
//
|
|
// C++ Implementation:
|
|
//
|
|
// Description: KWordQuiz flashcard appearance preferences
|
|
//
|
|
//
|
|
// Author: Peter Hedlund <peter.hedlund@kdemail.net>, (C) 2004
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#include <tqwidgetstack.h>
|
|
#include <tqlabel.h>
|
|
|
|
#include <tdefontrequester.h>
|
|
#include <kcolorbutton.h>
|
|
#include <tdelocale.h>
|
|
|
|
#include "prefcardappearance.h"
|
|
|
|
PrefCardAppearance::PrefCardAppearance(TQWidget *parent, const char *name)
|
|
: PrefCardAppearanceBase(parent, name)
|
|
{
|
|
widgetStack->raiseWidget(frontStackPage);
|
|
}
|
|
|
|
|
|
PrefCardAppearance::~PrefCardAppearance()
|
|
{
|
|
}
|
|
|
|
void PrefCardAppearance::slotFlipButtonClicked( )
|
|
{
|
|
if (widgetStack->visibleWidget() == frontStackPage)
|
|
widgetStack->raiseWidget(backStackPage);
|
|
else
|
|
widgetStack->raiseWidget(frontStackPage);
|
|
}
|
|
|
|
void PrefCardAppearance::slotFontChanged(const TQFont & font)
|
|
{
|
|
textLabel->setFont(font);
|
|
}
|
|
|
|
void PrefCardAppearance::slotTextColorChanged( const TQColor & color)
|
|
{
|
|
textLabel->setPaletteForegroundColor(color);
|
|
}
|
|
|
|
void PrefCardAppearance::slotCardColorChanged( const TQColor & color)
|
|
{
|
|
cardFrame->setPaletteBackgroundColor(color);
|
|
titleLabel->setPaletteBackgroundColor(color);
|
|
textLabel->setPaletteBackgroundColor(color);
|
|
line->setPaletteBackgroundColor(color);
|
|
}
|
|
|
|
void PrefCardAppearance::slotFrameColorChanged( const TQColor & color)
|
|
{
|
|
cardFrame->setPaletteForegroundColor(color);
|
|
line->setPaletteForegroundColor(color);
|
|
}
|
|
|
|
void PrefCardAppearance::slotAboutToShowWidget(TQWidget * widget)
|
|
{
|
|
if (widget == backStackPage)
|
|
{
|
|
titleLabel->setText(i18n("Back of the flashcard", "Back"));
|
|
titleLabel->setPaletteBackgroundColor(kcfg_BackCardColor->color());
|
|
textLabel->setText(i18n("Answer"));
|
|
textLabel->setFont(kcfg_BackFont->font());
|
|
textLabel->setPaletteForegroundColor(kcfg_BackTextColor->color());
|
|
textLabel->setPaletteBackgroundColor(kcfg_BackCardColor->color());
|
|
cardFrame->setPaletteBackgroundColor(kcfg_BackCardColor->color());
|
|
cardFrame->setPaletteForegroundColor(kcfg_BackFrameColor->color());
|
|
line->setPaletteForegroundColor(kcfg_BackFrameColor->color());
|
|
line->setPaletteBackgroundColor(kcfg_BackCardColor->color());
|
|
}
|
|
else
|
|
{
|
|
titleLabel->setText(i18n("Front"));
|
|
titleLabel->setPaletteBackgroundColor(kcfg_FrontCardColor->color());
|
|
textLabel->setText(i18n("Question"));
|
|
textLabel->setFont(kcfg_FrontFont->font());
|
|
textLabel->setPaletteForegroundColor(kcfg_FrontTextColor->color());
|
|
textLabel->setPaletteBackgroundColor(kcfg_FrontCardColor->color());
|
|
cardFrame->setPaletteBackgroundColor(kcfg_FrontCardColor->color());
|
|
cardFrame->setPaletteForegroundColor(kcfg_FrontFrameColor->color());
|
|
line->setPaletteForegroundColor(kcfg_FrontFrameColor->color());
|
|
line->setPaletteBackgroundColor(kcfg_FrontCardColor->color());
|
|
}
|
|
}
|
|
|
|
|
|
#include "prefcardappearance.moc"
|