home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
odtlktv4.zip
/
ODTLKT
/
TOOLKIT
/
BETA
/
SAMPLES
/
OPENDOC
/
PARTS
/
CNTNRPRT
/
CNNOTEBK.IDL
< prev
next >
Wrap
Text File
|
1995-03-16
|
2KB
|
86 lines
#ifdef __PRIVATE__
//#
//# File: cnNotebk.idl
//#
//# Contains: IDL description of ODSettingsExtension Extension for
//# the container part
//# Written by: Joe Ochipinti
//#
//# Copyright: (c) 1994 by IBM Corp., all rights reserved.
//#
//# Change History (most recent first):
//#
//# <1> 7/6/94 jso first checked in
//#
//# To Do:
//#
#else
//# Copyright: (c) 1993-1994 by IBM Corp., all rights reserved.
#endif
#ifndef _CNNOTEBK_
#define _CNNOTEBK_
#ifndef _SETTINGS_
#include "Settings.idl"
#endif
//==============================================================================
// Theory of Operation
//==============================================================================
/*
CNNotebk is implemented as a subclass of ODNotebk. The AddNotebookPages
method is overridden to allow the part to add only the background page. The
InsertBackgroundPage is added to provide the new page.
*/
//==============================================================================
// Classes defined in this interface
//==============================================================================
interface CNNotebook;
//=====================================================================================
// Implementation Types
//=====================================================================================
//==============================================================================
// Classes used by this interface
//==============================================================================
//==============================================================================
// ODExtension
//==============================================================================
interface CNNotebook : ODSettingsExtension
{
ODULong InsertBackgroundPage(in HWND hwndNotebook);
#ifdef __SOMIDL__
implementation
{
functionprefix = CNNotebook;
override:
AddNotebookPages,
somInit,
somUninit;
releaseorder:
InsertBackgroundPage;
#ifdef __PRIVATE__
HMODULE hmodHandle;
#endif
};
#endif
};
#endif // CNNOTEBK