summaryrefslogtreecommitdiffstats
path: root/examples/chart/optionsform.cpp
blob: 21ba4b51d0845f7ff9b2260f88dde1da109b7147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#include "optionsform.h"

#include <ntqbuttongroup.h>
#include <ntqcombobox.h>
#include <ntqfontdialog.h>
#include <ntqframe.h>
#include <ntqimage.h>
#include <ntqlabel.h>
#include <ntqlayout.h>
#include <ntqpushbutton.h>
#include <ntqradiobutton.h>
#include <ntqspinbox.h>

#include "images/options_horizontalbarchart.xpm"
#include "images/options_piechart.xpm"
#include "images/options_verticalbarchart.xpm"


OptionsForm::OptionsForm( TQWidget* parent, const char* name,
			  bool modal, WFlags f )
    : TQDialog( parent, name, modal, f )
{
    setCaption( "Chart -- Options" );
    resize( 320, 290 );

    optionsFormLayout = new TQVBoxLayout( this, 11, 6 );

    chartTypeLayout = new TQHBoxLayout( 0, 0, 6 );

    chartTypeTextLabel = new TQLabel( "&Chart Type", this );
    chartTypeLayout->addWidget( chartTypeTextLabel );

    chartTypeComboBox = new TQComboBox( FALSE, this );
    chartTypeComboBox->insertItem( TQPixmap( options_piechart ), "Pie Chart" );
    chartTypeComboBox->insertItem( TQPixmap( options_verticalbarchart ),
				   "Vertical Bar Chart" );
    chartTypeComboBox->insertItem( TQPixmap( options_horizontalbarchart ),
				   "Horizontal Bar Chart" );
    chartTypeLayout->addWidget( chartTypeComboBox );
    optionsFormLayout->addLayout( chartTypeLayout );

    fontLayout = new TQHBoxLayout( 0, 0, 6 );

    fontPushButton = new TQPushButton( "&Font...", this );
    fontLayout->addWidget( fontPushButton );
    TQSpacerItem* spacer = new TQSpacerItem( 0, 0,
					   TQSizePolicy::Expanding,
					   TQSizePolicy::Minimum );
    fontLayout->addItem( spacer );

    fontTextLabel = new TQLabel( this ); // Must be set by caller via setFont()
    fontLayout->addWidget( fontTextLabel );
    optionsFormLayout->addLayout( fontLayout );

    addValuesFrame = new TQFrame( this );
    addValuesFrame->setFrameShape( TQFrame::StyledPanel );
    addValuesFrame->setFrameShadow( TQFrame::Sunken );
    addValuesFrameLayout = new TQVBoxLayout( addValuesFrame, 11, 6 );

    addValuesButtonGroup = new TQButtonGroup( "Show Values", addValuesFrame );
    addValuesButtonGroup->setColumnLayout(0, TQt::Vertical );
    addValuesButtonGroup->layout()->setSpacing( 6 );
    addValuesButtonGroup->layout()->setMargin( 11 );
    addValuesButtonGroupLayout = new TQVBoxLayout(
					addValuesButtonGroup->layout() );
    addValuesButtonGroupLayout->setAlignment( TQt::AlignTop );

    noRadioButton = new TQRadioButton( "&No", addValuesButtonGroup );
    noRadioButton->setChecked( TRUE );
    addValuesButtonGroupLayout->addWidget( noRadioButton );

    yesRadioButton = new TQRadioButton( "&Yes", addValuesButtonGroup );
    addValuesButtonGroupLayout->addWidget( yesRadioButton );

    asPercentageRadioButton = new TQRadioButton( "As &Percentage",
						addValuesButtonGroup );
    addValuesButtonGroupLayout->addWidget( asPercentageRadioButton );
    addValuesFrameLayout->addWidget( addValuesButtonGroup );

    decimalPlacesLayout = new TQHBoxLayout( 0, 0, 6 );

    decimalPlacesTextLabel = new TQLabel( "&Decimal Places", addValuesFrame );
    decimalPlacesLayout->addWidget( decimalPlacesTextLabel );

    decimalPlacesSpinBox = new TQSpinBox( addValuesFrame );
    decimalPlacesSpinBox->setMinValue( 0 );
    decimalPlacesSpinBox->setMaxValue( 9 );
    decimalPlacesLayout->addWidget( decimalPlacesSpinBox );

    addValuesFrameLayout->addLayout( decimalPlacesLayout );

    optionsFormLayout->addWidget( addValuesFrame );

    buttonsLayout = new TQHBoxLayout( 0, 0, 6 );
    spacer = new TQSpacerItem( 0, 0,
			      TQSizePolicy::Expanding, TQSizePolicy::Minimum );
    buttonsLayout->addItem( spacer );

    okPushButton = new TQPushButton( "OK", this );
    okPushButton->setDefault( TRUE );
    buttonsLayout->addWidget( okPushButton );

    cancelPushButton = new TQPushButton( "Cancel", this );
    buttonsLayout->addWidget( cancelPushButton );
    optionsFormLayout->addLayout( buttonsLayout );

    connect( fontPushButton, SIGNAL( clicked() ), this, SLOT( chooseFont() ) );
    connect( okPushButton, SIGNAL( clicked() ), this, SLOT( accept() ) );
    connect( cancelPushButton, SIGNAL( clicked() ), this, SLOT( reject() ) );

    chartTypeTextLabel->setBuddy( chartTypeComboBox );
    decimalPlacesTextLabel->setBuddy( decimalPlacesSpinBox );
}


void OptionsForm::chooseFont()
{
    bool ok;
    TQFont font = TQFontDialog::getFont( &ok, m_font, this );
    if ( ok )
	setFont( font );
}


void OptionsForm::setFont( TQFont font )
{
    TQString label = font.family() + " " +
		    TQString::number( font.pointSize() ) + "pt";
    if ( font.bold() )
	label += " Bold";
    if ( font.italic() )
	label += " Italic";
    fontTextLabel->setText( label );
    m_font = font;
}