tahoma2d/toonz/sources/image/sgi/tiio_sgi.h
shun-iwasawa e87e0815f7 Make More UI Texts Translatable (#2026)
* make ui texts translatable

* add more translatable texts

* load translate file for default commands
2018-06-04 12:18:43 +09:00

28 lines
537 B
C++

#pragma once
#ifndef TIIO_SGI_INCLUDED
#define TIIO_SGI_INCLUDED
#include "tiio.h"
//#include "timage_io.h"
#include "tproperty.h"
#include <QCoreApplication>
namespace Tiio {
Tiio::ReaderMaker makeSgiReader;
Tiio::WriterMaker makeSgiWriter;
class SgiWriterProperties final : public TPropertyGroup {
Q_DECLARE_TR_FUNCTIONS(SgiWriterProperties)
public:
TEnumProperty m_pixelSize;
TBoolProperty m_compressed;
TEnumProperty m_endianess;
SgiWriterProperties();
void updateTranslation() override;
};
} // namespace
#endif