summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-09-19 21:54:01 +0200
committerEike Rathke <erack@redhat.com>2017-09-22 13:28:31 +0200
commitd80ba7354c8cecd4cba7b92a9f925f2bd0d78dd1 (patch)
treec00e2547d23e7ec3db711accfca7a0a8aa797dfc /include
parentb9de047454c2603e2f5a5108254cd3f967e8a88b (diff)
Ditch now unused GraphicExportDialog, GraphicExportOptionsDialog
That was a dead end anyway, trying to partly reimplement SvFilterOptionsDialog ExportDialog, instead of implementing the necessary bits to use that one which has everything. Change-Id: Icde7422f2c2d7e26c07dfe921a4abda41e222b09 Reviewed-on: https://gerrit.libreoffice.org/42503 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/svtools/GraphicExportOptionsDialog.hxx73
1 files changed, 0 insertions, 73 deletions
diff --git a/include/svtools/GraphicExportOptionsDialog.hxx b/include/svtools/GraphicExportOptionsDialog.hxx
deleted file mode 100644
index 2ed5dfdd7749..000000000000
--- a/include/svtools/GraphicExportOptionsDialog.hxx
+++ /dev/null
@@ -1,73 +0,0 @@
-/* -*- 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 .
- */
-
-#ifndef INCLUDED_SVTOOLS_GRAPHICEXPORTOPTIONSDIALOG_HXX
-#define INCLUDED_SVTOOLS_GRAPHICEXPORTOPTIONSDIALOG_HXX
-
-#include <vcl/fltcall.hxx>
-#include <vcl/dialog.hxx>
-#include <vcl/button.hxx>
-#include <vcl/fixed.hxx>
-#include <vcl/field.hxx>
-#include <vcl/layout.hxx>
-#include <vcl/lstbox.hxx>
-#include <vcl/msgbox.hxx>
-#include <vcl/scrbar.hxx>
-
-#include <svtools/DocumentToGraphicRenderer.hxx>
-
-#include <svtools/svtdllapi.h>
-
-class SVT_DLLPUBLIC GraphicExportOptionsDialog : public ModalDialog
-{
-private:
- VclPtr<NumericField> mpWidth;
- VclPtr<NumericField> mpHeight;
- VclPtr<ComboBox> mpResolution;
-
- Size mSize100mm;
- double mResolution;
-
- DocumentToGraphicRenderer mRenderer;
-
- sal_Int32 mCurrentPage;
-
- void initialize();
- void updateWidth();
- void updateHeight();
- void updateResolution();
-
- double getViewWidthInch();
- double getViewHeightInch();
-
- DECL_LINK( widthModifiedHandle, Edit&, void );
- DECL_LINK( heightModifiedHandle, Edit&, void );
- DECL_LINK( resolutionModifiedHandle, Edit&, void );
-
-public:
- GraphicExportOptionsDialog( vcl::Window* pWindow,
- const css::uno::Reference<css::lang::XComponent>& rxSourceDocument, bool bSelectionOnly );
- virtual ~GraphicExportOptionsDialog() override;
- virtual void dispose() override;
- css::uno::Sequence<css::beans::PropertyValue> getFilterData();
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */