Changeset 248 for trunk/desktop/idl/m_wpobject.idl
- Timestamp:
- Mar 10, 2007, 9:40:28 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/desktop/idl/m_wpobject.idl
r209 r248 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * … … 32 32 * 33 33 * ***** END LICENSE BLOCK ***** */ 34 /** \file 35 Class definition file for M_WPObject class. 36 */ 34 37 35 38 #ifndef M_WPOBJECT_IDL_INCLUDED … … 43 46 #include "nomstring.idl" 44 47 48 /** \interface M_WPObject 49 50 This class is the metaclass for the WPObject class. 51 */ 45 52 interface M_WPObject : NOMClass 46 53 { … … 49 56 gpointer wpclsQueryIcon(); 50 57 boolean wpclsSetIcon(in gpointer pNewIcon); 58 59 /** 60 This method returns the class title for classes for which this is the metaclass. 61 */ 51 62 string wpclsQueryTitle(); 63 64 /** 65 Method to be overriden by metaclasses when they need to do some setup. 66 67 \remark Desktop metaclasses should override this method instead of nomInit(). 68 69 \par How to override: 70 This method should be overriden by classes which need initialization. The parent 71 must be called first. 72 73 \sa wpclsUnInitData() 74 */ 52 75 void wpclsInitData(); 76 77 /** 78 Method to be overriden by classes when they need to do some unititialization work. 79 80 \remark Desktop metaclasses should override this method instead of nomUnInit(). 81 82 \par How to override 83 This method should be overriden by classes which need uninitialization. The parent must 84 be called last. 85 86 \sa wpclsInitData() 87 */ 53 88 void wpclsUnInitData(); 54 89
Note:
See TracChangeset
for help on using the changeset viewer.