Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygengdiplusstringformat.h
Go to the documentation of this file.
00001 /* 00002 * GdiPlusStringFormat.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 _GDIPLUSSTRINGFORMAT_H 00020 #define _GDIPLUSSTRINGFORMAT_H 00021 00022 class StringFormat : public GdiplusBase 00023 { 00024 public: 00025 StringFormat(INT formatFlags, LANGID language) 00026 { 00027 } 00028 00029 StringFormat(const StringFormat *format) 00030 { 00031 } 00032 00033 StringFormat *Clone(VOID) 00034 { 00035 return NULL; 00036 } 00037 00038 static const StringFormat *GenericDefault(VOID) 00039 { 00040 return NULL; 00041 } 00042 00043 static const StringFormat *GenericTypographic(VOID) 00044 { 00045 return NULL; 00046 } 00047 00048 StringAlignment GetAlignment(VOID) const 00049 { 00050 return StringAlignmentNear; 00051 } 00052 00053 LANGID GetDigitSubstitutionLanguage(VOID) const 00054 { 00055 return 0; 00056 } 00057 00058 StringDigitSubstitute GetDigitSubstitutionMethod(VOID) const 00059 { 00060 return StringDigitSubstituteNone; 00061 } 00062 00063 INT GetFormatFlags(VOID) const 00064 { 00065 return 0; 00066 } 00067 00068 HotkeyPrefix GetHotkeyPrefix(VOID) const 00069 { 00070 return HotkeyPrefixNone; 00071 } 00072 00073 Status GetLastStatus(VOID) const 00074 { 00075 return NotImplemented; 00076 } 00077 00078 StringAlignment GetLineAlignment(VOID) const 00079 { 00080 return StringAlignmentNear; 00081 } 00082 00083 INT GetMeasurableCharacterRangeCount(VOID) const 00084 { 00085 return 0; 00086 } 00087 00088 INT GetTabStopCount(VOID) const 00089 { 00090 return 0; 00091 } 00092 00093 Status GetTabStops(INT count, REAL *firstTabOffset, REAL *tabStops) const 00094 { 00095 return NotImplemented; 00096 } 00097 00098 StringTrimming GetTrimming(VOID) const 00099 { 00100 return StringTrimmingNone; 00101 } 00102 00103 Status SetAlignment(StringAlignment align) 00104 { 00105 return NotImplemented; 00106 } 00107 00108 Status SetDigitSubstitution(LANGID language, StringDigitSubstitute substitute) 00109 { 00110 return NotImplemented; 00111 } 00112 00113 Status SetFormatFlags(INT flags) 00114 { 00115 return NotImplemented; 00116 } 00117 00118 Status SetHotkeyPrefix(HotkeyPrefix hotkeyPrefix) 00119 { 00120 return NotImplemented; 00121 } 00122 00123 Status SetLineAlignment(StringAlignment align) 00124 { 00125 return NotImplemented; 00126 } 00127 00128 Status SetMeasurableCharacterRanges(INT rangeCount, const CharacterRange *ranges) 00129 { 00130 return NotImplemented; 00131 } 00132 00133 Status SetTabStops(REAL firstTabOffset, INT count, const REAL *tabStops) 00134 { 00135 return NotImplemented; 00136 } 00137 00138 Status SetTrimming(StringTrimming trimming) 00139 { 00140 return NotImplemented; 00141 } 00142 }; 00143 00144 #endif /* _GDIPLUSSTRINGFORMAT_H */ Generated on Fri May 25 2012 04:30:05 for ReactOS by
1.7.6.1
|