mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
SIP file for new date time edit
This commit is contained in:
parent
834c630f54
commit
5c5deec4a0
@ -39,6 +39,7 @@
|
||||
%Include qgscolorschemelist.sip
|
||||
%Include qgscomposerview.sip
|
||||
%Include qgscredentialdialog.sip
|
||||
%Include qgsdatetimeedit.sip
|
||||
%Include qgsdetaileditemdata.sip
|
||||
%Include qgsdetaileditemdelegate.sip
|
||||
%Include qgsdialog.sip
|
||||
|
38
python/gui/qgsdatetimeedit.sip
Normal file
38
python/gui/qgsdatetimeedit.sip
Normal file
@ -0,0 +1,38 @@
|
||||
|
||||
class QgsDateTimeEdit : QDateTimeEdit
|
||||
{
|
||||
|
||||
%TypeHeaderCode
|
||||
#include "qgsdatetimeedit.h"
|
||||
%End
|
||||
|
||||
|
||||
public:
|
||||
explicit QgsDateTimeEdit( QWidget *parent /TransferThis/ = 0 );
|
||||
|
||||
//! determines if the widget allows setting null date/time.
|
||||
void setAllowNull( bool allowNull );
|
||||
bool allowNull() const;
|
||||
|
||||
/**
|
||||
* @brief setDateTime set the date time in the widget and handles null date times.
|
||||
* @note since QDateTimeEdit::setDateTime() is not virtual, setDateTime must be called for QgsDateTimeEdit.
|
||||
*/
|
||||
void setDateTime( const QDateTime &dateTime );
|
||||
|
||||
/**
|
||||
* @brief dateTime returns the date time which can eventually be a null date/time
|
||||
* @note since QDateTimeEdit::dateTime() is not virtual, dateTime must be called for QgsDateTimeEdit.
|
||||
*/
|
||||
QDateTime dateTime() const;
|
||||
|
||||
//! Set the current date as NULL
|
||||
//! @note if the widget is not configured to accept NULL dates, this will have no effect
|
||||
virtual void clear();
|
||||
|
||||
|
||||
protected:
|
||||
virtual void resizeEvent( QResizeEvent* event );
|
||||
|
||||
void mousePressEvent( QMouseEvent*event );
|
||||
};
|
@ -34,7 +34,7 @@ class GUI_EXPORT QgsDateTimeEdit : public QDateTimeEdit
|
||||
|
||||
//! determines if the widget allows setting null date/time.
|
||||
void setAllowNull( bool allowNull );
|
||||
bool allowNull() {return mAllowNull;}
|
||||
bool allowNull() const {return mAllowNull;}
|
||||
|
||||
/**
|
||||
* @brief setDateTime set the date time in the widget and handles null date times.
|
||||
|
Loading…
x
Reference in New Issue
Block a user