~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to kfind/kdatecombo.h

  • Committer: Bazaar Package Importer
  • Author(s): Ana Beatriz Guerrero Lopez
  • Date: 2009-04-05 05:22:13 UTC
  • mfrom: (0.4.2 experimental) (0.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 235.
  • Revision ID: james.westby@ubuntu.com-20090405052213-39thr4l6p2ss07uj
Tags: 4:4.2.2-1
* New upstream release:
  - khtml fixes. (Closes: #290285, #359680)
  - Default konsole sessions can be deleted. (Closes: #286342)
  - Tag widget uses standard application palette. (Closes: #444800)
  - ... and surely many more but we have lost track...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***********************************************************************
2
 
 *
3
 
 *  kdatecombo.h
4
 
 *
5
 
 ***********************************************************************/
6
 
 
7
 
#ifndef KDATECOMBO_H
8
 
#define KDATECOMBO_H
9
 
 
10
 
#include <qwidget.h>
11
 
#include <qcombobox.h>
12
 
#include <qdatetime.h>
13
 
 
14
 
/**
15
 
  *@author Beppe Grimaldi
16
 
  */
17
 
 
18
 
class KDatePicker;
19
 
class KPopupFrame;
20
 
 
21
 
class KDateCombo : public QComboBox  {
22
 
   Q_OBJECT
23
 
 
24
 
public:
25
 
        KDateCombo(QWidget *parent=0, const char *name=0);
26
 
        KDateCombo(const QDate & date, QWidget *parent=0, const char *name=0);
27
 
        ~KDateCombo();
28
 
 
29
 
        QDate & getDate(QDate *currentDate);
30
 
        bool setDate(const QDate & newDate);
31
 
 
32
 
private:
33
 
   KPopupFrame * popupFrame;
34
 
   KDatePicker * datePicker;
35
 
 
36
 
   void initObject(const QDate & date, QWidget *parent, const char *name);
37
 
 
38
 
   QString date2String(const QDate &);
39
 
   QDate & string2Date(const QString &, QDate * );
40
 
 
41
 
protected:
42
 
  bool eventFilter (QObject*, QEvent*);
43
 
  virtual void mousePressEvent (QMouseEvent * e);
44
 
   
45
 
protected slots:
46
 
   void dateEnteredEvent(QDate d=QDate());
47
 
};
48
 
 
49
 
#endif