1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
|
/* This file is part of the KDE project
Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org>
Copyright (C) 2005 Thorsten Zachmann <zachmann@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.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <kapplication.h>
#include <KoUnitWidgets.h>
#include <klocale.h>
#include <kconfig.h>
#include <kdialogbase.h>
#include <kiconloader.h>
#include <knuminput.h>
#include <kcolorbutton.h>
#include "KPrVariableCollection.h"
#include "KPrCanvas.h"
#include <tkcoloractions.h>
#include <KoSpeaker.h>
#include <qgroupbox.h>
#include <qvgroupbox.h>
#include <qlabel.h>
#include <qlayout.h>
#include <qvbox.h>
#include <qcheckbox.h>
#include <qcombobox.h>
#include <qtabwidget.h>
#include <qwhatsthis.h>
#include "KPrPenStyleWidget.h"
#include "KPrBrushProperty.h"
#include "KPrPieProperty.h"
#include "KPrRectProperty.h"
#include "KPrPolygonProperty.h"
#include "KPrConfig.h"
#include "KPrView.h"
#include "KPrDocument.h"
#include "KPrPage.h"
#include <KoUnit.h>
#include <float.h>
#include <knumvalidator.h>
#include <qlineedit.h>
#include "KPrCommand.h"
#include <qvgroupbox.h>
#include <kfontdialog.h>
#include <klineedit.h>
#include <KoRect.h>
#include <kmessagebox.h>
#include <kdeversion.h>
#include <kurlrequesterdlg.h>
#include <klistview.h>
#include <kfiledialog.h>
#include <KoEditPath.h>
#include <kspell2/configwidget.h>
#include <kspell2/settings.h>
#include <kspell2/broker.h>
using namespace KSpell2;
KPrConfig::KPrConfig( KPrView* parent )
: KDialogBase(KDialogBase::IconList,i18n("Configure KPresenter") ,
KDialogBase::Ok | KDialogBase::Apply | KDialogBase::Cancel| KDialogBase::Default,
KDialogBase::Ok, parent)
{
m_doc = parent->kPresenterDoc();
QVBox *page = addVBoxPage( i18n("Interface"), i18n("Interface"),
BarIcon("misc", KIcon::SizeMedium) );
_interfacePage=new KPrConfigureInterfacePage( parent, page );
page = addVBoxPage( i18n("Color"), i18n("Color"),
BarIcon("colorize", KIcon::SizeMedium) );
_colorBackground = new KPrConfigureColorBackground( parent, page );
page = addVBoxPage( i18n("Spelling"), i18n("Spellchecker Behavior"),
BarIcon("spellcheck", KIcon::SizeMedium) );
_spellPage=new KPrConfigureSpellPage(parent, page);
page = addVBoxPage( i18n("Misc"), i18n("Misc"),
BarIcon("misc", KIcon::SizeMedium) );
_miscPage=new KPrConfigureMiscPage(parent, page);
page = addVBoxPage( i18n("Document"), i18n("Document Settings"),
BarIcon("kpresenter_kpr", KIcon::SizeMedium) );
_defaultDocPage=new KPrConfigureDefaultDocPage(parent, page);
page = addVBoxPage( i18n("Tools"), i18n("Default Tools Settings"),
BarIcon("configure", KIcon::SizeMedium) );
_toolsPage=new KPrConfigureToolsPage(parent, page);
page = addVBoxPage( i18n("Paths"), i18n("Path Settings"),
BarIcon("path") );
m_pathPage=new KPrConfigurePathPage(parent, page);
if (KoSpeaker::isKttsdInstalled()) {
page = addVBoxPage( i18n("Abbreviation for Text-to-Speech", "TTS"), i18n("Text-to-Speech Settings"),
BarIcon("access", KIcon::SizeMedium) );
m_ttsPage=new KPrConfigureTTSPage(parent, page);
} else m_ttsPage = 0;
connect( this, SIGNAL( okClicked() ),this, SLOT( slotApply() ) );
}
void KPrConfig::openPage(int flags)
{
if(flags & KP_INTERFACE)
showPage( 0 );
else if(flags & KP_COLOR)
showPage(1 );
else if(flags & KP_KSPELL)
showPage(2);
else if(flags & KP_MISC)
showPage(3 );
else if(flags & KP_DOC)
showPage(4 );
else if(flags & KP_TOOLS)
showPage(5);
else if(flags & KP_PATH)
showPage(6);
}
void KPrConfig::slotApply()
{
KMacroCommand *macro = 0L;
_interfacePage->apply();
_colorBackground->apply();
if (_spellPage) _spellPage->apply();
m_pathPage->apply();
KCommand *cmd = _miscPage->apply();
if ( cmd )
{
if ( !macro )
macro = new KMacroCommand(i18n("Change Config") );
macro->addCommand( cmd );
}
cmd = _defaultDocPage->apply();
if ( cmd )
{
if ( !macro )
macro = new KMacroCommand(i18n("Change Config") );
macro->addCommand( cmd );
}
_toolsPage->apply();
if (m_ttsPage) m_ttsPage->apply();
if ( macro )
m_doc->addCommand( macro);
}
void KPrConfig::slotDefault()
{
switch( activePageIndex() ) {
case 0:
_interfacePage->slotDefault();
break;
case 1:
_colorBackground->slotDefault();
break;
case 2:
if (_spellPage) _spellPage->slotDefault();
break;
case 3:
_miscPage->slotDefault();
break;
case 4:
_defaultDocPage->slotDefault();
break;
case 5:
_toolsPage->slotDefault();
break;
case 6:
m_pathPage->slotDefault();
break;
case 7:
m_ttsPage->slotDefault();
default:
break;
}
}
KPrConfigureInterfacePage::KPrConfigureInterfacePage( KPrView *_view, QWidget *parent , char *name )
:QWidget ( parent,name )
{
QVBoxLayout *box = new QVBoxLayout( this, 0, 0 );
m_pView=_view;
config = KPrFactory::global()->config();
KoUnit::Unit unit = m_pView->kPresenterDoc()->unit();
oldNbRecentFiles=10;
double ptIndent = MM_TO_POINT(10.0);
bool bShowRuler=true;
bool oldShowStatusBar = true;
if( config->hasGroup("Interface") ) {
config->setGroup( "Interface" );
oldNbRecentFiles=config->readNumEntry("NbRecentFile",oldNbRecentFiles);
ptIndent = config->readDoubleNumEntry("Indent", ptIndent);
bShowRuler=config->readBoolEntry("Rulers",true);
oldShowStatusBar = config->readBoolEntry( "ShowStatusBar" , true );
}
showRuler= new QCheckBox(i18n("Show rulers"),this);
QWhatsThis::add(showRuler, i18n( "When checked, both vertical and horizontal rulers are shown on the KPresenter slide (this is the default). When unchecked, the rulers are not shown on any slide." ) );
showRuler->setChecked(bShowRuler);
box->addWidget(showRuler);
showStatusBar = new QCheckBox(i18n("Show status bar"),this);
QWhatsThis::add(showStatusBar, i18n( "Toggle the statusbar, which is shown by default." ) );
showStatusBar->setChecked(oldShowStatusBar);
box->addWidget(showStatusBar);
recentFiles=new KIntNumInput( oldNbRecentFiles, this);
recentFiles->setRange(1, 20, 1);
recentFiles->setLabel(i18n("Number of recent files:"));
QWhatsThis::add(recentFiles, i18n( "Set the number of recent files which will be opened using the File->Open Recent menu. Default is to remember 10 filenames. The maximum you can set is 20 and the minimum is 1." ) );
box->addWidget(recentFiles);
QString suffix = KoUnit::unitName( unit ).prepend(' ');
indent = new KDoubleNumInput( this );
indent->setValue( KoUnit::toUserValue( ptIndent, unit ) );
indent->setRange(KoUnit::toUserValue( 0.1, unit ), KoUnit::toUserValue( 50, unit ), KoUnit::toUserValue( 0.1, unit ));
indent->setSuffix( suffix );
indent->setLabel(i18n("Text indentation depth:"));
QWhatsThis::add(indent, i18n( "This setting is used by Increase Depth and Decrease Depth menu items (in the Text menu) to change the indentation depth. The Default is 1 centimeter." ) );
box->addWidget(indent);
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding );
box->addItem( spacer);
}
void KPrConfigureInterfacePage::apply()
{
bool ruler=showRuler->isChecked();
bool statusBar=showStatusBar->isChecked();
KPrDocument * doc = m_pView->kPresenterDoc();
config->setGroup( "Interface" );
double newIndent = KoUnit::fromUserValue( indent->value(), doc->unit() );
if( newIndent != doc->getIndentValue() )
{
config->writeEntry( "Indent", newIndent, true, false, 'g', DBL_DIG /* 6 is not enough */ );
doc->setIndentValue( newIndent );
}
int nbRecent=recentFiles->value();
if(nbRecent!=oldNbRecentFiles)
{
config->writeEntry( "NbRecentFile", nbRecent);
m_pView->changeNbOfRecentFiles(nbRecent);
oldNbRecentFiles=nbRecent;
}
bool refreshGUI=false;
if(ruler != doc->showRuler())
{
config->writeEntry( "Rulers", ruler );
doc->setShowRuler( ruler );
refreshGUI=true;
}
if( statusBar != doc->showStatusBar() )
{
config->writeEntry( "ShowStatusBar", statusBar );
doc->setShowStatusBar( statusBar );
refreshGUI=true;
}
if( refreshGUI )
doc->reorganizeGUI();
}
void KPrConfigureInterfacePage::slotDefault()
{
double newIndent = KoUnit::toUserValue( MM_TO_POINT( 10 ), m_pView->kPresenterDoc()->unit() );
indent->setValue( newIndent );
recentFiles->setValue(10);
showRuler->setChecked(true);
showStatusBar->setChecked(true);
}
KPrConfigureColorBackground::KPrConfigureColorBackground( KPrView* _view, QWidget *parent , char *name )
:QWidget ( parent,name )
{
m_pView = _view;
config = KPrFactory::global()->config();
oldBgColor = m_pView->kPresenterDoc()->txtBackCol();
oldGridColor = m_pView->kPresenterDoc()->gridColor();
QVBoxLayout *box = new QVBoxLayout( this, 0, 0 );
QLabel *lab = new QLabel( this, "label20" );
lab->setText( i18n( "Background object color:" ) );
QWhatsThis::add(lab, i18n( "Change the background color of the text box. The background is white by default. If you have a dark background color and you want to put some white text on it, you can change the color of the text box so that you can see what you are typing. When you have finished, the area around the text will revert to the background color. The Defaults button restores the original settings." ) );
box->addWidget(lab);
bgColor = new KColorButton( oldBgColor,
oldBgColor,
this );
bgColor->setColor( oldBgColor );
box->addWidget(bgColor);
lab = new QLabel( this, "label20" );
lab->setText( i18n( "Grid color:" ) );
QWhatsThis::add(lab, i18n( "Here you can change the grid color, which is black by default." ) );
box->addWidget(lab);
gridColor = new KColorButton( oldGridColor,
oldGridColor,
this );
box->addWidget(gridColor);
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding );
box->addItem( spacer);
}
void KPrConfigureColorBackground::apply()
{
KPrDocument * doc = m_pView->kPresenterDoc();
bool repaintNeeded = false;
QColor _col = bgColor->color();
if( oldBgColor != _col ) {
config->setGroup( "KPresenter Color" );
config->writeEntry( "BackgroundColor", _col );
doc->setTxtBackCol( _col );
doc->replaceObjs();
oldBgColor=_col;
repaintNeeded = true;
}
_col = gridColor->color();
if( oldGridColor != _col ) {
config->setGroup( "KPresenter Color" );
config->writeEntry( "GridColor", _col );
doc->repaint( false );
doc->setGridColor( _col );
oldGridColor=_col;
repaintNeeded = true;
}
if (repaintNeeded)
doc->repaint( false );
}
void KPrConfigureColorBackground::slotDefault()
{
bgColor->setColor( Qt::white );
gridColor->setColor( Qt::black );
}
KPrConfigureSpellPage::KPrConfigureSpellPage( KPrView *_view, QWidget *parent, char *name )
: QWidget( parent, name )
{
m_pView=_view;
config = KPrFactory::global()->config();
m_spellConfigWidget = new ConfigWidget( _view->broker(), parent );
m_spellConfigWidget->setBackgroundCheckingButtonShown( true );
}
void KPrConfigureSpellPage::apply()
{
KPrDocument* doc = m_pView->kPresenterDoc();
m_spellConfigWidget->save();
m_pView->kPresenterDoc()->setSpellCheckIgnoreList(
m_pView->broker()->settings()->currentIgnoreList() );
//FIXME reactivate just if there are changes.
doc->enableBackgroundSpellCheck( m_pView->broker()->settings()->backgroundCheckerEnabled() );
doc->reactivateBgSpellChecking();
}
void KPrConfigureSpellPage::slotDefault()
{
m_spellConfigWidget->slotDefault();
}
KPrConfigureMiscPage::KPrConfigureMiscPage( KPrView *_view, QWidget *parent, char *name )
: QWidget( parent, name )
{
QVBoxLayout *box = new QVBoxLayout( this, 0, 0 );
m_pView=_view;
config = KPrFactory::global()->config();
QGroupBox* tmpQGroupBox = new QGroupBox( 0, Qt::Vertical, i18n("Misc"), this, "GroupBox" );
tmpQGroupBox->layout()->setSpacing(KDialog::spacingHint());
tmpQGroupBox->layout()->setMargin(KDialog::marginHint());
QGridLayout *grid = new QGridLayout( tmpQGroupBox->layout(), 8, 1 );
m_oldNbRedo=30;
m_printNotes=true;
if( config->hasGroup("Misc") )
{
config->setGroup( "Misc" );
m_oldNbRedo=config->readNumEntry("UndoRedo",m_oldNbRedo);
m_printNotes = config->readBoolEntry("PrintNotes", true);
}
m_undoRedoLimit=new KIntNumInput( m_oldNbRedo, tmpQGroupBox );
m_undoRedoLimit->setLabel(i18n("Undo/redo limit:"));
m_undoRedoLimit->setRange(10, 60, 1);
QWhatsThis::add(m_undoRedoLimit, i18n( "Set the number of actions you can undo and redo (how many actions KPresenter keeps in its Undo buffer). This ranges from a minimum of 10 to a maximum of 60 (the default is 30). Once the number of actions reaches the number set here, earlier actions will be forgotten." ) );
grid->addWidget(m_undoRedoLimit,0,0);
KPrDocument* doc = m_pView->kPresenterDoc();
m_displayLink=new QCheckBox(i18n("Display links"),tmpQGroupBox);
QWhatsThis::add(m_displayLink, i18n( "When you want to include a link in your slide, you can use the Insert->Link... menu, which allows you to insert URL, mail or file links. If the option Display links is checked, all links will be active and displayed in a different color (this is the default behavior). If the option is unchecked, the links will be inactive and the same color as the text. This affects both the edited slides and the slide show." ) );
grid->addWidget(m_displayLink,3,0);
m_displayLink->setChecked(doc->getVariableCollection()->variableSetting()->displayLink());
m_underlineLink=new QCheckBox(i18n("&Underline all links"),tmpQGroupBox);
m_underlineLink->setChecked(doc->getVariableCollection()->variableSetting()->underlineLink());
QWhatsThis::add(m_underlineLink, i18n( "If this is checked, all links will be underlined (this is the default). If it is not checked, the links will not be underlined." ) );
grid->addWidget(m_underlineLink,4,0);
m_displayComment=new QCheckBox(i18n("Display comments"),tmpQGroupBox);
m_displayComment->setChecked(doc->getVariableCollection()->variableSetting()->displayComment());
QWhatsThis::add(m_displayComment, i18n( "Comments are inserted in the text at the cursor using the Insert->Comment... menu. Comments can only be viewed in edit mode and not in the slide show. If this option is checked (default) then each comment will be shown as a small yellow rectangle. You can then right-click on them to edit them, remove them or copy the text." ) );
grid->addWidget(m_displayComment,5,0);
m_displayFieldCode=new QCheckBox(i18n("Display field code"),tmpQGroupBox);
m_displayFieldCode->setChecked(doc->getVariableCollection()->variableSetting()->displayFieldCode());
QWhatsThis::add(m_displayFieldCode, i18n( "In editor mode (not in slide show) this option will display all the variable codes as well as Link at links location. This is very useful to see what variable is displayed. Variables are inserted using the Insert -> Variable menu." ) );
grid->addWidget(m_displayFieldCode,6,0);
m_cbPrintNotes=new QCheckBox(i18n("Print slide notes"),tmpQGroupBox);
m_cbPrintNotes->setChecked(m_printNotes);
QWhatsThis::add(m_cbPrintNotes, i18n( "If checked, all notes will be printed on paper. The notes will all be printed separately on the last page, from the first slide to the last and finally the Master Page Note. You can see the notes for each slide using the View->Show notebar menu." ) );
grid->addWidget(m_cbPrintNotes,7,0);
box->addWidget(tmpQGroupBox);
tmpQGroupBox = new QGroupBox( 0, Qt::Vertical, i18n("Grid"), this, "GroupBox" );
tmpQGroupBox->layout()->setSpacing(KDialog::spacingHint());
tmpQGroupBox->layout()->setMargin(KDialog::marginHint());
grid = new QGridLayout( tmpQGroupBox->layout(), 8, 1 );
KoRect rect = doc->masterPage()->getPageRect();
QLabel *lab=new QLabel(i18n("Horizontal grid size:"), tmpQGroupBox);
QWhatsThis::add(lab, i18n( "Set the space in millimeters between two horizontal points on the grid. Default is 5 millimeters." ) );
grid->addWidget(lab,0,0);
KoUnit::Unit unit = doc->unit();
resolutionX = new KoUnitDoubleSpinBox(tmpQGroupBox, 5.0,rect.width(),1,doc->getGridX() );
resolutionX->setUnit( unit );
grid->addWidget(resolutionX,1,0);
lab=new QLabel(i18n("Vertical grid size:"), tmpQGroupBox);
QWhatsThis::add(lab, i18n( "Set the space in millimeters between two vertical points on the grid. Default is 5 millimeters." ) );
grid->addWidget(lab,2,0);
resolutionY = new KoUnitDoubleSpinBox(tmpQGroupBox, 5.0,rect.height(),1,doc->getGridY() );
resolutionY->setUnit( unit );
grid->addWidget(resolutionY, 3, 0);
box->addWidget(tmpQGroupBox);
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding );
box->addItem( spacer);
}
KCommand * KPrConfigureMiscPage::apply()
{
config->setGroup( "Misc" );
int newUndo=m_undoRedoLimit->value();
KPrDocument* doc = m_pView->kPresenterDoc();
if(newUndo!=m_oldNbRedo)
{
config->writeEntry("UndoRedo",newUndo);
doc->setUndoRedoLimit(newUndo);
m_oldNbRedo=newUndo;
}
config->writeEntry("PrintNotes", m_cbPrintNotes->isChecked());
KMacroCommand * macroCmd=0L;
bool b=m_displayLink->isChecked();
bool b_new=doc->getVariableCollection()->variableSetting()->displayLink();
if(b_new!=b)
{
if(!macroCmd)
macroCmd=new KMacroCommand(i18n("Change Display Link Command"));
KPrChangeVariableSettingsCommand *cmd=new KPrChangeVariableSettingsCommand(
i18n("Change Display Link Command"), doc, b_new, b, KPrChangeVariableSettingsCommand::VS_DISPLAYLINK);
cmd->execute();
macroCmd->addCommand(cmd);
}
b=m_underlineLink->isChecked();
if(doc->getVariableCollection()->variableSetting()->underlineLink()!=b)
{
if(!macroCmd)
macroCmd=new KMacroCommand(i18n("Change Display Link Command"));
KPrChangeVariableSettingsCommand *cmd=new KPrChangeVariableSettingsCommand(
i18n("Change Display Link Command"), doc, doc->getVariableCollection()->variableSetting()->underlineLink(),
b, KPrChangeVariableSettingsCommand::VS_UNDERLINELINK);
cmd->execute();
macroCmd->addCommand(cmd);
}
b=m_displayComment->isChecked();
if(doc->getVariableCollection()->variableSetting()->displayComment()!=b)
{
if(!macroCmd)
macroCmd=new KMacroCommand(i18n("Change Display Link Command"));
KPrChangeVariableSettingsCommand *cmd=new KPrChangeVariableSettingsCommand(
i18n("Change Display Link Command"), doc, doc->getVariableCollection()->variableSetting()->displayComment(),
b, KPrChangeVariableSettingsCommand::VS_DISPLAYCOMMENT);
cmd->execute();
macroCmd->addCommand(cmd);
}
b=m_displayFieldCode->isChecked();
if(doc->getVariableCollection()->variableSetting()->displayFieldCode()!=b)
{
if(!macroCmd)
macroCmd=new KMacroCommand(i18n("Change Display Field Code Command"));
KPrChangeVariableSettingsCommand *cmd=new KPrChangeVariableSettingsCommand(
i18n("Change Display Field Code Command"), doc, doc->getVariableCollection()->variableSetting()->displayComment(),
b, KPrChangeVariableSettingsCommand::VS_DISPLAYFIELDCODE);
cmd->execute();
macroCmd->addCommand(cmd);
}
doc->setGridValue( resolutionX->value(),
resolutionY->value(), true);
doc->repaint( false );
config->sync();
return macroCmd;
}
void KPrConfigureMiscPage::slotDefault()
{
m_undoRedoLimit->setValue(30);
m_displayLink->setChecked(true);
m_displayComment->setChecked(true);
m_underlineLink->setChecked(true);
m_displayFieldCode->setChecked( false );
m_cbPrintNotes->setChecked(true);
//KPrDocument* doc = m_pView->kPresenterDoc();
resolutionY->setValue( MM_TO_POINT( 5.0 ));
resolutionX->setValue( MM_TO_POINT( 5.0 ));
}
KPrConfigureDefaultDocPage::KPrConfigureDefaultDocPage(KPrView *_view, QWidget *parent, char *name )
: QWidget( parent, name )
{
QVBoxLayout *box = new QVBoxLayout( this, 0, 0 );
m_pView=_view;
config = KPrFactory::global()->config();
KPrDocument *doc = m_pView->kPresenterDoc();
oldAutoSaveValue = doc->defaultAutoSave()/60;
m_oldBackupFile = true;
m_oldLanguage = doc->globalLanguage();
m_oldHyphenation = doc->globalHyphenation();
if( config->hasGroup("Interface") ) {
config->setGroup( "Interface" );
oldAutoSaveValue = config->readNumEntry( "AutoSave", oldAutoSaveValue );
m_oldBackupFile=config->readBoolEntry("BackupFile",m_oldBackupFile);
m_oldLanguage = config->readEntry( "language", m_oldLanguage );
m_oldHyphenation = config->readBoolEntry( "hyphenation", m_oldHyphenation);
}
QVGroupBox* gbDocumentDefaults = new QVGroupBox( i18n("Document Defaults"), this, "GroupBox" );
gbDocumentDefaults->setMargin( KDialog::marginHint() );
gbDocumentDefaults->setInsideSpacing( 5 );
QWidget *fontContainer = new QWidget(gbDocumentDefaults);
QGridLayout * fontLayout = new QGridLayout(fontContainer, 1, 3);
fontLayout->setColStretch(0, 0);
fontLayout->setColStretch(1, 1);
fontLayout->setColStretch(2, 0);
QLabel *fontTitle = new QLabel(i18n("Default font:"), fontContainer);
font= new QFont( doc->defaultFont() );
QString labelName = font->family() + ' ' + QString::number(font->pointSize());
fontName = new QLabel(labelName, fontContainer);
fontName->setFont(*font);
fontName->setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
QPushButton *chooseButton = new QPushButton(i18n("Choose..."), fontContainer);
QWhatsThis::add(chooseButton, i18n( "Click here if you want to set a new font. The KDE default Select Font dialog will then be displayed." ) );
connect(chooseButton, SIGNAL(clicked()), this, SLOT(selectNewDefaultFont()));
fontLayout->addWidget(fontTitle, 0, 0);
fontLayout->addWidget(fontName, 0, 1);
fontLayout->addWidget(chooseButton, 0, 2);
QWidget *languageContainer = new QWidget(gbDocumentDefaults);
QGridLayout * languageLayout = new QGridLayout(languageContainer, 1, 3);
languageLayout->setColStretch(0, 0);
languageLayout->setColStretch(1, 1);
QLabel *languageTitle = new QLabel(i18n("Global language:"), languageContainer);
QWhatsThis::add(languageTitle, i18n( "Use this drop down box to determine the default language for the document. This setting is used by the hyphenation and spelling tools." ) );
m_globalLanguage = new QComboBox( languageContainer );
m_globalLanguage->insertStringList( KoGlobal::listOfLanguages() );
m_globalLanguage->setCurrentText( KoGlobal::languageFromTag( doc->globalLanguage() ) );
languageLayout->addWidget(languageTitle, 0, 0);
languageLayout->addWidget(m_globalLanguage, 0, 1);
m_autoHyphenation = new QCheckBox( i18n("Automatic hyphenation"), gbDocumentDefaults);
QWhatsThis::add(m_autoHyphenation, i18n( "Check this box if you want KPresenter to automatically hyphenate long words when it determines the word wrap in text frames. This is not set by default." ) );
m_autoHyphenation->setChecked( m_oldHyphenation );
box->addWidget(gbDocumentDefaults);
QVGroupBox* gbDocumentSettings = new QVGroupBox( i18n("Document Settings"), this );
gbDocumentSettings->setMargin( KDialog::marginHint() );
gbDocumentSettings->setInsideSpacing( KDialog::spacingHint() );
m_createBackupFile = new QCheckBox( i18n("Create backup file"), gbDocumentSettings);
QWhatsThis::add(m_createBackupFile, i18n( "If checked, this will create a .<name>.kpr.autosave.kpr in the folder where your file is. This backup file can then be used in case of a problem.\nThe backup file is updated every time you save your document or every time there is an autosave." ) );
m_createBackupFile->setChecked( m_oldBackupFile );
autoSave = new KIntNumInput( oldAutoSaveValue, gbDocumentSettings );
autoSave->setRange( 0, 60, 1 );
autoSave->setLabel( i18n("Autosave (min):") );
autoSave->setSpecialValueText( i18n("No autosave") );
autoSave->setSuffix( i18n("min") );
QWhatsThis::add(autoSave, i18n( "You can use this to adjust how often KPresenter saves a temporary file. If you set this value to No autosave, KPresenter will not autosave. You can adjust the autosave from 1 to 60 minutes." ) );
new QLabel(i18n("Starting page number:"), gbDocumentSettings);
m_oldStartingPage=doc->getVariableCollection()->variableSetting()->startingPageNumber();
m_variableNumberOffset=new KIntNumInput(gbDocumentSettings);
m_variableNumberOffset->setRange(1, 9999, 1, false);
m_variableNumberOffset->setValue(m_oldStartingPage);
QWhatsThis::add(m_variableNumberOffset, i18n( "Here you can change the number for the first page. It is set to 1 by default.\nTip: this is helpful if you have split a single document into multiple files." ) );
new QLabel(i18n("Tab stop:"), gbDocumentSettings);
m_oldTabStopWidth = doc->tabStopValue();
KoRect rect = doc->masterPage()->getPageRect();
m_tabStopWidth = new KoUnitDoubleSpinBox( gbDocumentSettings , MM_TO_POINT(2), rect.width() ,0.1, m_oldTabStopWidth );
m_tabStopWidth->setUnit( doc->unit() );
QWhatsThis::add(m_tabStopWidth, i18n( "Each KPresenter document has a default set of tab stops. If you add tab stops to your document, the newly added tab stops override the default ones. You can use this text box to define the spacing between default tab stops. As an example, if you enter 1.5 in this text box, and the unit of measurement is in centimeters, the first default tab stop will be located 1.5 cm to the right of the frame's left-hand margin. The second default tab stop will be located at 3 cm from the left-hand margin, and so on." ) );
box->addWidget(gbDocumentSettings);
QVGroupBox* gbDocumentCursor = new QVGroupBox( i18n("Cursor"), this );
gbDocumentCursor->setMargin( KDialog::marginHint() );
gbDocumentCursor->setInsideSpacing( KDialog::spacingHint() );
m_cursorInProtectedArea= new QCheckBox(i18n("Cursor in protected area"),gbDocumentCursor);
m_cursorInProtectedArea->setChecked(doc->cursorInProtectedArea());
QWhatsThis::add(m_cursorInProtectedArea, i18n( "When this box is checked and you click in a protected frame within your document, a cursor will appear. When this box is unchecked, and you click in a protected frame, no cursor will be visible." ) );
m_directInsertCursor= new QCheckBox(i18n("Direct insert cursor"),gbDocumentCursor);
m_directInsertCursor->setChecked(doc->insertDirectCursor());
QWhatsThis::add(m_directInsertCursor, i18n( "When this box is checked, you can select a section of text using your mouse. Move the mouse to a new area in your document and click once with the middle mouse button and a copy of the selected text will be copied and pasted to the new location in the document.\nWhen this box is unchecked, in order to copy text from one section to another, you must select the text, manually copy the text to the clipboard, then manually paste the text in the new location." ) );
box->addWidget(gbDocumentCursor);
QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding );
box->addItem(spacer);
}
KPrConfigureDefaultDocPage::~KPrConfigureDefaultDocPage()
{
delete font;
}
KCommand *KPrConfigureDefaultDocPage::apply()
{
config->setGroup( "Document defaults" );
KPrDocument* doc = m_pView->kPresenterDoc();
config->writeEntry("DefaultFont",font->toString());
config->setGroup( "Interface" );
int autoSaveVal = autoSave->value();
if( autoSaveVal != oldAutoSaveValue ) {
config->writeEntry( "AutoSave", autoSaveVal );
m_pView->kPresenterDoc()->setAutoSave( autoSaveVal*60 );
oldAutoSaveValue=autoSaveVal;
}
bool state =m_createBackupFile->isChecked();
if(state!=m_oldBackupFile)
{
config->writeEntry( "BackupFile", state );
doc->setBackupFile( state);
m_oldBackupFile=state;
}
state = m_cursorInProtectedArea->isChecked();
if ( state != doc->cursorInProtectedArea() )
{
config->writeEntry( "cursorInProtectArea", state );
m_pView->kPresenterDoc()->setCursorInProtectedArea( state );
}
state = m_directInsertCursor->isChecked();
if ( state != doc->insertDirectCursor() )
doc->setInsertDirectCursor( state );
//Laurent Todo add a message box to inform user that
//global language will change after re-launch kword
const QString lang = KoGlobal::tagOfLanguage( m_globalLanguage->currentText() );
config->writeEntry( "language" , lang);
m_oldLanguage = lang;
//don't call this function otherwise we can have a textobject with
// a default language and other textobject with other default language.
//doc->setGlobalLanguage( lang );
state = m_autoHyphenation->isChecked();
config->writeEntry( "hyphenation", state );
m_oldHyphenation = state;
KMacroCommand *macro = 0L;
int newStartingPage=m_variableNumberOffset->value();
if(newStartingPage!=m_oldStartingPage)
{
macro = new KMacroCommand( i18n("Change Starting Page Number") );
KPrChangeStartingPageCommand *cmd = new KPrChangeStartingPageCommand( i18n("Change Starting Page Number"), doc, m_oldStartingPage,newStartingPage );
cmd->execute();
macro->addCommand( cmd);
m_oldStartingPage=newStartingPage;
}
double newTabStop = m_tabStopWidth->value();
if ( newTabStop != m_oldTabStopWidth)
{
if ( !macro )
macro = new KMacroCommand( i18n("Change Tab Stop Value") );
KPrChangeTabStopValueCommand *cmd = new KPrChangeTabStopValueCommand( i18n("Change Tab Stop Value"), m_oldTabStopWidth, newTabStop, doc);
cmd->execute();
macro->addCommand( cmd );
m_oldTabStopWidth = newTabStop;
}
return macro;
}
void KPrConfigureDefaultDocPage::slotDefault()
{
autoSave->setValue( m_pView->kPresenterDoc()->defaultAutoSave()/60 );
m_variableNumberOffset->setValue(1);
m_cursorInProtectedArea->setChecked(true);
m_tabStopWidth->setValue( MM_TO_POINT(15));
m_createBackupFile->setChecked( true );
m_directInsertCursor->setChecked( false );
m_globalLanguage->setCurrentText( KoGlobal::languageFromTag( KGlobal::locale()->language() ) );
m_autoHyphenation->setChecked( false );
}
void KPrConfigureDefaultDocPage::selectNewDefaultFont() {
QStringList list;
KFontChooser::getFontList(list, KFontChooser::SmoothScalableFonts);
KFontDialog dlg( this, "Font Selector", false, true, list, true );
dlg.setFont(*font);
int result = dlg.exec();
if (KDialog::Accepted == result) {
delete font;
font = new QFont(dlg.font());
fontName->setText(font->family() + ' ' + QString::number(font->pointSize()));
fontName->setFont(*font);
m_pView->kPresenterDoc()->setDefaultFont( *font );
}
}
KPrConfigureToolsPage::KPrConfigureToolsPage( KPrView *_view, QWidget *parent, char *name )
: QWidget( parent, name )
{
QVBoxLayout *box = new QVBoxLayout( this, 0, 0 );
m_pView = _view;
config = KPrFactory::global()->config();
m_pView->getCanvas()->deSelectAllObj();
QTabWidget *tab = new QTabWidget(this);
KoPenCmd::Pen pen( m_pView->getPen(), m_pView->getLineBegin(), m_pView->getLineEnd() );
m_confPenDia = new KPrPenStyleWidget(tab, 0, pen, true );
tab->addTab( m_confPenDia, i18n( "Outl&ine" ) );
KPrBrushCmd::Brush brush( m_pView->getBrush(),
m_pView->getGColor1(),
m_pView->getGColor2(),
m_pView->getGType(),
m_pView->getFillType(),
m_pView->getGUnbalanced(),
m_pView->getGXFactor(),
m_pView->getGYFactor() );
m_brushProperty = new KPrBrushProperty( this, 0, brush );
tab->addTab( m_brushProperty, i18n( "&Fill" ) );
KPrRectValueCmd::RectValues rectValues;
rectValues.xRnd = m_pView->getRndX();
rectValues.yRnd = m_pView->getRndY();
m_rectProperty = new KPrRectProperty( this, 0, rectValues );
tab->addTab( m_rectProperty, i18n( "&Rectangle" ) );
KPrPolygonSettingCmd::PolygonSettings polygonSettings;
polygonSettings.checkConcavePolygon = m_pView->getCheckConcavePolygon();
polygonSettings.cornersValue = m_pView->getCornersValue();
polygonSettings.sharpnessValue = m_pView->getSharpnessValue();
m_polygonProperty = new KPrPolygonProperty( this, 0, polygonSettings );
tab->addTab( m_polygonProperty, i18n( "Polygo&n" ) );
KPrPieValueCmd::PieValues pieValues;
pieValues.pieType = m_pView->getPieType();
pieValues.pieAngle = m_pView->getPieAngle();
pieValues.pieLength = m_pView->getPieLength();
m_pieProperty = new KPrPieProperty( this, 0, pieValues );
tab->addTab( m_pieProperty, i18n( "&Pie" ) );
box->addWidget(tab);
}
KPrConfigureToolsPage::~KPrConfigureToolsPage()
{
}
void KPrConfigureToolsPage::apply()
{
KoPenCmd::Pen pen = m_confPenDia->getPen();
m_pView->setPen( pen.pen );
m_pView->setLineBegin( pen.lineBegin );
m_pView->setLineEnd( pen.lineEnd );
m_pView->getActionPenColor()->setCurrentColor( pen.pen.color() );
KPrBrushCmd::Brush brush = m_brushProperty->getBrush();
m_pView->setBrush( brush.brush );
m_pView->setFillType( brush.fillType );
m_pView->setGColor1( brush.gColor1 );
m_pView->setGColor2( brush.gColor2 );
m_pView->setGType( brush.gType );
m_pView->setGUnbalanced( brush.unbalanced );
m_pView->setGXFactor( brush.xfactor );
m_pView->setGYFactor( brush.yfactor );
m_pView->getActionBrushColor()->setCurrentColor( brush.brush.color() );
KPrRectValueCmd::RectValues rectValues = m_rectProperty->getRectValues();
m_pView->setRndX( rectValues.xRnd );
m_pView->setRndY( rectValues.yRnd );
KPrPolygonSettingCmd::PolygonSettings polygonSettings = m_polygonProperty->getPolygonSettings();
m_pView->setCheckConcavePolygon( polygonSettings.checkConcavePolygon );
m_pView->setCornersValue( polygonSettings.cornersValue );
m_pView->setSharpnessValue( polygonSettings.sharpnessValue );
KPrPieValueCmd::PieValues pieValues = m_pieProperty->getPieValues();
m_pView->setPieType( pieValues.pieType );
m_pView->setPieAngle( pieValues.pieAngle );
m_pView->setPieLength( pieValues.pieLength );
//TODO set pen brush in m_rectProperty
//TODO set pen brush in m_polygonProperty
//TODO set pen brush in m_pieProperty
}
void KPrConfigureToolsPage::slotDefault()
{
KoPenCmd::Pen pen( KoPen(black, 1.0, SolidLine), L_NORMAL, L_NORMAL );
m_confPenDia->setPen( pen );
m_pView->getActionPenColor()->setCurrentColor( pen.pen.color() );
KPrBrushCmd::Brush brush( QBrush( white, SolidPattern ), red, green,
BCT_GHORZ, FT_BRUSH, false, 100, 100 );
m_brushProperty->setBrush( brush );
m_pView->getActionBrushColor()->setCurrentColor( brush.brush.color() );
KPrRectValueCmd::RectValues rectValues;
rectValues.xRnd = 0;
rectValues.yRnd = 0;
m_rectProperty->setRectValues( rectValues );
KPrPolygonSettingCmd::PolygonSettings polygonSettings;
polygonSettings.checkConcavePolygon = false;
polygonSettings.cornersValue = 3;
polygonSettings.sharpnessValue = 0;
m_polygonProperty->setPolygonSettings( polygonSettings );
KPrPieValueCmd::PieValues pieValues;
pieValues.pieType = PT_PIE;
pieValues.pieAngle = 45 * 16;
pieValues.pieLength = 270 * 16;
}
KPrConfigurePathPage::KPrConfigurePathPage( KPrView *_view, QWidget *parent, char *name )
: QWidget( parent, name )
{
QVBoxLayout *box = new QVBoxLayout( this, 0, 0 );
m_pView=_view;
KPrDocument* doc = m_pView->kPresenterDoc();
config = KPrFactory::global()->config();
m_pPathView = new KListView( this );
m_pPathView->setResizeMode(QListView::NoColumn);
m_pPathView->addColumn( i18n( "Type" ) );
m_pPathView->addColumn( i18n( "Path" ) );
(void) new QListViewItem( m_pPathView, i18n("Picture Path"),doc->picturePath() );
(void) new QListViewItem( m_pPathView, i18n("Backup Path"),doc->backupPath() );
QWhatsThis::add(m_pPathView, i18n( "There are two paths that are set here: the Backup Path and the Picture Path. The Backup path is the folder where your backup files are saved and the Picture Path is the folder where your pictures are saved." ) );
box->addWidget(m_pPathView);
m_modifyPath = new QPushButton( i18n("Modify Path..."), this);
connect( m_modifyPath, SIGNAL( clicked ()), this, SLOT( slotModifyPath()));
connect( m_pPathView, SIGNAL( doubleClicked (QListViewItem *, const QPoint &, int )),
this, SLOT( slotModifyPath()));
connect( m_pPathView, SIGNAL( selectionChanged ( QListViewItem * )),
this, SLOT( slotSelectionChanged(QListViewItem * )));
slotSelectionChanged(m_pPathView->currentItem());
QWhatsThis::add(m_modifyPath, i18n( "When you click this button, a small dialog will appear and, if Default path is unchecked, you can either enter a path yourself or choose one using the standard KDE file dialog." ) );
box->addWidget(m_modifyPath);
}
void KPrConfigurePathPage::slotSelectionChanged(QListViewItem * item)
{
m_modifyPath->setEnabled( item );
}
void KPrConfigurePathPage::slotModifyPath()
{
QListViewItem *item = m_pPathView->currentItem ();
if ( item )
{
if ( item->text(0)==i18n("Picture Path"))
{
KURLRequesterDlg * dlg = new KURLRequesterDlg( item->text(1), 0L,
"picture path dlg");
dlg->fileDialog()->setMode(KFile::Directory | KFile::LocalOnly);
if ( dlg->exec() )
item->setText( 1, dlg->selectedURL().path());
delete dlg;
}
else if ( item->text(0)==i18n("Backup Path"))
{
KoChangePathDia *dlg = new KoChangePathDia( item->text(1), 0L,
"backup path" );
if (dlg->exec() )
item->setText(1, dlg->newPath());
delete dlg;
}
}
}
void KPrConfigurePathPage::slotDefault()
{
QListViewItem * item = m_pPathView->findItem(i18n("Picture Path"), 0);
if ( item )
item->setText(1, KGlobalSettings::documentPath());
item = m_pPathView->findItem(i18n("Backup Path"), 0);
if ( item )
item->setText(1, QString::null );
}
void KPrConfigurePathPage::apply()
{
QListViewItem *item = m_pPathView->findItem(i18n("Backup Path"), 0);
if ( item )
{
QString res = item->text(1 );
if ( res != m_pView->kPresenterDoc()->backupPath())
{
config->setGroup( "Kpresenter Path" );
m_pView->kPresenterDoc()->setBackupPath( res );
#if KDE_IS_VERSION(3,1,3)
config->writePathEntry( "backup path",res );
#else
config->writeEntry( "backup path",res );
#endif
}
}
item = m_pPathView->findItem(i18n("Picture Path"), 0);
if ( item )
{
QString res = item->text(1 );
if ( res != m_pView->kPresenterDoc()->picturePath())
{
config->setGroup( "Kpresenter Path" );
m_pView->kPresenterDoc()->setPicturePath( res );
#if KDE_IS_VERSION(3,1,3)
config->writePathEntry( "picture path",res );
#else
config->writeEntry( "picture path",res );
#endif
}
}
}
////
KPrConfigureTTSPage::KPrConfigureTTSPage( KPrView *_view, QWidget *parent, char *name )
: QWidget( parent, name )
{
Q_UNUSED(_view);
QVBoxLayout *box = new QVBoxLayout( this, 0, 0 );
m_cbSpeakPointerWidget = new QCheckBox(i18n("Speak widget under &mouse pointer"), this);
m_cbSpeakFocusWidget = new QCheckBox(i18n("Speak widget with &focus"), this);
m_gbScreenReaderOptions = new QVGroupBox("", this);
box->add(m_cbSpeakPointerWidget);
box->add(m_cbSpeakFocusWidget);
box->add(m_gbScreenReaderOptions);
m_gbScreenReaderOptions->setMargin( KDialog::marginHint() );
m_gbScreenReaderOptions->setInsideSpacing( KDialog::spacingHint() );
m_cbSpeakTooltips = new QCheckBox(i18n("Speak &tool tips"), m_gbScreenReaderOptions);
m_cbSpeakWhatsThis = new QCheckBox(i18n("Speak &What's This?"), m_gbScreenReaderOptions);
m_cbSpeakDisabled = new QCheckBox(i18n("Verbal indication if widget is disabled (grayed)",
"&Say whether disabled"), m_gbScreenReaderOptions);
m_cbSpeakAccelerators = new QCheckBox(i18n("Spea&k accelerators"), m_gbScreenReaderOptions);
QHBox* hbAcceleratorPrefix = new QHBox(m_gbScreenReaderOptions);
QWidget* spacer = new QWidget(hbAcceleratorPrefix);
spacer->setMinimumWidth(2 * KDialog::marginHint());
m_lblAcceleratorPrefix =
new QLabel(i18n("A word spoken before another word", "Pr&efaced by the word:"),
hbAcceleratorPrefix);
m_leAcceleratorPrefixWord = new QLineEdit(i18n("Keyboard accelerator, such as Alt+F", "Accelerator"),
hbAcceleratorPrefix);
m_lblAcceleratorPrefix->setBuddy(m_leAcceleratorPrefixWord);
QHBox* hbPollingInterval = new QHBox(m_gbScreenReaderOptions);
hbPollingInterval->setMargin( 0 );
QLabel* lblPollingInterval = new QLabel(i18n("&Polling interval:"), hbPollingInterval);
m_iniPollingInterval = new KIntNumInput(hbPollingInterval);
m_iniPollingInterval->setSuffix(" ms");
m_iniPollingInterval->setRange(100, 5000, 100, true);
lblPollingInterval->setBuddy(m_iniPollingInterval);
config = KPrFactory::global()->config();
config->setGroup("TTS");
m_cbSpeakPointerWidget->setChecked(config->readBoolEntry("SpeakPointerWidget", false));
m_cbSpeakFocusWidget->setChecked(config->readBoolEntry("SpeakFocusWidget", false));
m_cbSpeakTooltips->setChecked(config->readBoolEntry("SpeakTooltips", true));
m_cbSpeakWhatsThis->setChecked(config->readBoolEntry("SpeakWhatsThis", false));
m_cbSpeakDisabled->setChecked(config->readBoolEntry("SpeakDisabled", true));
m_cbSpeakAccelerators->setChecked(config->readBoolEntry("SpeakAccelerators", true));
m_leAcceleratorPrefixWord->setText(config->readEntry("AcceleratorPrefixWord",
i18n("Keyboard accelerator, such as Alt+F", "Accelerator")));
m_iniPollingInterval->setValue(config->readNumEntry("PollingInterval", 600));
screenReaderOptionChanged();
connect(m_cbSpeakPointerWidget, SIGNAL(toggled(bool)), this, SLOT(screenReaderOptionChanged()));
connect(m_cbSpeakFocusWidget, SIGNAL(toggled(bool)), this, SLOT(screenReaderOptionChanged()));
connect(m_cbSpeakAccelerators, SIGNAL(toggled(bool)), this, SLOT(screenReaderOptionChanged()));
}
void KPrConfigureTTSPage::slotDefault()
{
m_cbSpeakPointerWidget->setChecked(false);
m_cbSpeakFocusWidget->setChecked(false);
m_cbSpeakTooltips->setChecked(true);
m_cbSpeakWhatsThis->setChecked(false);
m_cbSpeakDisabled->setChecked(true);
m_cbSpeakAccelerators->setChecked(true);
m_leAcceleratorPrefixWord->setText(i18n("Keyboard accelerator, such as Alt+F", "Accelerator"));
m_iniPollingInterval->setValue(600);
}
void KPrConfigureTTSPage::apply()
{
config->setGroup("TTS");
config->writeEntry("SpeakPointerWidget", m_cbSpeakPointerWidget->isChecked());
config->writeEntry("SpeakFocusWidget", m_cbSpeakFocusWidget->isChecked());
config->writeEntry("SpeakTooltips", m_cbSpeakTooltips->isChecked());
config->writeEntry("SpeakWhatsThis", m_cbSpeakWhatsThis->isChecked());
config->writeEntry("SpeakDisabled", m_cbSpeakDisabled->isChecked());
config->writeEntry("SpeakAccelerators", m_cbSpeakAccelerators->isChecked());
config->writeEntry("AcceleratorPrefixWord", m_leAcceleratorPrefixWord->text());
config->writeEntry("PollingInterval", m_iniPollingInterval->value());
if (kospeaker) kospeaker->readConfig(config);
}
void KPrConfigureTTSPage::screenReaderOptionChanged()
{
m_gbScreenReaderOptions->setEnabled(
m_cbSpeakPointerWidget->isChecked() | m_cbSpeakFocusWidget->isChecked());
m_leAcceleratorPrefixWord->setEnabled(m_cbSpeakAccelerators->isChecked());
m_lblAcceleratorPrefix->setEnabled(m_cbSpeakAccelerators->isChecked());
}
#include "KPrConfig.moc"
|