⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 evafontselecter.cpp

📁 linux下的eva源代码
💻 CPP
字号:
/*************************************************************************** *   Copyright (C) 2005 by yunfan                                          * *   yunfan_zg@163.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.                                   * *                                                                         * *   This program 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, write to the                         * *   Free Software Foundation, Inc.,                                       * *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             * ***************************************************************************/  #include "evafontselecter.h"#include <qvariant.h>#include <qlabel.h>#include <kcolorcombo.h>#include <knuminput.h>#include <qpushbutton.h>#include <qlayout.h>#include <qtooltip.h>#include <qwhatsthis.h>#include <qimage.h>#include <qpixmap.h>#include <qframe.h>#include <klocale.h>EvaFontSelecter::EvaFontSelecter( QWidget* parent, const char* name, WFlags fl )    : QWidget( parent, name, fl ){	if ( !name )		setName( "EvaFontSelecter" );	EvaFontWindowLayout = new QGridLayout( this, 1, 1, 0, 0, "EvaFontWindowLayout");		frame = new QFrame( this, "frame" );	frame->setFrameShape( QFrame::StyledPanel );	frame->setFrameShadow( QFrame::Raised );	frame->setLineWidth( 1 );		EvaFontSelecterLayout = new QGridLayout( frame, 1, 1, 11, 6, "EvaFontSelecterLayout"); 		layout3 = new QHBoxLayout( 0, 3, 6, "layout3"); 		lblColor = new QLabel( frame, "lblColor" );	layout3->addWidget( lblColor );		color = new KColorCombo( frame, "kColorButton" );	color->setMaximumSize( QSize( 80, 32767 ) );	layout3->addWidget( color );		lblSize = new QLabel( frame, "lblSize" );	layout3->addWidget( lblSize );		kIntSpinBox = new KIntSpinBox( frame, "kIntSpinBox" );	kIntSpinBox->setButtonSymbols( KIntSpinBox::UpDownArrows );	kIntSpinBox->setMaxValue( 20 );	kIntSpinBox->setMinValue( 8 );	//kIntSpinBox->setValue( 9 );	kIntSpinBox->setBase( 10 );	layout3->addWidget( kIntSpinBox );		pbOK = new QPushButton( frame, "pbOK" );	pbOK->setMaximumSize( QSize( 32767, 50 ) );	layout3->addWidget( pbOK );		EvaFontSelecterLayout->addLayout( layout3, 0, 0 );	EvaFontWindowLayout->addWidget( frame, 0, 0 );	languageChange();	resize( QSize(258, 52).expandedTo(minimumSizeHint()) );	clearWState( WState_Polished );	QObject::connect(pbOK, SIGNAL(clicked()), this, SLOT(slotClicked()));}/* *  Destroys the object and frees any allocated resources */EvaFontSelecter::~EvaFontSelecter(){    // no need to delete child widgets, Qt does it all for us}/* *  Sets the strings of the subwidgets using the current *  language. */void EvaFontSelecter::languageChange(){	setCaption( i18n( "Font Selecter" ) );	lblColor->setText( i18n( "Color:" ) );	QToolTip::add( color, i18n( "select font color" ) );	lblSize->setText( i18n( "Size:" ) );	QToolTip::add( kIntSpinBox, i18n( "select font size" ) );	pbOK->setText( i18n( "&OK" ) );	pbOK->setAccel( QKeySequence( tr( "Alt+O" ) ) );}void EvaFontSelecter::slotClicked(){	emit fontChanged(color->color(), kIntSpinBox->value());		close();	//hide();}void EvaFontSelecter::setColor( const QColor & col ){	color->setColor(col);}void EvaFontSelecter::setSize( const int size){	kIntSpinBox->setValue(size);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -