added a checkbox for turning on/off save as RLE, saves TGA Translator settings to a file
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1426 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
34bec321e8
commit
e5497a45ce
@ -30,20 +30,29 @@
|
||||
#define TGAVIEW_H
|
||||
|
||||
#include <View.h>
|
||||
#include <MenuField.h>
|
||||
#include <MenuItem.h>
|
||||
#include <CheckBox.h>
|
||||
#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
|
||||
|
Loading…
Reference in New Issue
Block a user