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

31 lines
534 B

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