Change-Id: I9247a652707fe3239dc488a605a2c506d8eec95c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97736 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Szymon Kłos <szymon.klos@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98819 Tested-by: Jenkins
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* 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/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <vcl/dllapi.h>
|
|
#include <vcl/uitest/uiobject.hxx>
|
|
#include <vcl/weld.hxx>
|
|
|
|
class LOKTrigger
|
|
{
|
|
public:
|
|
static void trigger_changed(weld::Entry& rEdit) { rEdit.signal_changed(); }
|
|
|
|
static void trigger_changed(weld::ComboBox& rComboBox) { rComboBox.signal_changed(); }
|
|
|
|
static void trigger_clicked(weld::Toolbar& rToolbar, const OString& rIdent)
|
|
{
|
|
rToolbar.signal_clicked(rIdent);
|
|
}
|
|
|
|
static void trigger_click(weld::DrawingArea& rDrawingArea, const Point& rPos)
|
|
{
|
|
rDrawingArea.click(rPos);
|
|
}
|
|
};
|
|
|
|
namespace jsdialog
|
|
{
|
|
VCL_DLLPUBLIC bool ExecuteAction(sal_uInt64 nWindowId, const OString& rWidget, StringMap& rData);
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|