summaryrefslogtreecommitdiff
path: root/libopie2/opiepim/private/opimsortvector.h
Unidiff
Diffstat (limited to 'libopie2/opiepim/private/opimsortvector.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/private/opimsortvector.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/libopie2/opiepim/private/opimsortvector.h b/libopie2/opiepim/private/opimsortvector.h
index 11a40ac..9684ca1 100644
--- a/libopie2/opiepim/private/opimsortvector.h
+++ b/libopie2/opiepim/private/opimsortvector.h
@@ -47,24 +47,26 @@ class OPimSortVector : public QVector<OPimSortVectorContainer<T> > {
47public: 47public:
48 OPimSortVector( uint size, bool asc, int sort ); 48 OPimSortVector( uint size, bool asc, int sort );
49 int compareItems( QCollection::Item d1, QCollection::Item d2 ); 49 int compareItems( QCollection::Item d1, QCollection::Item d2 );
50 bool insert( uint, const T& t ); 50 bool insert( uint, const T& t );
51 UID uidAt( uint i )const; 51 UID uidAt( uint i )const;
52 52
53protected: 53protected:
54 int testString( const QString&, const QString& )const; 54 int testString( const QString&, const QString& )const;
55 int testDate( const QDate&, const QDate& )const; 55 int testDate( const QDate&, const QDate& )const;
56 int testTime( const QTime&, const QTime& )const; 56 int testTime( const QTime&, const QTime& )const;
57 int testDateTime( const QDateTime& left, 57 int testDateTime( const QDateTime& left,
58 const QDateTime& right )const; 58 const QDateTime& right )const;
59 int testDaysUntilNextDate( const QDate& left,
60 const QDate& right )const;
59protected: 61protected:
60 bool sortAscending()const; 62 bool sortAscending()const;
61 int sortOrder()const; 63 int sortOrder()const;
62 64
63private: 65private:
64 bool m_ascending : 1; 66 bool m_ascending : 1;
65 int m_sort; 67 int m_sort;
66 virtual int compareItems( const T& item1, const T& item2 ) = 0; 68 virtual int compareItems( const T& item1, const T& item2 ) = 0;
67}; 69};
68 70
69template<class T> 71template<class T>
70OPimSortVector<T>::OPimSortVector( uint size, bool asc, int sort ) 72OPimSortVector<T>::OPimSortVector( uint size, bool asc, int sort )
@@ -157,16 +159,38 @@ inline int OPimSortVector<T>::testDateTime( const QDateTime& left,
157 int ret = 0; 159 int ret = 0;
158 if ( !left .isValid() ) ret++; 160 if ( !left .isValid() ) ret++;
159 if ( !right.isValid() ) ret--; 161 if ( !right.isValid() ) ret--;
160 162
161 if ( left.isValid() && right.isValid() ){ 163 if ( left.isValid() && right.isValid() ){
162 ret += left < right ? -1 : 1; 164 ret += left < right ? -1 : 1;
163 } 165 }
164 166
165 return ret; 167 return ret;
166 168
167} 169}
168 170
171template<class T>
172inline int OPimSortVector<T>::testDaysUntilNextDate( const QDate& left,
173 const QDate& right )const {
174 int ret = 0;
175 if ( !left .isValid() ) ret++;
176 if ( !right.isValid() ) ret--;
177
178 if ( left.isValid() && right.isValid() ){
179 int currentYear = QDate::currentDate().year();
180 QDate nextLeft( currentYear, left.month(), left.day() );
181 if ( QDate::currentDate().daysTo(nextLeft) < 0 )
182 nextLeft.setYMD( currentYear+1, left.month(), left.day() );
183 QDate nextRight( currentYear, right.month(), right.day() );
184 if ( QDate::currentDate().daysTo(nextRight) < 0 )
185 nextRight.setYMD( currentYear+1, right.month(), right.day() );
186
187 ret += QDate::currentDate().daysTo(nextLeft) < QDate::currentDate().daysTo(nextRight) ? -1 : 1;
188 }
189
190 return ret;
191}
192
169} 193}
170} 194}
171 195
172#endif 196#endif