mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
RichEdit: Fixed paragraph dialog layout, Draw: ImageEncoder documentation
git-svn-id: svn://ultimatepp.org/upp/trunk@1484 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
771d84beb7
commit
86044a4664
4 changed files with 75 additions and 72 deletions
|
|
@ -10,24 +10,43 @@ topic "";
|
|||
[i448;b42;O9;2 $$8,8#61672508125594000341940100500538:tparam]
|
||||
[b42;2 $$9,9#13035079074754324216151401829390:normal]
|
||||
[{_}%EN-US
|
||||
[ {{10000@(113.42.0) [s0; [*@7;4 Title]]}}&]
|
||||
[s1;@(0.0.255)3%- &]
|
||||
[ {{10000@(113.42.0) [s0; [*@7;4 RasterEncoder]]}}&]
|
||||
[s4;%- &]
|
||||
[s1;:RasterEncoder`:`:class:%- [@(0.0.255)3 class][3 _][*3 RasterEncoder]&]
|
||||
[s2; &]
|
||||
[s2; RasterEncoder serves as consumer of RGBA scanline data. Typical
|
||||
use is as encoder into one of common image file formats, like
|
||||
PNG. RasterEncoder provides an output buffer for client code
|
||||
(producer) to store the output RGBA scanline, when scanline is
|
||||
finished, producer calls WriteLine and RasterEncoder converts
|
||||
the RGBA scanline into specific format, according to [* format]
|
||||
protected member variable, then calls WriteLineRaw virtual method
|
||||
which performs the final processing (e.g. PNGEncoder stores it
|
||||
into PNG output stream).&]
|
||||
[s2; [*/ RGBA optimization: ]There is a specific need to avoid redundant
|
||||
conversions and copies when the target is normal Image (with
|
||||
ImageEncoder). SetLine method can replace the default scanline
|
||||
buffer provided by RasterEncoder; that way it can use a pointer
|
||||
to ImageBuffer data and data are then can be stored directly
|
||||
into ImageBuffer (ImageEncoder calls SetLine in Start and WriteLineRaw
|
||||
methods). WriteLineRaw can then check whether [%-*@3 data] points
|
||||
to suggested buffer (it is not guaranteed, because producer can
|
||||
provide yet another scanline buffer in WriteLine) and in that
|
||||
case, copying into target scanline can be completely skipped.&]
|
||||
[s3;%- &]
|
||||
[ {{10000F(128)G(128)@1 [s0; [* Protected Members List]]}}&]
|
||||
[s4;%- &]
|
||||
[s4;H0;%- &]
|
||||
[s5;:RasterEncoder`:`:format:%- [_^RasterFormat^ RasterFormat]_[* format]&]
|
||||
[s2; &]
|
||||
[s2; Derived encoder should store the required conversion format
|
||||
here in Start method.&]
|
||||
[s3;%- &]
|
||||
[s4;%- &]
|
||||
[s5;:RasterEncoder`:`:SetLine`(RGBA`*`):%- [@(0.0.255) void]_[* SetLine]([_^RGBA^ RGBA]_`*[*@3 `_
|
||||
line])&]
|
||||
[s2; Sets the [%-*@3 `_line].&]
|
||||
[s2; Replaces the default scanline buffer to optimize storing RGBA
|
||||
data to direct targets..&]
|
||||
[s3; &]
|
||||
[ {{10000F(128)G(128)@1 [s0; [* Public Method List]]}}&]
|
||||
[s0; &]
|
||||
[s4; &]
|
||||
[s4;H0; &]
|
||||
[s5;:RasterEncoder`:`:GetPaletteCount`(`):%- [@(0.0.255) virtual] [@(0.0.255) int]_[* GetPa
|
||||
letteCount]()&]
|
||||
[s2; Returns the number of colors in the palette (or zero).&]
|
||||
|
|
@ -44,119 +63,99 @@ ize]_[*@3 sz])_`=_[@3 0]&]
|
|||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:WriteLine`(`):%- [@(0.0.255) void]_[* WriteLine]()&]
|
||||
[s2; &]
|
||||
[s2; Encodes the internal RasterEncoder scanline buffer `- converts
|
||||
it to required format and calls WriteLineRaw.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:WriteLine`(const RGBA`*`):%- [@(0.0.255) void]_[* WriteLine]([@(0.0.255) c
|
||||
onst]_[_^RGBA^ RGBA]_`*[*@3 s])&]
|
||||
[s2; [%-*@3 s].&]
|
||||
[s2; Encodes the scanline [%-*@3 s] `- converts it to required format
|
||||
and calls WriteLineRaw.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:GetFormat`(`)const:%- [@(0.0.255) const]_[_^RasterFormat^ RasterFor
|
||||
mat][@(0.0.255) `&]_[* GetFormat]()_[@(0.0.255) const]&]
|
||||
[s2; &]
|
||||
[s2; Returns current [* format].&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:GetPalette`(`):%- [@(0.0.255) const]_[_^RGBA^ RGBA]_`*[* GetPalette](
|
||||
)&]
|
||||
[s2; &]
|
||||
[s2; Returns current palette.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:GetPaletteCv`(`):%- [@(0.0.255) const]_[_^PaletteCv^ PaletteCv]_`*[* G
|
||||
etPaletteCv]()&]
|
||||
[s2; &]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:operator RGBA`*`(`):%- [@(0.0.255) operator]_RGBA_`*()&]
|
||||
[s2; &]
|
||||
[s2; Returns palette convertor.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:operator RGBA`*`(`):%- [@(0.0.255) operator]_[_^RGBA^ RGBA]_`*()&]
|
||||
[s5;:RasterEncoder`:`:operator`~`(`):%- [_^RGBA^ RGBA]_`*[* operator`~]()&]
|
||||
[s2; &]
|
||||
[s2; Returns the pointer to scanline buffer that is used in parameterless
|
||||
WriteLine.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:GetSize`(`)const:%- [_^Size^ Size]_[* GetSize]()_[@(0.0.255) const]&]
|
||||
[s2; &]
|
||||
[s2; Returns the size.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:GetWidth`(`)const:%- [@(0.0.255) int]_[* GetWidth]()_[@(0.0.255) cons
|
||||
t]&]
|
||||
[s2; &]
|
||||
[s2; Same as GetSize().cx.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:GetHeight`(`)const:%- [@(0.0.255) int]_[* GetHeight]()_[@(0.0.255) co
|
||||
nst]&]
|
||||
[s2; &]
|
||||
[s2; Same as GetSize().cy.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:SetHotSpot`(Point`):%- [@(0.0.255) void]_[* SetHotSpot]([_^Point^ Poi
|
||||
nt]_[*@3 p])&]
|
||||
[s2; [%-*@3 p].&]
|
||||
[s2; Sets hotspot. This is useful for defining screen cursors (.ico
|
||||
or .cur files in Win32). The derived encoder might need the hotspot
|
||||
information (it reads it by calling GetHotSpot in to store it
|
||||
into the output file in Start).&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:GetHotSpot`(`)const:%- [_^Point^ Point]_[* GetHotSpot]()_[@(0.0.255) c
|
||||
onst]&]
|
||||
[s2; &]
|
||||
[s2; Reads hotspot set be SetHotSpot.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:SetDots`(Size`):%- [@(0.0.255) void]_[* SetDots]([_^Size^ Size]_[*@3 `_
|
||||
dots])&]
|
||||
[s2; [%-*@3 `_dots].&]
|
||||
[s2; Sets the physical size of output image, in 1/600 of inch. The
|
||||
derived encoder might read this information in Start and store
|
||||
it into output file, if given format supports any related information.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:GetDots`(`)const:%- [_^Size^ Size]_[* GetDots]()_[@(0.0.255) const]&]
|
||||
[s2; &]
|
||||
[s2; Returns the size set by SetDots.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:SetPalette`(const RGBA`*`):%- [@(0.0.255) void]_[* SetPalette]([@(0.0.255) c
|
||||
onst]_[_^RGBA^ RGBA]_`*[*@3 palette])&]
|
||||
[s2; [%-*@3 palette].&]
|
||||
[s2; Sets the [%-*@3 palette] to be used with raster.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:SetPalette`(Raster`&`):%- [@(0.0.255) void]_[* SetPalette]([_^Raster^ R
|
||||
aster][@(0.0.255) `&]_[*@3 pal`_raster])&]
|
||||
[s2; [%-*@3 pal`_raster].&]
|
||||
[s2; Generates the optimal palette based on colors in [%-*@3 pal`_raster]
|
||||
and sets it for further processing.&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:Create`(Size`):%- [@(0.0.255) void]_[* Create]([_^Size^ Size]_[*@3 sz])
|
||||
&]
|
||||
[s2; [%-*@3 sz].&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:Create`(int`,int`):%- [@(0.0.255) void]_[* Create]([@(0.0.255) int]_[*@3 c
|
||||
x], [@(0.0.255) int]_[*@3 cy])&]
|
||||
[s2; [%-*@3 cx] [%-*@3 cy].&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:Create`(Size`,const RGBA`*`):%- [@(0.0.255) void]_[* Create]([_^Size^ S
|
||||
ize]_[*@3 sz], [@(0.0.255) const]_[_^RGBA^ RGBA]_`*[*@3 palette])&]
|
||||
[s2; [%-*@3 sz] [%-*@3 palette].&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:Create`(int`,int`,const RGBA`*`):%- [@(0.0.255) void]_[* Create]([@(0.0.255) i
|
||||
nt]_[*@3 cx], [@(0.0.255) int]_[*@3 cy], [@(0.0.255) const]_[_^RGBA^ RGBA]_`*[*@3 palette])&]
|
||||
[s2; [%-*@3 cx] [%-*@3 cy] [%-*@3 palette].&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:Create`(Size`,Raster`&`):%- [@(0.0.255) void]_[* Create]([_^Size^ Siz
|
||||
e]_[*@3 sz], [_^Raster^ Raster][@(0.0.255) `&]_[*@3 pal`_raster])&]
|
||||
[s2; [%-*@3 sz] [%-*@3 pal`_raster].&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:Create`(int`,int`,Raster`&`):%- [@(0.0.255) void]_[* Create]([@(0.0.255) i
|
||||
nt]_[*@3 cx], [@(0.0.255) int]_[*@3 cy], [_^Raster^ Raster][@(0.0.255) `&]_[*@3 pal`_raster])
|
||||
&]
|
||||
[s2; [%-*@3 cx] [%-*@3 cy] [%-*@3 pal`_raster].&]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:RasterEncoder`(`):%- [* RasterEncoder]()&]
|
||||
[s2; &]
|
||||
[s3; &]
|
||||
[s4; &]
|
||||
[s5;:RasterEncoder`:`:`~RasterEncoder`(`):%- [@(0.0.255) `~][* RasterEncoder]()&]
|
||||
[s2; &]
|
||||
[s3; &]
|
||||
[s0;%- &]
|
||||
[s0;%- &]
|
||||
[ {{10000F(128)G(128)@1 [s0; [* Constructor detail]]}}&]
|
||||
[s2; Initializes encoder for output of image of specified size, optionally
|
||||
setting the palette.&]
|
||||
[s0; ]
|
||||
|
|
@ -1,8 +1,12 @@
|
|||
TITLE("")
|
||||
COMPRESSED
|
||||
120,156,173,88,107,111,226,70,20,253,43,35,101,19,1,34,104,94,198,54,86,165,180,217,221,68,234,182,141,66,171,253,96,25,219,129,201,198,170,99,179,246,176,219,36,10,191,189,119,252,32,6,12,24,66,20,57,206,204,125,156,115,95,51,178,77,209,135,15,184,139,79,240,142,159,193,71,113,239,207,66,233,216,1,231,134,229,83,205,250,247,247,191,76,75,233,19,208,103,58,97,134,198,8,167,125,120,16,70,168,70,25,39,6,53,185,193,152,129,7,227,208,79,83,199,14,169,97,100,74,180,75,79,168,174,81,162,115,131,27,132,233,6,5,93,138,49,197,58,213,8,103,6,213,6,19,145,142,29,27,131,56,3,31,102,159,153,152,96,172,19,130,25,213,49,211,56,33,140,130,9,170,83,130,181,129,136,38,142,125,221,183,148,2,87,164,180,62,64,239,131,53,206,49,88,87,106,156,17,134,41,211,136,169,245,7,119,226,91,16,213,81,210,118,82,210,241,32,144,226,177,96,228,115,171,115,161,89,4,84,251,221,254,137,14,110,185,6,206,76,197,136,129,26,165,125,
|
||||
205,36,26,7,72,28,211,65,34,190,207,130,68,60,138,72,22,22,2,66,40,177,238,136,110,1,132,249,124,222,35,28,231,145,210,1,11,193,128,155,18,88,3,30,58,209,76,108,106,6,49,48,211,57,213,116,160,62,245,19,255,177,96,114,199,169,85,240,48,186,198,73,159,244,33,162,216,0,252,154,9,6,48,144,128,191,16,72,13,126,153,49,144,133,178,210,83,74,102,215,60,129,32,49,13,235,38,214,185,174,113,96,66,73,159,64,32,177,226,15,105,24,68,113,242,232,135,142,253,226,190,158,126,250,243,252,159,33,178,209,203,11,81,181,114,209,130,180,244,56,237,225,54,178,83,108,33,187,115,161,91,28,253,29,200,80,56,206,235,235,153,99,167,196,186,104,225,30,238,1,168,54,59,61,71,249,218,224,214,79,165,72,62,69,227,120,34,18,111,224,229,117,51,0,1,187,34,143,138,106,98,200,117,236,14,67,75,90,142,50,69,173,204,34,179,114,211,37,180,207,45,66,141,246,85,246,188,32,37,58,116,147,196,82,140,165,152,160,63,196,227,157,72,82,244,37,
|
||||
72,101,9,149,23,70,82,173,6,223,189,138,131,204,0,186,163,124,247,115,182,52,66,213,255,28,23,220,228,178,117,248,182,251,24,10,249,37,136,132,215,186,189,250,237,87,175,227,181,87,226,129,126,196,193,36,243,80,72,58,45,5,6,132,1,4,60,29,215,235,64,14,24,242,220,80,237,182,11,4,32,157,34,249,32,16,178,79,207,43,251,189,28,90,147,192,205,238,194,96,12,81,147,15,241,100,41,104,216,42,120,109,100,117,37,228,141,31,10,41,197,101,60,139,164,215,170,225,21,36,114,6,85,182,180,24,68,121,52,87,244,157,86,73,235,86,200,89,18,229,204,162,153,202,39,138,239,209,56,14,99,72,108,16,101,235,211,92,19,181,226,4,61,139,36,110,87,56,111,3,61,148,126,2,80,135,193,179,104,8,247,45,55,74,53,203,140,210,30,33,245,84,27,16,247,244,217,105,187,222,47,174,13,239,184,172,143,75,63,12,161,34,125,153,1,78,149,182,226,49,77,226,177,72,211,32,250,86,102,13,180,27,162,255,154,192,204,82,5,114,235,255,244,90,227,56,
|
||||
74,37,186,123,146,162,182,166,182,146,169,90,2,78,21,145,204,42,200,184,35,101,121,148,217,95,20,224,196,151,254,102,170,50,70,63,149,93,228,35,197,47,4,214,99,63,82,37,89,82,205,244,149,92,60,147,211,153,220,151,118,109,141,173,81,122,171,164,189,205,231,33,221,217,166,21,87,245,161,171,233,221,116,209,182,139,188,55,77,59,116,74,62,133,20,255,204,201,42,178,138,231,205,35,172,170,224,157,149,61,88,108,182,218,238,186,193,189,194,248,214,207,117,105,218,28,155,202,32,216,55,115,149,17,242,99,187,211,133,216,8,45,94,215,220,195,210,158,0,226,169,72,124,9,51,168,40,153,26,12,165,136,227,42,25,112,121,160,11,111,190,176,94,19,195,55,169,3,98,152,77,195,165,210,90,157,113,168,144,58,78,153,124,13,38,242,97,99,45,87,206,135,76,240,56,62,175,69,240,237,97,115,3,85,156,230,146,71,240,10,199,243,117,44,135,211,24,220,222,196,224,97,251,193,95,200,102,39,76,38,14,165,26,23,184,96,90,76,215,230,199,116,143,249,177,0,
|
||||
178,156,229,85,63,232,170,130,227,24,1,248,24,203,116,227,113,91,33,175,228,234,207,86,207,157,168,189,85,242,197,114,243,8,228,72,118,21,121,142,227,24,204,23,179,176,225,153,50,172,76,193,198,135,74,113,13,90,47,141,98,189,233,173,168,2,55,223,244,206,154,66,45,143,156,242,176,169,57,102,114,64,158,155,228,2,53,96,23,123,13,1,95,38,194,87,96,119,20,86,46,182,249,206,182,122,32,55,190,136,149,254,85,83,119,183,119,246,2,195,250,180,1,151,227,255,156,110,221,32,82,91,79,107,0,65,122,241,250,116,80,172,186,13,171,113,71,228,186,13,207,246,45,37,10,86,14,172,214,181,224,239,77,234,128,84,28,129,241,114,246,222,73,62,207,102,131,102,221,157,201,247,119,240,114,46,15,109,230,183,124,238,67,235,176,92,190,159,243,198,108,238,75,127,121,161,188,227,117,86,62,138,236,121,171,243,230,245,102,171,44,231,78,35,47,184,252,180,129,155,125,140,185,84,189,145,204,198,234,90,60,17,210,15,194,202,55,5,231,127,79,79,48,55,
|
||||
120,156,181,89,251,111,219,70,18,254,87,22,112,19,72,134,162,242,41,82,18,14,240,53,105,157,226,218,94,16,247,144,31,4,90,162,200,149,180,8,69,178,220,165,93,37,72,254,246,155,217,93,62,244,178,104,3,53,2,69,230,238,204,206,55,143,111,102,233,153,69,126,248,193,24,24,87,198,133,159,201,59,186,10,203,68,4,51,230,56,254,52,180,220,233,231,255,252,119,60,69,121,19,228,109,207,180,125,215,54,29,107,4,31,166,109,90,174,101,59,166,111,141,29,223,182,125,99,18,37,33,231,193,44,177,124,95,10,89,3,235,202,242,92,203,244,28,223,241,77,219,243,45,144,181,12,195,50,60,203,53,29,219,183,220,73,76,121,20,204,12,216,110,195,25,227,145,61,54,76,195,240,76,211,176,45,207,176,93,199,52,109,11,84,88,158,101,26,238,132,166,113,48,123,63,154,162,128,131,160,220,17,152,62,2,109,142,99,128,118,20,115,108,211,54,44,219,53,199,238,104,178,164,107,150,158,130,228,94,132,228,25,19,38,232,86,35,10,157,233,245,141,59,53,65,116,
|
||||
52,24,93,121,112,172,227,194,97,99,68,100,131,152,101,141,220,177,233,58,96,146,99,88,147,130,254,85,178,130,110,105,42,180,6,102,154,150,57,93,154,222,20,76,248,254,253,251,208,116,12,229,41,15,108,49,13,176,219,50,225,25,224,240,76,119,108,140,93,223,244,13,219,115,44,215,3,232,121,88,132,91,141,100,233,88,83,141,195,31,248,87,35,115,4,30,53,124,176,223,29,131,2,3,64,192,255,224,72,23,254,217,254,68,104,97,148,67,161,241,96,124,5,78,178,93,195,27,27,158,227,185,14,32,177,204,145,9,142,52,16,63,132,97,146,102,197,54,76,130,217,215,249,183,87,63,255,241,230,127,119,100,70,190,126,53,49,87,110,122,16,150,161,99,13,141,62,153,113,99,74,102,215,55,222,212,33,31,67,46,104,241,115,26,101,49,45,130,224,219,183,215,193,140,59,211,87,111,8,126,49,167,147,189,13,139,201,66,37,205,4,54,204,110,122,198,208,24,2,130,190,77,116,42,217,100,30,204,174,237,3,181,168,202,154,238,63,36,156,22,15,148,147,144,147,40,
|
||||
75,121,185,133,71,217,138,124,188,253,233,223,132,71,97,154,176,148,146,56,20,225,144,252,185,203,89,20,38,164,228,148,48,41,65,181,14,150,138,140,100,176,17,36,163,108,187,205,82,194,182,225,154,146,21,75,224,3,221,33,248,128,36,236,51,37,31,254,184,29,30,152,144,23,217,3,139,209,136,148,100,165,200,75,65,150,229,106,5,43,32,10,144,24,164,2,193,173,164,7,91,227,50,162,69,159,192,137,92,100,5,37,98,67,43,169,61,171,7,228,113,67,211,6,4,152,188,98,41,227,27,26,15,72,165,135,0,160,132,147,79,5,36,236,111,184,43,76,227,3,235,192,45,15,180,16,92,30,180,239,23,137,155,231,52,98,43,22,105,156,3,18,70,81,86,196,44,93,163,141,179,107,253,60,192,51,5,141,4,141,201,150,110,151,160,249,33,44,88,184,76,192,82,129,150,30,152,242,49,124,36,15,172,16,37,184,124,75,197,38,139,1,16,139,54,36,167,5,170,84,6,1,36,88,7,213,17,229,28,207,236,209,225,122,136,94,174,3,140,94,226,132,9,101,46,172,
|
||||
84,238,226,162,160,225,182,63,212,121,49,187,254,81,225,203,114,193,182,236,75,40,88,150,78,72,240,231,134,22,42,226,13,214,148,2,12,208,22,62,100,44,38,5,141,203,52,14,101,148,208,89,28,4,185,116,101,148,229,12,14,151,145,64,115,69,88,172,169,64,101,170,72,200,175,50,79,122,143,76,108,212,119,109,118,127,72,238,168,144,33,209,224,193,233,112,80,158,132,145,138,121,172,88,183,137,134,206,25,157,77,49,89,238,246,35,57,5,177,80,144,199,112,135,206,64,117,152,201,33,201,51,112,12,8,2,28,105,193,79,74,15,38,189,196,160,190,168,76,75,165,220,146,42,175,194,26,48,85,36,146,157,242,109,91,188,215,70,163,99,91,33,98,41,185,3,79,8,169,126,47,224,10,43,7,244,123,143,241,80,117,250,134,70,159,209,157,240,91,65,102,175,222,92,223,216,210,192,64,193,224,178,46,202,245,154,114,76,52,237,146,30,211,46,23,100,93,2,161,1,92,44,130,37,141,66,116,65,171,24,210,202,125,100,71,209,188,76,158,115,232,98,176,191,54,175,
|
||||
47,65,176,84,57,55,10,57,164,51,68,125,135,185,40,157,162,67,94,235,208,14,4,158,200,19,42,40,248,142,127,102,121,78,99,153,135,182,230,188,138,48,127,233,153,150,223,191,149,159,55,102,197,153,228,67,93,75,191,203,90,226,228,55,198,69,67,156,239,141,138,59,221,19,220,169,42,82,146,231,252,94,173,254,34,31,221,147,246,111,193,188,169,94,93,35,239,104,193,30,224,212,138,249,248,38,43,147,184,197,68,186,123,197,173,74,208,42,136,42,163,42,244,42,210,123,152,27,194,63,101,180,78,158,69,15,107,116,113,189,232,31,144,63,193,82,148,38,235,157,65,15,209,193,230,123,89,214,193,124,113,61,195,116,89,204,49,14,65,191,106,7,170,166,248,147,69,133,252,174,88,65,165,62,70,87,114,133,44,14,88,85,133,160,131,205,135,26,87,151,72,150,203,4,8,229,119,85,228,71,81,60,235,142,91,42,62,132,144,64,130,190,205,202,84,44,122,39,28,162,216,51,216,123,8,57,41,157,116,32,31,244,26,127,136,178,72,149,59,210,82,18,181,108,107,73,
|
||||
6,89,198,20,141,229,74,146,244,160,63,125,161,69,214,111,225,5,187,207,199,16,67,191,232,221,129,27,59,154,219,4,21,69,101,72,81,250,158,224,39,46,64,64,249,151,160,63,95,252,107,62,131,239,70,149,169,111,129,113,32,13,33,239,208,96,46,115,14,112,180,58,133,102,15,144,238,104,125,155,146,22,61,28,23,160,81,239,4,61,153,140,79,130,105,107,2,76,173,45,82,43,236,153,223,163,230,123,169,191,206,92,73,116,103,161,66,22,62,162,94,236,83,128,15,38,143,58,139,247,136,18,115,89,54,192,231,194,62,153,99,71,144,154,76,82,58,84,38,201,22,131,173,250,96,250,58,168,179,197,155,102,222,0,210,6,83,107,66,209,44,34,187,234,209,164,240,124,40,42,124,23,185,164,5,235,116,152,78,16,12,15,78,121,224,48,24,60,248,167,209,66,137,43,34,199,192,73,139,15,97,182,96,156,239,2,109,129,197,235,138,60,244,98,175,63,63,86,120,192,36,81,89,20,56,194,54,221,164,59,0,205,81,167,82,239,124,12,90,228,118,204,107,149,53,154,
|
||||
195,158,109,202,219,135,167,141,169,183,221,147,250,235,145,89,240,232,200,176,138,84,117,74,100,69,71,211,50,24,136,67,216,94,37,243,9,235,170,45,39,188,165,204,120,74,239,226,123,173,242,132,171,155,93,167,91,72,107,186,60,106,170,56,49,193,92,6,51,152,156,160,228,93,19,70,162,34,1,134,110,18,190,123,132,100,95,217,203,245,195,110,65,244,174,78,121,43,171,22,54,119,55,224,19,139,197,230,108,181,181,90,175,220,248,164,17,119,224,10,188,99,106,131,123,253,97,244,119,119,67,222,83,182,222,156,175,251,150,37,106,231,115,77,217,117,109,248,112,64,38,238,242,12,108,249,128,153,240,244,216,166,247,202,54,47,183,67,13,101,218,88,160,204,188,38,86,216,203,201,38,19,28,118,195,205,124,3,89,164,18,105,85,38,242,214,12,131,28,92,118,161,203,243,168,160,120,113,40,11,142,3,76,111,200,34,232,127,5,25,194,19,121,63,151,67,205,39,150,218,86,31,53,225,12,184,63,227,110,209,65,250,198,7,203,250,84,144,82,100,134,19,46,94,48,224,
|
||||
46,25,75,26,135,123,23,82,54,30,126,91,67,146,147,83,117,101,175,238,162,173,171,187,124,83,80,13,199,93,199,169,219,150,119,247,179,254,208,121,45,75,46,164,62,130,168,32,114,184,183,192,85,165,9,76,247,168,191,3,21,103,7,189,86,196,113,223,233,169,110,49,143,113,109,47,226,146,80,54,59,46,223,195,96,105,226,72,167,61,40,223,184,12,208,135,230,143,35,195,192,21,150,70,155,167,98,138,33,3,157,152,60,173,96,238,221,78,247,3,214,10,22,156,180,34,107,80,90,223,111,120,153,231,25,182,242,48,221,129,234,36,20,146,214,106,197,221,131,170,156,119,137,199,148,235,158,193,99,42,158,187,202,237,221,131,89,55,225,142,67,211,93,171,253,118,158,154,116,251,59,14,184,158,151,170,117,44,35,72,74,217,52,228,107,147,66,90,252,2,52,106,113,241,186,43,146,106,74,170,230,163,19,147,145,178,115,49,87,54,213,88,110,105,138,93,82,79,130,242,38,137,111,173,116,195,95,134,136,5,50,175,185,100,53,152,107,93,42,29,169,26,21,145,226,86,
|
||||
101,33,223,78,52,87,154,142,62,120,11,121,143,248,47,84,167,218,118,254,202,117,73,61,178,253,224,105,202,175,143,56,238,77,112,72,244,119,48,56,213,182,112,105,119,249,124,9,111,208,49,101,47,128,29,116,156,60,15,243,184,147,127,158,109,227,11,188,245,79,0,80,14,238,80,69,151,157,251,194,210,234,230,222,231,88,248,50,215,190,156,25,126,77,153,96,97,2,254,104,254,156,128,197,173,59,13,54,49,249,134,24,190,232,151,207,64,21,72,230,3,73,35,25,92,169,241,13,34,4,76,190,112,111,222,205,72,46,48,166,36,248,63,189,104,243,120,
|
||||
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
TOPIC("PaintRect$en-us")
|
||||
#include "PaintRect$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("FontTextUtils$en-us")
|
||||
#include "FontTextUtils$en-us.tppi"
|
||||
TOPIC("Rasters$en-us")
|
||||
#include "Rasters$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("Raster$en-us")
|
||||
#include "Raster$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("Rasters$en-us")
|
||||
#include "Rasters$en-us.tppi"
|
||||
TOPIC("FontTextUtils$en-us")
|
||||
#include "FontTextUtils$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("PaintRect$en-us")
|
||||
#include "PaintRect$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("RasterEncoder$en-us")
|
||||
|
|
|
|||
|
|
@ -82,10 +82,10 @@ LAYOUT(ObjectSizeLayout, 290, 102)
|
|||
ITEM(Button, cancel, SetLabel(t_("Cancel")).RightPosZ(4, 64).BottomPosZ(4, 24))
|
||||
END_LAYOUT
|
||||
|
||||
LAYOUT(ParaFormatLayout, 488, 368)
|
||||
UNTYPED(para, LeftPosZ(0, 488).TopPosZ(0, 328))
|
||||
ITEM(Button, ok, SetLabel(t_("OK")).LeftPosZ(348, 64).TopPosZ(336, 24))
|
||||
ITEM(Button, cancel, SetLabel(t_("Cancel")).LeftPosZ(416, 64).TopPosZ(336, 24))
|
||||
LAYOUT(ParaFormatLayout, 488, 396)
|
||||
UNTYPED(para, LeftPosZ(0, 488).TopPosZ(0, 352))
|
||||
ITEM(Button, ok, SetLabel(t_("OK")).LeftPosZ(348, 64).TopPosZ(364, 24))
|
||||
ITEM(Button, cancel, SetLabel(t_("Cancel")).LeftPosZ(416, 64).TopPosZ(364, 24))
|
||||
END_LAYOUT
|
||||
|
||||
LAYOUT(StylesLayout, 700, 496)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue