1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/**
* @file llpreviewtexture.h
* @brief LLPreviewTexture class definition
*
* Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLPREVIEWTEXTURE_H
#define LL_LLPREVIEWTEXTURE_H
#include "llpreview.h"
#include "llbutton.h"
#include "llframetimer.h"
#include "llviewerimage.h"
class LLImageRaw;
class LLPreviewTexture : public LLPreview
{
public:
LLPreviewTexture(
const std::string& name,
const LLRect& rect,
const std::string& title,
const LLUUID& item_uuid,
const LLUUID& object_id,
BOOL show_keep_discard = FALSE);
LLPreviewTexture(
const std::string& name,
const LLRect& rect,
const std::string& title,
const LLUUID& asset_id,
BOOL copy_to_inv = FALSE);
~LLPreviewTexture();
virtual void draw();
virtual BOOL canSaveAs();
virtual void saveAs();
virtual void loadAsset();
virtual EAssetStatus getAssetStatus();
static void saveToFile(void* userdata);
static void onFileLoadedForSave(
BOOL success,
LLViewerImage *src_vi,
LLImageRaw* src,
LLImageRaw* aux_src,
S32 discard_level,
BOOL final,
void* userdata );
protected:
void init();
void updateAspectRatio();
protected:
LLUUID mImageID;
LLPointer<LLViewerImage> mImage;
BOOL mLoadingFullImage;
LLString mSaveFileName;
LLFrameTimer mSavedFileTimer;
BOOL mShowKeepDiscard;
BOOL mCopyToInv;
// This is stored off in a member variable, because the save-as
// button and drag and drop functionality need to know.
BOOL mIsCopyable;
S32 mLastHeight;
S32 mLastWidth;
};
#endif // LL_LLPREVIEWTEXTURE_H
|