00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef FXBITMAPVIEW_H
00025 #define FXBITMAPVIEW_H
00026
00027 #ifndef FXSCROLLAREA_H
00028 #include "FXScrollArea.h"
00029 #endif
00030
00031 namespace FX {
00032
00033
00034 class FXBitmap;
00035
00037 enum {
00038 BITMAPVIEW_NORMAL = 0,
00039 BITMAPVIEW_CENTER_X = 0,
00040 BITMAPVIEW_LEFT = 0x00100000,
00041 BITMAPVIEW_RIGHT = 0x00200000,
00042 BITMAPVIEW_CENTER_Y = 0,
00043 BITMAPVIEW_TOP = 0x00400000,
00044 BITMAPVIEW_BOTTOM = 0x00800000
00045 };
00046
00053 class FXAPI FXBitmapView : public FXScrollArea {
00054 FXDECLARE(FXBitmapView)
00055 protected:
00056 FXBitmap *bitmap;
00057 FXColor onColor;
00058 FXColor offColor;
00059 FXint grabx;
00060 FXint graby;
00061 protected:
00062 FXBitmapView();
00063 private:
00064 FXBitmapView(const FXBitmapView&);
00065 FXBitmapView &operator=(const FXBitmapView&);
00066 public:
00067 long onPaint(FXObject*,FXSelector,void*);
00068 long onMotion(FXObject*,FXSelector,void*);
00069 long onRightBtnPress(FXObject*,FXSelector,void*);
00070 long onRightBtnRelease(FXObject*,FXSelector,void*);
00071 public:
00072 enum {
00073 ID_XYZ=FXScrollArea::ID_LAST,
00074 ID_LAST
00075 };
00076 public:
00077
00079 FXBitmapView(FXComposite* p,FXBitmap* bmp=NULL,FXObject* tgt=NULL,FXSelector sel=0,FXuint opts=0,FXint x=0,FXint y=0,FXint w=0,FXint h=0);
00080
00082 virtual void create();
00083
00085 virtual void detach();
00086
00088 virtual void layout();
00089
00091 virtual bool canFocus() const;
00092
00094 virtual FXint getContentWidth();
00095
00097 virtual FXint getContentHeight();
00098
00100 void setBitmap(FXBitmap* bmp);
00101
00103 FXBitmap* getBitmap() const { return bitmap; }
00104
00106 void setOnColor(FXColor clr);
00107
00109 FXColor getOnColor() const { return onColor; }
00110
00112 void setOffColor(FXColor clr);
00113
00115 FXColor getOffColor() const { return offColor; }
00116
00118 void setAlignment(FXuint mode);
00119
00121 FXuint getAlignment() const;
00122
00124 virtual void save(FXStream& store) const;
00125
00127 virtual void load(FXStream& store);
00128
00130 virtual ~FXBitmapView();
00131 };
00132
00133 }
00134
00135 #endif