blob: ca0298870ca95c432fd66b06f4c4b1bee0129cff (
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
|
/*
**************************************************************************
description
--------------------
copyright : (C) 2002 by Luis Passos Carvalho
email : lpassos@mail.telepac.pt
**************************************************************************
**************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
**************************************************************************/
#include "pmpalettevalueedit.h"
#include "pmpalettevalue.h"
#include "pmlineedits.h"
#include "pmdebug.h"
#include <tqwidget.h>
#include <tqlayout.h>
#include <tqcombobox.h>
#include <tqlabel.h>
#include <tqlineedit.h>
#include <tqcheckbox.h>
#include <tqpushbutton.h>
#include <tqtooltip.h>
#include <ktabctl.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kdialog.h>
#include <kfiledialog.h>
PMPaletteValueEdit::PMPaletteValueEdit( TQWidget* parent, const char* name )
: TQWidget( parent, name )
{
TQLabel* lbl;
TQHBoxLayout* layout;
m_pIndexEdit = new PMIntEdit( this );
m_pValueEdit = new PMFloatEdit( this );
layout = new TQHBoxLayout( this );
lbl = new TQLabel( i18n( "Index" ), this );
layout->addWidget( lbl );
layout->addSpacing( KDialog::spacingHint( ) );
layout->addWidget( m_pIndexEdit );
layout->addSpacing( KDialog::spacingHint( ) );
lbl = new TQLabel( i18n( "Value" ), this );
layout->addWidget( lbl );
layout->addSpacing( KDialog::spacingHint( ) );
layout->addWidget( m_pValueEdit );
connect( m_pIndexEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) );
connect( m_pValueEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) );
}
void PMPaletteValueEdit::setIndex( int idx )
{
m_pIndexEdit->setValue( idx );
}
void PMPaletteValueEdit::setValue( double val )
{
m_pValueEdit->setValue( val );
}
int PMPaletteValueEdit::index( )
{
return m_pIndexEdit->value( );
}
double PMPaletteValueEdit::value( )
{
return m_pValueEdit->value( );
}
void PMPaletteValueEdit::setReadOnly( bool yes )
{
m_pIndexEdit->setReadOnly( yes );
m_pValueEdit->setReadOnly( yes );
}
void PMPaletteValueEdit::setEnabled( bool yes )
{
m_pIndexEdit->setEnabled( yes );
m_pValueEdit->setEnabled( yes );
}
bool PMPaletteValueEdit::isDataValid( )
{
return ( m_pIndexEdit->isDataValid( ) && m_pValueEdit->isDataValid( ) );
}
#include "pmpalettevalueedit.moc"
|