summaryrefslogtreecommitdiffstats
path: root/kmymoney2/widgets/kmymoneydateinput.h
blob: 0093a2d4078dda3bfc734a01a34fcef1b57ef088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/***************************************************************************
                          kmymoneydateinput.h
                             -------------------
    copyright            : (C) 2000 by Michael Edwardes
    email                : mte@users.sourceforge.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 KMYMONEYDATEINPUT_H
#define KMYMONEYDATEINPUT_H

// ----------------------------------------------------------------------------
// QT Includes

#include <tqwidget.h>
#include <tqlineedit.h>
#include <tqdatetime.h>
#include <tqdatetimeedit.h>
#include <tqvbox.h>

// ----------------------------------------------------------------------------
// KDE Includes

#include <kdatepicker.h>
class KPushButton;
class KPassivePopup;

// ----------------------------------------------------------------------------
// Project Includes

// Ideas neatly taken from korganizer
// Respective authors are credited.
// Some ideas/code have been borrowed from Calendar-0.13 (phoenix.bmedesign.com/~qt)

/**
  * Provided to be able to catch the focusOut events before the contents gets changed
  */
class KMyMoneyDateEdit : public TQDateEdit
{
  Q_OBJECT
  TQ_OBJECT
public:
  KMyMoneyDateEdit(const TQDate& date, TQWidget *tqparent=0, const char *name=0) : TQDateEdit(date, tqparent, name) {}

protected:
  /** reimplemented for internal reasons */
  bool event(TQEvent* e);
};

/**
  * This class provides the general widget used for date selection
  * throughout the KMyMoney project. It provides an TQDateEdit widget
  * which is based on an edit field with spin boxes and adds a TQPushButton
  * to open a KDatePicker.
  */
class kMyMoneyDateInput : public TQHBox
{
  Q_OBJECT
  TQ_OBJECT

public:
  kMyMoneyDateInput(TQWidget *tqparent=0, const char *name=0, TQt::AlignmentFlags flags=TQt::AlignLeft);
  ~kMyMoneyDateInput();

  // Replace calls to this with the new date() method
  // TQDate getTQDate(void) KDE_DEPRECATED;

  TQDate date(void) const;
  void setDate(TQDate date);
  void loadDate(const TQDate& date);
  void resetDate(void);
  TQWidget* tqfocusWidget(void) const;
  virtual void setRange(const TQDate & min, const TQDate & max) { dateEdit->setRange(min, max); }
  void markAsBadDate(bool bad = false, const TQColor& = TQColor());

public slots:
  virtual void show(void);

signals:
  void dateChanged(const TQDate& date);

protected:
  /**
    * - increments/decrements the date upon +/- key input
    * - increments/decrements the date upon Up/Down key input
    * - sets the date to current date when the 'T' key is pressed.
    *   The actual key for this to happen might be overridden through
    *   an i18n package. The 'T'-key is always possible.
    */
  void keyPressEvent(TQKeyEvent * k);
  void resizeEvent(TQResizeEvent*);

  /** To intercept events sent to tqfocusWidget() */
  bool eventFilter(TQObject *o, TQEvent *e);

protected slots:
  void slotDateChosen(TQDate date);
  void toggleDatePicker();

private slots:
  void slotDateChosenRef(const TQDate& date);
  void fixSize(void);

private:
  TQDateEdit *dateEdit;
  KDatePicker *m_datePicker;
  TQDate m_date;  // The date !
  TQDate m_prevDate;
  TQt::AlignmentFlags m_qttqalignment;
  TQVBox *m_dateFrame;
  KPushButton *m_dateButton;
  KPassivePopup *m_datePopup;
  int m_focusDatePart;
};

#endif