ImageryParamDialog.h 763 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
#ifndef IMAGERYPARAMDIALOG_H
#define IMAGERYPARAMDIALOG_H

#include <QComboBox>
#include <QDoubleSpinBox>
#include <QDialog>
#include <QLineEdit>
#include <QVBoxLayout>

#include "GlobalViewParams.h"

class ImageryParamDialog : public QDialog
{
    Q_OBJECT

public:
    ImageryParamDialog(QWidget* parent = 0);

    static void getImageryParams(GlobalViewParamsPtr& globalViewParams);

private slots:
    void selectPath(void);
    void closeWithSaving(void);
    void closeWithoutSaving(void);

private:
    void buildLayout(QVBoxLayout* layout);

    QComboBox* mImageryTypeComboBox;
    QLineEdit* mPathLineEdit;
    QDoubleSpinBox* mXOffsetSpinBox;
    QDoubleSpinBox* mYOffsetSpinBox;
    QDoubleSpinBox* mZOffsetSpinBox;
};

#endif // IMAGERYPARAMDIALOG_H