You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kword/mailmerge/sql/KWQtSqlEasyFilter.h

30 lines
524 B

#ifndef MAILMERGE_QtSqlPLUGIN_EASYFILTER
#define MAILMERGE_QtSqlPLUGIN_EASYFILTER
#include <kdialogbase.h>
class QTable;
class QScrollView;
class QStringList;
class KWQtSqlEasyFilter: public KDialogBase
{
Q_OBJECT
public:
KWQtSqlEasyFilter( QWidget *parent);
virtual ~KWQtSqlEasyFilter();
protected:
void createColumn(int i);
protected slots:
void slotValueChanged ( int, int);
private:
QTable *m_table;
QScrollView *m_view;
QStringList m_fieldList,m_sortingList,m_operationList;
};
#endif