Jump to content

WpAddClockDateTimePage: Difference between revisions

From EDM2
Ak120 (talk | contribs)
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
==Description==
[[image:wpAddClockDateTimePage.png|thumb]]
This instance method is called to allow the object to add the Date/Time page to its Settings notebook.  
This instance method is called to allow the object to add the Date/Time page to its Settings notebook.  


Line 13: Line 13:
rc = _wpAddClockDateTimePage(somSelf, hwndNotebook);
rc = _wpAddClockDateTimePage(somSelf, hwndNotebook);
</PRE>
</PRE>
==Parameters==
==Parameters==
; somSelf (WPClock *) - input : Pointer to the object on which the method is being invoked.
;somSelf (WPClock *) - input : Pointer to the object on which the method is being invoked.
 
:Points to an object of class [[WPClock]].  
Points to an object of class WPClock.  
;hwndNotebook (HWND) - input : Settings notebook handle.
 
; hwndNotebook (HWND) - input : Settings notebook handle.
 


==Return Code==
==Return Code==
Line 28: Line 26:


; PageId : Identifier for the inserted page.
; PageId : Identifier for the inserted page.


==How to Override==
==How to Override==
Line 37: Line 34:


==Example Code==
==Example Code==
This example overrides the method to eliminate this page from the object's Settings notebook.  
This example overrides the method to eliminate this page from the object's Settings notebook.
 
<PRE>
<PRE>
SOM_Scope ULONG  SOMLINK MyObj_wpAddClockDateTimePage(MyObj *somSelf,
SOM_Scope ULONG  SOMLINK MyObj_wpAddClockDateTimePage(MyObj *somSelf,

Revision as of 01:43, 19 January 2017

This instance method is called to allow the object to add the Date/Time page to its Settings notebook.

Syntax

#define INCL_WINWORKPLACE
#include <os2.h>

WPClock     *somSelf;       /*  Pointer to the object on which the method is being invoked. */
HWND         hwndNotebook;  /*  Settings notebook handle. */
ULONG        rc;            /*  Page identifier. */

rc = _wpAddClockDateTimePage(somSelf, hwndNotebook);

Parameters

somSelf (WPClock *) - input
Pointer to the object on which the method is being invoked.
Points to an object of class WPClock.
hwndNotebook (HWND) - input
Settings notebook handle.

Return Code

rc (ULONG) - returns

  • Page identifier.
  • Error occurred
PageId
Identifier for the inserted page.

How to Override

This method should always be overridden in order to replace or remove the Date/Time page from the object's Settings notebook. To remove the page from the Settings notebook, the override method should return SETTINGS_PAGE_REMOVED without calling the parent method. To replace the page with another page, the override method should call the wpInsertSettingsPage method without calling the parent method.

Usage

This method must be called only from within an override of the wpAddSettingsPages method.

Example Code

This example overrides the method to eliminate this page from the object's Settings notebook.

SOM_Scope ULONG   SOMLINK MyObj_wpAddClockDateTimePage(MyObj *somSelf,
                HWND hwndNotebook)

{
    /* MyObjData *somThis = MyObjGetData(somSelf); */
    MyObjMethodDebug("MyObj","MyObj_wpAddClockDateTimePage");

/*  return (parent_wpAddClockDateTimePage(somSelf,hwndNotebook)); */
    return ( SETTINGS_PAGE_REMOVED );
}

Related Methods

  • wpAddSettingsPages
  • wpInsertSettingsPage