Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygengdiplusimageattributes.h
Go to the documentation of this file.
00001 /* 00002 * GdiPlusImageAttributes.h 00003 * 00004 * Windows GDI+ 00005 * 00006 * This file is part of the w32api package. 00007 * 00008 * THIS SOFTWARE IS NOT COPYRIGHTED 00009 * 00010 * This source code is offered for use in the public domain. You may 00011 * use, modify or distribute it freely. 00012 * 00013 * This code is distributed in the hope that it will be useful but 00014 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY 00015 * DISCLAIMED. This includes but is not limited to warranties of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00017 */ 00018 00019 #ifndef _GDIPLUSIMAGEATTRIBUTES_H 00020 #define _GDIPLUSIMAGEATTRIBUTES_H 00021 00022 class ImageAttributes : public GdiplusBase 00023 { 00024 public: 00025 ImageAttributes(VOID) 00026 { 00027 } 00028 00029 Status ClearBrushRemapTable(VOID) 00030 { 00031 return NotImplemented; 00032 } 00033 00034 Status ClearColorKey(ColorAdjustType type) 00035 { 00036 return NotImplemented; 00037 } 00038 00039 Status ClearColorMatrices(ColorAdjustType type) 00040 { 00041 return NotImplemented; 00042 } 00043 00044 Status ClearColorMatrix(ColorAdjustType type) 00045 { 00046 return NotImplemented; 00047 } 00048 00049 Status ClearGamma(ColorAdjustType type) 00050 { 00051 return NotImplemented; 00052 } 00053 00054 Status ClearNoOp(ColorAdjustType type) 00055 { 00056 return NotImplemented; 00057 } 00058 00059 Status ClearOutputChannel(ColorAdjustType type) 00060 { 00061 return NotImplemented; 00062 } 00063 00064 Status ClearOutputChannelColorProfile(ColorAdjustType type) 00065 { 00066 return NotImplemented; 00067 } 00068 00069 Status ClearRemapTable(ColorAdjustType type) 00070 { 00071 return NotImplemented; 00072 } 00073 00074 Status ClearThreshold(ColorAdjustType type) 00075 { 00076 return NotImplemented; 00077 } 00078 00079 ImageAttributes *Clone(VOID) 00080 { 00081 return NULL; 00082 } 00083 00084 Status GetAdjustedPalette(ColorPalette *colorPalette, ColorPalette colorAdjustType) 00085 { 00086 return NotImplemented; 00087 } 00088 00089 Status GetLastStatus(VOID) 00090 { 00091 return NotImplemented; 00092 } 00093 00094 Status Reset(ColorAdjustType type) 00095 { 00096 return NotImplemented; 00097 } 00098 00099 Status SetBrushRemapTable(UINT mapSize, ColorMap *map) 00100 { 00101 return NotImplemented; 00102 } 00103 00104 Status SetColorKey(const Color &colorLow, const Color &colorHigh, ColorAdjustType type) 00105 { 00106 return NotImplemented; 00107 } 00108 00109 Status SetColorMatrices(const ColorMatrix *colorMatrix, const ColorMatrix *grayMatrix, ColorMatrixFlags mode, ColorAdjustType type) 00110 { 00111 return NotImplemented; 00112 } 00113 00114 Status SetColorMatrix(const ColorMatrix *colorMatrix, ColorMatrixFlags mode, ColorAdjustType type) 00115 { 00116 return NotImplemented; 00117 } 00118 00119 Status SetGamma(REAL gamma, ColorAdjustType type) 00120 { 00121 return NotImplemented; 00122 } 00123 00124 Status SetNoOp(ColorAdjustType type) 00125 { 00126 return NotImplemented; 00127 } 00128 00129 Status SetOutputChannel(ColorChannelFlags channelFlags, ColorAdjustType type) 00130 { 00131 return NotImplemented; 00132 } 00133 00134 Status SetOutputChannelColorProfile(const WCHAR *colorProfileFilename, ColorAdjustType type) 00135 { 00136 return NotImplemented; 00137 } 00138 00139 Status SetRemapTable(UINT mapSize, const ColorMap *map, ColorAdjustType type) 00140 { 00141 return NotImplemented; 00142 } 00143 00144 Status SetThreshold(REAL threshold, ColorAdjustType type) 00145 { 00146 return NotImplemented; 00147 } 00148 00149 Status SetToIdentity(ColorAdjustType type) 00150 { 00151 return NotImplemented; 00152 } 00153 00154 Status SetWrapMode(WrapMode wrap, const Color &color, BOOL clamp) 00155 { 00156 return NotImplemented; 00157 } 00158 }; 00159 00160 #endif /* _GDIPLUSIMAGEATTRIBUTES_H */ Generated on Fri May 25 2012 04:30:02 for ReactOS by
1.7.6.1
|