/*************************************************************************** kscheduledview.h - description ------------------- begin : Sun Jan 27 2002 copyright : (C) 2000-2002 by Michael Edwardes email : mte@users.sourceforge.net Javier Campos Morales Felix Rodriguez John C Thomas Baumgart Kevin Tambascio ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef KSCHEDULEDVIEW_H #define KSCHEDULEDVIEW_H // ---------------------------------------------------------------------------- // QT Includes #include #include // ---------------------------------------------------------------------------- // KDE Includes class KListViewSearchLineWidget; // ---------------------------------------------------------------------------- // Project Includes #include "kscheduledviewdecl.h" #include #include #include "../widgets/kmymoneyscheduledcalendar.h" class KPopupMenu; /** * Contains all the scheduled transactions be they bills, deposits or transfers. * Encapsulates all the operations including adding, editing and deleting. * Used by the KMyMoneyView class to show the view. * * @author Michael Edwardes 2000-2002 * $Id: kscheduledview.h,v 1.33 2009/03/01 19:13:08 ipwizard Exp $ * * @short A class to encapsulate recurring transaction operations. */ class KScheduledView : public KScheduledViewDecl { Q_OBJECT TQ_OBJECT public: /** * Standard constructor for TQWidgets. */ KScheduledView(TQWidget *tqparent=0, const char *name=0); /** * Standard destructor. */ ~KScheduledView(); /** * Called by KMyMoneyView. */ void show(); public slots: void slotSelectSchedule(const TQString& schedule); void slotReloadView(void); signals: void scheduleSelected(const MyMoneySchedule& schedule); void openContextMenu(void); void skipSchedule(void); void enterSchedule(void); void editSchedule(void); protected slots: /** * Shows the context menu when the user right clicks or presses * a 'windows' key when an item is selected. * * @param view a pointer to the view * @param item a pointer to the current selected listview item * @param pos The position to popup * @return none **/ void slotListViewContextMenu(KListView* view, TQListViewItem* item, const TQPoint& pos); void slotListItemExecuted(TQListViewItem*, const TQPoint&, int); void slotAccountActivated(int); void slotListViewCollapsed(TQListViewItem* item); void slotListViewExpanded(TQListViewItem* item); void slotBriefSkipClicked(const MyMoneySchedule& schedule, const TQDate&); void slotBriefEnterClicked(const MyMoneySchedule& schedule, const TQDate&); void slotTimerDone(void); void slotSetSelectedItem(TQListViewItem* item); void slotRearrange(void); private: /// The selected schedule id in the list view. TQString m_selectedSchedule; /// Read config file void readConfig(void); /// Write config file void writeConfig(void); /** * Refresh the view. */ void refresh(bool full=true, const TQString& schedId = TQString()); /** * Loads the accounts into the combo box. */ // void loadAccounts(void); KPopupMenu *m_kaccPopup; TQStringList m_filterAccounts; bool m_openBills; bool m_openDeposits; bool m_openTransfers; bool m_openLoans; bool m_needReload; /** * Search widget for the list */ KListViewSearchLineWidget* m_searchWidget; }; #endif