]> Git trees. - libqmvoc.git/commitdiff
APIDOX
authorJason Harris <kstars@30doradus.org>
Tue, 28 Mar 2006 21:36:48 +0000 (21:36 +0000)
committerJason Harris <kstars@30doradus.org>
Tue, 28 Mar 2006 21:36:48 +0000 (21:36 +0000)
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=523711

extdate/extdatetimeedit.h

index c5a8d4dfbdb7841822a597e4921b497af854a642..7d3b4625fda7ae6134771bbfaa6b69616628b715 100644 (file)
@@ -130,10 +130,12 @@ class ExtDateEdit : public QSpinBox {
        */
                int activeField() const { return ActiveField; }
 /**
-       *@short set the currently-active Date field (Day=0; Month=1; Year=2)
+       *@short set the currently-active Date field 
+       *@p i The field to be activated (Day=0; Month=1; Year=2)
        *@note This function does not change highlighting in the GUI; 
        *to sync the highlighting with the value of ActiveField, use
        *highlightActiveField().
+       *@see highlightActiveField()
        */
                void setActiveField( int i ) { ActiveField = i; }
 
@@ -219,6 +221,11 @@ class ExtDateEdit : public QSpinBox {
                QString simpleDateFormat();
 
        private:
+       /**
+        *@short Initialize the ExtDate edit.
+        *@internal
+        *@note This function is called in each constructor.
+        */
                void init( const ExtDate &d );
 
                uchar ActiveField;  // 0==day; 1==month; 2==year
@@ -228,7 +235,8 @@ class ExtDateEdit : public QSpinBox {
 
 /**
        *@class ExtDateTimeEdit
-       *@short provides a pair of spinbox widgets, one to set the date, one to set the time.
+       *@short provides a pair of spinbox widgets, one to set the date, 
+       *one to set the time.
        *
        *@author Jason Harris
        *@version 1.0
@@ -310,6 +318,11 @@ class ExtDateTimeEdit : public QFrame {
 dt.time() ); }
 
        private:
+       /**
+        *@short Initialize the ExtDate edit.
+        *@internal
+        *@note This function is called in each constructor.
+        */
                void init( const ExtDateTime &dt );
                
                QTimeEdit *m_TimeEdit;