initial import

This commit is contained in:
Mo Elzubeir
2022-12-13 09:18:00 -06:00
commit d2d561810c
322 changed files with 1147261 additions and 0 deletions
@@ -0,0 +1,38 @@
//! \file imageoutputformatdialog.h
#ifndef IMAGEOUTPUTFORMATDIALOG_H
#define IMAGEOUTPUTFORMATDIALOG_H
#include <QtGui/QDialog>
namespace Ui {
class ImageOutputFormatDialog;
}
//! \class ImageOutputFormatDialog
//! \brief this class is used to show how the images will be named based on the users selection in the ImporterDialog class
//! \author elzubeir
class ImageOutputFormatDialog : public QDialog {
Q_OBJECT
public:
//! \fn ImageOutputFormatDialog(QWidget *parent, QStringList list)
//! constructor that creates the object, and populate the tree widget with the list of
//! names that are passed to it from the calling widget
//! \param[in] parent QWidget pointer to parent class
//! \param[in] list QStringList to hold list of image names to be displayed for the user
//! \author elzubeir
ImageOutputFormatDialog(QWidget *parent, QStringList lis, bool keeppagenumber, int startpagenumber);
//! \fn ~ImageOutputFormatDialog
//! class destructor
//! \author elzubeir
~ImageOutputFormatDialog();
//! name of the output file
QStringList outputFileNames;
private:
//! pointer to the Qt desginer UI class object
Ui::ImageOutputFormatDialog *m_ui;
};
#endif // IMAGEOUTPUTFORMATDIALOG_H