/*************************************************************************** kmymoneycalendar.h - description ------------------- begin : Wed Jul 2 2003 copyright : (C) 2000-2003 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. * * * ***************************************************************************/ /*************************************************************************** * Contains code from KDatePicker in tdelibs-3.1.2. * Original license message: * This file is part of the KDE libraries Copyright (C) 1997 Tim D. Gilman (tdgilman@best.org) (C) 1998-2001 Mirko Boehm (mirko@kde.org) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ****************************************************************************/ #ifndef KMYMONEYCALENDAR_H #define KMYMONEYCALENDAR_H // ---------------------------------------------------------------------------- // QT Includes #include #include // ---------------------------------------------------------------------------- // KDE Includes #include "kdecompat.h" // ---------------------------------------------------------------------------- // Project Includes #include "kmymoneydatetbl.h" class TQLineEdit; class TQToolButton; class KDateValidator; class kMyMoneyDateTbl; class TQPushButton; /** * A representation of a calendar. * * @author Michael Edwardes 2003 * **/ class kMyMoneyCalendar : public TQFrame { Q_OBJECT TQ_OBJECT public: public: /** * Standard constructor. **/ kMyMoneyCalendar(TQWidget *parent=0, const char *name=0); /** * Standard destructor. **/ ~kMyMoneyCalendar(); /** * Sets the calendar type. **/ void setType(kMyMoneyDateTbl::calendarType type) { table->setType(type); } /** * Get the calendar type. **/ kMyMoneyDateTbl::calendarType type(void) const { return table->type(); } /** The size hint for date pickers. The size hint recommends the * minimum size of the widget so that all elements may be placed * without clipping. This sometimes looks ugly, so when using the * size hint, try adding 28 to each of the reported numbers of * pixels. **/ TQSize tqsizeHint() const; /** * Sets the date. * * @returns @p false and does not change anything * if the date given is invalid. **/ bool setDate(const TQDate&); /** * Returns the selected date. * @deprecated **/ const TQDate& getDate() const; /** * @returns the selected date. */ const TQDate &date() const; /** * Enables or disables the widget. **/ void setEnabled(bool); /** * Sets the font size of the widgets elements. **/ void setFontSize(int); /** * Returns the font size of the widget elements. */ int fontSize() const { return fontsize; } /** * By calling this method with @p enable = true, KDatePicker will show * a little close-button in the upper button-row. Clicking the * close-button will cause the KDatePicker's tqtopLevelWidget()'s close() * method being called. This is mostly useful for toplevel datepickers * without a window manager decoration. * @see #hasCloseButton * @since 3.1 */ void setCloseButton( bool enable ); /** * @returns true if a KDatePicker shows a close-button. * @see #setCloseButton * @since 3.1 */ bool hasCloseButton() const; /** * Dynamically set the Date Table **/ virtual void setDateTable(kMyMoneyDateTbl *tbl) = 0; void setUserButton1(bool enable, TQPushButton* pb); void setUserButton2(bool enable, TQPushButton* pb); protected: /// to catch move keyEvents when TQLineEdit has keyFocus virtual bool eventFilter(TQObject *o, TQEvent *e ); /// the resize event virtual void resizeEvent(TQResizeEvent*); /// the style control button TQPushButton *styleControl; /// the year forward button TQToolButton *yearForward; /// the year backward button TQToolButton *yearBackward; /// the month forward button TQToolButton *monthForward; /// the month backward button TQToolButton *monthBackward; /// the button for selecting the month directly TQToolButton *selectMonth; /// the button for selecting the year directly TQToolButton *selectYear; /// the line edit to enter the date directly TQLineEdit *line; /// the validator for the line edit: KDateValidator *val; /// the date table kMyMoneyDateTbl *table; /// the size calculated during resize events // TQSize sizehint; /// the widest month string in pixels: TQSize maxMonthRect; protected slots: void dateChangedSlot(TQDate); void tableClickedSlot(); void monthForwardClicked(); void monthBackwardClicked(); void yearForwardClicked(); void yearBackwardClicked(); /// @since 3.1 void selectWeekClicked(); void selectMonthClicked(); void selectYearClicked(); void lineEnterPressed(); void slotSetStyleWeekly(); void slotSetStyleMonthly(); void slotSetStyleQuarterly(); signals: /** This signal is emitted each time the selected date is changed. * Usually, this does not mean that the date has been entered, * since the date also changes, for example, when another month is * selected. * @see dateSelected */ void dateChanged(TQDate); /** This signal is emitted each time a day has been selected by * clicking on the table (hitting a day in the current month). It * has the same meaning as dateSelected() in older versions of * KDatePicker. */ void dateSelected(TQDate); /** This signal is emitted when enter is pressed and a VALID date * has been entered before into the line edit. Connect to both * dateEntered() and dateSelected() to receive all events where the * user really enters a date. */ void dateEntered(TQDate); /** This signal is emitted when the day has been selected by * clicking on it in the table. */ void tableClicked(); private: /// the font size for the widget int fontsize; protected: virtual void virtual_hook( int id, void* data ); void init( const TQDate &dt ); private: class kMyMoneyCalendarPrivate; kMyMoneyCalendarPrivate* const d; // calculate ISO 8601 week number int weekOfYear(TQDate); #if KDE_IS_VERSION(3,2,0) #define MONTH_NAME(a,b,c) KGlobal::locale()->calendar()->monthName(a,b,c) #else #define MONTH_NAME(a,b,c) KGlobal::locale()->monthName(a,c) #endif }; #endif