mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
57 lines
1.8 KiB
C++
57 lines
1.8 KiB
C++
// -*- c++ -*-
|
|
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: pqSierraPlotToolsDataLoadManager.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
/*-------------------------------------------------------------------------
|
|
Copyright 2009 Sandia Corporation.
|
|
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
|
|
the U.S. Government retains certain rights in this software.
|
|
-------------------------------------------------------------------------*/
|
|
|
|
#ifndef pqSierraPlotToolsDataLoadManager_h
|
|
#define pqSierraPlotToolsDataLoadManager_h
|
|
|
|
#include <QDialog>
|
|
|
|
class pqServer;
|
|
|
|
/// This dialog box provides an easy way to set up the readers in the pipeline
|
|
/// and to ready them for the rest of the tools.
|
|
class pqSierraPlotToolsDataLoadManager : public QDialog
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
pqSierraPlotToolsDataLoadManager(QWidget *p, Qt::WindowFlags f = 0);
|
|
~pqSierraPlotToolsDataLoadManager();
|
|
|
|
public slots:
|
|
virtual void checkInputValid();
|
|
virtual void setupPipeline();
|
|
|
|
signals:
|
|
void createdPipeline();
|
|
|
|
protected:
|
|
pqServer *Server;
|
|
|
|
private:
|
|
pqSierraPlotToolsDataLoadManager(const pqSierraPlotToolsDataLoadManager &); // Not implemented
|
|
void operator=(const pqSierraPlotToolsDataLoadManager &); // Not implemented
|
|
|
|
class pqUI;
|
|
pqUI *ui;
|
|
};
|
|
|
|
#endif //pqSierraPlotToolsDataLoadManager_h
|