#include <KDChartDatasetSelector.h>
Inheritance diagram for KDChart::DatasetSelectorWidget:
Public Member Functions | |
DatasetSelectorWidget (QWidget *parent=0) | |
void | mappingDisabled () |
void | on_cbReverseColumns_stateChanged (int) |
void | on_cbReverseRows_stateChanged (int) |
void | on_groupBox_toggled (bool) |
void | on_sbColumnCount_valueChanged (int) |
void | on_sbRowCount_valueChanged (int) |
void | on_sbStartRow_valueChanged (int) |
void | setSourceColumnCount (const int &columnCount) |
Public Attributes | |
Q_SIGNALS | __pad0__: void configureDatasetProxyModel ( const DatasetDescriptionVector& rowConfig |
Q_SIGNALS const DatasetDescriptionVector & | columnConfig |
private | Q_SLOTS: void on_sbStartColumn_valueChanged ( int ) |
public | Q_SLOTS: void setSourceRowCount ( const int& rowCount ) |
|
Definition at line 36 of file KDChartDatasetSelector.cpp.
00037 : QFrame ( parent ) 00038 , mUi ( new Ui::DatasetSelector () ) 00039 , mSourceRowCount ( 0 ) 00040 , mSourceColumnCount ( 0 ) 00041 { 00042 qWarning("For DatasetSelectorWidget to become useful, it has to be connected to the proxy model it configures!"); 00043 00044 mUi->setupUi ( this ); 00045 setMinimumSize ( minimumSizeHint() ); 00046 } |
|
Referenced by on_groupBox_toggled(). |
|
Definition at line 73 of file KDChartDatasetSelector.cpp.
00074 { 00075 calculateMapping(); 00076 } |
|
Definition at line 68 of file KDChartDatasetSelector.cpp.
00069 { 00070 calculateMapping(); 00071 } |
|
Definition at line 78 of file KDChartDatasetSelector.cpp. References mappingDisabled().
00079 { 00080 if ( state ) 00081 { 00082 calculateMapping(); 00083 } else { 00084 emit mappingDisabled(); 00085 } 00086 } |
|
Definition at line 58 of file KDChartDatasetSelector.cpp.
00059 { 00060 calculateMapping(); 00061 } |
|
Definition at line 63 of file KDChartDatasetSelector.cpp.
00064 { 00065 calculateMapping(); 00066 } |
|
Definition at line 53 of file KDChartDatasetSelector.cpp.
00054 { 00055 calculateMapping(); 00056 } |
|
Definition at line 98 of file KDChartDatasetSelector.cpp.
00099 {
00100 if ( columnCount != mSourceColumnCount )
00101 {
00102 mSourceColumnCount = columnCount;
00103 resetDisplayValues();
00104 }
00105 }
|
|
Definition at line 61 of file KDChartDatasetSelector.h. |
|
Definition at line 61 of file KDChartDatasetSelector.h. |
|
Definition at line 67 of file KDChartDatasetSelector.h. |
|
Definition at line 56 of file KDChartDatasetSelector.h. |