summaryrefslogtreecommitdiffstats
path: root/filter/source/xsltdialog/xmlfiltertabpagebasic.cxx
blob: abfa596c4d093cfa690831ff1e2911350b37add1 (plain)
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
/* -*- 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 <rtl/ustrbuf.hxx>
#include <vcl/svapp.hxx>
#include <strings.hrc>
#include "xmlfiltertabpagebasic.hxx"
#include "xmlfiltersettingsdialog.hxx"

XMLFilterTabPageBasic::XMLFilterTabPageBasic(weld::Widget* pPage)
    : m_xBuilder(Application::CreateBuilder(pPage, "filter/ui/xmlfiltertabpagegeneral.ui"))
    , m_xContainer(m_xBuilder->weld_widget("XmlFilterTabPageGeneral"))
    , m_xEDFilterName(m_xBuilder->weld_entry("filtername"))
    , m_xCBApplication(m_xBuilder->weld_combo_box("application"))
    , m_xEDInterfaceName(m_xBuilder->weld_entry("interfacename"))
    , m_xEDExtension(m_xBuilder->weld_entry("extension"))
    , m_xEDDescription(m_xBuilder->weld_text_view("description"))
{
    m_xEDDescription->set_size_request(-1, m_xEDDescription->get_height_rows(4));

    std::vector< application_info_impl > const & rInfos = getApplicationInfos();
    for (auto const& info : rInfos)
    {
        OUString aEntry( info.maDocumentUIName );
        m_xCBApplication->append_text( aEntry );
    }
}

XMLFilterTabPageBasic::~XMLFilterTabPageBasic()
{
}

static OUString checkExtensions( const OUString& rExtensions )
{
    const sal_Unicode* pSource = rExtensions.getStr();
    sal_Int32 nCount = rExtensions.getLength();

    OUStringBuffer aRet;
    while( nCount-- )
    {
        switch(*pSource)
        {
        case u',':
            aRet.append(";");
            break;
        case u'.':
        case u'*':
            break;
        default:
            aRet.append( *pSource );
        }

        pSource++;
    }

    return aRet.makeStringAndClear();
}

void XMLFilterTabPageBasic::FillInfo( filter_info_impl* pInfo )
{
    if( pInfo )
    {
        if( !m_xEDFilterName->get_text().isEmpty() )
            pInfo->maFilterName = m_xEDFilterName->get_text();

        if( !m_xCBApplication->get_active_text().isEmpty() )
            pInfo->maDocumentService = m_xCBApplication->get_active_text();

        if( !m_xEDInterfaceName->get_text().isEmpty() )
            pInfo->maInterfaceName = m_xEDInterfaceName->get_text();

        if( !m_xEDExtension->get_text().isEmpty() )
            pInfo->maExtension = checkExtensions( m_xEDExtension->get_text() );

        pInfo->maComment = string_encode( m_xEDDescription->get_text() );

        if( !pInfo->maDocumentService.isEmpty() )
        {
            std::vector< application_info_impl > const & rInfos = getApplicationInfos();
            for (auto const& info : rInfos)
            {
                if( pInfo->maDocumentService == info.maDocumentUIName )
                {
                    pInfo->maDocumentService = info.maDocumentService;
                    pInfo->maExportService = info.maXMLExporter;
                    pInfo->maImportService = info.maXMLImporter;
                    break;
                }
            }
        }
    }
}

void XMLFilterTabPageBasic::SetInfo(const filter_info_impl* pInfo)
{
    if( pInfo )
    {
        m_xEDFilterName->set_text( string_decode(pInfo->maFilterName) );
        /*
        if( pInfo->maDocumentService.getLength() )
            maCBApplication.set_text( getApplicationUIName( pInfo->maDocumentService ) );
        */
        if( !pInfo->maExportService.isEmpty() )
            m_xCBApplication->set_entry_text( getApplicationUIName( pInfo->maExportService ) );
        else
            m_xCBApplication->set_entry_text( getApplicationUIName( pInfo->maImportService ) );
        m_xEDInterfaceName->set_text( string_decode(pInfo->maInterfaceName) );
        m_xEDExtension->set_text( pInfo->maExtension );
        m_xEDDescription->set_text( string_decode( pInfo->maComment ) );
    }
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */