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
|
/* -*- 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/.
*/
#include "xmlsourcedlg.hxx"
#include "sc.hrc"
#include "scresid.hxx"
#include "document.hxx"
#include "orcusfilters.hxx"
#include "filter.hxx"
#include "reffact.hxx"
#include "tabvwsh.hxx"
#include <unotools/pathoptions.hxx>
#include <tools/urlobj.hxx>
#include <svtools/svlbitm.hxx>
#include <svtools/treelistentry.hxx>
#include <svtools/viewdataentry.hxx>
#include <sfx2/objsh.hxx>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/ui/dialogs/FilePicker.hpp>
#include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
#include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
using namespace com::sun::star;
namespace {
bool isAttribute(const SvTreeListEntry& rEntry)
{
const ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(rEntry);
if (!pUserData)
return false;
return pUserData->meType == ScOrcusXMLTreeParam::Attribute;
}
OUString getXPath(
const SvTreeListBox& rTree, const SvTreeListEntry& rEntry, std::vector<size_t>& rNamespaces)
{
OUStringBuffer aBuf;
for (const SvTreeListEntry* p = &rEntry; p; p = rTree.GetParent(p))
{
const SvLBoxItem* pItem = p->GetFirstItem(SV_ITEM_ID_LBOXSTRING);
if (!pItem)
continue;
// Collect used namespace.
const ScOrcusXMLTreeParam::EntryData* pData = ScOrcusXMLTreeParam::getUserData(*p);
if (pData)
rNamespaces.push_back(pData->mnNamespaceID);
const SvLBoxString* pStr = static_cast<const SvLBoxString*>(pItem);
aBuf.insert(0, pStr->GetText());
aBuf.insert(0, isAttribute(*p) ? '@' : '/');
}
return aBuf.makeStringAndClear();
}
}
ScXMLSourceDlg::ScXMLSourceDlg(
SfxBindings* pB, SfxChildWindow* pCW, vcl::Window* pParent, ScDocument* pDoc)
: ScAnyRefDlg(pB, pCW, pParent, "XMLSourceDialog",
"modules/scalc/ui/xmlsourcedialog.ui")
, mpCurRefEntry(nullptr)
, mpDoc(pDoc)
, mbDlgLostFocus(false)
{
get(mpBtnSelectSource, "selectsource");
get(mpFtSourceFile, "sourcefile");
get(mpMapGrid, "mapgrid");
get(mpLbTree, "tree");
Size aTreeSize(mpLbTree->LogicToPixel(Size(130, 120), MAP_APPFONT));
mpLbTree->set_width_request(aTreeSize.Width());
mpLbTree->set_height_request(aTreeSize.Height());
get(mpRefEdit, "edit");
mpRefEdit->SetReferences(this, nullptr);
get(mpRefBtn, "ref");
mpRefBtn->SetReferences(this, mpRefEdit);
get(mpBtnCancel, "cancel");
get(mpBtnOk, "ok");
mpActiveEdit = mpRefEdit;
maXMLParam.maImgElementDefault = Image(ScResId(IMG_ELEMENT_DEFAULT));
maXMLParam.maImgElementRepeat = Image(ScResId(IMG_ELEMENT_REPEAT));
maXMLParam.maImgAttribute = Image(ScResId(IMG_ELEMENT_ATTRIBUTE));
Link<Button*,void> aBtnHdl = LINK(this, ScXMLSourceDlg, BtnPressedHdl);
mpBtnSelectSource->SetClickHdl(aBtnHdl);
mpBtnOk->SetClickHdl(aBtnHdl);
mpBtnCancel->SetClickHdl(aBtnHdl);
Link<Control&,void> aLink2 = LINK(this, ScXMLSourceDlg, GetFocusHdl);
mpRefEdit->SetGetFocusHdl(aLink2);
mpRefBtn->SetGetFocusHdl(aLink2);
mpLbTree->SetSelectHdl(LINK(this, ScXMLSourceDlg, TreeItemSelectHdl));
Link<Edit&,void> aLink = LINK(this, ScXMLSourceDlg, RefModifiedHdl);
mpRefEdit->SetModifyHdl(aLink);
mpBtnOk->Disable();
SetNonLinkable();
mpBtnSelectSource->GrabFocus(); // Initial focus is on the select source button.
}
ScXMLSourceDlg::~ScXMLSourceDlg()
{
disposeOnce();
}
void ScXMLSourceDlg::dispose()
{
mpBtnSelectSource.clear();
mpFtSourceFile.clear();
mpMapGrid.clear();
mpLbTree.clear();
mpRefEdit.clear();
mpRefBtn.clear();
mpBtnOk.clear();
mpBtnCancel.clear();
mpActiveEdit.clear();
ScAnyRefDlg::dispose();
}
bool ScXMLSourceDlg::IsRefInputMode() const
{
return mpActiveEdit != nullptr && mpActiveEdit->IsEnabled();
}
void ScXMLSourceDlg::SetReference(const ScRange& rRange, ScDocument* pDoc)
{
if (!mpActiveEdit)
return;
if (rRange.aStart != rRange.aEnd)
RefInputStart(mpActiveEdit);
OUString aStr(rRange.aStart.Format(ScRefFlags::ADDR_ABS_3D, pDoc, pDoc->GetAddressConvention()));
mpActiveEdit->SetRefString(aStr);
RefEditModified();
}
void ScXMLSourceDlg::Deactivate()
{
mbDlgLostFocus = true;
}
void ScXMLSourceDlg::SetActive()
{
if (mbDlgLostFocus)
{
mbDlgLostFocus = false;
if (mpActiveEdit)
{
mpActiveEdit->GrabFocus();
}
}
else
{
GrabFocus();
}
RefInputDone();
}
bool ScXMLSourceDlg::Close()
{
return DoClose(ScXMLSourceDlgWrapper::GetChildWindowId());
}
void ScXMLSourceDlg::SelectSourceFile()
{
uno::Reference<ui::dialogs::XFilePicker3> xFilePicker = ui::dialogs::FilePicker::createWithMode( comphelper::getProcessComponentContext(), ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE );
if (maSrcPath.isEmpty())
// Use default path.
xFilePicker->setDisplayDirectory(SvtPathOptions().GetWorkPath());
else
{
// Use the directory of current source file.
INetURLObject aURL(maSrcPath);
aURL.removeSegment();
aURL.removeFinalSlash();
OUString aPath = aURL.GetMainURL(INetURLObject::NO_DECODE);
xFilePicker->setDisplayDirectory(aPath);
}
if (xFilePicker->execute() != ui::dialogs::ExecutableDialogResults::OK)
// File picker dialog cancelled.
return;
uno::Sequence<OUString> aFiles = xFilePicker->getSelectedFiles();
if (!aFiles.getLength())
return;
// There should only be one file returned from the file picker.
maSrcPath = aFiles[0];
mpFtSourceFile->SetText(maSrcPath);
maHighlightedEntries.clear();
LoadSourceFileStructure(maSrcPath);
}
void ScXMLSourceDlg::LoadSourceFileStructure(const OUString& rPath)
{
ScOrcusFilters* pOrcus = ScFormatFilter::Get().GetOrcusFilters();
if (!pOrcus)
return;
mpXMLContext.reset(pOrcus->createXMLContext(*mpDoc, rPath));
if (!mpXMLContext)
return;
mpXMLContext->loadXMLStructure(*mpLbTree, maXMLParam);
}
void ScXMLSourceDlg::HandleGetFocus(Control* pCtrl)
{
mpActiveEdit = nullptr;
if (pCtrl == mpRefEdit || pCtrl == mpRefBtn)
mpActiveEdit = mpRefEdit;
if (mpActiveEdit)
mpActiveEdit->SetSelection(Selection(0, SELECTION_MAX));
}
namespace {
class UnhighlightEntry : public std::unary_function<SvTreeListEntry*, void>
{
SvTreeListBox& mrTree;
public:
explicit UnhighlightEntry(SvTreeListBox& rTree) : mrTree(rTree) {}
void operator() (SvTreeListEntry* p)
{
SvViewDataEntry* pView = mrTree.GetViewDataEntry(p);
if (!pView)
return;
pView->SetHighlighted(false);
mrTree.Invalidate();
}
};
/**
* When the current entry is a direct or indirect child of a mappable
* repeat element entry, that entry becomes the reference entry.
* Otherwise the reference entry equals the current entry. A reference
* entry is the entry that stores mapped cell position.
*/
SvTreeListEntry* getReferenceEntry(SvTreeListBox& rTree, SvTreeListEntry* pCurEntry)
{
SvTreeListEntry* pParent = rTree.GetParent(pCurEntry);
SvTreeListEntry* pRefEntry = nullptr;
while (pParent)
{
ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(*pParent);
OSL_ASSERT(pUserData);
if (pUserData->meType == ScOrcusXMLTreeParam::ElementRepeat)
{
// This is a repeat element.
if (pRefEntry)
{
// Second repeat element encountered. Not good.
return pCurEntry;
}
pRefEntry = pParent;
}
pParent = rTree.GetParent(pParent);
}
return pRefEntry ? pRefEntry : pCurEntry;
}
}
void ScXMLSourceDlg::TreeItemSelected()
{
SvTreeListEntry* pEntry = mpLbTree->GetCurEntry();
if (!pEntry)
return;
if (!maHighlightedEntries.empty())
{
// Remove highlights from all previously highlighted entries (if any).
std::for_each(maHighlightedEntries.begin(), maHighlightedEntries.end(), UnhighlightEntry(*mpLbTree));
maHighlightedEntries.clear();
}
mpCurRefEntry = getReferenceEntry(*mpLbTree, pEntry);
ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(*mpCurRefEntry);
OSL_ASSERT(pUserData);
const ScAddress& rPos = pUserData->maLinkedPos;
if (rPos.IsValid())
{
OUString aStr(rPos.Format(ScRefFlags::ADDR_ABS_3D, mpDoc, mpDoc->GetAddressConvention()));
mpRefEdit->SetRefString(aStr);
}
else
mpRefEdit->SetRefString(OUString());
switch (pUserData->meType)
{
case ScOrcusXMLTreeParam::Attribute:
AttributeSelected(*mpCurRefEntry);
break;
case ScOrcusXMLTreeParam::ElementDefault:
DefaultElementSelected(*mpCurRefEntry);
break;
case ScOrcusXMLTreeParam::ElementRepeat:
RepeatElementSelected(*mpCurRefEntry);
break;
default:
;
}
}
void ScXMLSourceDlg::DefaultElementSelected(SvTreeListEntry& rEntry)
{
if (mpLbTree->GetChildCount(&rEntry) > 0)
{
// Only an element with no child elements (leaf element) can be linked.
bool bHasChild = false;
for (SvTreeListEntry* pChild = mpLbTree->FirstChild(&rEntry); pChild; pChild = SvTreeListBox::NextSibling(pChild))
{
ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(*pChild);
OSL_ASSERT(pUserData);
if (pUserData->meType != ScOrcusXMLTreeParam::Attribute)
{
// This child is not an attribute. Bail out.
bHasChild = true;
break;
}
}
if (bHasChild)
{
SetNonLinkable();
return;
}
}
// Check all its parents and make sure non of them are range-linked nor
// repeat elements.
if (IsParentDirty(&rEntry))
{
SetNonLinkable();
return;
}
SetSingleLinkable();
}
void ScXMLSourceDlg::RepeatElementSelected(SvTreeListEntry& rEntry)
{
// Check all its parents first.
if (IsParentDirty(&rEntry))
{
SetNonLinkable();
return;
}
// Check all its child elements / attributes and make sure non of them are
// linked or repeat elements. In the future we will support range linking
// of repeat element who has another repeat elements. But first I need to
// support that scenario in orcus.
if (IsChildrenDirty(&rEntry))
{
SetNonLinkable();
return;
}
SvViewDataEntry* p = mpLbTree->GetViewDataEntry(&rEntry);
if (!p->IsHighlighted())
{
// Highlight the entry if not highlighted already. This can happen
// when the current entry is a child entry of a repeat element entry.
p->SetHighlighted(true);
mpLbTree->Invalidate();
maHighlightedEntries.push_back(&rEntry);
}
SelectAllChildEntries(rEntry);
SetRangeLinkable();
}
void ScXMLSourceDlg::AttributeSelected(SvTreeListEntry& rEntry)
{
// Check all its parent elements and make sure non of them are linked nor
// repeat elements. In attribute's case, it's okay to have the immediate
// parent element linked (but not range-linked).
SvTreeListEntry* pParent = mpLbTree->GetParent(&rEntry);
OSL_ASSERT(pParent); // attribute should have a parent element.
ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(*pParent);
OSL_ASSERT(pUserData);
if (pUserData->maLinkedPos.IsValid() && pUserData->mbRangeParent)
{
// Parent element is range-linked. Bail out.
SetNonLinkable();
return;
}
if (IsParentDirty(&rEntry))
{
SetNonLinkable();
return;
}
SetSingleLinkable();
}
void ScXMLSourceDlg::SetNonLinkable()
{
mpMapGrid->Disable();
}
void ScXMLSourceDlg::SetSingleLinkable()
{
mpMapGrid->Enable();
}
void ScXMLSourceDlg::SetRangeLinkable()
{
mpMapGrid->Enable();
}
void ScXMLSourceDlg::SelectAllChildEntries(SvTreeListEntry& rEntry)
{
SvTreeListEntries& rChildren = rEntry.GetChildEntries();
for (auto const& it : rChildren)
{
SvTreeListEntry& r = *it;
SelectAllChildEntries(r); // select recursively.
SvViewDataEntry* p = mpLbTree->GetViewDataEntry(&r);
p->SetHighlighted(true);
mpLbTree->Invalidate();
maHighlightedEntries.push_back(&r);
}
}
bool ScXMLSourceDlg::IsParentDirty(SvTreeListEntry* pEntry) const
{
SvTreeListEntry* pParent = mpLbTree->GetParent(pEntry);
while (pParent)
{
ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(*pParent);
assert(pUserData);
if (pUserData->maLinkedPos.IsValid())
{
// This parent is already linked.
return true;
}
if (pUserData->meType == ScOrcusXMLTreeParam::ElementRepeat)
{
// This is a repeat element.
return true;
}
pParent = mpLbTree->GetParent(pParent);
}
return false;
}
bool ScXMLSourceDlg::IsChildrenDirty(SvTreeListEntry* pEntry) const
{
for (SvTreeListEntry* pChild = mpLbTree->FirstChild(pEntry); pChild; pChild = SvTreeListBox::NextSibling(pChild))
{
ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(*pChild);
OSL_ASSERT(pUserData);
if (pUserData->maLinkedPos.IsValid())
// Already linked.
return true;
if (pUserData->meType == ScOrcusXMLTreeParam::ElementRepeat)
// We don't support linking of nested repeat elements (yet).
return true;
if (pUserData->meType == ScOrcusXMLTreeParam::ElementDefault)
{
// Check recursively.
if (IsChildrenDirty(pChild))
return true;
}
}
return false;
}
namespace {
/**
* Pick only the leaf elements.
*/
void getFieldLinks(
ScOrcusImportXMLParam::RangeLink& rRangeLink, std::vector<size_t>& rNamespaces,
const SvTreeListBox& rTree, const SvTreeListEntry& rEntry)
{
const SvTreeListEntries& rChildren = rEntry.GetChildEntries();
if (rChildren.empty())
// No more children. We're done.
return;
for (auto const& it : rChildren)
{
const SvTreeListEntry& rChild = *it;
OUString aPath = getXPath(rTree, rChild, rNamespaces);
const ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(rChild);
if (pUserData && pUserData->mbLeafNode)
{
if (!aPath.isEmpty())
// XPath should never be empty anyway, but it won't hurt to check...
rRangeLink.maFieldPaths.push_back(OUStringToOString(aPath, RTL_TEXTENCODING_UTF8));
}
// Walk recursively.
getFieldLinks(rRangeLink, rNamespaces, rTree, rChild);
}
}
void removeDuplicates(std::vector<size_t>& rArray)
{
std::sort(rArray.begin(), rArray.end());
std::vector<size_t>::iterator it = std::unique(rArray.begin(), rArray.end());
rArray.erase(it, rArray.end());
}
}
void ScXMLSourceDlg::OkPressed()
{
if (!mpXMLContext)
return;
// Begin import.
ScOrcusImportXMLParam aParam;
// Convert single cell links.
{
std::set<const SvTreeListEntry*>::const_iterator it = maCellLinks.begin(), itEnd = maCellLinks.end();
for (; it != itEnd; ++it)
{
const SvTreeListEntry& rEntry = **it;
OUString aPath = getXPath(*mpLbTree, rEntry, aParam.maNamespaces);
const ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(rEntry);
aParam.maCellLinks.push_back(
ScOrcusImportXMLParam::CellLink(
pUserData->maLinkedPos, OUStringToOString(aPath, RTL_TEXTENCODING_UTF8)));
}
}
// Convert range links. For now, an element with range link takes all its
// child elements as its fields.
{
std::set<const SvTreeListEntry*>::const_iterator it = maRangeLinks.begin(), itEnd = maRangeLinks.end();
for (; it != itEnd; ++it)
{
const SvTreeListEntry& rEntry = **it;
const ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(rEntry);
ScOrcusImportXMLParam::RangeLink aRangeLink;
aRangeLink.maPos = pUserData->maLinkedPos;
// Go through all its child elements.
getFieldLinks(aRangeLink, aParam.maNamespaces, *mpLbTree, rEntry);
aParam.maRangeLinks.push_back(aRangeLink);
}
}
// Remove duplicate namespace IDs.
removeDuplicates(aParam.maNamespaces);
// Now do the import.
mpXMLContext->importXML(aParam);
// Don't forget to broadcast the change.
SfxObjectShell* pShell = mpDoc->GetDocumentShell();
pShell->Broadcast(SfxSimpleHint(FID_DATACHANGED));
// Repaint the grid to force repaint the cell values.
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->PaintGrid();
Close();
}
void ScXMLSourceDlg::CancelPressed()
{
Close();
}
void ScXMLSourceDlg::RefEditModified()
{
OUString aRefStr = mpRefEdit->GetText();
// Check if the address is valid.
ScAddress aLinkedPos;
ScRefFlags nRes = aLinkedPos.Parse(aRefStr, mpDoc, mpDoc->GetAddressConvention());
bool bValid = ( (nRes & ScRefFlags::VALID) == ScRefFlags::VALID );
// TODO: For some unknown reason, setting the ref invalid will hide the text altogether.
// Find out how to make this work.
// mpRefEdit->SetRefValid(bValid);
if (!bValid)
aLinkedPos.SetInvalid();
// Set this address to the current reference entry.
if (!mpCurRefEntry)
// This should never happen.
return;
ScOrcusXMLTreeParam::EntryData* pUserData = ScOrcusXMLTreeParam::getUserData(*mpCurRefEntry);
if (!pUserData)
// This should never happen either.
return;
bool bRepeatElem = pUserData->meType == ScOrcusXMLTreeParam::ElementRepeat;
pUserData->maLinkedPos = aLinkedPos;
pUserData->mbRangeParent = aLinkedPos.IsValid() && bRepeatElem;
if (bRepeatElem)
{
if (bValid)
maRangeLinks.insert(mpCurRefEntry);
else
maRangeLinks.erase(mpCurRefEntry);
}
else
{
if (bValid)
maCellLinks.insert(mpCurRefEntry);
else
maCellLinks.erase(mpCurRefEntry);
}
// Enable the import button only when at least one link exists.
bool bHasLink = !maCellLinks.empty() || !maRangeLinks.empty();
mpBtnOk->Enable(bHasLink);
}
IMPL_LINK_TYPED(ScXMLSourceDlg, GetFocusHdl, Control&, rCtrl, void)
{
HandleGetFocus(&rCtrl);
}
IMPL_LINK_TYPED(ScXMLSourceDlg, BtnPressedHdl, Button*, pBtn, void)
{
if (pBtn == mpBtnSelectSource)
SelectSourceFile();
else if (pBtn == mpBtnOk)
OkPressed();
else if (pBtn == mpBtnCancel)
CancelPressed();
}
IMPL_LINK_NOARG_TYPED(ScXMLSourceDlg, TreeItemSelectHdl, SvTreeListBox*, void)
{
TreeItemSelected();
}
IMPL_LINK_NOARG_TYPED(ScXMLSourceDlg, RefModifiedHdl, Edit&, void)
{
RefEditModified();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|