Candidate_v1.7.0
        stable
      
      
        
          | Last change
 on this file since 950cd4 was             454b555, checked in by Frederik Heber <frederik.heber@…>, 3 months ago | 
        
          | 
Improved includes for Qt classes.
 QT_CFLAGS needs to be set in certain cases. The include folder
QtCore is required additionally due to qopenglfunctions.h.
However, other includes in our repo are now appended by either
QtCore/ or QtGui/.
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            910 bytes | 
      
      
| Rev | Line |  | 
|---|
| [4aed01] | 1 | /* | 
|---|
|  | 2 | * QtNumericalItem.hpp | 
|---|
|  | 3 | * | 
|---|
|  | 4 | *  Created on: Sep 1, 2016 | 
|---|
|  | 5 | *      Author: heber | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
|  | 8 |  | 
|---|
|  | 9 | #ifndef UIELEMENTS_VIEWS_QT4_QTNUMERICALITEM_HPP_ | 
|---|
|  | 10 | #define UIELEMENTS_VIEWS_QT4_QTNUMERICALITEM_HPP_ | 
|---|
|  | 11 |  | 
|---|
|  | 12 | // include config.h | 
|---|
|  | 13 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 14 | #include <config.h> | 
|---|
|  | 15 | #endif | 
|---|
|  | 16 |  | 
|---|
| [454b555] | 17 | #include <QtGui/QTreeWidgetItem> | 
|---|
| [4aed01] | 18 |  | 
|---|
|  | 19 | #include <vector> | 
|---|
|  | 20 |  | 
|---|
|  | 21 | class QTreeWidget; | 
|---|
|  | 22 |  | 
|---|
|  | 23 | class QtNumericalItem : public QTreeWidgetItem | 
|---|
|  | 24 | { | 
|---|
|  | 25 | public: | 
|---|
|  | 26 | QtNumericalItem(const int index_column, const std::vector<int> &_numerical_columns, QTreeWidget *parent = 0) : | 
|---|
|  | 27 | QTreeWidgetItem(parent), | 
|---|
|  | 28 | int_column(index_column), | 
|---|
|  | 29 | viewnum_columns(_numerical_columns) | 
|---|
|  | 30 | {} | 
|---|
|  | 31 |  | 
|---|
|  | 32 | bool operator<(const QTreeWidgetItem &_item) const; | 
|---|
|  | 33 |  | 
|---|
|  | 34 | private: | 
|---|
|  | 35 | //!> index column which needs to be compared numerically | 
|---|
|  | 36 | const int int_column; | 
|---|
|  | 37 | //!> such that we know that we need to check numerically | 
|---|
|  | 38 | const std::vector<int> viewnum_columns; | 
|---|
|  | 39 | }; | 
|---|
|  | 40 |  | 
|---|
|  | 41 | #endif /* UIELEMENTS_VIEWS_QT4_QTNUMERICALITEM_HPP_ */ | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.