diff --git a/src/add-ons/translators/tgatranslator/TGAView.h b/src/add-ons/translators/tgatranslator/TGAView.h index 32fbc42bbb..4972250b78 100644 --- a/src/add-ons/translators/tgatranslator/TGAView.h +++ b/src/add-ons/translators/tgatranslator/TGAView.h @@ -30,20 +30,29 @@ #define TGAVIEW_H #include -#include -#include +#include +#include "TGATranslatorSettings.h" class TGAView : public BView { public: TGAView(const BRect &frame, const char *name, uint32 resize, - uint32 flags); + uint32 flags, TGATranslatorSettings *psettings); // sets up the view ~TGAView(); - // does nothing + // releases the TGATranslator settings + + virtual void AllAttached(); + virtual void MessageReceived(BMessage *message); virtual void Draw(BRect area); // draws information about the TGATranslator + + enum { CHANGE_RLE }; +private: + BCheckBox *fpchkRLE; + + TGATranslatorSettings *fpsettings; }; #endif // #ifndef TGAVIEW_H