1 // |
1 // |
2 // OSSP asgui - Accounting system graphical user interface |
2 // OSSP asgui - Accounting system graphical user interface |
3 // Copyright (c) 2002-2004 The OSSP Project (http://www.ossp.org/) |
3 // Copyright (c) 2002-2008 The OSSP Project (http://www.ossp.org/) |
4 // Copyright (c) 2002-2004 Ralf S. Engelschall <rse@engelschall.com> |
4 // Copyright (c) 2002-2008 Ralf S. Engelschall <rse@engelschall.com> |
5 // Copyright (c) 2002-2004 Michael Schloh von Bennewitz <michael@schloh.com> |
5 // Copyright (c) 2002-2008 Michael Schloh von Bennewitz <michael@schloh.com> |
6 // Copyright (c) 2002-2004 Cable & Wireless Telecommunications Services GmbH |
6 // Copyright (c) 2002-2008 Cable & Wireless Telecommunications Services GmbH |
7 // |
7 // |
8 // This file is part of OSSP asgui, an accounting system graphical user |
8 // This file is part of OSSP asgui, an accounting system graphical user |
9 // interface which can be found at http://www.ossp.org/pkg/tool/asgui/. |
9 // interface which can be found at http://asgui.europalab.com/. |
10 // |
10 // |
11 // Permission to use, copy, modify, and distribute this software for |
11 // Permission to use, copy, modify, and distribute this software for |
12 // any purpose with or without fee is hereby granted, provided that |
12 // any purpose with or without fee is hereby granted, provided that |
13 // the above copyright notice and this permission notice appear in all |
13 // the above copyright notice and this permission notice appear in all |
14 // copies. |
14 // copies. |
30 // |
30 // |
31 |
31 |
32 #ifndef DATEDIT_H |
32 #ifndef DATEDIT_H |
33 #define DATEDIT_H |
33 #define DATEDIT_H |
34 |
34 |
35 #include <qdatetimeedit.h> |
35 #include <q3datetimeedit.h> |
36 |
36 |
37 #define TITRAQ_DAYSECTION 2 |
37 #define TITRAQ_DAYSECTION 2 |
38 |
38 |
39 class Daydatedit : public QDateEdit |
39 class Daydatedit : public Q3DateEdit |
40 { |
40 { |
41 public: |
41 public: |
42 Daydatedit(QWidget *pParent = 0, const char *m_kszName = NULL) : |
42 Daydatedit(QWidget *pParent = 0, const char *m_kszName = NULL) : |
43 QDateEdit(pParent, m_kszName) {}; |
43 Q3DateEdit(pParent, m_kszName) {}; |
44 Daydatedit(const QDate &Date, QWidget *pParent = 0, const char *m_kszName = NULL) : |
44 Daydatedit(const QDate &Date, QWidget *pParent = 0, const char *m_kszName = NULL) : |
45 QDateEdit(Date, pParent, m_kszName) {}; |
45 Q3DateEdit(Date, pParent, m_kszName) {}; |
46 bool setDayfocus(void) {return setFocusSection(TITRAQ_DAYSECTION);}; |
46 bool setDayfocus(void) {return setFocusSection(TITRAQ_DAYSECTION);}; |
47 }; |
47 }; |
48 |
48 |
49 #endif // DATEDIT_H |
49 #endif // DATEDIT_H |