/***********************************************************************/ /* Open Visualization Data Explorer */ /* (C) Copyright IBM Corp. 1989,1999 */ /* ALL RIGHTS RESERVED */ /* This code licensed under the */ /* "IBM PUBLIC LICENSE - Open Visualization Data Explorer" */ /***********************************************************************/ #include #include "ImageFormatRGB.h" #include "Application.h" #include "Strings.h" #if defined(DXD_WIN) || defined(OS2) #define unlink _unlink #endif #ifndef DXD_DO_NOT_REQ_UNISTD_H #include #endif boolean ImageFormatRGB::ClassInitialized = FALSE; String ImageFormatRGB::DefaultResources[] = { NUL(char*) }; ImageFormatRGB::ImageFormatRGB (ImageFormatDialog* dialog) : PixelImageFormat("RGBformat", dialog) { } ImageFormatRGB::~ImageFormatRGB() { } void ImageFormatRGB::initialize() { if (!ImageFormatRGB::ClassInitialized) { this->setDefaultResources (theApplication->getRootWidget(), ImageFormat::DefaultResources); this->setDefaultResources (theApplication->getRootWidget(), PixelImageFormat::DefaultResources); this->setDefaultResources (theApplication->getRootWidget(), ImageFormatRGB::DefaultResources); ImageFormatRGB::ClassInitialized = TRUE; } } void ImageFormatRGB::eraseOutputFile(const char *fname) { char *cp; char *srcfile = DuplicateString(fname); char *file_to_delete = new char[strlen(fname) + 8]; if (cp = strstr (srcfile, ".rgb")) cp[0] = '\0'; sprintf (file_to_delete, "%s.rgb", srcfile); unlink (file_to_delete); sprintf (file_to_delete, "%s.size", srcfile); unlink (file_to_delete); delete file_to_delete; delete srcfile; } boolean ImageFormatRGB::isA(Symbol classname) { Symbol s = theSymbolManager->registerSymbol(ClassImageFormatRGB); if (s == classname) return TRUE; else return this->ImageFormat::isA(classname); }