forked from amazingfate/loongoffice
The results can now be downloaded as a zip file, which would consist of the test log and all the resultant bitmap images produced by the tests compressed as png stored in the user directory folder. Change-Id: I8a6098a7454a621bbb9cafa7b6f2cafaa5503522 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117937 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
24 lines
706 B
C++
24 lines
706 B
C++
/* -*- 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 <vcl/weld.hxx>
|
|
#include <svx/svxdllapi.h>
|
|
|
|
class SVX_DLLPUBLIC FileExportedDialog : public weld::GenericDialogController
|
|
{
|
|
private:
|
|
std::unique_ptr<weld::Label> m_xFileLabel;
|
|
std::unique_ptr<weld::Button> m_xButton;
|
|
|
|
DECL_LINK(OpenHdl, weld::Button&, void);
|
|
|
|
public:
|
|
explicit FileExportedDialog(weld::Window* pParent, OUString atitle);
|
|
};
|