| 12
 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
 
 | /*
 * 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 .
 */
package org.libreoffice.example.java_scripts;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.script.provider.XScriptContext;
import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.lang.EventObject;
import com.sun.star.uno.Type;
import com.sun.star.uno.AnyConverter;
import com.sun.star.text.XTextDocument;
import com.sun.star.beans.PropertyValue;
import com.sun.star.script.XLibraryContainer;
import com.sun.star.awt.*;
import com.sun.star.util.*;
import java.awt.Color;
public class HighlightText implements com.sun.star.awt.XActionListener {
    // UNO awt components of the Highlight dialog
    XDialog findDialog = null;
    XTextComponent findTextBox;
    // The document being searched
    XTextDocument theDocument;
    // The text to be searched for
    private String searchKey = "";
    public void showForm(XScriptContext context) {
        System.err.println("Starting showForm");
        XMultiComponentFactory xmcf =
            context.getComponentContext().getServiceManager();
        Object[] args = new Object[1];
        args[0] = context.getDocument();
        Object obj;
        try {
            obj = xmcf.createInstanceWithArgumentsAndContext(
                "com.sun.star.awt.DialogProvider", args,
                context.getComponentContext());
        }
        catch (com.sun.star.uno.Exception e) {
            System.err.println("Error getting DialogProvider object");
            return;
        }
        XDialogProvider xDialogProvider = (XDialogProvider)
            UnoRuntime.queryInterface(XDialogProvider.class, obj);
        System.err.println("Got DialogProvider, now get dialog");
        try {
            findDialog = xDialogProvider.createDialog(
                "vnd.sun.star.script:" +
                "ScriptBindingLibrary.Highlight?location=application");
        }
        catch (java.lang.Exception e) {
            System.err.println("Got exception on first creating dialog: " +
                e.getMessage());
        }
        if (findDialog == null) {
            if (tryLoadingLibrary(xmcf, context, "Dialog") == false ||
                tryLoadingLibrary(xmcf, context, "Script") == false)
            {
                System.err.println("Error loading ScriptBindingLibrary");
                return;
            }
            try {
                findDialog = xDialogProvider.createDialog(
                    "vnd.sun.star.script://" +
                    "ScriptBindingLibrary.Highlight?location=application");
            }
            catch (com.sun.star.lang.IllegalArgumentException iae) {
                System.err.println("Error loading ScriptBindingLibrary");
                return;
            }
        }
        XControlContainer controls = (XControlContainer)
            UnoRuntime.queryInterface(XControlContainer.class, findDialog);
        XButton highlightButton = (XButton) UnoRuntime.queryInterface(
            XButton.class, controls.getControl("HighlightButton"));
        highlightButton.setActionCommand("Highlight");
        findTextBox = (XTextComponent) UnoRuntime.queryInterface(
            XTextComponent.class, controls.getControl("HighlightTextField"));
        XButton exitButton = (XButton) UnoRuntime.queryInterface(
            XButton.class, controls.getControl("ExitButton"));
        exitButton.setActionCommand("Exit");
        theDocument = (XTextDocument) UnoRuntime.queryInterface(
            XTextDocument.class, context.getDocument());
        highlightButton.addActionListener(this);
        exitButton.addActionListener(this);
        findDialog.execute();
        return;
    }
    public void actionPerformed(ActionEvent e) {
        if (e.ActionCommand.equals("Exit")) {
            findDialog.endExecute();
            return;
        }
        else if (e.ActionCommand.equals("Highlight")) {
            searchKey = findTextBox.getText();
            // highlight the text in red
            Color cRed = new Color(255, 0, 0);
            int red = cRed.getRGB();
            XReplaceable replaceable = (XReplaceable)
                UnoRuntime.queryInterface(XReplaceable.class, theDocument);
            XReplaceDescriptor descriptor =
                (XReplaceDescriptor) replaceable.createReplaceDescriptor();
            // Gets a XPropertyReplace object for altering the properties
            // of the replaced text
            XPropertyReplace xPropertyReplace = (XPropertyReplace)
                UnoRuntime.queryInterface(XPropertyReplace.class, descriptor);
            // Sets the replaced text property fontweight value to Bold
            PropertyValue wv = new PropertyValue("CharWeight", -1,
                new Float(com.sun.star.awt.FontWeight.BOLD),
                    com.sun.star.beans.PropertyState.DIRECT_VALUE);
            // Sets the replaced text property color value to RGB parameter
            PropertyValue cv = new PropertyValue("CharColor", -1,
                new Integer(red),
                    com.sun.star.beans.PropertyState.DIRECT_VALUE);
            // Apply the properties
            PropertyValue[] props = new PropertyValue[] { cv, wv };
            try {
                xPropertyReplace.setReplaceAttributes(props);
                // Only matches whole words and case sensitive
                descriptor.setPropertyValue(
                    "SearchCaseSensitive", new Boolean(true));
                descriptor.setPropertyValue("SearchWords", new Boolean(true));
            }
            catch (com.sun.star.beans.UnknownPropertyException upe) {
                System.err.println("Error setting up search properties");
                return;
            }
            catch (com.sun.star.beans.PropertyVetoException pve) {
                System.err.println("Error setting up search properties");
                return;
            }
            catch (com.sun.star.lang.WrappedTargetException wte) {
                System.err.println("Error setting up search properties");
                return;
            }
            catch (com.sun.star.lang.IllegalArgumentException iae) {
                System.err.println("Error setting up search properties");
                return;
            }
            // Replaces all instances of searchKey with new Text properties
            // and gets the number of instances of the searchKey
            descriptor.setSearchString(searchKey);
            descriptor.setReplaceString(searchKey);
            replaceable.replaceAll(descriptor);
        }
    }
    public void disposing(EventObject o)
    {
        // do nothing
    }
    private boolean tryLoadingLibrary(
        XMultiComponentFactory xmcf, XScriptContext context, String name)
    {
        System.err.println("Try to load ScriptBindingLibrary");
        try {
            Object obj = xmcf.createInstanceWithContext(
               "com.sun.star.script.Application" + name + "LibraryContainer",
               context.getComponentContext());
            XLibraryContainer xLibraryContainer = (XLibraryContainer)
                UnoRuntime.queryInterface(XLibraryContainer.class, obj);
            System.err.println("Got XLibraryContainer");
            Object serviceObj = context.getComponentContext().getValueByName(
                "/singletons/com.sun.star.util.theMacroExpander");
            XMacroExpander xme = (XMacroExpander) AnyConverter.toObject(
                new Type(XMacroExpander.class), serviceObj);
            String bootstrapName = "bootstraprc";
            if (System.getProperty("os.name").startsWith("Windows")) {
                bootstrapName = "bootstrap.ini";
            }
            String libURL = xme.expandMacros(
                "$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/basic/ScriptBindingLibrary/" +
                name.toLowerCase() + ".xlb/");
            System.err.println("libURL is: " + libURL);
            xLibraryContainer.createLibraryLink(
                "ScriptBindingLibrary", libURL, false);
            System.err.println("liblink created");
        } catch (com.sun.star.uno.Exception e) {
            System.err.println("Got an exception loading lib: " + e.getMessage());
            return false;
        }
        return true;
    }
}
 |