~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to kword/mailmerge/sql/mailmerge_qtsqlplugin_easyfilter.h

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef MAILMERGE_QTSQLPLUGIN_EASYFILTER
 
2
#define MAILMERGE_QTSQLPLUGIN_EASYFILTER
 
3
 
 
4
#include <kdialogbase.h>
 
5
 
 
6
class QTable;
 
7
class QScrollView;
 
8
class QStringList;
 
9
 
 
10
class KWQTSqlEasyFilter: public KDialogBase
 
11
{
 
12
        Q_OBJECT
 
13
public:
 
14
    KWQTSqlEasyFilter( QWidget *parent);
 
15
    virtual ~KWQTSqlEasyFilter();
 
16
protected:
 
17
    void createColumn(int i);
 
18
 
 
19
protected slots:
 
20
    void slotValueChanged ( int, int);
 
21
private:
 
22
        QTable *m_table;
 
23
        QScrollView *m_view;
 
24
        QStringList m_fieldList,m_sortingList,m_operationList;
 
25
 
 
26
 
 
27
};
 
28
 
 
29
#endif