Link to: source code | record
viewer directory
Copyright Turtle Creek Software 1996-2006. All Rights Reserved.
This class manages escrow accounts for the Goldenseal accounting software,
small business management software, construction
project management software and
construction estimating software.
class CEscrowAccountViewer : public CAccountViewer
{
public:
CEscrowAccountViewer(const SPaneInfo &inPaneInfo, const SViewInfo &inViewInfo);
virtual ~CEscrowAccountViewer() {}
protected:
virtual void GetReadyToUpdateFields(const UInt8 creationMethod,
DB_PersistentObject *viewerObject);
virtual void FinishUpdatingFields(const UInt8 creationMethod,
DB_PersistentObject *viewerObject);
virtual void HandlePopupChanged(CTCS_StdPopupMenu *popupMenu);
virtual void HandleFindPopupClicked(CTCS_StdPopupMenu *popupMenu);
};
class CInvestmentAccountViewer : public CAccountViewer
{
public:
CInvestmentAccountViewer(const SPaneInfo &inPaneInfo, const SViewInfo &inViewInfo);
virtual ~CInvestmentAccountViewer() {}
protected:
virtual void FinishUpdatingFields(const UInt8 creationMethod,
DB_PersistentObject *viewerObject);
}; |