Changeset 244 for trunk/desktop/idl


Ignore:
Timestamp:
Mar 10, 2007, 12:11:43 PM (19 years ago)
Author:
cinc
Message:

Implemented methods to add/remove objects to/from folders (and folder windows).

Location:
trunk/desktop/idl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/desktop/idl/wpfolder.idl

    r237 r244  
    6767  PWPObject wpQueryContent();
    6868
     69  /**
     70     Delete an object from the internal list of objects held by
     71     the folder.
     72
     73     \param wpObject The object to be removed.
     74
     75     \return TRUE on success FALSE otherwise.
     76
     77     \sa wpQueryContents(), wpAddToContents()
     78   */
     79  boolean wpDeleteFromContent(in PWPObject wpObject);
     80
     81  PUSEITEM wpAddToStore(in PWPObject wpObject);
     82  PUSEITEM wpDeleteFromStore(in PWPObject wpObject);
     83
    6984  NOMOVERRIDE(wpInitData);
    7085  NOMOVERRIDE(wpOpen);
     
    7287  NOMOVERRIDE(wpQueryDefaultView);
    7388  NOMOVERRIDE(wpDragOver);
     89  NOMOVERRIDE(wpDrop);
    7490
    7591  NOMINSTANCEVAR(PPRIVFOLDERDATA privFolderData); /* This will go away... */
    7692  NOMINSTANCEVAR(PGTree fldrObjects);
    7793  NOMINSTANCEVAR(gulong ulFldrFlags);
     94  NOMINSTANCEVAR(PGtkListStore pListStore);
    7895};
    7996
  • trunk/desktop/idl/wpnativetypes.idl

    r175 r244  
    4343native PUSEITEM;  /* For inuse list */
    4444native PVIEWITEM; /* For inuse list */
     45native PGtkListStore;
    4546
    4647#endif /* WPFOLDERTYPES_IDL_INCLUDED */
  • trunk/desktop/idl/wpobject.idl

    r241 r244  
    8989     will be collected later.
    9090
    91      \par How to override:
    92      This method is usually not overriden.
    93 
    94      \param pByte Block of memory to be freed.
     91     \remark It is save to call this method with a NULL memory pointer.
     92
     93     \par How to override:
     94     This method is usually not overriden.
     95
     96     \param pByte Block of memory to be freed. This may be NULL.
    9597     \return TRUE if successful.
    9698
Note: See TracChangeset for help on using the changeset viewer.