Main public logs
Appearance
Combined display of all available logs of EDM2. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:52, 14 May 2025 Martini talk contribs created page GPIGuide - Line and Arc Primitives (Created page with "{{DISPLAYTITLE:Line and Arc Primitives}} Line and arc primitives are graphics building blocks for creating pictures that consist of objects such as polygons, circles, fillets, ellipses, and other geometric figures. ==Related Topics== * Presentation spaces and device contexts * Color and mix attributes * Area primitives ==About Line and Arc Primitives== Simple drawing applications use line and arc primitives as drawing tools. They are useful, for example, in spreadshee...")
- 03:23, 14 May 2025 Martini talk contribs created page Category:Ddf (Created page with "Category:OS/2 API")
- 03:22, 14 May 2025 Martini talk contribs created page DdfText (Created page with "{{DISPLAYTITLE:DdfText}} This function adds text to the DDF buffer. ==Syntax== DdfText(hddf, pszText) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;pszText (PCSZ) - input :Pointer to the text buffer to be formatted. ;rc (BOOL) - returns :Success indicator. ==Returns== ;rc (BOOL) - returns :Success indicator. :TRUE Successful completion :FALSE Error occurred ==Remarks== There is a 3-byte ESC code overhead in the DD...")
- 03:21, 14 May 2025 Martini talk contribs created page DdfSetTextAlign (Created page with "{{DISPLAYTITLE:DdfSetTextAlign}} This function defines whether left, center, or right text justification is to be used when text formatting is off. ==Syntax== DdfSetTextAlign(hddf, fAlign) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;fAlign (ULONG) - input :Justification flag. Only the following constants may be used: :* TA_LEFT - Left-justify text :* TA_RIGHT - Right-justify text :* TA_CENTER - Center text ;rc (BOOL)...")
- 03:19, 14 May 2025 Martini talk contribs created page DdfSetFormat (Created page with "{{DISPLAYTITLE:DdfSetFormat}} This function is used to turn formatting off or on, corresponding to the `:lines.` tag. ==Syntax== DdfSetFormat(hddf, fFormatType) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;fFormatType (ULONG) - input :Formatting-activation flag. Only the following constants may be used: :* TRUE - Turn formatting on :* FALSE - Turn formatting off ;rc (BOOL) - returns :Success indicator. ==Returns== ;rc...")
- 03:18, 14 May 2025 Martini talk contribs created page DdfSetFontStyle (Created page with "{{DISPLAYTITLE:DdfSetFontStyle}} This function specifies a text font style in the DDF buffer. ==Syntax== DdfSetFontStyle(hddf, fFontStyle) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;fFontStyle (ULONG) - input :Font style flag. A NULL value for this parameter will set the font style back to the default. Any of the following values can be specified: :* FM_SEL_ITALIC :* FM_SEL_BOLD :* FM_SEL_UNDERSCORE :These values can be O...")
- 03:16, 14 May 2025 Martini talk contribs created page DdfSetFont (Created page with "{{DISPLAYTITLE:DdfSetFont}} This function specifies a text font in the DDF buffer. ==Syntax== DdfSetFont(hddf, pszFaceName, ulWidth, ulHeight) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;pszFaceName (PCSZ) - input :Pointer to font name. This parameter can be specified in two ways: :* An ASCIIZ string specifying the font name. :* NULL or "default" to specify the default font. ;ulWidth (ULONG) - input :Font width in point...")
- 03:14, 14 May 2025 Martini talk contribs created page DdfSetColor (Created page with "{{DISPLAYTITLE:DdfSetColor}} This function sets the background and foreground colors of the displayed text. ==Syntax== DdfSetColor(hddf, fBackColor, fForColor) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;fBackColor (COLOR) - input :Specifies the desired background color. ;fForColor (COLOR) - input :Specifies the desired foreground color. The following color value constants may be used for the foreground and background...")
- 03:12, 14 May 2025 Martini talk contribs created page DdfPara (Created page with "{{DISPLAYTITLE:DdfPara}} This function creates a paragraph within the DDF buffer, corresponding to the `:p.` tag. ==Syntax== DdfPara(hddf) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;rc (BOOL) - returns :Success indicator. ==Returns== ;rc (BOOL) - returns :Success indicator. :TRUE Successful completion :FALSE Error occurred ==Remarks== There is a 1-byte ESC code overhead in the DDF internal buffer for this function....")
- 03:11, 14 May 2025 Martini talk contribs created page DdfMetafile (Created page with "{{DISPLAYTITLE:DdfMetafile}} This function places a reference to a metafile into the DDF buffer. ==Syntax== DdfMetafile(hddf, hmf, prclRect) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;hmf (HMF) - input :The handle of the metafile to display. ;prclRect (PRECTL) - input :Size of the rectangle. If not NULL, contains the size of the rectangle in which the metafile will be displayed. The aspect ratio of the metafile is ad...")
- 03:08, 14 May 2025 Martini talk contribs created page DdfListItem (Created page with "{{DISPLAYTITLE:DdfListItem}} This function inserts a definition list entry in the DDF buffer, corresponding to a combination of the `:dt.` (definition term) and `:dd.` (definition define) tags. ==Syntax== DdfListItem(hddf, pszTerm, pszDescription) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;pszTerm (PCSZ) - input :Term portion of the definition list entry. ;pszDescription (PCSZ) - input :Description portion of the de...")
- 05:23, 11 May 2025 Martini talk contribs created page DdfInitialize (Created page with "{{DISPLAYTITLE:DdfInitialize}} This function initializes the IPF internal structures for dynamic data formatting and returns a DDF handle. The application uses this handle to refer to a particular DDF panel. ==Syntax== DdfInitialize(hwndHelpInstance, cbBuffer, ulIncrement) ==Parameters== ;hwndHelpInstance (HWND) - input :Handle of a help instance. ;cbBuffer (ULONG) - input :Initial length of internal buffer where DDF information is to be stored. If this field...")
- 05:23, 11 May 2025 Martini talk contribs created page DdfInform (Created page with "{{DISPLAYTITLE:DdfInform}} This function defines a hypertext inform link, which sends an HM_INFORM message to the application with a ''res='' attribute. It also corresponds to the link tag with reftype=inform. ==Syntax== DdfInform(hddf, pszText, resInformNumber) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;pszText (PCSZ) - input :Hypertext phrase. ;resInformNumber (ULONG) - input :Res number associated with this hypert...")
- 05:22, 11 May 2025 Martini talk contribs created page DdfHyperText (Created page with "{{DISPLAYTITLE:DdfHyperText}} This function defines a hypertext link to another panel, which is equal to a link of reftype=hd. Links to footnotes, launch links and links to external databases are not supported. ==Syntax== DdfHyperText(hddf, pszText, pszReference, fReferenceType) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;pszText (PCSZ) - input :Hypertext phrase. ;pszReference (PCSZ) - input :Pointer to a string conta...")
- 05:14, 11 May 2025 Martini talk contribs created page DdfEndList (Created page with "{{DISPLAYTITLE:DdfEndList}} This function terminates the definition list initialized by DdfBeginList. ==Syntax== DdfEndList(hddf) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ==Returns== ;rc (BOOL) - returns :Success indicator. :TRUE indicates successful completion. :FALSE indicates an error occurred. ==Errors== Possible returns from WinGetLastError: * HMERR_DDF_LIST_UNINITIALIZED (0x3008): No definition list has bee...")
- 05:13, 11 May 2025 Martini talk contribs created page DdfBitmap (Created page with "{{DISPLAYTITLE:DdfBitmap}} This function places a reference to a bitmap in the DDF buffer. ==Syntax== DdfBitmap(hddf, hbm, fAlign) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;hbm (HBITMAP) - input :Standard Presentation Manager bitmap handle. ;fAlign (ULONG) - input :Text justification flag. :Any of the following values can be specified: :* ART_LEFT: Left-justify the bitmap. :* ART_RIGHT: Right-justify the bitmap....")
- 05:11, 11 May 2025 Martini talk contribs created page DdfBeginList (Created page with "{{DISPLAYTITLE:DdfBeginList}} This function begins a definition list in the DDF buffer; it corresponds to the :dl. (definition list) tag. ==Syntax== DdfBeginList(hddf, ulWidthDT, fBreakType, fSpacing) ==Parameters== ;hddf (HDDF) - input :Handle to DDF returned by DdfInitialize. ;ulWidthDT (ULONG) - input :Width of the definition term. ;fBreakType (ULONG) - input :Type of line break to use. :The following constants may be specified: :* HMBT_ALL: Star...")
- 04:59, 11 May 2025 Martini talk contribs created page WpclsAddClipboardAssoc (Created page with "{{DISPLAYTITLE:wpclsAddClipboardAssoc}} This class method adds an association between a clipboard format and a particular class name. ==Syntax== _wpclsAddClipboardAssoc(somSelf, aCBFormat, pszClassName) ==Parameters== ;somSelf (M_WPDataFile *) - input :Pointer to the WPDataFile class object. ;aCBFormat (ULONG) - input :Atom referring to the clipboard format. ;pszClassName (PSZ) - input :String containing the name of the class to associate the clipboard format with....")
- 04:53, 11 May 2025 Martini talk contribs created page WpAddCountryTimePage (Created page with "{{DISPLAYTITLE:wpAddCountryTimePage}} This method is specific to version 4, or higher, of the OS/2 operating system. This instance method is called to allow the object to add the Time page to its Settings notebook. ==Syntax== _wpAddCountryTimePage(somSelf, hwndNotebook) ==Parameters== ;somSelf (WPCountry *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPCountry. ;hwndNotebook (HWND) - input :Settings not...")
- 04:51, 11 May 2025 Martini talk contribs created page WpAddCountryPage (Created page with "{{DISPLAYTITLE:wpAddCountryPage}} This method is specific to version 4, or higher, of the OS/2 operating system. This instance method is called to allow the object to add the Country page to its Settings notebook. ==Syntax== _wpAddCountryPage(somSelf, hwndNotebook) ==Parameters== ;somSelf (WPCountry *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPCountry. ;hwndNotebook (HWND) - input :Settings notebook...")
- 04:49, 11 May 2025 Martini talk contribs created page WpAddCountryNumbersPage (Created page with "{{DISPLAYTITLE:wpAddCountryNumbersPage}} This method is specific to version 4, or higher, of the OS/2 operating system. This instance method is called to allow the object to add the Numbers page to its Settings notebook. ==Syntax== _wpAddCountryNumbersPage(somSelf, hwndNotebook) ==Parameters== ;somSelf (WPCountry *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPCountry. ;hwndNotebook (HWND) - input :Set...")
- 04:48, 11 May 2025 Martini talk contribs created page WpAddCountryDatePage (Created page with "{{DISPLAYTITLE:wpAddCountryDatePage}} This method is specific to version 4, or higher, of the OS/2 operating system. This instance method is called to allow the object to add the Date page to its Settings notebook. ==Syntax== _wpAddCountryDatePage(somSelf, hwndNotebook) ==Parameters== ;somSelf (WPCountry *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPCountry. ;hwndNotebook (HWND) - input :Settings not...")
- 04:43, 11 May 2025 Martini talk contribs created page WpAddBecomePage (Created page with "{{DISPLAYTITLE:wpAddBecomePage}} This method is specific to version 4, or higher, of the OS/2 operating system. This instance method adds the standard type page to the Settings notebook. ==Syntax== _wpAddBecomePage(somSelf, hwndNotebook) ==Parameters== ;somSelf (WPDataFile *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPDataFile. ;hwndNotebook (HWND) - input :Settings notebook handle. ==Returns== ;rc...")
- 04:41, 11 May 2025 Martini talk contribs created page WpAddDMQSDisplayTypePage (Created page with "{{DISPLAYTITLE:wpAddDMQSDisplayTypePage}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method is called to add the DMQS Display Type page to the Settings notebook. ==Syntax== _wpAddDMQSDisplayTypePage(somSelf, hwndNotebook) ==Parameters== ;somSelf (WPSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPSystem. ;hwndNotebook (HWND) - input :Window handle...")
- 04:29, 11 May 2025 Martini talk contribs created page WpAddDDEPage (Created page with " This method is specific to version 3, or higher, of the OS/2 operating system. This instance method is called to add the DDE Details page to the Settings notebook. ==Syntax== _wpAddDDEPage(somSelf, hwndNotebook) ==Parameters== ;somSelf (WPWinConfig *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPWinConfig. ;hwndNotebook (HWND) - input:Handle to the Settings notebook. ==Returns== ;ulPageid (ULONG) - returns:...")
- 04:10, 11 May 2025 Martini talk contribs created page Intel 80486 (Created page with "Some of the most recent PS/2 machines use the latest Intel microprocessor, the 80486. The 80486 offers more processing power and also some functional extensions over the 80386. The 80486 microprocessor subsystem has the following characteristics: * 32-bit addressing * 32-bit data interface * Extensive instruction set, including string I/O * Hardware fixed-point multiply and divide * Three operating modes: **Real address mode **Protected virtual address mode **Virtual 808...")
- 04:02, 11 May 2025 Martini talk contribs created page File:GPIFonts 27.png
- 04:02, 11 May 2025 Martini talk contribs uploaded File:GPIFonts 27.png
- 04:01, 11 May 2025 Martini talk contribs created page File:GPIFonts 26.png
- 04:01, 11 May 2025 Martini talk contribs uploaded File:GPIFonts 26.png
- 04:01, 11 May 2025 Martini talk contribs created page File:GPIFonts 25.png
- 04:01, 11 May 2025 Martini talk contribs uploaded File:GPIFonts 25.png
- 04:01, 11 May 2025 Martini talk contribs created page File:GPIFonts 24.png
- 04:01, 11 May 2025 Martini talk contribs uploaded File:GPIFonts 24.png
- 04:00, 11 May 2025 Martini talk contribs created page File:GPIFonts 23.png
- 04:00, 11 May 2025 Martini talk contribs uploaded File:GPIFonts 23.png
- 17:15, 10 May 2025 Martini talk contribs moved page File:Img28.png to File:GPICharStrPr 28.png without leaving a redirect
- 17:14, 10 May 2025 Martini talk contribs moved page File:Img27.png to File:GPICharStrPr 27.png without leaving a redirect
- 17:14, 10 May 2025 Martini talk contribs moved page File:Img26.png to File:GPICharStrPr 26.png without leaving a redirect
- 17:14, 10 May 2025 Martini talk contribs moved page File:Img25.png to File:GPICharStrPr 25.png without leaving a redirect
- 17:14, 10 May 2025 Martini talk contribs moved page File:Img24.png to File:GPICharStrPr 24.png
- 17:14, 10 May 2025 Martini talk contribs moved page File:Img23.png to File:GPICharStrPr 23.png without leaving a redirect
- 17:13, 10 May 2025 Martini talk contribs moved page File:Img22.png to File:GPICharStrPr 22.png without leaving a redirect
- 17:13, 10 May 2025 Martini talk contribs moved page File:Img21.png to File:GPICharStrPr 21.png without leaving a redirect
- 17:13, 10 May 2025 Martini talk contribs moved page File:Img20.png to File:GPICharStrPr 20.png without leaving a redirect
- 17:13, 10 May 2025 Martini talk contribs moved page File:Img19.png to File:GPICharStrPr 19.png
- 17:12, 10 May 2025 Martini talk contribs moved page File:Img18.png to File:GPICharStrPr 18.png without leaving a redirect
- 17:11, 10 May 2025 Martini talk contribs moved page File:Img17.png to File:GPICharStrPr 17.png
- 17:11, 10 May 2025 Martini talk contribs created page File:GPICharStrPr 33.png
- 17:11, 10 May 2025 Martini talk contribs uploaded File:GPICharStrPr 33.png