You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvidia-texture-tools/src/nvtt/tools/compressdialog.h

26 lines
382 B
C++

#ifndef COMPRESSDIALOG_H
#define COMPRESSDIALOG_H
#include <QtGui/QDialog>
#include "ui_compressdialog.h"
class CompressDialog : public QDialog
{
Q_OBJECT
public:
explicit CompressDialog(const QString & fileName, QWidget *parent = 0);
~CompressDialog();
protected slots:
void openClicked();
private:
Ui::CompressDialog ui;
};
#endif // COMPRESSDIALOG_H