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 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
|
#include <qfileinfo.h>
#include <qhbox.h>
#include <qlayout.h>
#include <qscrollview.h>
#include <qscrollbar.h>
#include <qtimer.h>
#include <qpainter.h>
#include <qprinter.h>
#include <qprintdialog.h>
#include <kaboutdialog.h>
#include <kaccel.h>
#include <kaction.h>
#include <kapplication.h>
#include <kconfig.h>
#include <kconfigdialog.h>
#include <kdebug.h>
#include <kdirwatch.h>
#include <kfiledialog.h>
#include <kfilterbase.h>
#include <kfilterdev.h>
#include <kglobal.h>
#include <kinstance.h>
#include <kio/job.h>
#include <klocale.h>
#include <kiconloader.h>
#include <kmessagebox.h>
#include <kmimetype.h>
#include <kparts/componentfactory.h>
#include <kparts/genericfactory.h>
#include <kparts/partmanager.h>
#include <kprogress.h>
#include <kstandarddirs.h>
#include <kstdaction.h>
#include <ktempfile.h>
#include <ktrader.h>
#include <kinputdialog.h>
#include <stdlib.h>
#include <unistd.h>
#include <math.h>
#include "kviewpart.h"
#include "kmultipage.h"
#include "pageSize.h"
#include "pageSizeDialog.h"
#include "zoomlimits.h"
#include "optionDialogGUIWidget_base.h"
#include "optionDialogAccessibilityWidget.h"
#include "kvsprefs.h"
#define MULTIPAGE_VERSION 2
typedef KParts::GenericFactory<KViewPart> KViewPartFactory;
K_EXPORT_COMPONENT_FACTORY(kviewerpart, KViewPartFactory)
KViewPart::KViewPart(QWidget *parentWidget, const char *widgetName, QObject *parent,
const char *name, const QStringList& args)
: KViewPart_Iface(parent, name), showSidebar(0), saveAction(0), partManager(0),
multiPageLibrary(QString::null), aboutDialog(0)
{
KGlobal::locale()->insertCatalogue("kviewshell");
tmpUnzipped = 0L;
pageChangeIsConnected = false;
setInstance(KViewPartFactory::instance());
watch = KDirWatch::self();
connect(watch, SIGNAL(dirty(const QString&)), this, SLOT(fileChanged(const QString&)));
watch->startScan();
mainWidget = new QHBox(parentWidget, widgetName);
mainWidget->setFocusPolicy(QWidget::StrongFocus);
setWidget(mainWidget);
// Setup part manager
partManager = new KParts::PartManager(parentWidget, "PartManager for kviewpart");
setManager(partManager);
// Don't switch to another part when pressing a mouse button
partManager->setActivationButtonMask(0);
// Without this the GUI-items of the KMultiPages are not merged
partManager->setAllowNestedParts(true);
connect(partManager, SIGNAL(activePartChanged(KParts::Part*)), this, SIGNAL(pluginChanged(KParts::Part*)));
partManager->addPart(this);
// create the displaying part
// Search for service
KTrader::OfferList offers;
if (!args.isEmpty())
{
// If a default MimeType is specified try to load a MultiPage supporting it.
QString defaultMimeType = args.first();
offers = KTrader::self()->query(
QString::fromLatin1("KViewShell/MultiPage" ),
QString("([X-KDE-MultiPageVersion] == %1) and "
"([X-KDE-MimeTypes] == '%2')").arg(MULTIPAGE_VERSION).arg(defaultMimeType));
}
// If no default MimeType is given or no MultiPage has been found, try to load the Empty MultiPage.
if (offers.isEmpty())
{
offers = KTrader::self()->query(
QString::fromLatin1("KViewShell/MultiPage" ),
QString("([X-KDE-MultiPageVersion] == %1) and "
"([X-KDE-EmptyMultiPage] == 1)").arg(MULTIPAGE_VERSION));
}
// If still no MultiPage has been found, report an error and abort.
if (offers.isEmpty())
{
KMessageBox::error(parentWidget, i18n("<qt>No MultiPage found.</qt>"));
// return;
}
KService::Ptr service = offers.first();
kdDebug(1223) << service->library() << endl;
// Try to load the multiPage
int error;
multiPage = static_cast<KMultiPage*>(KParts::ComponentFactory::createInstanceFromService<KParts::ReadOnlyPart>(service, mainWidget,
service->name().utf8(), QStringList(), &error ));
// If the loading of the MultiPage failed report and error and abort.
if (!multiPage) {
QString reason;
switch(error) {
case KParts::ComponentFactory::ErrNoServiceFound:
reason = i18n("<qt>No service implementing the given mimetype and fullfilling the given constraint expression can be found.</qt>");
break;
case KParts::ComponentFactory::ErrServiceProvidesNoLibrary:
reason = i18n("<qt>The specified service provides no shared library.</qt>");
break;
case KParts::ComponentFactory::ErrNoLibrary:
reason = i18n("<qt><p>The specified library <b>%1</b> could not be loaded. The error message returned was:</p>"
"<p><b>%2</b></p></qt>").arg(service->library()).arg(KLibLoader::self()->lastErrorMessage());
break;
case KParts::ComponentFactory::ErrNoFactory:
reason = i18n("<qt>The library does not export a factory for creating components.</qt>");
break;
case KParts::ComponentFactory::ErrNoComponent:
reason = i18n("<qt>The factory does not support creating components of the specified type.</qt>");
break;
}
QString text = i18n("<qt><p><b>Problem:</b> The document <b>%1</b> cannot be shown.</p>"
"<p><b>Reason:</b> The software component <b>%2</b> which is required to "
"display your files could not be initialized. This could point to "
"serious misconfiguration of your KDE system, or to damaged program files.</p>"
"<p><b>What you can do:</b> You could try to re-install the software packages in "
"question. If that does not help, you could file an error report, either to the "
"provider of your software (e.g. the vendor of your Linux distribution), or "
"directly to the authors of the software. The entry <b>Report Bug...</b> in the "
"<b>Help</b> menu helps you to contact the KDE programmers.</p></qt>").arg(m_file).arg(service->library());
QString caption = i18n("Error Initializing Software Component");
KMessageBox::detailedError(mainWidget, text, reason, caption);
emit setStatusBarText(QString::null);
return;
}
// Make the KViewPart the parent of the MultiPage.
// So the Partmanager treats it as a nested KPart.
insertChild(multiPage);
// Remember the name of the library.
multiPageLibrary = service->library();
// Add the multipage to the GUI.
partManager->addPart(multiPage);
exportTextAction = new KAction(i18n("Text..."), 0, this, SLOT(mp_exportText()), actionCollection(), "export_text");
// edit menu
findTextAction = KStdAction::find(this, SLOT(mp_showFindTextDialog()), actionCollection(), "find");
findNextAction = KStdAction::findNext(this, SLOT(mp_findNextText()), actionCollection(), "findnext");
findNextAction->setEnabled(false);
findPrevAction = KStdAction::findPrev(this, SLOT(mp_findPrevText()), actionCollection(), "findprev");
findPrevAction->setEnabled(false);
selectAllAction = KStdAction::selectAll(this, SLOT(mp_doSelectAll()), actionCollection(), "edit_select_all");
copyTextAction = KStdAction::copy(this, SLOT(mp_copyText()), actionCollection(), "copy_text");
copyTextAction->setEnabled(false);
deselectAction = KStdAction::deselect(this, SLOT(mp_clearSelection()), actionCollection(), "edit_deselect_all");
deselectAction->setEnabled(false);
saveAction = KStdAction::save(this, SLOT(mp_slotSave_defaultFilename()), actionCollection());
// settings menu
showSidebar = new KToggleAction (i18n("Show &Sidebar"), "show_side_panel", 0, this,
SLOT(slotShowSidebar()), actionCollection(), "show_sidebar");
showSidebar->setCheckedState(i18n("Hide &Sidebar"));
watchAct = new KToggleAction(i18n("&Watch File"), 0, 0, 0, actionCollection(), "watch_file");
scrollbarHandling = new KToggleAction (i18n("Show Scrollbars"), 0, 0, 0, actionCollection(), "scrollbarHandling");
scrollbarHandling->setCheckedState(i18n("Hide Scrollbars"));
// View modes
QStringList viewModes;
viewModes.append(i18n("Single Page"));
viewModes.append(i18n("Continuous"));
viewModes.append(i18n("Continuous - Facing"));
viewModes.append(i18n("Overview"));
viewModeAction = new KSelectAction (i18n("View Mode"), 0, 0, 0, actionCollection(), "viewmode");
viewModeAction->setItems(viewModes);
// Orientation menu
QStringList orientations;
orientations.append(i18n("Portrait"));
orientations.append(i18n("Landscape"));
orientation = new KSelectAction (i18n("Preferred &Orientation"), 0, 0, 0, actionCollection(), "view_orientation");
orientation->setItems(orientations);
connect(orientation, SIGNAL(activated (int)), &userRequestedPaperSize, SLOT(setOrientation(int)));
// Zoom Menu
zoom_action = new KSelectAction (i18n("&Zoom"), 0, 0, 0, actionCollection(), "view_zoom");
zoom_action->setEditable(true);
zoom_action->setItems(_zoomVal.zoomNames());
connect (&_zoomVal, SIGNAL(zoomNamesChanged(const QStringList &)), zoom_action, SLOT(setItems(const QStringList &)));
connect (&_zoomVal, SIGNAL(valNoChanged(int)), zoom_action, SLOT(setCurrentItem(int)));
connect (&_zoomVal, SIGNAL(zoomNameChanged(const QString &)), this, SIGNAL(zoomChanged(const QString &)) );
connect (zoom_action, SIGNAL(activated(const QString &)), this, SLOT(setZoomValue(const QString &)));
_zoomVal.setZoomValue(1.0); // should not be necessary @@@@
emit(zoomChanged("100%"));
// Paper Size Menu
media = new KSelectAction (i18n("Preferred Paper &Size"), 0, 0, 0, actionCollection(), "view_media");
QStringList items = userRequestedPaperSize.pageSizeNames();
items.prepend(i18n("Custom Size..."));
media->setItems(items);
connect (media, SIGNAL(activated(int)), this, SLOT(slotMedia(int)));
useDocumentSpecifiedSize = new KToggleAction(i18n("&Use Document Specified Paper Size"), 0, this, SLOT(slotShowSidebar()),
actionCollection(), "view_use_document_specified_size");
// Zoom Actions
zoomInAct = KStdAction::zoomIn (this, SLOT(zoomIn()), actionCollection());
zoomOutAct = KStdAction::zoomOut(this, SLOT(zoomOut()), actionCollection());
fitPageAct = new KToggleAction(i18n("&Fit to Page"), "view_fit_window", Key_P,
actionCollection(), "view_fit_to_page");
fitWidthAct = new KToggleAction(i18n("Fit to Page &Width"), "view_fit_width", Key_W,
actionCollection(), "view_fit_to_width");
fitHeightAct = new KToggleAction(i18n("Fit to Page &Height"), "view_fit_height", Key_H,
actionCollection(), "view_fit_to_height");
fitPageAct -> setExclusiveGroup("view_fit");
fitWidthAct -> setExclusiveGroup("view_fit");
fitHeightAct -> setExclusiveGroup("view_fit");
connect(fitPageAct, SIGNAL(toggled(bool)), this, SLOT(enableFitToPage(bool)));
connect(fitWidthAct, SIGNAL(toggled(bool)), this, SLOT(enableFitToWidth(bool)));
connect(fitHeightAct, SIGNAL(toggled(bool)), this, SLOT(enableFitToHeight(bool)));
// go menu
backAct = KStdAction::prior(this, SLOT(mp_prevPage()), actionCollection());
forwardAct = KStdAction::next(this, SLOT(mp_nextPage()), actionCollection());
startAct = KStdAction::firstPage(this, SLOT(mp_firstPage()), actionCollection());
endAct = KStdAction::lastPage(this, SLOT(mp_lastPage()), actionCollection());
gotoAct = KStdAction::gotoPage(this, SLOT(goToPage()), actionCollection());
gotoAct->setShortcut("CTRL+G");
readUpAct = new KAction(i18n("Read Up Document"), "up", SHIFT+Key_Space, this, SLOT(mp_readUp()), actionCollection(), "go_read_up");
readDownAct = new KAction(i18n("Read Down Document"), "down", Key_Space, this, SLOT(mp_readDown()), actionCollection(), "go_read_down");
printAction = KStdAction::print(this, SLOT(slotPrint()), actionCollection());
saveAsAction = KStdAction::saveAs(this, SLOT(mp_slotSave()), actionCollection());
// mode action
moveModeAction = new KRadioAction(i18n("&Move Tool"), "movetool", Key_F4, actionCollection(), "move_tool");
selectionModeAction = new KRadioAction(i18n("&Selection Tool"), "selectiontool", Key_F5, actionCollection(), "selection_tool");
moveModeAction->setExclusiveGroup("tools");
selectionModeAction->setExclusiveGroup("tools");
moveModeAction->setChecked(true);
connect(moveModeAction, SIGNAL(toggled(bool)), this, SLOT(slotEnableMoveTool(bool)));
//connect(selectionModeAction, SIGNAL(toggled(bool)), this, SLOT(slotEnableSelectionTool(bool)));
// history action
backAction = new KAction(i18n("&Back"), "1leftarrow", 0,
this, SLOT(mp_doGoBack()), actionCollection(), "go_back");
forwardAction = new KAction(i18n("&Forward"), "1rightarrow", 0,
this, SLOT(mp_doGoForward()), actionCollection(), "go_forward");
backAction->setEnabled(false);
forwardAction->setEnabled(false);
settingsAction = KStdAction::preferences(this, SLOT(doSettings()), actionCollection());
// We only show this menuitem if no default mimetype is set. This usually means kviewshell
// has been started by itself. Otherwise if KDVI or KFaxView has been started show the
// additional about information.
if (!args.isEmpty())
{
aboutAction = new KAction(i18n("About KViewShell"), "kviewshell", 0, this,
SLOT(aboutKViewShell()), actionCollection(), "help_about_kviewshell");
}
// keyboard accelerators
accel = new KAccel(mainWidget);
accel->insert(I18N_NOOP("Scroll Up"), Key_Up, this, SLOT(mp_scrollUp()));
accel->insert(I18N_NOOP("Scroll Down"), Key_Down, this, SLOT(mp_scrollDown()));
accel->insert(I18N_NOOP("Scroll Left"), Key_Left, this, SLOT(mp_scrollLeft()));
accel->insert(I18N_NOOP("Scroll Right"), Key_Right, this, SLOT(mp_scrollRight()));
accel->insert(I18N_NOOP("Scroll Up Page"), SHIFT+Key_Up, this, SLOT(mp_scrollUpPage()));
accel->insert(I18N_NOOP("Scroll Down Page"), SHIFT+Key_Down, this, SLOT(mp_scrollDownPage()));
accel->insert(I18N_NOOP("Scroll Left Page"), SHIFT+Key_Left, this, SLOT(mp_scrollLeftPage()));
accel->insert(I18N_NOOP("Scroll Right Page"), SHIFT+Key_Right, this, SLOT(mp_scrollRightPage()));
accel->readSettings();
readSettings();
m_extension = new KViewPartExtension(this);
setXMLFile("kviewerpart.rc");
initializeMultiPage();
// The page size dialog is constructed on first usage -- saves some
// memory when not used.
_pageSizeDialog = 0;
checkActions();
viewModeAction->setCurrentItem(KVSPrefs::viewMode());
// We disconnect because we dont want some FocusEvents to trigger a GUI update, which might mess
// with our menus.
disconnect(partManager, SIGNAL(activePartChanged(KParts::Part*)), this, SIGNAL(pluginChanged(KParts::Part*)));
}
KViewPart::~KViewPart()
{
writeSettings();
// Without the next two lines, konqueror crashes when it is quit
// while displaying a DVI file. I don't really understand
// why... --Stefan.
if (manager() != 0)
manager()->removePart(this);
// Delete the partManager;
setManager(0);
delete partManager;
delete multiPage;
delete tmpUnzipped;
}
void KViewPart::initializeMultiPage()
{
// Paper Size handling
multiPage->setUseDocumentSpecifiedSize(useDocumentSpecifiedSize->isChecked());
multiPage->setUserPreferredSize(userRequestedPaperSize);
connect(&userRequestedPaperSize, SIGNAL(sizeChanged(const SimplePageSize&)), multiPage, SLOT(setUserPreferredSize(const SimplePageSize&)));
connect(useDocumentSpecifiedSize, SIGNAL(toggled(bool)), multiPage, SLOT(setUseDocumentSpecifiedSize(bool)));
connect(scrollbarHandling, SIGNAL(toggled(bool)), multiPage, SLOT(slotShowScrollbars(bool)));
// connect to the multi page view
connect( this, SIGNAL(scrollbarStatusChanged(bool)), multiPage, SLOT(slotShowScrollbars(bool)));
connect( multiPage, SIGNAL(pageInfo(int, int)), this, SLOT(pageInfo(int, int)) );
connect( multiPage, SIGNAL(askingToCheckActions()), this, SLOT(checkActions()) );
connect( multiPage, SIGNAL( started( KIO::Job * ) ), this, SIGNAL( started( KIO::Job * ) ) );
connect( multiPage, SIGNAL( completed() ), this, SIGNAL( completed() ) );
connect( multiPage, SIGNAL( canceled( const QString & ) ), this, SIGNAL( canceled( const QString & ) ) );
connect( multiPage, SIGNAL( setStatusBarText( const QString& ) ), this, SLOT( setStatusBarTextFromMultiPage( const QString& ) ) );
connect( multiPage, SIGNAL(zoomIn()), this, SLOT(zoomIn()) );
connect( multiPage, SIGNAL(zoomOut()), this, SLOT(zoomOut()) );
// change the viewmode
connect(viewModeAction, SIGNAL(activated (int)), multiPage, SLOT(setViewMode(int)));
// Update zoomlevel on viewmode changes
connect(multiPage, SIGNAL(viewModeChanged()), this, SLOT(updateZoomLevel()));
// navigation history
connect(multiPage->history(), SIGNAL(backItem(bool)), backAction, SLOT(setEnabled(bool)));
connect(multiPage->history(), SIGNAL(forwardItem(bool)), forwardAction, SLOT(setEnabled(bool)));
// text selection
connect(multiPage, SIGNAL(textSelected(bool)), copyTextAction, SLOT(setEnabled(bool)));
connect(multiPage, SIGNAL(textSelected(bool)), deselectAction, SLOT(setEnabled(bool)));
// text search
connect(multiPage, SIGNAL(searchEnabled(bool)), findNextAction, SLOT(setEnabled(bool)));
connect(multiPage, SIGNAL(searchEnabled(bool)), findPrevAction, SLOT(setEnabled(bool)));
// allow parts to have a GUI, too :-)
// (will be merged automatically)
insertChildClient( multiPage );
}
void KViewPart::slotStartFitTimer()
{
fitTimer.start(100, true);
}
QString KViewPart::pageSizeDescription()
{
PageNumber nr = multiPage->currentPageNumber();
if (!nr.isValid())
return QString::null;
SimplePageSize ss = multiPage->sizeOfPage(nr);
if (!ss.isValid())
return QString::null;
pageSize s(ss);
QString size = " ";
if (s.formatNumber() == -1) {
if (KGlobal::locale()-> measureSystem() == KLocale::Metric)
size += QString("%1x%2 mm").arg(s.width().getLength_in_mm(), 0, 'f', 0).arg(s.height().getLength_in_mm(), 0, 'f', 0);
else
size += QString("%1x%2 in").arg(s.width().getLength_in_inch(), 0, 'g', 2).arg(s.height().getLength_in_inch(), 0, 'g', 2);
} else {
size += s.formatName() + "/";
if (s.getOrientation() == 0)
size += i18n("portrait");
else
size += i18n("landscape");
}
return size+" ";
}
void KViewPart::restoreDocument(const KURL &url, int page)
{
if (openURL(url))
multiPage->gotoPage(page);
}
void KViewPart::saveDocumentRestoreInfo(KConfig* config)
{
config->writePathEntry("URL", url().url());
if (multiPage->numberOfPages() > 0)
config->writeEntry("Page", multiPage->currentPageNumber());
}
void KViewPart::slotFileOpen()
{
if ((!multiPage.isNull()) && (multiPage->isModified() == true)) {
int ans = KMessageBox::warningContinueCancel( 0,
i18n("Your document has been modified. Do you really want to open another document?"),
i18n("Warning - Document Was Modified"),KStdGuiItem::open());
if (ans == KMessageBox::Cancel)
return;
}
KURL url = KFileDialog::getOpenURL(QString::null, supportedMimeTypes().join(" "));
if (!url.isEmpty())
openURL(url);
}
QStringList KViewPart::supportedMimeTypes()
{
QStringList supportedMimeTypes;
// Search for service
KTrader::OfferList offers = KTrader::self()->query(
QString::fromLatin1("KViewShell/MultiPage"),
QString("([X-KDE-MultiPageVersion] == %1)").arg(MULTIPAGE_VERSION)
);
if (!offers.isEmpty())
{
KTrader::OfferList::ConstIterator iterator = offers.begin();
KTrader::OfferList::ConstIterator end = offers.end();
for (; iterator != end; ++iterator)
{
KService::Ptr service = *iterator;
QString mimeType = service->property("X-KDE-MimeTypes").toString();
supportedMimeTypes << mimeType;
}
}
// The kviewshell is also able to read compressed files and to
// uncompress them on the fly.
// Check if this version of KDE supports bzip2
bool bzip2Available = (KFilterBase::findFilterByMimeType( "application/x-bzip2" ) != 0L);
supportedMimeTypes << "application/x-gzip";
if (bzip2Available)
{
supportedMimeTypes << "application/x-bzip2";
}
return supportedMimeTypes;
}
QStringList KViewPart::fileFormats() const
{
// Compile a list of the supported filename patterns
// First we build a list of the mimetypes which are supported by the
// currently installed KMultiPage-Plugins.
QStringList supportedMimeTypes;
QStringList supportedPattern;
// Search for service
KTrader::OfferList offers = KTrader::self()->query(
QString::fromLatin1("KViewShell/MultiPage"),
QString("([X-KDE-MultiPageVersion] == %1)").arg(MULTIPAGE_VERSION)
);
if (!offers.isEmpty())
{
KTrader::OfferList::ConstIterator iterator = offers.begin();
KTrader::OfferList::ConstIterator end = offers.end();
for (; iterator != end; ++iterator)
{
KService::Ptr service = *iterator;
QString mimeType = service->property("X-KDE-MimeTypes").toString();
supportedMimeTypes << mimeType;
QStringList pattern = KMimeType::mimeType(mimeType)->patterns();
while(!pattern.isEmpty())
{
supportedPattern.append(pattern.front().stripWhiteSpace());
pattern.pop_front();
}
}
}
// The kviewshell is also able to read compressed files and to
// uncompress them on the fly. Thus, we modify the list of supported
// file formats which we obtain from the multipages to include
// compressed files like "*.dvi.gz". We add "*.dvi.bz2" if support
// for bzip2 is compiled into KDE.
// Check if this version of KDE supports bzip2
bool bzip2Available = (KFilterBase::findFilterByMimeType( "application/x-bzip2" ) != 0L);
QStringList compressedPattern;
for(QStringList::Iterator it = supportedPattern.begin(); it != supportedPattern.end(); ++it )
{
if ((*it).find(".gz", -3) == -1) // Paranoia safety check
compressedPattern.append(*it + ".gz");
if ((bzip2Available) && ((*it).find(".bz2", -4) == -1)) // Paranoia safety check
compressedPattern.append(*it + ".bz2");
}
while (!compressedPattern.isEmpty())
{
supportedPattern.append(compressedPattern.front());
compressedPattern.pop_front();
}
kdDebug(1223) << "Supported Pattern: " << supportedPattern << endl;
return supportedPattern;
}
void KViewPart::slotSetFullPage(bool fullpage)
{
if (multiPage)
multiPage->slotSetFullPage(fullpage);
else
kdError(1223) << "KViewPart::slotSetFullPage() called without existing multipage" << endl;
// Restore normal view
if (fullpage == false)
{
slotShowSidebar();
multiPage->slotShowScrollbars(scrollbarHandling->isChecked());
}
}
void KViewPart::slotShowSidebar()
{
bool show = showSidebar->isChecked();
multiPage->slotShowSidebar(show);
}
bool KViewPart::openFile()
{
KURL tmpFileURL;
// We try to be error-tolerant about filenames. If the user calls us
// with something like "test", and we are using the DVI-part, we'll
// also look for "testdvi" and "test.dvi".
QFileInfo fi(m_file);
m_file = fi.absFilePath();
if (!fi.exists())
{
QStringList supportedPatterns = fileFormats();
QStringList endings;
for (QStringList::Iterator it = supportedPatterns.begin(); it != supportedPatterns.end(); ++it)
{
// Only consider patterns starting with "*."
if ((*it).find("*.") == 0)
{
// Remove first Letter from string
endings.append((*it).mid(2).stripWhiteSpace());
}
}
kdDebug(1223) << "Supported Endings: " << endings << endl;
// Now try to append the endings with and without "." to the given filename,
// and see if that gives a existing file.
for (QStringList::Iterator it = endings.begin(); it != endings.end(); ++it)
{
fi.setFile(m_file+(*it));
if (fi.exists())
{
m_file = m_file+(*it);
break;
}
fi.setFile(m_file+"."+(*it));
if (fi.exists())
{
m_file = m_file+"."+(*it);
break;
}
}
// If we still have not found a file. Show an error message and return.
if (!fi.exists())
{
KMessageBox::error(mainWidget, i18n("<qt>File <nobr><strong>%1</strong></nobr> does not exist.</qt>").arg(m_file));
emit setStatusBarText(QString::null);
return false;
}
m_url.setPath(QFileInfo(m_file).absFilePath());
}
// Set the window caption now, before we do any uncompression and generation of temporary files.
tmpFileURL.setPath(m_file);
emit setStatusBarText(i18n("Loading '%1'...").arg(tmpFileURL.prettyURL()));
emit setWindowCaption( tmpFileURL.prettyURL() ); // set Window caption WITHOUT the reference part!
// Check if the file is compressed
KMimeType::Ptr mimetype = KMimeType::findByPath( m_file );
if (( mimetype->name() == "application/x-gzip" ) || ( mimetype->name() == "application/x-bzip2" ) ||
( mimetype->parentMimeType() == "application/x-gzip" ) ||
( mimetype->parentMimeType() == "application/x-bzip2" ))
{
// The file is compressed. Make a temporary file, and store an uncompressed version there...
if (tmpUnzipped != 0L) // Delete old temporary file
delete tmpUnzipped;
tmpUnzipped = new KTempFile;
if (tmpUnzipped == 0L)
{
KMessageBox::error(mainWidget, i18n("<qt><strong>File Error!</strong> Could not create "
"temporary file.</qt>"));
emit setWindowCaption(QString::null);
emit setStatusBarText(QString::null);
return false;
}
tmpUnzipped->setAutoDelete(true);
if(tmpUnzipped->status() != 0)
{
KMessageBox::error(mainWidget, i18n("<qt><strong>File Error!</strong> Could not create temporary file "
"<nobr><strong>%1</strong></nobr>.</qt>").arg(strerror(tmpUnzipped->status())));
emit setWindowCaption(QString::null);
emit setStatusBarText(QString::null);
return false;
}
QIODevice* filterDev;
if (( mimetype->parentMimeType() == "application/x-gzip" ) ||
( mimetype->parentMimeType() == "application/x-bzip2" ))
filterDev = KFilterDev::deviceForFile(m_file, mimetype->parentMimeType());
else
filterDev = KFilterDev::deviceForFile(m_file);
if (filterDev == 0L)
{
emit setWindowCaption(QString::null);
emit setStatusBarText(QString::null);
return false;
}
if(!filterDev->open(IO_ReadOnly))
{
KMessageBox::detailedError(mainWidget, i18n("<qt><strong>File Error!</strong> Could not open the file "
"<nobr><strong>%1</strong></nobr> for uncompression. "
"The file will not be loaded.</qt>").arg(m_file),
i18n("<qt>This error typically occurs if you do not have enough permissions to read the file. "
"You can check ownership and permissions if you right-click on the file in the Konqueror "
"file manager and then choose the 'Properties' menu.</qt>"));
emit setWindowCaption(QString::null);
delete filterDev;
emit setStatusBarText(QString::null);
return false;
}
KProgressDialog* prog = new KProgressDialog(0L, "uncompress-progress",
i18n("Uncompressing..."),
i18n("<qt>Uncompressing the file <nobr><strong>%1</strong></nobr>. Please wait.</qt>").arg(m_file));
prog->progressBar()->setTotalSteps((int) fi.size()/1024);
prog->progressBar()->setProgress(0);
prog->setMinimumDuration(250);
QByteArray buf(1024);
int read = 0, wrtn = 0;
bool progress_dialog_was_cancelled = false;
while ((read = filterDev->readBlock(buf.data(), buf.size())) > 0)
{
kapp->processEvents();
progress_dialog_was_cancelled = prog->wasCancelled();
if (progress_dialog_was_cancelled)
break;
prog->progressBar()->advance(1);
wrtn = tmpUnzipped->file()->writeBlock(buf.data(), read);
if(read != wrtn)
break;
}
delete filterDev;
delete prog;
tmpUnzipped->sync();
if (progress_dialog_was_cancelled) {
emit setStatusBarText(QString::null);
return false;
}
if ((read != 0) || (tmpUnzipped->file()->size() == 0))
{
KMessageBox::detailedError(mainWidget, i18n("<qt><strong>File Error!</strong> Could not uncompress "
"the file <nobr><strong>%1</strong></nobr>. The file will not be loaded.</qt>").arg( m_file ),
i18n("<qt>This error typically occurs if the file is corrupt. "
"If you want to be sure, try to decompress the file manually using command-line tools.</qt>"));
emit setWindowCaption(QString::null);
emit setStatusBarText(QString::null);
return false;
}
tmpUnzipped->close();
m_file = tmpUnzipped->name();
}
// Now call the openURL-method of the multipage and give it an URL
// pointing to the downloaded file.
tmpFileURL.setPath(m_file);
// Pass the reference part of the URL through to the multipage
tmpFileURL.setRef(m_url.ref());
mimetype = KMimeType::findByURL(tmpFileURL);
// Search for service
KTrader::OfferList offers = KTrader::self()->query(
QString::fromLatin1("KViewShell/MultiPage" ),
QString("([X-KDE-MultiPageVersion] == %1) and "
"([X-KDE-MimeTypes] == '%2')").arg(MULTIPAGE_VERSION).arg(mimetype->name()));
if (offers.isEmpty()) {
KMessageBox::detailedError(mainWidget, i18n("<qt>The document <b>%1</b> cannot be shown because "
"its file type is not supported.</qt>").arg(m_file),
i18n("<qt>The file has mime type <b>%1</b> which is not supported by "
"any of the installed KViewShell plugins.</qt>").arg(mimetype->name()));
emit setWindowCaption(QString::null);
emit setStatusBarText(QString::null);
return false;
}
KService::Ptr service = offers.first();
// The the new multiPage is different then the currently loaded one.
if (service->library() != multiPageLibrary)
{
// We write the settings before we load the new multipage, so
// that the new multipage gets the same settings than the
// currently loaded one.
writeSettings();
// Delete old config dialog
KConfigDialog* configDialog = KConfigDialog::exists("kviewshell_config");
delete configDialog;
KMultiPage* oldMultiPage = multiPage;
// Try to load the multiPage
int error;
multiPage = static_cast<KMultiPage*>(KParts::ComponentFactory::createInstanceFromService<KParts::ReadOnlyPart>(service, mainWidget,
service->name().utf8(), QStringList(), &error ));
if (multiPage.isNull()) {
QString reason;
switch(error) {
case KParts::ComponentFactory::ErrNoServiceFound:
reason = i18n("<qt>No service implementing the given mimetype and fullfilling the given constraint expression can be found.</qt>");
break;
case KParts::ComponentFactory::ErrServiceProvidesNoLibrary:
reason = i18n("<qt>The specified service provides no shared library.</qt>");
break;
case KParts::ComponentFactory::ErrNoLibrary:
reason = i18n("<qt><p>The specified library <b>%1</b> could not be loaded. The error message returned was:</p> <p><b>%2</b></p></qt>").arg(service->library()).arg(KLibLoader::self()->lastErrorMessage());
break;
case KParts::ComponentFactory::ErrNoFactory:
reason = i18n("<qt>The library does not export a factory for creating components.</qt>");
break;
case KParts::ComponentFactory::ErrNoComponent:
reason = i18n("<qt>The factory does not support creating components of the specified type.</qt>");
break;
}
QString text = i18n("<qt><p><b>Problem:</b> The document <b>%1</b> cannot be shown.</p>"
"<p><b>Reason:</b> The software "
"component <b>%2</b> which is required to display files of type <b>%3</b> could "
"not be initialized. This could point to serious misconfiguration of your KDE "
"system, or to damaged program files.</p>"
"<p><b>What you can do:</b> You could try to re-install the software packages in "
"question. If that does not help, you could file an error report, either to the "
"provider of your software (e.g. the vendor of your Linux distribution), or "
"directly to the authors of the software. The entry <b>Report Bug...</b> in the "
"<b>Help</b> menu helps you to contact the KDE programmers.</p></qt>").arg(m_file).arg(service->library()).arg(mimetype->name());
QString caption = i18n("Error Initializing Software Component");
if (reason.isEmpty())
KMessageBox::error(mainWidget, text, caption);
else
KMessageBox::detailedError(mainWidget, text, reason, caption);
emit setStatusBarText(QString::null);
return false;
}
// Remember the name of the part. So only need to switch if really necessary.
multiPageLibrary = service->library();
connect(partManager, SIGNAL(activePartChanged(KParts::Part*)), this, SIGNAL(pluginChanged(KParts::Part*)));
// Switch to the new multiPage
partManager->replacePart(oldMultiPage, multiPage);
delete oldMultiPage;
// The next line makes the plugin switch much more smooth. Without it the new document
// is at first show at a very small zoomlevel before the zoom switches to the right value.
// This makes the plugin switching actually slower.
// TODO: Get rid of this without causing nasty artifacts.
kapp->processEvents();
initializeMultiPage();
partManager->setActivePart(this);
// We disconnect because we dont want some FocusEvents to trigger a GUI update, which might mess
// with our menus.
disconnect(partManager, SIGNAL(activePartChanged(KParts::Part*)), this, SIGNAL(pluginChanged(KParts::Part*)));
readSettings();
}
// Set the multipage to the current viewmode.
multiPage->setViewMode(viewModeAction->currentItem());
// Load the URL
bool r = multiPage->openURL(m_file, m_url);
updateZoomLevel(); // @@@@@@@@@@@@@
// We disable the selection tool for plugins that dont support text.
// Currently this is only the fax plugin.
if (multiPage->supportsTextSearch())
{
selectionModeAction->setEnabled(true);
}
else
{
selectionModeAction->setEnabled(false);
moveModeAction->setChecked(true);
}
// Switch the new multipage to the right tool
slotEnableMoveTool(moveModeAction->isChecked());
if (r) {
// Add the file to the watchlist
watch->addFile( m_file );
// Notify the ViewShell about the newly opened file.
emit fileOpened();
} else {
m_url = QString::null;
emit setWindowCaption(QString::null);
}
checkActions();
emit zoomChanged(QString("%1%").arg((int)(_zoomVal.value()*100.0+0.5)));
emit setStatusBarText(QString::null);
return r;
}
void KViewPart::reload()
{
multiPage->reload();
}
void KViewPart::fileChanged(const QString &file)
{
if (file == m_file && watchAct->isChecked())
multiPage->reload();
}
bool KViewPart::closeURL_ask()
{
if (multiPage.isNull())
return false;
if (multiPage->isModified() == true) {
int ans = KMessageBox::warningContinueCancel( 0,
i18n("Your document has been modified. Do you really want to close it?"),
i18n("Document Was Modified"), KStdGuiItem::close());
if (ans == KMessageBox::Cancel)
return false;
}
return closeURL();
}
bool KViewPart::closeURL()
{
if (multiPage.isNull())
return false;
if( watch && !m_file.isEmpty() )
watch->removeFile( m_file );
KParts::ReadOnlyPart::closeURL();
multiPage->closeURL();
m_url = QString::null;
checkActions();
emit setWindowCaption("");
return true;
}
void KViewPart::slotMedia(int id)
{
// If the user has chosen one of the 'known' paper sizes, set the
// user requested paper size to that value. Via signals and slots,
// this will update the menus, and also the GUI, if necessary.
if (id > 1) {
userRequestedPaperSize.setPageSize(media->currentText());
return;
}
// If the user has chosen "Custom paper size..", show the paper size
// dialog. Construct it, if necessary. The paper size dialog will
// know the address of userRequestedPaperSize and change this
// member, if the user clicks ok/accept. The signal/slot mechanism
// will then make sure that the necessary updates in the GUI are
// done.
if (_pageSizeDialog == 0) {
_pageSizeDialog = new pageSizeDialog(mainWidget, &userRequestedPaperSize);
if (_pageSizeDialog == 0) {
kdError(1223) << "Could not construct the page size dialog!" << endl;
return;
}
}
// Reset the "preferred paper size" menu. We don't want to have the
// "custom paper size" check if the user aborts the dialog.
checkActions();
// Set or update the paper size dialog to show the currently
// selected value.
_pageSizeDialog->setPageSize(userRequestedPaperSize.serialize());
_pageSizeDialog->show();
}
void KViewPart::pageInfo(int numpages, int currentpage)
{
updateZoomLevel();
// ATTN: The string here must be the same as in setPage() below
QString pageString = i18n("Page %1 of %2").arg(currentpage).arg(numpages);
if (pageChangeIsConnected) {
emit pageChanged(pageString);
emit sizeChanged(pageSizeDescription());
} else
emit setStatusBarText(pageString);
checkActions();
}
void KViewPart::goToPage()
{
bool ok = false;
int p = KInputDialog::getInteger(i18n("Go to Page"), i18n("Page:"),
multiPage->currentPageNumber(), 1, multiPage->numberOfPages(),
1 /*step*/, &ok, mainWidget, "gotoDialog");
if (ok)
multiPage->gotoPage(p);
}
void KViewPart::disableZoomFit()
{
if (fitPageAct -> isChecked())
{
fitPageAct -> setChecked(false);
enableFitToPage(false);
}
else if(fitWidthAct -> isChecked())
{
fitWidthAct -> setChecked(false);
enableFitToWidth(false);
}
else if (fitHeightAct -> isChecked())
{
fitHeightAct -> setChecked(false);
enableFitToHeight(false);
}
}
void KViewPart::zoomIn()
{
disableZoomFit();
float oldVal = _zoomVal.value();
float newVal = _zoomVal.zoomIn();
if (oldVal != newVal)
_zoomVal.setZoomValue(multiPage->setZoom(_zoomVal.zoomIn()));
}
void KViewPart::zoomOut()
{
disableZoomFit();
float oldVal = _zoomVal.value();
float newVal = _zoomVal.zoomOut();
if (oldVal != newVal)
_zoomVal.setZoomValue(multiPage->setZoom(_zoomVal.zoomOut()));
}
void KViewPart::updateZoomLevel()
{
if (fitPageAct->isChecked())
{
fitToPage();
}
else if (fitWidthAct->isChecked())
{
fitToWidth();
}
else if (fitHeightAct->isChecked())
{
fitToHeight();
}
else
{
// Manuell Zoom
}
}
void KViewPart::enableFitToPage(bool enable)
{
if (enable)
{
fitToPage();
connect(multiPage->mainWidget(), SIGNAL(viewSizeChanged(const QSize&)),
this, SLOT(slotStartFitTimer()));
connect(&fitTimer, SIGNAL(timeout()), SLOT(fitToPage()));
}
else
{
disconnect(multiPage->mainWidget(), SIGNAL(viewSizeChanged(const QSize&)),
this, SLOT(slotStartFitTimer()));
disconnect(&fitTimer, SIGNAL(timeout()), this, SLOT(fitToPage()));
}
}
void KViewPart::enableFitToWidth(bool enable)
{
if (enable)
{
fitToWidth();
connect(multiPage->mainWidget(), SIGNAL(viewSizeChanged(const QSize&)),
this, SLOT(slotStartFitTimer()));
connect(&fitTimer, SIGNAL(timeout()), SLOT(fitToWidth()));
}
else
{
disconnect(multiPage->mainWidget(), SIGNAL(viewSizeChanged(const QSize&)),
this, SLOT(slotStartFitTimer()));
disconnect(&fitTimer, SIGNAL(timeout()), this, SLOT(fitToWidth()));
}
}
void KViewPart::enableFitToHeight(bool enable)
{
if (enable)
{
fitToHeight();
connect(multiPage->mainWidget(), SIGNAL(viewSizeChanged(const QSize&)),
this, SLOT(slotStartFitTimer()));
connect(&fitTimer, SIGNAL(timeout()), SLOT(fitToHeight()));
}
else
{
disconnect(multiPage->mainWidget(), SIGNAL(viewSizeChanged(const QSize&)),
this, SLOT(slotStartFitTimer()));
disconnect(&fitTimer, SIGNAL(timeout()), this, SLOT(fitToHeight()));
}
}
void KViewPart::fitToPage()
{
double z = QMIN(multiPage->calculateFitToHeightZoomValue(),
multiPage->calculateFitToWidthZoomValue());
// Check if the methods returned usable values. Values that are not
// within the limits indicate that fitting to width or height is
// currently not possible (e.g. because no document is
// loaded). In that case, we abort.
if ((z < ZoomLimits::MinZoom/1000.0) || (z > ZoomLimits::MaxZoom/1000.0))
return;
multiPage->setZoom(z);
_zoomVal.setZoomFitPage(z);
}
void KViewPart::fitToHeight()
{
double z = multiPage->calculateFitToHeightZoomValue();
// Check if the method returned a usable value. Values that are not
// within the limits indicate that fitting to height is currently
// not possible (e.g. because no document is loaded). In that case,
// we abort.
if ((z < ZoomLimits::MinZoom/1000.0) || (z > ZoomLimits::MaxZoom/1000.0))
return;
multiPage->setZoom(z);
_zoomVal.setZoomFitHeight(z);
}
void KViewPart::fitToWidth()
{
double z = multiPage->calculateFitToWidthZoomValue();
// Check if the method returned a usable value. Values that are not
// within the limits indicate that fitting to width is currently not
// possible (e.g. because no document is loaded). In that case, we
// abort.
if ((z < ZoomLimits::MinZoom/1000.0) || (z > ZoomLimits::MaxZoom/1000.0))
return;
multiPage->setZoom(z);
_zoomVal.setZoomFitWidth(z);
}
void KViewPart::setZoomValue(const QString &sval)
{
if (sval == i18n("Fit to Page Width"))
{
fitWidthAct -> setChecked(true);
fitToWidth();
}
else if (sval == i18n("Fit to Page Height"))
{
fitHeightAct -> setChecked(true);
fitToHeight();
}
else if (sval == i18n("Fit to Page"))
{
fitPageAct -> setChecked(true);
fitToPage();
}
else
{
disableZoomFit();
float fval = _zoomVal.value();
_zoomVal.setZoomValue(sval);
if (fval != _zoomVal.value())
_zoomVal.setZoomValue(multiPage->setZoom(_zoomVal.value()));
}
mainWidget->setFocus();
}
void KViewPart::checkActions()
{
if (multiPage.isNull())
return;
int currentPage = multiPage->currentPageNumber();
int numberOfPages = multiPage->numberOfPages();
bool doc = !url().isEmpty();
useDocumentSpecifiedSize->setEnabled(multiPage->hasSpecifiedPageSizes() );
if (multiPage->overviewMode())
{
int visiblePages = multiPage->getNrRows() *
multiPage->getNrColumns();
// firstVisiblePage is the smallest currently shown pagenumber.
int firstVisiblePage = currentPage - (currentPage % visiblePages);
backAct->setEnabled(doc && currentPage >= visiblePages);
forwardAct->setEnabled(doc && firstVisiblePage <= numberOfPages - visiblePages);
startAct->setEnabled(doc && firstVisiblePage > 1);
endAct->setEnabled(doc && firstVisiblePage + visiblePages < numberOfPages);
}
else
{
backAct->setEnabled(doc && currentPage > 1);
forwardAct->setEnabled(doc && currentPage < numberOfPages);
startAct->setEnabled(doc && currentPage > 1);
endAct->setEnabled(doc && currentPage < numberOfPages);
}
gotoAct->setEnabled(doc && numberOfPages > 1);
readDownAct->setEnabled(doc);
readUpAct->setEnabled(doc);
zoomInAct->setEnabled(doc);
zoomOutAct->setEnabled(doc);
fitPageAct->setEnabled(doc);
fitHeightAct->setEnabled(doc);
fitWidthAct->setEnabled(doc);
media->setEnabled(doc);
orientation->setEnabled(doc);
printAction->setEnabled(doc);
saveAction->setEnabled(multiPage->isModified());
saveAsAction->setEnabled(doc);
if (userRequestedPaperSize.formatNumber() != -1) {
orientation->setCurrentItem(userRequestedPaperSize.getOrientation());
orientation->setEnabled(true);
media->setCurrentItem(userRequestedPaperSize.formatNumber()+1);
} else {
orientation->setEnabled(false);
media->setCurrentItem(userRequestedPaperSize.formatNumber()-1);
}
bool textSearch = false;
if (doc && multiPage->supportsTextSearch())
textSearch = true;
exportTextAction->setEnabled(textSearch);
findTextAction->setEnabled(textSearch);
selectAllAction->setEnabled(textSearch);
}
void KViewPart::slotPrint()
{
// TODO: REMOVE THIS METHOD
// @@@@@@@@@@@@@@@
multiPage->print();
}
void KViewPart::readSettings()
{
showSidebar->setChecked(KVSPrefs::pageMarks());
slotShowSidebar();
watchAct->setChecked(KVSPrefs::watchFile());
// Read zoom value. Even if 'fitToPage' has been set above, there is
// no widget available right now, so setting a good default value
// from the configuration file is perhaps not a bad idea.
float _zoom = KVSPrefs::zoom();
if ( (_zoom < ZoomLimits::MinZoom/1000.0) || (_zoom > ZoomLimits::MaxZoom/1000.0)) {
kdWarning(1223) << "Illeagal zoom value of " << _zoom*100.0 << "% found in the preferences file. Setting zoom to 100%." << endl;
_zoom = 1.0;
}
_zoomVal.setZoomValue(multiPage->setZoom(_zoom));
// The value 'fitToPage' has several meanings: 1 is 'fit to page
// width', 2 is 'fit to page height', 3 is 'fit to page'. Other
// values indicate 'no fit to page'. Note: at the time this code is
// executed, the methods fitToWidth(), etc., do not work well at all
// (perhaps some data is not initialized yet)? For that reason, we
// do not call these methods, and load the last zoom-value from the
// configuration file below. The hope is that this value is not
// terribly wrong. If the user doesn't like it, it suffices to
// resize the window just a bit...
switch(KVSPrefs::fitToPage()) {
case KVSPrefs::EnumFitToPage::FitToPage:
fitPageAct->setChecked(true);
_zoomVal.setZoomFitPage(_zoom);
enableFitToPage(true);
break;
case KVSPrefs::EnumFitToPage::FitToPageWidth:
fitWidthAct->setChecked(true);
_zoomVal.setZoomFitWidth(_zoom);
enableFitToWidth(true);
break;
case KVSPrefs::EnumFitToPage::FitToPageHeight:
fitHeightAct->setChecked(true);
_zoomVal.setZoomFitHeight(_zoom);
enableFitToHeight(true);
break;
}
// Read Paper Size. and orientation. The GUI is updated
// automatically by the signals/slots mechanism whenever
// userRequestedPaperSize is changed.
userRequestedPaperSize.setPageSize(KVSPrefs::paperFormat());
// Check if scrollbars should be shown.
bool sbstatus = KVSPrefs::scrollbars();
scrollbarHandling->setChecked(sbstatus);
emit scrollbarStatusChanged(sbstatus);
// Check if document specified paper sizes should be shown. We do
// not need to take any action here, because this method is called
// only in the constructor of the KViewPart when no document is loaded.
useDocumentSpecifiedSize->setChecked(KVSPrefs::useDocumentSpecifiedSize());
multiPage->readSettings();
}
void KViewPart::writeSettings()
{
KVSPrefs::setPageMarks(showSidebar->isChecked());
KVSPrefs::setWatchFile(watchAct->isChecked());
KVSPrefs::setZoom(_zoomVal.value());
KVSPrefs::setPaperFormat(userRequestedPaperSize.serialize());
KVSPrefs::setScrollbars(scrollbarHandling->isChecked());
KVSPrefs::setUseDocumentSpecifiedSize(useDocumentSpecifiedSize->isChecked());
if (!multiPage.isNull())
multiPage->writeSettings();
if (fitPageAct->isChecked())
KVSPrefs::setFitToPage(KVSPrefs::EnumFitToPage::FitToPage);
else if(fitWidthAct->isChecked())
KVSPrefs::setFitToPage(KVSPrefs::EnumFitToPage::FitToPageWidth);
else if (fitHeightAct->isChecked())
KVSPrefs::setFitToPage(KVSPrefs::EnumFitToPage::FitToPageHeight);
else
KVSPrefs::setFitToPage(KVSPrefs::EnumFitToPage::DontFit);
KVSPrefs::writeConfig();
}
void KViewPart::connectNotify ( const char *sig )
{
if (QString(sig).contains("pageChanged"))
pageChangeIsConnected = true;
}
void KViewPart::setStatusBarTextFromMultiPage( const QString &msg )
{
if (msg.isEmpty())
{
if (pageChangeIsConnected)
emit setStatusBarText(QString::null);
else
{
int currentPage = multiPage->currentPageNumber();
int numberOfPages = multiPage->numberOfPages();
emit setStatusBarText(i18n("Page %1 of %2").arg(currentPage).arg(numberOfPages));
}
}
else
emit setStatusBarText(msg);
}
KAboutData* KViewPart::createAboutData()
{
return new KAboutData("kviewerpart", I18N_NOOP("Document Viewer Part"),
"0.6", I18N_NOOP(""),
KAboutData::License_GPL,
I18N_NOOP("Copyright (c) 2005 Wilfried Huss"));
}
void KViewPart::aboutKViewShell()
{
if (aboutDialog == 0)
{
// Create Dialog
aboutDialog = new KAboutDialog(mainWidget, "about_kviewshell");
aboutDialog->setTitle(I18N_NOOP("KViewShell"));
aboutDialog->setVersion("0.6");
aboutDialog->setAuthor("Matthias Hoelzer-Kluepfel", QString::null, QString::null,
I18N_NOOP("Original Author"));
aboutDialog->addContributor("Matthias Hoelzer-Kluepfel", "mhk@caldera.de", QString::null,
I18N_NOOP("Framework"));
aboutDialog->addContributor("David Sweet", "dsweet@kde.org", "http://www.chaos.umd.edu/~dsweet",
I18N_NOOP("Former KGhostView Maintainer"));
aboutDialog->addContributor("Mark Donohoe", QString::null, QString::null,
I18N_NOOP("KGhostView Author"));
aboutDialog->addContributor("Markku Hihnala", QString::null, QString::null,
I18N_NOOP("Navigation widgets"));
aboutDialog->addContributor("David Faure", QString::null, QString::null,
I18N_NOOP("Basis for shell"));
aboutDialog->addContributor("Daniel Duley", QString::null, QString::null,
I18N_NOOP("Port to KParts"));
aboutDialog->addContributor("Espen Sand", QString::null, QString::null,
I18N_NOOP("Dialog boxes"));
aboutDialog->addContributor("Stefan Kebekus", "kebekus@kde.org", QString::null,
I18N_NOOP("DCOP-Interface, major improvements"));
aboutDialog->addContributor("Wilfried Huss", "Wilfried.Huss@gmx.at", QString::null,
I18N_NOOP("Interface enhancements"));
}
aboutDialog->show();
}
void KViewPart::doSettings()
{
if (KConfigDialog::showDialog("kviewshell_config"))
return;
KConfigDialog* configDialog = new KConfigDialog(mainWidget, "kviewshell_config", KVSPrefs::self());
optionDialogGUIWidget_base* guiWidget = new optionDialogGUIWidget_base(mainWidget);
configDialog->addPage(guiWidget, i18n("User Interface"), "view_choose");
optionDialogAccessibilityWidget* accWidget = new optionDialogAccessibilityWidget(mainWidget);
configDialog->addPage(accWidget, i18n("Accessibility"), "access");
multiPage->addConfigDialogs(configDialog);
connect(configDialog, SIGNAL(settingsChanged()), this, SLOT(preferencesChanged()));
configDialog->show();
}
void KViewPart::preferencesChanged()
{
multiPage->preferencesChanged();
}
void KViewPart::partActivateEvent( KParts::PartActivateEvent *ev )
{
QApplication::sendEvent( multiPage, ev );
}
void KViewPart::guiActivateEvent( KParts::GUIActivateEvent *ev )
{
QApplication::sendEvent( multiPage, ev );
}
void KViewPart::slotEnableMoveTool(bool enable)
{
// Safety Check
if (multiPage.isNull())
return;
multiPage->slotEnableMoveTool(enable);
}
KViewPartExtension::KViewPartExtension(KViewPart *parent)
: KParts::BrowserExtension( parent, "KViewPartExtension")
{
}
// KMultiPage Interface
void KViewPart::mp_prevPage()
{
multiPage->prevPage();
}
void KViewPart::mp_nextPage()
{
multiPage->nextPage();
}
void KViewPart::mp_firstPage()
{
multiPage->firstPage();
}
void KViewPart::mp_lastPage()
{
multiPage->lastPage();
}
void KViewPart::mp_readUp()
{
multiPage->readUp();
}
void KViewPart::mp_readDown()
{
multiPage->readDown();
}
void KViewPart::mp_scrollUp()
{
multiPage->scrollUp();
}
void KViewPart::mp_scrollDown()
{
multiPage->scrollDown();
}
void KViewPart::mp_scrollLeft()
{
multiPage->scrollLeft();
}
void KViewPart::mp_scrollRight()
{
multiPage->scrollRight();
}
void KViewPart::mp_scrollUpPage()
{
multiPage->scrollUpPage();
}
void KViewPart::mp_scrollDownPage()
{
multiPage->scrollDownPage();
}
void KViewPart::mp_scrollLeftPage()
{
multiPage->scrollLeftPage();
}
void KViewPart::mp_scrollRightPage()
{
multiPage->scrollRightPage();
}
void KViewPart::mp_slotSave()
{
multiPage->slotSave();
}
void KViewPart::mp_slotSave_defaultFilename()
{
multiPage->slotSave_defaultFilename();
}
void KViewPart::mp_doGoBack()
{
multiPage->doGoBack();
}
void KViewPart::mp_doGoForward()
{
multiPage->doGoForward();
}
void KViewPart::mp_showFindTextDialog()
{
multiPage->showFindTextDialog();
}
void KViewPart::mp_findNextText()
{
multiPage->findNextText();
}
void KViewPart::mp_findPrevText()
{
multiPage->findPrevText();
}
void KViewPart::mp_doSelectAll()
{
multiPage->doSelectAll();
}
void KViewPart::mp_clearSelection()
{
multiPage->clearSelection();
}
void KViewPart::mp_copyText()
{
multiPage->copyText();
}
void KViewPart::mp_exportText()
{
multiPage->doExportText();
}
#include "kviewpart.moc"
|