Source Code (Use browser search to find items of interest.)
Class Index
kword'KWAutoFormatDia (./koffice/kword/autoformatdia.h:38)
class KWAutoFormatDia : public QTabDialog
{
Q_OBJECT
public:
KWAutoFormatDia( QWidget *parent, const char *name, KWordDocument *_doc, KWPage *_page );
protected:
void setupTab1();
void setupTab2();
QVBox *tab1;
QHBox *tab2;
QCheckBox *cbTypographicQuotes, *cbUpperCase, *cbUpperUpper;
QPushButton *pbQuote1, *pbQuote2, *pbEdit, *pbRemove, *pbAdd;
KCharSelect *charselect;
QListView *entries;
KWordDocument *doc;
QChar oBegin, oEnd;
bool quotesChanged;
KWPage *page;
protected slots:
void applyConfig();
void chooseQuote1();
void chooseQuote2();
};
kword'KWAutoFormatDia::KWAutoFormatDia() (./koffice/kword/autoformatdia.cc:46)
KWAutoFormatDia::KWAutoFormatDia( QWidget *parent, const char *name, KWordDocument *_doc, KWPage *_page )
: QTabDialog( parent, name, true ), doc( _doc ), oBegin( doc->getAutoFormat().getConfigTypographicQuotes().begin ),
oEnd( doc->getAutoFormat().getConfigTypographicQuotes().end ), quotesChanged( false )
{
page = _page;
setupTab1();
setupTab2();
setCancelButton( i18n( "Cancel" ) );
setOkButton( i18n( "OK" ) );
resize( 500, 300 );
connect( this, SIGNAL( applyButtonPressed() ), this, SLOT( applyConfig() ) );
}
/*================================================================*/
kword'KWAutoFormatDia::setupTab1() (./koffice/kword/autoformatdia.cc:63)
void KWAutoFormatDia::setupTab1()
{
tab1 = new QVBox( this );
tab1->setMargin( 10 );
cbTypographicQuotes = new QCheckBox( tab1 );
cbTypographicQuotes->setText( i18n( "Replace &Quotes by Typographical Quotes:" ) );
cbTypographicQuotes->resize( cbTypographicQuotes->sizeHint() );
cbTypographicQuotes->setChecked( doc->getAutoFormat().getConfigTypographicQuotes().replace );
QHBox *quotes = new QHBox( tab1 );
quotes->setSpacing( 5 );
pbQuote1 = new QPushButton( quotes );
pbQuote1->setText( doc->getAutoFormat().getConfigTypographicQuotes().begin );
pbQuote1->resize( pbQuote1->sizeHint() );
pbQuote2 = new QPushButton( quotes );
pbQuote2->setText( doc->getAutoFormat().getConfigTypographicQuotes().end );
pbQuote2->resize( pbQuote2->sizeHint() );
( void )new QWidget( quotes );
quotes->setMaximumHeight( pbQuote1->sizeHint().height() );
connect( pbQuote1, SIGNAL( clicked() ), this, SLOT( chooseQuote1() ) );
connect( pbQuote2, SIGNAL( clicked() ), this, SLOT( chooseQuote2() ) );
( void )new QWidget( tab1 );
cbUpperCase = new QCheckBox( tab1 );
cbUpperCase->setText( i18n( "Convert first letter from the first word of a sentence automatically\n"
"to &Upper Case ( e.g. \"bla. this is a Test\" to \"bla. This is a Test\" )" ) );
cbUpperCase->resize( cbUpperCase->sizeHint() );
cbUpperCase->setChecked( doc->getAutoFormat().getConfigUpperCase() );
( void )new QWidget( tab1 );
cbUpperUpper = new QCheckBox( tab1 );
cbUpperUpper->setText( i18n( "Convert two Upper &Case letters to one Upper Case and one Lower Case letter.\n"
"( e.g. HAllo to Hallo )" ) );
cbUpperUpper->resize( cbUpperUpper->sizeHint() );
cbUpperUpper->setChecked( doc->getAutoFormat().getConfigUpperUpper() );
( void )new QWidget( tab1 );
addTab( tab1, i18n( "Simple Autocorrection" ) );
resize(minimumSize());
}
/*================================================================*/
kword'KWAutoFormatDia::setupTab2() (./koffice/kword/autoformatdia.cc:112)
void KWAutoFormatDia::setupTab2()
{
tab2 = new QHBox( this );
tab2->setMargin( 10 );
tab2->setSpacing( 5 );
entries = new QListView( tab2 );
entries->addColumn( i18n( "Find" ) );
entries->addColumn( i18n( "Replace" ) );
QMap< QString, KWAutoFormatEntry >::Iterator it = doc->getAutoFormat().firstAutoFormatEntry();
for ( ; it != doc->getAutoFormat().lastAutoFormatEntry(); ++it )
( void )new QListViewItem( entries, it.key(), it.data().getReplace() );
QVBox *buttons = new QVBox( tab2 );
buttons->setSpacing( 5 );
buttons->setMargin( 5 );
pbAdd = new QPushButton( i18n( "Add..."), buttons );
pbRemove = new QPushButton( i18n( "Remove" ), buttons );
( void )new QWidget( buttons );
pbEdit = new QPushButton( i18n( "Edit..." ), buttons );
( void )new QWidget( buttons );
addTab( tab2, i18n( "Advanced Autocorrection" ) );
}
/*================================================================*/
kword'KWAutoFormatDia::applyConfig() (./koffice/kword/autoformatdia.cc:140)
void KWAutoFormatDia::applyConfig()
{
// iiiiiiiiigit - that's a hack!
if ( quotesChanged )
{
KWAutoFormat::TypographicQuotes tq = doc->getAutoFormat().getConfigTypographicQuotes();
tq.replace = false;
doc->getAutoFormat().configTypographicQuotes( tq );
doc->getAutoFormat().setEnabled( true );
doc->recalcWholeText();
doc->getAutoFormat().setEnabled( false );
}
KWAutoFormat::TypographicQuotes tq = doc->getAutoFormat().getConfigTypographicQuotes();
tq.replace = cbTypographicQuotes->isChecked();
tq.begin = pbQuote1->text()[ 0 ];
tq.end = pbQuote2->text()[ 0 ];
doc->getAutoFormat().configTypographicQuotes( tq );
doc->getAutoFormat().configUpperCase( cbUpperCase->isChecked() );
doc->getAutoFormat().configUpperUpper( cbUpperUpper->isChecked() );
doc->getAutoFormat().setEnabled( true );
doc->updateAllViews( 0L );
doc->updateAllCursors();
doc->getAutoFormat().setEnabled( false );
}
/*================================================================*/
kword'KWAutoFormatDia::chooseQuote1() (./koffice/kword/autoformatdia.cc:169)
void KWAutoFormatDia::chooseQuote1()
{
QString f = font().family();
QChar c = doc->getAutoFormat().getConfigTypographicQuotes().begin;
if ( KCharSelectDia::selectChar( f, c, false ) )
{
pbQuote1->setText( c );
quotesChanged = true;
}
}
/*================================================================*/
kword'KWAutoFormatDia::chooseQuote2() (./koffice/kword/autoformatdia.cc:181)
void KWAutoFormatDia::chooseQuote2()
{
QString f = font().family();
QChar c = doc->getAutoFormat().getConfigTypographicQuotes().end;
if ( KCharSelectDia::selectChar( f, c, false ) )
{
pbQuote2->setText( c );
quotesChanged = true;
}
}