tahoma2d/toonz/sources/image/sgi/tiio_sgi.h

29 lines
537 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef TIIO_SGI_INCLUDED
#define TIIO_SGI_INCLUDED
#include "tiio.h"
//#include "timage_io.h"
#include "tproperty.h"
#include <QCoreApplication>
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
namespace Tiio {
2016-03-19 06:57:51 +13:00
Tiio::ReaderMaker makeSgiReader;
Tiio::WriterMaker makeSgiWriter;
class SgiWriterProperties final : public TPropertyGroup {
Q_DECLARE_TR_FUNCTIONS(SgiWriterProperties)
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
TEnumProperty m_pixelSize;
TBoolProperty m_compressed;
TEnumProperty m_endianess;
SgiWriterProperties();
void updateTranslation() override;
2016-03-19 06:57:51 +13:00
};
2016-06-15 18:43:10 +12:00
} // namespace
2016-03-19 06:57:51 +13:00
#endif