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

« back to all changes in this revision

Viewing changes to kchart/kchartParameterConfigPage.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
1
/*
2
 
 * $Id: kchartParameterConfigPage.h,v 1.8.2.1 2001/12/09 19:48:55 khz Exp $
3
 
 *
4
 
 * Copyright 2000 by Laurent Montel, released under Artistic License.
 
2
 * Copyright 2001 by Laurent Montel, released under Artistic License.
5
3
 */
6
4
 
7
5
#ifndef __KCHARTPARAMETERCONFIGPAGE_H__
8
6
#define __KCHARTPARAMETERCONFIGPAGE_H__
9
7
 
10
8
#include <qwidget.h>
11
 
#include <kcolorbtn.h>
 
9
#include <kcolorbutton.h>
12
10
 
13
11
class QSpinBox;
14
12
class QCheckBox;
15
13
class QLineEdit;
16
14
 
17
 
class KDChartParams;
 
15
class KChartParams;
18
16
 
19
17
class KChartParameterConfigPage : public QWidget
20
18
{
21
19
    Q_OBJECT
22
20
 
23
21
public:
24
 
    KChartParameterConfigPage( KDChartParams* params, QWidget* parent );
 
22
    KChartParameterConfigPage( KChartParams* params, QWidget* parent );
25
23
    void init();
26
24
    void apply();
27
25
public slots:
28
 
    void changeState( bool );
29
26
    void changeXaxisState( bool );
30
 
    void changeFont();
31
27
private:
32
 
    KDChartParams* _params;
 
28
    KChartParams* _params;
33
29
    QCheckBox *grid;
34
 
    QCheckBox *border;
35
30
    QCheckBox *xaxis;
36
31
    QCheckBox *yaxis;
37
32
    QCheckBox *yaxis2;
38
 
    QCheckBox *shelf;
39
33
    QCheckBox *xlabel;
40
 
    QCheckBox *cross;
 
34
    QCheckBox *lineMarker;
41
35
    QCheckBox *llabel;
42
 
    QLineEdit *header;
43
 
    QLineEdit *header2;
44
 
    QLineEdit *footer;
45
36
    QLineEdit *xtitle;
46
37
    QLineEdit *ytitle;
47
38
    QLineEdit *ylabel_fmt;
48
39
    QLineEdit *ytitle2;
49
40
    QLineEdit *ylabel2_fmt;
50
41
    QLineEdit *annotation;
51
 
    //KIntNumInput *element;
52
 
    QSpinBox *element;
53
 
    KColorButton *color;
54
 
    QPushButton *font;
55
 
    QFont annotationFont;
56
42
};
57
43
 
58
44
#endif