/* * xwpadmin.idl: * SOM interface description file for the following * XWorkplace classes (in this order): * XWPAdmin * and the respective metaclasses. * * See src\classes\xwpadmin.c for details. * * Copyright (C) 2001-2002 Ulrich M”ller. * This file is part of the XWorkplace source package. * XWorkplace is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, in version 2 as it comes in the * "COPYING" file of the XWorkplace main distribution. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include // this is SOM for WPAbstract /* CLASS: XWPAdmin CLASS HIERARCHY: SOMObject ÀÄÄ WPObject ÀÄÄ WPAbstract ÀÄÄ XWPAdmin */ interface M_XWPAdmin; // forward reference to metaclass interface XWPAdmin : WPAbstract { /* * New instance methods for XWPAdmin: * */ ULONG xwpAddXWPAdminPages(in HWND hwndDlg); #ifdef __SOMIDL__ implementation { releaseorder: xwpAddXWPAdminPages; /* * Class Modifiers: * */ externalprefix = adm_; externalstem = adm; majorversion = 1; minorversion = 1; filestem = xwpadmin; //# specifies the filestem for sc-generated files metaclass = M_XWPAdmin; dllname = "xfldr.dll"; callstyle = oidl; //# forget CORBA stuff (*ev and such) /* * Internal instance variables for XWPAdmin: * */ /* * WPAbstract methods overridden by XWPAdmin: * */ wpFilterPopupMenu: override; //# wpQueryDefaultHelp: override; replaced with class method V0.9.20 (2002-07-12) [umoeller] wpQueryDefaultView: override; wpAddObjectWindowPage: override; wpAddSettingsPages: override; }; // implementation #endif /* __SOMIDL__ */ }; //# //# //# Now define Metaclass. //# --------------------- //# interface M_XWPAdmin : M_WPAbstract { #ifdef __SOMIDL__ implementation { /* * Class Modifiers: * */ externalprefix = admM_; externalstem = admM; functionprefix = admM_; majorversion = 1; minorversion = 1; filestem = xwpadmin; //# specifies the filestem for sc-generated files dllname = "xfldr.dll"; callstyle = oidl; /* * Internal class variables: * */ /* * M_WPAbstract methods overridden by M_XWPAdmin: * */ wpclsInitData: override; wpclsQueryStyle: override; wpclsQueryTitle: override; wpclsQueryDefaultHelp: override; wpclsQueryIconData: override; wpclsQuerySettingsPageSize: override; }; #endif /* __SOMIDL__ */ };