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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <osl/mutex.hxx>
#include <sfx2/printer.hxx>
#include <vcl/svapp.hxx>
#include <svtools/ctrltool.hxx>
#include <svl/itemprop.hxx>
#include <unotools/localedatawrapper.hxx>
#include <comphelper/processfactory.hxx>
#include <editeng/paperinf.hxx>
#include <vcl/settings.hxx>
#include <vcl/print.hxx>
#include <toolkit/awt/vclxdevice.hxx>
#include <com/sun/star/beans/PropertyState.hpp>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/formula/SymbolDescriptor.hpp>
#include <com/sun/star/awt/Size.hpp>
#include <com/sun/star/script/XLibraryContainer.hpp>
#include <xmloff/xmluconv.hxx>
#include <rtl/ustrbuf.hxx>
#include <comphelper/propertysetinfo.hxx>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <unotools/moduleoptions.hxx>
#include <tools/mapunit.hxx>
#include <unomodel.hxx>
#include <document.hxx>
#include <view.hxx>
#include <symbol.hxx>
#include <starmath.hrc>
#include <config.hxx>
#include <smdll.hxx>
using namespace ::cppu;
using namespace ::std;
using namespace ::comphelper;
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::formula;
using namespace ::com::sun::star::view;
using namespace ::com::sun::star::script;
SmPrintUIOptions::SmPrintUIOptions()
{
ResStringArray aLocalizedStrings( SmResId( RID_PRINTUIOPTIONS ) );
SAL_WARN_IF( aLocalizedStrings.Count() < 18, "starmath", "resource incomplete" );
if( aLocalizedStrings.Count() < 9 ) // bad resource ?
return;
SmModule *pp = SM_MOD();
SmConfig *pConfig = pp->GetConfig();
SAL_WARN_IF( !pConfig, "starmath", "SmConfig not found" );
if (!pConfig)
return;
sal_Int32 nNumProps = 10, nIdx=0;
// create sequence of print UI options
// (Actually IsIgnoreSpacesRight is a parser option. Without it we need only 8 properties here.)
m_aUIProperties.realloc( nNumProps );
// load the math PrinterOptions into the custom tab
m_aUIProperties[nIdx].Name = "OptionsUIFile";
m_aUIProperties[nIdx++].Value <<= OUString("modules/smath/ui/printeroptions.ui");
// create Section for formula (results in an extra tab page in dialog)
SvtModuleOptions aOpt;
OUString aAppGroupname(
aLocalizedStrings.GetString( 0 ).
replaceFirst( "%s", aOpt.GetModuleName( SvtModuleOptions::E_SMATH ) ) );
m_aUIProperties[nIdx++].Value = setGroupControlOpt("tabcontrol-page2", aAppGroupname, ".HelpID:vcl:PrintDialog:TabPage:AppPage");
// create subgroup for print options
m_aUIProperties[nIdx++].Value = setSubgroupControlOpt("contents", aLocalizedStrings.GetString(1), OUString());
// create a bool option for title row (matches to SID_PRINTTITLE)
m_aUIProperties[nIdx++].Value = setBoolControlOpt("title", aLocalizedStrings.GetString( 2 ),
".HelpID:vcl:PrintDialog:TitleRow:CheckBox",
PRTUIOPT_TITLE_ROW,
pConfig->IsPrintTitle());
// create a bool option for formula text (matches to SID_PRINTTEXT)
m_aUIProperties[nIdx++].Value = setBoolControlOpt("formulatext", aLocalizedStrings.GetString( 3 ),
".HelpID:vcl:PrintDialog:FormulaText:CheckBox",
PRTUIOPT_FORMULA_TEXT,
pConfig->IsPrintFormulaText());
// create a bool option for border (matches to SID_PRINTFRAME)
m_aUIProperties[nIdx++].Value = setBoolControlOpt("borders", aLocalizedStrings.GetString( 4 ),
".HelpID:vcl:PrintDialog:Border:CheckBox",
PRTUIOPT_BORDER,
pConfig->IsPrintFrame());
// create subgroup for print format
m_aUIProperties[nIdx++].Value = setSubgroupControlOpt("size", aLocalizedStrings.GetString(5), OUString());
// create a radio button group for print format (matches to SID_PRINTSIZE)
Sequence< OUString > aChoices( 3 );
aChoices[0] = aLocalizedStrings.GetString( 6 );
aChoices[1] = aLocalizedStrings.GetString( 7 );
aChoices[2] = aLocalizedStrings.GetString( 8 );
Sequence< OUString > aHelpIds( 3 );
aHelpIds[0] = ".HelpID:vcl:PrintDialog:PrintFormat:RadioButton:0";
aHelpIds[1] = ".HelpID:vcl:PrintDialog:PrintFormat:RadioButton:1";
aHelpIds[2] = ".HelpID:vcl:PrintDialog:PrintFormat:RadioButton:2";
Sequence< OUString > aWidgetIds( 3 );
aWidgetIds[0] = "originalsize";
aWidgetIds[1] = "fittopage";
aWidgetIds[2] = "scaling";
OUString aPrintFormatProp( PRTUIOPT_PRINT_FORMAT );
m_aUIProperties[nIdx++].Value = setChoiceRadiosControlOpt(aWidgetIds, OUString(),
aHelpIds,
aPrintFormatProp,
aChoices, static_cast< sal_Int32 >(pConfig->GetPrintSize())
);
// create a numeric box for scale dependent on PrintFormat = "Scaling" (matches to SID_PRINTZOOM)
vcl::PrinterOptionsHelper::UIControlOptions aRangeOpt( aPrintFormatProp, 2, true );
m_aUIProperties[nIdx++].Value = setRangeControlOpt("scalingspin", OUString(),
".HelpID:vcl:PrintDialog:PrintScale:NumericField",
PRTUIOPT_PRINT_SCALE,
pConfig->GetPrintZoomFactor(), // initial value
10, // min value
1000, // max value
aRangeOpt);
Sequence< PropertyValue > aHintNoLayoutPage( 1 );
aHintNoLayoutPage[0].Name = "HintNoLayoutPage";
aHintNoLayoutPage[0].Value = makeAny( sal_True );
m_aUIProperties[nIdx++].Value <<= aHintNoLayoutPage;
assert(nIdx == nNumProps);
}
// class SmModel
// values from com/sun/star/beans/PropertyAttribute
#define PROPERTY_NONE 0
enum SmModelPropertyHandles
{
HANDLE_FORMULA,
HANDLE_FONT_NAME_VARIABLES,
HANDLE_FONT_NAME_FUNCTIONS,
HANDLE_FONT_NAME_NUMBERS,
HANDLE_FONT_NAME_TEXT,
HANDLE_CUSTOM_FONT_NAME_SERIF,
HANDLE_CUSTOM_FONT_NAME_SANS,
HANDLE_CUSTOM_FONT_NAME_FIXED,
HANDLE_CUSTOM_FONT_FIXED_POSTURE,
HANDLE_CUSTOM_FONT_FIXED_WEIGHT,
HANDLE_CUSTOM_FONT_SANS_POSTURE,
HANDLE_CUSTOM_FONT_SANS_WEIGHT,
HANDLE_CUSTOM_FONT_SERIF_POSTURE,
HANDLE_CUSTOM_FONT_SERIF_WEIGHT,
HANDLE_FONT_VARIABLES_POSTURE,
HANDLE_FONT_VARIABLES_WEIGHT,
HANDLE_FONT_FUNCTIONS_POSTURE,
HANDLE_FONT_FUNCTIONS_WEIGHT,
HANDLE_FONT_NUMBERS_POSTURE,
HANDLE_FONT_NUMBERS_WEIGHT,
HANDLE_FONT_TEXT_POSTURE,
HANDLE_FONT_TEXT_WEIGHT,
HANDLE_BASE_FONT_HEIGHT,
HANDLE_RELATIVE_FONT_HEIGHT_TEXT,
HANDLE_RELATIVE_FONT_HEIGHT_INDICES,
HANDLE_RELATIVE_FONT_HEIGHT_FUNCTIONS,
HANDLE_RELATIVE_FONT_HEIGHT_OPERATORS,
HANDLE_RELATIVE_FONT_HEIGHT_LIMITS,
HANDLE_IS_TEXT_MODE,
HANDLE_GREEK_CHAR_STYLE,
HANDLE_ALIGNMENT,
HANDLE_RELATIVE_SPACING,
HANDLE_RELATIVE_LINE_SPACING,
HANDLE_RELATIVE_ROOT_SPACING,
HANDLE_RELATIVE_INDEX_SUPERSCRIPT,
HANDLE_RELATIVE_INDEX_SUBSCRIPT,
HANDLE_RELATIVE_FRACTION_NUMERATOR_HEIGHT,
HANDLE_RELATIVE_FRACTION_DENOMINATOR_DEPTH,
HANDLE_RELATIVE_FRACTION_BAR_EXCESS_LENGTH,
HANDLE_RELATIVE_FRACTION_BAR_LINE_WEIGHT,
HANDLE_RELATIVE_UPPER_LIMIT_DISTANCE,
HANDLE_RELATIVE_LOWER_LIMIT_DISTANCE,
HANDLE_RELATIVE_BRACKET_EXCESS_SIZE,
HANDLE_RELATIVE_BRACKET_DISTANCE,
HANDLE_IS_SCALE_ALL_BRACKETS,
HANDLE_RELATIVE_SCALE_BRACKET_EXCESS_SIZE,
HANDLE_RELATIVE_MATRIX_LINE_SPACING,
HANDLE_RELATIVE_MATRIX_COLUMN_SPACING,
HANDLE_RELATIVE_SYMBOL_PRIMARY_HEIGHT,
HANDLE_RELATIVE_SYMBOL_MINIMUM_HEIGHT,
HANDLE_RELATIVE_OPERATOR_EXCESS_SIZE,
HANDLE_RELATIVE_OPERATOR_SPACING,
HANDLE_LEFT_MARGIN,
HANDLE_RIGHT_MARGIN,
HANDLE_TOP_MARGIN,
HANDLE_BOTTOM_MARGIN,
HANDLE_PRINTER_NAME,
HANDLE_PRINTER_SETUP,
HANDLE_SYMBOLS,
HANDLE_USED_SYMBOLS,
HANDLE_BASIC_LIBRARIES,
HANDLE_RUNTIME_UID,
HANDLE_LOAD_READONLY, // Security Options
HANDLE_DIALOG_LIBRARIES, // #i73329#
HANDLE_BASELINE,
HANDLE_INTEROP_GRAB_BAG,
};
static PropertySetInfo * lcl_createModelPropertyInfo ()
{
static PropertyMapEntry aModelPropertyInfoMap[] =
{
{ OUString("Alignment") , HANDLE_ALIGNMENT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, 0 },
{ OUString("BaseFontHeight") , HANDLE_BASE_FONT_HEIGHT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, 0 },
{ OUString("BasicLibraries") , HANDLE_BASIC_LIBRARIES , ::getCppuType((const uno::Reference< script::XLibraryContainer > *)0), PropertyAttribute::READONLY, 0 },
{ OUString("BottomMargin") , HANDLE_BOTTOM_MARGIN , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_BOTTOMSPACE },
{ OUString("CustomFontNameFixed") , HANDLE_CUSTOM_FONT_NAME_FIXED , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, FNT_FIXED },
{ OUString("CustomFontNameSans") , HANDLE_CUSTOM_FONT_NAME_SANS , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, FNT_SANS },
{ OUString("CustomFontNameSerif") , HANDLE_CUSTOM_FONT_NAME_SERIF , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, FNT_SERIF },
{ OUString("DialogLibraries") , HANDLE_DIALOG_LIBRARIES , ::getCppuType((const uno::Reference< script::XLibraryContainer > *)0), PropertyAttribute::READONLY, 0 },
{ OUString("FontFixedIsBold") , HANDLE_CUSTOM_FONT_FIXED_WEIGHT , ::getBooleanCppuType(), PROPERTY_NONE, FNT_FIXED },
{ OUString("FontFixedIsItalic") , HANDLE_CUSTOM_FONT_FIXED_POSTURE , ::getBooleanCppuType(), PROPERTY_NONE, FNT_FIXED },
{ OUString("FontFunctionsIsBold") , HANDLE_FONT_FUNCTIONS_WEIGHT , ::getBooleanCppuType(), PROPERTY_NONE, FNT_FUNCTION },
{ OUString("FontFunctionsIsItalic") , HANDLE_FONT_FUNCTIONS_POSTURE , ::getBooleanCppuType(), PROPERTY_NONE, FNT_FUNCTION },
{ OUString("FontNameFunctions") , HANDLE_FONT_NAME_FUNCTIONS , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, FNT_FUNCTION },
{ OUString("FontNameNumbers") , HANDLE_FONT_NAME_NUMBERS , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, FNT_NUMBER },
{ OUString("FontNameText") , HANDLE_FONT_NAME_TEXT , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, FNT_TEXT },
{ OUString("FontNameVariables") , HANDLE_FONT_NAME_VARIABLES , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, FNT_VARIABLE },
{ OUString("FontNumbersIsBold") , HANDLE_FONT_NUMBERS_WEIGHT , ::getBooleanCppuType(), PROPERTY_NONE, FNT_NUMBER },
{ OUString("FontNumbersIsItalic") , HANDLE_FONT_NUMBERS_POSTURE , ::getBooleanCppuType(), PROPERTY_NONE, FNT_NUMBER },
{ OUString("FontSansIsBold") , HANDLE_CUSTOM_FONT_SANS_WEIGHT , ::getBooleanCppuType(), PROPERTY_NONE, FNT_SANS },
{ OUString("FontSansIsItalic") , HANDLE_CUSTOM_FONT_SANS_POSTURE , ::getBooleanCppuType(), PROPERTY_NONE, FNT_SANS },
{ OUString("FontSerifIsBold") , HANDLE_CUSTOM_FONT_SERIF_WEIGHT , ::getBooleanCppuType(), PROPERTY_NONE, FNT_SERIF },
{ OUString("FontSerifIsItalic") , HANDLE_CUSTOM_FONT_SERIF_POSTURE , ::getBooleanCppuType(), PROPERTY_NONE, FNT_SERIF },
{ OUString("FontTextIsBold") , HANDLE_FONT_TEXT_WEIGHT , ::getBooleanCppuType(), PROPERTY_NONE, FNT_TEXT },
{ OUString("FontTextIsItalic") , HANDLE_FONT_TEXT_POSTURE , ::getBooleanCppuType(), PROPERTY_NONE, FNT_TEXT },
{ OUString("FontVariablesIsBold") , HANDLE_FONT_VARIABLES_WEIGHT , ::getBooleanCppuType(), PROPERTY_NONE, FNT_VARIABLE },
{ OUString("FontVariablesIsItalic") , HANDLE_FONT_VARIABLES_POSTURE , ::getBooleanCppuType(), PROPERTY_NONE, FNT_VARIABLE },
{ OUString("Formula") , HANDLE_FORMULA , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, 0 },
{ OUString("IsScaleAllBrackets") , HANDLE_IS_SCALE_ALL_BRACKETS , ::getBooleanCppuType(), PROPERTY_NONE, 0 },
{ OUString("IsTextMode") , HANDLE_IS_TEXT_MODE , ::getBooleanCppuType(), PROPERTY_NONE, 0 },
{ OUString("GreekCharStyle") , HANDLE_GREEK_CHAR_STYLE , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, 0 },
{ OUString("LeftMargin") , HANDLE_LEFT_MARGIN , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_LEFTSPACE },
{ OUString("PrinterName") , HANDLE_PRINTER_NAME , ::cppu::UnoType<OUString>::get(), PROPERTY_NONE, 0 },
{ OUString("PrinterSetup") , HANDLE_PRINTER_SETUP , ::getCppuType((const Sequence < sal_Int8 >*)0), PROPERTY_NONE, 0 },
{ OUString("RelativeBracketDistance") , HANDLE_RELATIVE_BRACKET_DISTANCE , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_BRACKETSPACE },
{ OUString("RelativeBracketExcessSize") , HANDLE_RELATIVE_BRACKET_EXCESS_SIZE , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_BRACKETSIZE },
{ OUString("RelativeFontHeightFunctions") , HANDLE_RELATIVE_FONT_HEIGHT_FUNCTIONS , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, SIZ_FUNCTION },
{ OUString("RelativeFontHeightIndices") , HANDLE_RELATIVE_FONT_HEIGHT_INDICES , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, SIZ_INDEX },
{ OUString("RelativeFontHeightLimits") , HANDLE_RELATIVE_FONT_HEIGHT_LIMITS , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, SIZ_LIMITS },
{ OUString("RelativeFontHeightOperators") , HANDLE_RELATIVE_FONT_HEIGHT_OPERATORS , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, SIZ_OPERATOR },
{ OUString("RelativeFontHeightText") , HANDLE_RELATIVE_FONT_HEIGHT_TEXT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, SIZ_TEXT },
{ OUString("RelativeFractionBarExcessLength") , HANDLE_RELATIVE_FRACTION_BAR_EXCESS_LENGTH, ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_FRACTION },
{ OUString("RelativeFractionBarLineWeight") , HANDLE_RELATIVE_FRACTION_BAR_LINE_WEIGHT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_STROKEWIDTH },
{ OUString("RelativeFractionDenominatorDepth") , HANDLE_RELATIVE_FRACTION_DENOMINATOR_DEPTH, ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_DENOMINATOR },
{ OUString("RelativeFractionNumeratorHeight") , HANDLE_RELATIVE_FRACTION_NUMERATOR_HEIGHT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_NUMERATOR },
{ OUString("RelativeIndexSubscript") , HANDLE_RELATIVE_INDEX_SUBSCRIPT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_SUBSCRIPT },
{ OUString("RelativeIndexSuperscript") , HANDLE_RELATIVE_INDEX_SUPERSCRIPT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_SUPERSCRIPT },
{ OUString("RelativeLineSpacing") , HANDLE_RELATIVE_LINE_SPACING , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_VERTICAL },
{ OUString("RelativeLowerLimitDistance") , HANDLE_RELATIVE_LOWER_LIMIT_DISTANCE , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_LOWERLIMIT },
{ OUString("RelativeMatrixColumnSpacing") , HANDLE_RELATIVE_MATRIX_COLUMN_SPACING , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_MATRIXCOL },
{ OUString("RelativeMatrixLineSpacing") , HANDLE_RELATIVE_MATRIX_LINE_SPACING , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_MATRIXROW },
{ OUString("RelativeOperatorExcessSize") , HANDLE_RELATIVE_OPERATOR_EXCESS_SIZE , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_OPERATORSIZE },
{ OUString("RelativeOperatorSpacing") , HANDLE_RELATIVE_OPERATOR_SPACING , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_OPERATORSPACE },
{ OUString("RelativeRootSpacing") , HANDLE_RELATIVE_ROOT_SPACING , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_ROOT },
{ OUString("RelativeScaleBracketExcessSize") , HANDLE_RELATIVE_SCALE_BRACKET_EXCESS_SIZE , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_NORMALBRACKETSIZE },
{ OUString("RelativeSpacing") , HANDLE_RELATIVE_SPACING , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_HORIZONTAL },
{ OUString("RelativeSymbolMinimumHeight") , HANDLE_RELATIVE_SYMBOL_MINIMUM_HEIGHT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_ORNAMENTSPACE },
{ OUString("RelativeSymbolPrimaryHeight") , HANDLE_RELATIVE_SYMBOL_PRIMARY_HEIGHT , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_ORNAMENTSIZE },
{ OUString("RelativeUpperLimitDistance") , HANDLE_RELATIVE_UPPER_LIMIT_DISTANCE , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_UPPERLIMIT },
{ OUString("RightMargin") , HANDLE_RIGHT_MARGIN , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_RIGHTSPACE },
{ OUString("RuntimeUID") , HANDLE_RUNTIME_UID , cppu::UnoType<OUString>::get(), PropertyAttribute::READONLY, 0 },
{ OUString("Symbols") , HANDLE_SYMBOLS , ::getCppuType((const Sequence < SymbolDescriptor > *)0), PROPERTY_NONE, 0 },
{ OUString("UserDefinedSymbolsInUse") , HANDLE_USED_SYMBOLS , ::getCppuType((const Sequence < SymbolDescriptor > *)0), PropertyAttribute::READONLY, 0 },
{ OUString("TopMargin") , HANDLE_TOP_MARGIN , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, DIS_TOPSPACE },
// #i33095# Security Options
{ OUString("LoadReadonly") , HANDLE_LOAD_READONLY , ::getBooleanCppuType(), PROPERTY_NONE, 0 },
// #i972#
{ OUString("BaseLine") , HANDLE_BASELINE , ::cppu::UnoType<sal_Int16>::get(), PROPERTY_NONE, 0 },
{ OUString("InteropGrabBag") , HANDLE_INTEROP_GRAB_BAG , ::getCppuType((uno::Sequence< beans::PropertyValue >*)0), PROPERTY_NONE, 0 },
{ OUString(), 0, css::uno::Type(), 0, 0 }
};
PropertySetInfo *pInfo = new PropertySetInfo ( aModelPropertyInfoMap );
return pInfo;
}
SmModel::SmModel( SfxObjectShell *pObjSh )
: SfxBaseModel(pObjSh)
, PropertySetHelper ( lcl_createModelPropertyInfo () )
, m_pPrintUIOptions( NULL )
{
}
SmModel::~SmModel() throw ()
{
delete m_pPrintUIOptions;
}
uno::Any SAL_CALL SmModel::queryInterface( const uno::Type& rType ) throw(uno::RuntimeException, std::exception)
{
uno::Any aRet = ::cppu::queryInterface ( rType,
// OWeakObject interfaces
dynamic_cast< XInterface* > ( static_cast< XUnoTunnel* > ( this )),
static_cast< XWeak* > ( this ),
// PropertySetHelper interfaces
static_cast< XPropertySet* > ( this ),
static_cast< XMultiPropertySet* > ( this ),
//static_cast< XPropertyState* > ( this ),
// my own interfaces
static_cast< XServiceInfo* > ( this ),
static_cast< XRenderable* > ( this ) );
if (!aRet.hasValue())
aRet = SfxBaseModel::queryInterface ( rType );
return aRet;
}
void SAL_CALL SmModel::acquire() throw()
{
OWeakObject::acquire();
}
void SAL_CALL SmModel::release() throw()
{
OWeakObject::release();
}
uno::Sequence< uno::Type > SAL_CALL SmModel::getTypes( ) throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
uno::Sequence< uno::Type > aTypes = SfxBaseModel::getTypes();
sal_Int32 nLen = aTypes.getLength();
aTypes.realloc(nLen + 4);
uno::Type* pTypes = aTypes.getArray();
pTypes[nLen++] = ::getCppuType((Reference<XServiceInfo>*)0);
pTypes[nLen++] = ::getCppuType((Reference<XPropertySet>*)0);
pTypes[nLen++] = ::getCppuType((Reference<XMultiPropertySet>*)0);
pTypes[nLen++] = ::getCppuType((Reference<XRenderable>*)0);
return aTypes;
}
namespace
{
class theSmModelUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theSmModelUnoTunnelId> {};
}
const uno::Sequence< sal_Int8 > & SmModel::getUnoTunnelId()
{
return theSmModelUnoTunnelId::get().getSeq();
}
sal_Int64 SAL_CALL SmModel::getSomething( const uno::Sequence< sal_Int8 >& rId )
throw(uno::RuntimeException, std::exception)
{
if( rId.getLength() == 16
&& 0 == memcmp( getUnoTunnelId().getConstArray(),
rId.getConstArray(), 16 ) )
{
return sal::static_int_cast< sal_Int64 >(reinterpret_cast< sal_uIntPtr >(this));
}
return SfxBaseModel::getSomething( rId );
}
static sal_Int16 lcl_AnyToINT16(const uno::Any& rAny)
{
uno::TypeClass eType = rAny.getValueType().getTypeClass();
sal_Int16 nRet = 0;
if( eType == uno::TypeClass_DOUBLE )
nRet = (sal_Int16)*(double*)rAny.getValue();
else if( eType == uno::TypeClass_FLOAT )
nRet = (sal_Int16)*(float*)rAny.getValue();
else
rAny >>= nRet;
return nRet;
}
OUString SmModel::getImplementationName(void) throw( uno::RuntimeException, std::exception )
{
return getImplementationName_Static();
}
OUString SmModel::getImplementationName_Static()
{
return OUString("com.sun.star.comp.math.FormulaDocument");
}
sal_Bool SmModel::supportsService(const OUString& rServiceName) throw( uno::RuntimeException, std::exception )
{
return cppu::supportsService(this, rServiceName);
}
uno::Sequence< OUString > SmModel::getSupportedServiceNames(void) throw( uno::RuntimeException, std::exception )
{
return getSupportedServiceNames_Static();
}
uno::Sequence< OUString > SmModel::getSupportedServiceNames_Static(void)
{
SolarMutexGuard aGuard;
uno::Sequence< OUString > aRet(2);
OUString* pArray = aRet.getArray();
pArray[0] = "com.sun.star.document.OfficeDocument";
pArray[1] = "com.sun.star.formula.FormulaProperties";
return aRet;
}
void SmModel::_setPropertyValues(const PropertyMapEntry** ppEntries, const Any* pValues)
throw( UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException)
{
SolarMutexGuard aGuard;
SmDocShell *pDocSh = static_cast < SmDocShell * > (GetObjectShell());
if ( NULL == pDocSh )
throw UnknownPropertyException();
SmFormat aFormat = pDocSh->GetFormat();
for (; *ppEntries; ppEntries++, pValues++ )
{
if ((*ppEntries)->mnAttributes & PropertyAttribute::READONLY)
throw PropertyVetoException();
switch ( (*ppEntries)->mnHandle )
{
case HANDLE_FORMULA:
{
OUString aText;
*pValues >>= aText;
pDocSh->SetText(aText);
}
break;
case HANDLE_FONT_NAME_VARIABLES :
case HANDLE_FONT_NAME_FUNCTIONS :
case HANDLE_FONT_NAME_NUMBERS :
case HANDLE_FONT_NAME_TEXT :
case HANDLE_CUSTOM_FONT_NAME_SERIF :
case HANDLE_CUSTOM_FONT_NAME_SANS :
case HANDLE_CUSTOM_FONT_NAME_FIXED :
{
OUString sFontName;
*pValues >>= sFontName;
if(sFontName.isEmpty())
throw IllegalArgumentException();
if(OUString(aFormat.GetFont((*ppEntries)->mnMemberId).GetName()) != sFontName)
{
const SmFace rOld = aFormat.GetFont((*ppEntries)->mnMemberId);
SmFace aSet( sFontName, rOld.GetSize() );
aSet.SetBorderWidth( rOld.GetBorderWidth() );
aSet.SetAlign( ALIGN_BASELINE );
aFormat.SetFont( (*ppEntries)->mnMemberId, aSet );
}
}
break;
case HANDLE_CUSTOM_FONT_FIXED_POSTURE:
case HANDLE_CUSTOM_FONT_SANS_POSTURE :
case HANDLE_CUSTOM_FONT_SERIF_POSTURE:
case HANDLE_FONT_VARIABLES_POSTURE :
case HANDLE_FONT_FUNCTIONS_POSTURE :
case HANDLE_FONT_NUMBERS_POSTURE :
case HANDLE_FONT_TEXT_POSTURE :
{
if((*pValues).getValueType() != ::getBooleanCppuType())
throw IllegalArgumentException();
bool bVal = *(sal_Bool*)(*pValues).getValue();
Font aNewFont(aFormat.GetFont((*ppEntries)->mnMemberId));
aNewFont.SetItalic((bVal) ? ITALIC_NORMAL : ITALIC_NONE);
aFormat.SetFont((*ppEntries)->mnMemberId, aNewFont);
}
break;
case HANDLE_CUSTOM_FONT_FIXED_WEIGHT :
case HANDLE_CUSTOM_FONT_SANS_WEIGHT :
case HANDLE_CUSTOM_FONT_SERIF_WEIGHT :
case HANDLE_FONT_VARIABLES_WEIGHT :
case HANDLE_FONT_FUNCTIONS_WEIGHT :
case HANDLE_FONT_NUMBERS_WEIGHT :
case HANDLE_FONT_TEXT_WEIGHT :
{
if((*pValues).getValueType() != ::getBooleanCppuType())
throw IllegalArgumentException();
bool bVal = *(sal_Bool*)(*pValues).getValue();
Font aNewFont(aFormat.GetFont((*ppEntries)->mnMemberId));
aNewFont.SetWeight((bVal) ? WEIGHT_BOLD : WEIGHT_NORMAL);
aFormat.SetFont((*ppEntries)->mnMemberId, aNewFont);
}
break;
case HANDLE_BASE_FONT_HEIGHT :
{
// Point!
sal_Int16 nVal = lcl_AnyToINT16(*pValues);
if(nVal < 1)
throw IllegalArgumentException();
Size aSize = aFormat.GetBaseSize();
nVal *= 20;
nVal = static_cast < sal_Int16 > ( convertTwipToMm100(nVal) );
aSize.Height() = nVal;
aFormat.SetBaseSize(aSize);
// apply base size to fonts
const Size aTmp( aFormat.GetBaseSize() );
for (sal_uInt16 i = FNT_BEGIN; i <= FNT_END; i++)
aFormat.SetFontSize(i, aTmp);
}
break;
case HANDLE_RELATIVE_FONT_HEIGHT_TEXT :
case HANDLE_RELATIVE_FONT_HEIGHT_INDICES :
case HANDLE_RELATIVE_FONT_HEIGHT_FUNCTIONS :
case HANDLE_RELATIVE_FONT_HEIGHT_OPERATORS :
case HANDLE_RELATIVE_FONT_HEIGHT_LIMITS :
{
sal_Int16 nVal = 0;
*pValues >>= nVal;
if(nVal < 1)
throw IllegalArgumentException();
aFormat.SetRelSize((*ppEntries)->mnMemberId, nVal);
}
break;
case HANDLE_IS_TEXT_MODE :
{
aFormat.SetTextmode(*(sal_Bool*)(*pValues).getValue());
}
break;
case HANDLE_GREEK_CHAR_STYLE :
{
sal_Int16 nVal = 0;
*pValues >>= nVal;
if (nVal < 0 || nVal > 2)
throw IllegalArgumentException();
aFormat.SetGreekCharStyle( nVal );
}
break;
case HANDLE_ALIGNMENT :
{
// SmHorAlign uses the same values as HorizontalAlignment
sal_Int16 nVal = 0;
*pValues >>= nVal;
if(nVal < 0 || nVal > 2)
throw IllegalArgumentException();
aFormat.SetHorAlign((SmHorAlign)nVal);
}
break;
case HANDLE_RELATIVE_SPACING :
case HANDLE_RELATIVE_LINE_SPACING :
case HANDLE_RELATIVE_ROOT_SPACING :
case HANDLE_RELATIVE_INDEX_SUPERSCRIPT :
case HANDLE_RELATIVE_INDEX_SUBSCRIPT :
case HANDLE_RELATIVE_FRACTION_NUMERATOR_HEIGHT :
case HANDLE_RELATIVE_FRACTION_DENOMINATOR_DEPTH:
case HANDLE_RELATIVE_FRACTION_BAR_EXCESS_LENGTH:
case HANDLE_RELATIVE_FRACTION_BAR_LINE_WEIGHT :
case HANDLE_RELATIVE_UPPER_LIMIT_DISTANCE :
case HANDLE_RELATIVE_LOWER_LIMIT_DISTANCE :
case HANDLE_RELATIVE_BRACKET_EXCESS_SIZE :
case HANDLE_RELATIVE_BRACKET_DISTANCE :
case HANDLE_RELATIVE_SCALE_BRACKET_EXCESS_SIZE :
case HANDLE_RELATIVE_MATRIX_LINE_SPACING :
case HANDLE_RELATIVE_MATRIX_COLUMN_SPACING :
case HANDLE_RELATIVE_SYMBOL_PRIMARY_HEIGHT :
case HANDLE_RELATIVE_SYMBOL_MINIMUM_HEIGHT :
case HANDLE_RELATIVE_OPERATOR_EXCESS_SIZE :
case HANDLE_RELATIVE_OPERATOR_SPACING :
case HANDLE_LEFT_MARGIN :
case HANDLE_RIGHT_MARGIN :
case HANDLE_TOP_MARGIN :
case HANDLE_BOTTOM_MARGIN :
{
sal_Int16 nVal = 0;
*pValues >>= nVal;
if(nVal < 0)
throw IllegalArgumentException();
aFormat.SetDistance((*ppEntries)->mnMemberId, nVal);
}
break;
case HANDLE_IS_SCALE_ALL_BRACKETS :
aFormat.SetScaleNormalBrackets(*(sal_Bool*)(*pValues).getValue());
break;
case HANDLE_PRINTER_NAME:
{
// embedded documents just ignore this property for now
if ( pDocSh->GetCreateMode() != SFX_CREATE_MODE_EMBEDDED )
{
SfxPrinter *pPrinter = pDocSh->GetPrinter ( );
if (pPrinter)
{
OUString sPrinterName;
if (*pValues >>= sPrinterName )
{
if ( !sPrinterName.isEmpty() )
{
SfxPrinter *pNewPrinter = new SfxPrinter ( pPrinter->GetOptions().Clone(), sPrinterName );
if (pNewPrinter->IsKnown())
pDocSh->SetPrinter ( pNewPrinter );
else
delete pNewPrinter;
}
}
else
throw IllegalArgumentException();
}
}
}
break;
case HANDLE_PRINTER_SETUP:
{
Sequence < sal_Int8 > aSequence;
if ( *pValues >>= aSequence )
{
sal_uInt32 nSize = aSequence.getLength();
SvMemoryStream aStream ( aSequence.getArray(), nSize, STREAM_READ );
aStream.Seek ( STREAM_SEEK_TO_BEGIN );
static sal_uInt16 const nRange[] =
{
SID_PRINTSIZE, SID_PRINTSIZE,
SID_PRINTZOOM, SID_PRINTZOOM,
SID_PRINTTITLE, SID_PRINTTITLE,
SID_PRINTTEXT, SID_PRINTTEXT,
SID_PRINTFRAME, SID_PRINTFRAME,
SID_NO_RIGHT_SPACES, SID_NO_RIGHT_SPACES,
SID_SAVE_ONLY_USED_SYMBOLS, SID_SAVE_ONLY_USED_SYMBOLS,
0
};
SfxItemSet *pItemSet = new SfxItemSet( pDocSh->GetPool(), nRange );
SmModule *pp = SM_MOD();
pp->GetConfig()->ConfigToItemSet(*pItemSet);
SfxPrinter *pPrinter = SfxPrinter::Create ( aStream, pItemSet );
pDocSh->SetPrinter( pPrinter );
}
else
throw IllegalArgumentException();
}
break;
case HANDLE_SYMBOLS:
{
// this is set
Sequence < SymbolDescriptor > aSequence;
if ( *pValues >>= aSequence )
{
sal_uInt32 nSize = aSequence.getLength();
SmModule *pp = SM_MOD();
SmSymbolManager &rManager = pp->GetSymbolManager();
SymbolDescriptor *pDescriptor = aSequence.getArray();
for (sal_uInt32 i = 0; i < nSize ; i++, pDescriptor++)
{
Font aFont;
aFont.SetName ( pDescriptor->sFontName );
aFont.SetCharSet ( static_cast < rtl_TextEncoding > (pDescriptor->nCharSet) );
aFont.SetFamily ( static_cast < FontFamily > (pDescriptor->nFamily ) );
aFont.SetPitch ( static_cast < FontPitch > (pDescriptor->nPitch ) );
aFont.SetWeight ( static_cast < FontWeight > (pDescriptor->nWeight ) );
aFont.SetItalic ( static_cast < FontItalic > (pDescriptor->nItalic ) );
SmSym aSymbol ( pDescriptor->sName, aFont, static_cast < sal_Unicode > (pDescriptor->nCharacter),
pDescriptor->sSymbolSet );
aSymbol.SetExportName ( pDescriptor->sExportName );
aSymbol.SetDocSymbol( true );
rManager.AddOrReplaceSymbol ( aSymbol );
}
}
else
throw IllegalArgumentException();
}
break;
// #i33095# Security Options
case HANDLE_LOAD_READONLY :
{
if ( (*pValues).getValueType() != ::getBooleanCppuType() )
throw IllegalArgumentException();
bool bReadonly = false;
if ( *pValues >>= bReadonly )
pDocSh->SetLoadReadonly( bReadonly );
break;
}
case HANDLE_INTEROP_GRAB_BAG:
setGrabBagItem(*pValues);
break;
}
}
pDocSh->SetFormat( aFormat );
// #i67283# since about all of the above changes are likely to change
// the formula size we have to recalculate the vis-area now
pDocSh->SetVisArea( Rectangle( Point(0, 0), pDocSh->GetSize() ) );
}
void SmModel::_getPropertyValues( const PropertyMapEntry **ppEntries, Any *pValue )
throw( UnknownPropertyException, WrappedTargetException )
{
SmDocShell *pDocSh = static_cast < SmDocShell * > (GetObjectShell());
if ( NULL == pDocSh )
throw UnknownPropertyException();
const SmFormat & aFormat = pDocSh->GetFormat();
for (; *ppEntries; ppEntries++, pValue++ )
{
switch ( (*ppEntries)->mnHandle )
{
case HANDLE_FORMULA:
*pValue <<= OUString(pDocSh->GetText());
break;
case HANDLE_FONT_NAME_VARIABLES :
case HANDLE_FONT_NAME_FUNCTIONS :
case HANDLE_FONT_NAME_NUMBERS :
case HANDLE_FONT_NAME_TEXT :
case HANDLE_CUSTOM_FONT_NAME_SERIF :
case HANDLE_CUSTOM_FONT_NAME_SANS :
case HANDLE_CUSTOM_FONT_NAME_FIXED :
{
const SmFace & rFace = aFormat.GetFont((*ppEntries)->mnMemberId);
*pValue <<= OUString(rFace.GetName());
}
break;
case HANDLE_CUSTOM_FONT_FIXED_POSTURE:
case HANDLE_CUSTOM_FONT_SANS_POSTURE :
case HANDLE_CUSTOM_FONT_SERIF_POSTURE:
case HANDLE_FONT_VARIABLES_POSTURE :
case HANDLE_FONT_FUNCTIONS_POSTURE :
case HANDLE_FONT_NUMBERS_POSTURE :
case HANDLE_FONT_TEXT_POSTURE :
{
const SmFace & rFace = aFormat.GetFont((*ppEntries)->mnMemberId);
bool bVal = IsItalic( rFace );
(*pValue).setValue(&bVal, (*ppEntries)->maType);
}
break;
case HANDLE_CUSTOM_FONT_FIXED_WEIGHT :
case HANDLE_CUSTOM_FONT_SANS_WEIGHT :
case HANDLE_CUSTOM_FONT_SERIF_WEIGHT :
case HANDLE_FONT_VARIABLES_WEIGHT :
case HANDLE_FONT_FUNCTIONS_WEIGHT :
case HANDLE_FONT_NUMBERS_WEIGHT :
case HANDLE_FONT_TEXT_WEIGHT :
{
const SmFace & rFace = aFormat.GetFont((*ppEntries)->mnMemberId);
bool bVal = IsBold( rFace ); // bold?
(*pValue).setValue(&bVal, (*ppEntries)->maType);
}
break;
case HANDLE_BASE_FONT_HEIGHT :
{
// Point!
sal_Int16 nVal = static_cast < sal_Int16 > (aFormat.GetBaseSize().Height());
nVal = static_cast < sal_Int16 > (convertMm100ToTwip(nVal));
nVal = (nVal + 10) / 20;
*pValue <<= nVal;
}
break;
case HANDLE_RELATIVE_FONT_HEIGHT_TEXT :
case HANDLE_RELATIVE_FONT_HEIGHT_INDICES :
case HANDLE_RELATIVE_FONT_HEIGHT_FUNCTIONS :
case HANDLE_RELATIVE_FONT_HEIGHT_OPERATORS :
case HANDLE_RELATIVE_FONT_HEIGHT_LIMITS :
*pValue <<= (sal_Int16) aFormat.GetRelSize((*ppEntries)->mnMemberId);
break;
case HANDLE_IS_TEXT_MODE :
{
sal_Bool bVal = aFormat.IsTextmode();
(*pValue).setValue(&bVal, ::getBooleanCppuType());
}
break;
case HANDLE_GREEK_CHAR_STYLE :
*pValue <<= (sal_Int16)aFormat.GetGreekCharStyle();
break;
case HANDLE_ALIGNMENT :
// SmHorAlign uses the same values as HorizontalAlignment
*pValue <<= (sal_Int16)aFormat.GetHorAlign();
break;
case HANDLE_RELATIVE_SPACING :
case HANDLE_RELATIVE_LINE_SPACING :
case HANDLE_RELATIVE_ROOT_SPACING :
case HANDLE_RELATIVE_INDEX_SUPERSCRIPT :
case HANDLE_RELATIVE_INDEX_SUBSCRIPT :
case HANDLE_RELATIVE_FRACTION_NUMERATOR_HEIGHT :
case HANDLE_RELATIVE_FRACTION_DENOMINATOR_DEPTH:
case HANDLE_RELATIVE_FRACTION_BAR_EXCESS_LENGTH:
case HANDLE_RELATIVE_FRACTION_BAR_LINE_WEIGHT :
case HANDLE_RELATIVE_UPPER_LIMIT_DISTANCE :
case HANDLE_RELATIVE_LOWER_LIMIT_DISTANCE :
case HANDLE_RELATIVE_BRACKET_EXCESS_SIZE :
case HANDLE_RELATIVE_BRACKET_DISTANCE :
case HANDLE_RELATIVE_SCALE_BRACKET_EXCESS_SIZE :
case HANDLE_RELATIVE_MATRIX_LINE_SPACING :
case HANDLE_RELATIVE_MATRIX_COLUMN_SPACING :
case HANDLE_RELATIVE_SYMBOL_PRIMARY_HEIGHT :
case HANDLE_RELATIVE_SYMBOL_MINIMUM_HEIGHT :
case HANDLE_RELATIVE_OPERATOR_EXCESS_SIZE :
case HANDLE_RELATIVE_OPERATOR_SPACING :
case HANDLE_LEFT_MARGIN :
case HANDLE_RIGHT_MARGIN :
case HANDLE_TOP_MARGIN :
case HANDLE_BOTTOM_MARGIN :
*pValue <<= (sal_Int16)aFormat.GetDistance((*ppEntries)->mnMemberId);
break;
case HANDLE_IS_SCALE_ALL_BRACKETS :
{
sal_Bool bVal = aFormat.IsScaleNormalBrackets();
(*pValue).setValue(&bVal, ::getBooleanCppuType());
}
break;
case HANDLE_PRINTER_NAME:
{
SfxPrinter *pPrinter = pDocSh->GetPrinter ( );
*pValue <<= pPrinter ? OUString ( pPrinter->GetName()) : OUString();
}
break;
case HANDLE_PRINTER_SETUP:
{
SfxPrinter *pPrinter = pDocSh->GetPrinter ();
if (pPrinter)
{
SvMemoryStream aStream;
pPrinter->Store( aStream );
aStream.Seek ( STREAM_SEEK_TO_END );
sal_uInt32 nSize = aStream.Tell();
aStream.Seek ( STREAM_SEEK_TO_BEGIN );
Sequence < sal_Int8 > aSequence ( nSize );
aStream.Read ( aSequence.getArray(), nSize );
*pValue <<= aSequence;
}
}
break;
case HANDLE_SYMBOLS:
case HANDLE_USED_SYMBOLS:
{
const bool bUsedSymbolsOnly = (*ppEntries)->mnHandle == HANDLE_USED_SYMBOLS;
const std::set< OUString > &rUsedSymbols = pDocSh->GetUsedSymbols();
// this is get
SmModule *pp = SM_MOD();
const SmSymbolManager &rManager = pp->GetSymbolManager();
vector < const SmSym * > aVector;
const SymbolPtrVec_t aSymbols( rManager.GetSymbols() );
size_t nCount = 0;
for (size_t i = 0; i < aSymbols.size(); ++i)
{
const SmSym * pSymbol = aSymbols[ i ];
if (pSymbol && !pSymbol->IsPredefined() &&
(!bUsedSymbolsOnly ||
rUsedSymbols.find( pSymbol->GetName() ) != rUsedSymbols.end()))
{
aVector.push_back ( pSymbol );
nCount++;
}
}
Sequence < SymbolDescriptor > aSequence ( nCount );
SymbolDescriptor * pDescriptor = aSequence.getArray();
vector < const SmSym * >::const_iterator aIter = aVector.begin(), aEnd = aVector.end();
for(; aIter != aEnd; pDescriptor++, ++aIter)
{
pDescriptor->sName = (*aIter)->GetName();
pDescriptor->sExportName = (*aIter)->GetExportName();
pDescriptor->sSymbolSet = (*aIter)->GetSymbolSetName();
pDescriptor->nCharacter = static_cast < sal_Int32 > ((*aIter)->GetCharacter());
Font rFont = (*aIter)->GetFace();
pDescriptor->sFontName = rFont.GetName();
pDescriptor->nCharSet = sal::static_int_cast< sal_Int16 >(rFont.GetCharSet());
pDescriptor->nFamily = sal::static_int_cast< sal_Int16 >(rFont.GetFamily());
pDescriptor->nPitch = sal::static_int_cast< sal_Int16 >(rFont.GetPitch());
pDescriptor->nWeight = sal::static_int_cast< sal_Int16 >(rFont.GetWeight());
pDescriptor->nItalic = sal::static_int_cast< sal_Int16 >(rFont.GetItalic());
}
*pValue <<= aSequence;
}
break;
case HANDLE_BASIC_LIBRARIES:
*pValue <<= pDocSh->GetBasicContainer();
break;
case HANDLE_DIALOG_LIBRARIES:
*pValue <<= pDocSh->GetDialogContainer();
break;
case HANDLE_RUNTIME_UID:
*pValue <<= getRuntimeUID();
break;
// #i33095# Security Options
case HANDLE_LOAD_READONLY :
{
*pValue <<= pDocSh->IsLoadReadonly();
break;
}
// #i972#
case HANDLE_BASELINE:
{
if ( !pDocSh->pTree )
pDocSh->Parse();
if ( pDocSh->pTree )
{
if ( !pDocSh->IsFormulaArranged() )
pDocSh->ArrangeFormula();
*pValue <<= static_cast<sal_Int32>( pDocSh->pTree->GetFormulaBaseline() );
}
break;
}
case HANDLE_INTEROP_GRAB_BAG:
getGrabBagItem(*pValue);
break;
}
}
}
sal_Int32 SAL_CALL SmModel::getRendererCount(
const uno::Any& /*rSelection*/,
const uno::Sequence< beans::PropertyValue >& /*xOptions*/ )
throw (IllegalArgumentException, RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return 1;
}
static Size lcl_GuessPaperSize()
{
Size aRes;
const LocaleDataWrapper& rLocWrp( AllSettings().GetLocaleDataWrapper() );
if( MEASURE_METRIC == rLocWrp.getMeasurementSystemEnum() )
{
// in 100th mm
PaperInfo aInfo( PAPER_A4 );
aRes.Width() = aInfo.getWidth();
aRes.Height() = aInfo.getHeight();
}
else
{
// in 100th mm
PaperInfo aInfo( PAPER_LETTER );
aRes.Width() = aInfo.getWidth();
aRes.Height() = aInfo.getHeight();
}
return aRes;
}
uno::Sequence< beans::PropertyValue > SAL_CALL SmModel::getRenderer(
sal_Int32 nRenderer,
const uno::Any& /*rSelection*/,
const uno::Sequence< beans::PropertyValue >& /*rxOptions*/ )
throw (IllegalArgumentException, RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (0 != nRenderer)
throw IllegalArgumentException();
SmDocShell *pDocSh = static_cast < SmDocShell * >( GetObjectShell() );
if (!pDocSh)
throw RuntimeException();
SmPrinterAccess aPrinterAccess( *pDocSh );
Printer *pPrinter = aPrinterAccess.GetPrinter();
Size aPrtPaperSize ( pPrinter->GetPaperSize() );
// if paper size is 0 (usually if no 'real' printer is found),
// guess the paper size
if (aPrtPaperSize.Height() == 0 || aPrtPaperSize.Width() == 0)
aPrtPaperSize = lcl_GuessPaperSize();
awt::Size aPageSize( aPrtPaperSize.Width(), aPrtPaperSize.Height() );
uno::Sequence< beans::PropertyValue > aRenderer(1);
PropertyValue &rValue = aRenderer.getArray()[0];
rValue.Name = "PageSize";
rValue.Value <<= aPageSize;
if (!m_pPrintUIOptions)
m_pPrintUIOptions = new SmPrintUIOptions();
m_pPrintUIOptions->appendPrintUIOptions( aRenderer );
return aRenderer;
}
void SAL_CALL SmModel::render(
sal_Int32 nRenderer,
const uno::Any& rSelection,
const uno::Sequence< beans::PropertyValue >& rxOptions )
throw (IllegalArgumentException, RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if (0 != nRenderer)
throw IllegalArgumentException();
SmDocShell *pDocSh = static_cast < SmDocShell * >( GetObjectShell() );
if (!pDocSh)
throw RuntimeException();
// get device to be rendered in
uno::Reference< awt::XDevice > xRenderDevice;
for (sal_Int32 i = 0, nCount = rxOptions.getLength(); i < nCount; ++i)
{
if( rxOptions[i].Name == "RenderDevice" )
rxOptions[i].Value >>= xRenderDevice;
}
if (xRenderDevice.is())
{
VCLXDevice* pDevice = VCLXDevice::GetImplementation( xRenderDevice );
OutputDevice* pOut = pDevice ? pDevice->GetOutputDevice() : NULL;
if (!pOut)
throw RuntimeException();
pOut->SetMapMode( MAP_100TH_MM );
uno::Reference< frame::XModel > xModel;
rSelection >>= xModel;
if (xModel == pDocSh->GetModel())
{
//!! when called via API we may not have an active view
//!! thus we go and look for a view that can be used.
const TypeId aTypeId = TYPE( SmViewShell );
SfxViewShell* pViewSh = SfxViewShell::GetFirst( &aTypeId, false /* search non-visible views as well*/ );
while (pViewSh && pViewSh->GetObjectShell() != pDocSh)
pViewSh = SfxViewShell::GetNext( *pViewSh, &aTypeId, false /* search non-visible views as well*/ );
SmViewShell *pView = PTR_CAST( SmViewShell, pViewSh );
SAL_WARN_IF( !pView, "starmath", "SmModel::render : no SmViewShell found" );
if (pView)
{
SmPrinterAccess aPrinterAccess( *pDocSh );
Printer *pPrinter = aPrinterAccess.GetPrinter();
Size aPrtPaperSize ( pPrinter->GetPaperSize() );
Size aOutputSize ( pPrinter->GetOutputSize() );
Point aPrtPageOffset( pPrinter->GetPageOffset() );
// no real printer ??
if (aPrtPaperSize.Height() == 0 || aPrtPaperSize.Width() == 0)
{
aPrtPaperSize = lcl_GuessPaperSize();
// factors from Windows DIN A4
aOutputSize = Size( (long)(aPrtPaperSize.Width() * 0.941),
(long)(aPrtPaperSize.Height() * 0.961));
aPrtPageOffset = Point( (long)(aPrtPaperSize.Width() * 0.0250),
(long)(aPrtPaperSize.Height() * 0.0214));
}
Point aZeroPoint;
Rectangle OutputRect( aZeroPoint, aOutputSize );
// set minimum top and bottom border
if (aPrtPageOffset.Y() < 2000)
OutputRect.Top() += 2000 - aPrtPageOffset.Y();
if ((aPrtPaperSize.Height() - (aPrtPageOffset.Y() + OutputRect.Bottom())) < 2000)
OutputRect.Bottom() -= 2000 - (aPrtPaperSize.Height() -
(aPrtPageOffset.Y() + OutputRect.Bottom()));
// set minimum left and right border
if (aPrtPageOffset.X() < 2500)
OutputRect.Left() += 2500 - aPrtPageOffset.X();
if ((aPrtPaperSize.Width() - (aPrtPageOffset.X() + OutputRect.Right())) < 1500)
OutputRect.Right() -= 1500 - (aPrtPaperSize.Width() -
(aPrtPageOffset.X() + OutputRect.Right()));
if (!m_pPrintUIOptions)
m_pPrintUIOptions = new SmPrintUIOptions();
m_pPrintUIOptions->processProperties( rxOptions );
pView->Impl_Print( *pOut, *m_pPrintUIOptions, Rectangle( OutputRect ), Point() );
// release SmPrintUIOptions when everything is done.
// That way, when SmPrintUIOptions is needed again it will read the latest configuration settings in its c-tor.
if (m_pPrintUIOptions->getBoolValue( "IsLastPage", false ))
{
delete m_pPrintUIOptions; m_pPrintUIOptions = 0;
}
}
}
}
}
void SAL_CALL SmModel::setParent( const uno::Reference< uno::XInterface >& xParent)
throw( lang::NoSupportException, uno::RuntimeException, std::exception )
{
SolarMutexGuard aGuard;
SfxBaseModel::setParent( xParent );
uno::Reference< lang::XUnoTunnel > xParentTunnel( xParent, uno::UNO_QUERY );
if ( xParentTunnel.is() )
{
SvGlobalName aSfxIdent( SFX_GLOBAL_CLASSID );
SfxObjectShell* pDoc = reinterpret_cast<SfxObjectShell *>(xParentTunnel->getSomething(
uno::Sequence< sal_Int8 >( aSfxIdent.GetByteSequence() ) ) );
if ( pDoc )
GetObjectShell()->OnDocumentPrinterChanged( pDoc->GetDocumentPrinter() );
}
}
void SmModel::writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer, oox::core::OoxmlVersion version )
{
static_cast< SmDocShell* >( GetObjectShell())->writeFormulaOoxml( m_pSerializer, version );
}
void SmModel::writeFormulaRtf(OStringBuffer& rBuffer, rtl_TextEncoding nEncoding)
{
static_cast<SmDocShell*>(GetObjectShell())->writeFormulaRtf(rBuffer, nEncoding);
}
void SmModel::readFormulaOoxml( oox::formulaimport::XmlStream& stream )
{
static_cast< SmDocShell* >( GetObjectShell())->readFormulaOoxml( stream );
}
Size SmModel::getFormulaSize() const
{
return static_cast< SmDocShell* >( GetObjectShell())->GetSize();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|