Newer
Older
Import / research / 3d-z-maps / mview-0.3.3 / mview / viewpointdialog.h
@John John on 29 Dec 2020 555 bytes bulk import from macbookpro checkouts
//
//    File: viewpointdialog.h
//
//    (C) 2000-2008 Helmut Cantzler
//
//    Licensed under the terms of the Lesser General Public License.
//

#ifndef _VIEWPOINTDIALOG_H
#define _VIEWPOINTDIALOG_H

#include <QDialog>
#include "glmesh.h"

class QTableWidget;
class QLineEdit;

class ViewpointDialog : public QDialog
{
  Q_OBJECT
 public:
  ViewpointDialog(QWidget *parent, GLMeshSettings *s);

 private slots:
  void accept();

 private:
  GLMeshSettings *settings;

  QTableWidget *table;
  QLineEdit *xShift, *yShift, *zShift, *clipping;
};

#endif