home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwplascr.zip / XWPL0208.ZIP / idl / xwpadmin.idl < prev    next >
Text File  |  2002-07-15  |  3KB  |  139 lines

  1.  
  2. /*
  3.  * xwpadmin.idl:
  4.  *      SOM interface description file for the following
  5.  *      XWorkplace classes (in this order):
  6.  *          XWPAdmin
  7.  *      and the respective metaclasses.
  8.  *
  9.  *      See src\classes\xwpadmin.c for details.
  10.  *
  11.  *      Copyright (C) 2001-2002 Ulrich Möller.
  12.  *      This file is part of the XWorkplace source package.
  13.  *      XWorkplace is free software; you can redistribute it and/or modify
  14.  *      it under the terms of the GNU General Public License as published
  15.  *      by the Free Software Foundation, in version 2 as it comes in the
  16.  *      "COPYING" file of the XWorkplace main distribution.
  17.  *      This program is distributed in the hope that it will be useful,
  18.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  *      GNU General Public License for more details.
  21.  */
  22.  
  23. #include <wpabs.idl>         // this is SOM for WPAbstract
  24.  
  25. /*
  26.    CLASS: XWPAdmin
  27.  
  28.    CLASS HIERARCHY:
  29.  
  30.        SOMObject
  31.          └── WPObject
  32.                └── WPAbstract
  33.                      └── XWPAdmin
  34. */
  35.  
  36. interface M_XWPAdmin;            // forward reference to metaclass
  37.  
  38. interface XWPAdmin : WPAbstract
  39. {
  40.     /*
  41.      * New instance methods for XWPAdmin:
  42.      *
  43.      */
  44.  
  45.     ULONG xwpAddXWPAdminPages(in HWND hwndDlg);
  46.  
  47. #ifdef __SOMIDL__
  48.   implementation {
  49.  
  50.     releaseorder: xwpAddXWPAdminPages;
  51.  
  52.     /*
  53.      * Class Modifiers:
  54.      *
  55.      */
  56.  
  57.     externalprefix = adm_;
  58.     externalstem = adm;
  59.     majorversion = 1;
  60.     minorversion = 1;
  61.     filestem = xwpadmin;           //# specifies the filestem for sc-generated files
  62.     metaclass = M_XWPAdmin;
  63.     dllname = "xfldr.dll";
  64.     callstyle = oidl;           //# forget CORBA stuff (*ev and such)
  65.  
  66.     /*
  67.      * Internal instance variables for XWPAdmin:
  68.      *
  69.      */
  70.  
  71.     /*
  72.      * WPAbstract methods overridden by XWPAdmin:
  73.      *
  74.      */
  75.  
  76.     wpFilterPopupMenu: override;
  77.  
  78. //#    wpQueryDefaultHelp: override;    replaced with class method V0.9.20 (2002-07-12) [umoeller]
  79.     wpQueryDefaultView: override;
  80.  
  81.     wpAddObjectWindowPage: override;
  82.  
  83.     wpAddSettingsPages: override;
  84.  
  85.   }; // implementation
  86. #endif /* __SOMIDL__ */
  87. };
  88.  
  89. //#
  90. //#
  91. //# Now define Metaclass.
  92. //# ---------------------
  93. //#
  94.  
  95. interface M_XWPAdmin : M_WPAbstract
  96. {
  97.  
  98. #ifdef __SOMIDL__
  99.   implementation {
  100.  
  101.     /*
  102.      * Class Modifiers:
  103.      *
  104.      */
  105.  
  106.     externalprefix = admM_;
  107.     externalstem = admM;
  108.     functionprefix = admM_;
  109.     majorversion = 1;
  110.     minorversion = 1;
  111.     filestem = xwpadmin;           //# specifies the filestem for sc-generated files
  112.     dllname = "xfldr.dll";
  113.     callstyle = oidl;
  114.  
  115.     /*
  116.      * Internal class variables:
  117.      *
  118.      */
  119.  
  120.     /*
  121.      * M_WPAbstract methods overridden by M_XWPAdmin:
  122.      *
  123.      */
  124.  
  125.     wpclsInitData: override;
  126.  
  127.     wpclsQueryStyle: override;
  128.     wpclsQueryTitle: override;
  129.     wpclsQueryDefaultHelp: override;
  130.  
  131.     wpclsQueryIconData: override;
  132.  
  133.     wpclsQuerySettingsPageSize: override;
  134.   };
  135. #endif /* __SOMIDL__ */
  136. };
  137.  
  138.  
  139.