Link to: source code | record
viewer directory
Copyright Turtle Creek Software 1996-2006. All Rights Reserved.
This class manages payroll tax fields for the Goldenseal accounting software,
payroll software and small business
management software.
class CTaxFieldViewer : public DB_RecordViewer
{
public:
CTaxFieldViewer(const SPaneInfo &inPaneInfo, const SViewInfo &inViewInfo)
: DB_RecordViewer (inPaneInfo, inViewInfo) {}
virtual ~CTaxFieldViewer() {}
virtual void ListenToMessage(MessageT inMessage, void *ioParam);
protected:
virtual void FinishUpdatingFields(const UInt8 creationMethod,
DB_PersistentObject *viewerObject);
virtual void HandlePopupChanged(CTCS_StdPopupMenu *popupMenu);
virtual void SetDateFieldDisplay(const UInt8 period, const Boolean resetDates = false);
virtual void SetTableDisplay(const UInt8 method, const Boolean resetTable = false);
}; |