summaryrefslogtreecommitdiffstats
path: root/lib/kotext/KoHighlightingTab.cpp
blob: 405887bf87b0b2d053d5382c144505db6e7defb0 (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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* This file is part of the KDE project
   Copyright (C)  2001, 2002 Montel Laurent <lmontel@mandrakesoft.com>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#include "KoHighlightingTab.h"
#include "KoTextFormat.h"

#include <tqstringlist.h>
#include <tqbuttongroup.h>
#include <tqradiobutton.h>
#include <tqcheckbox.h>

#include <kcombobox.h>
#include <kcolorbutton.h>

#include "KoHighlightingTab.moc"


KoHighlightingTab::KoHighlightingTab( TQWidget* parent, const char* name, WFlags fl ) 
        : KoHighlightingTabBase( parent, name, fl )
{
    underlineStyleKComboBox->insertStringList( KoTextFormat::underlineTypeList() );
    underlineLineStyleKComboBox->insertStringList( KoTextFormat::underlineStyleList() );
    strikethroughStyleKComboBox->insertStringList( KoTextFormat::strikeOutTypeList() );
    strikethroughLineStyleKComboBox->insertStringList( KoTextFormat::strikeOutStyleList() );

    capitalisationButtonGroup->setColumnLayout( 3, TQt::Horizontal );
    TQStringList attributes = KoTextFormat::fontAttributeList();
    for ( TQStringList::Iterator it = attributes.begin(); it != attributes.end(); ++it ) {
        capitalisationButtonGroup->insert( new TQRadioButton( *it, capitalisationButtonGroup ) );
    }
    capitalisationButtonGroup->setButton( 0 );

    connect( underlineStyleKComboBox, TQT_SIGNAL( activated( int ) ), this, TQT_SLOT( slotUnderlineChanged( int ) ) );
    connect( underlineLineStyleKComboBox, TQT_SIGNAL( activated( int ) ), this, TQT_SIGNAL( underlineStyleChanged( int ) ) );
    connect( underlineKColorButton, TQT_SIGNAL( changed( const TQColor & ) ), this, TQT_SIGNAL( underlineColorChanged( const TQColor & ) ) );
    connect( strikethroughStyleKComboBox, TQT_SIGNAL( activated( int ) ), this, TQT_SLOT( slotStrikethroughChanged( int ) ) );
    connect( strikethroughLineStyleKComboBox, TQT_SIGNAL( activated( int ) ), this, TQT_SIGNAL( strikethroughStyleChanged( int ) ) );
    connect( underlineWordByWordCheckBox, TQT_SIGNAL( toggled( bool ) ), this, TQT_SIGNAL( wordByWordChanged( bool ) ) );
    connect( capitalisationButtonGroup, TQT_SIGNAL( clicked( int ) ), this, TQT_SIGNAL( capitalisationChanged( int ) ) );
}

KoHighlightingTab::~KoHighlightingTab()
{
}

KoTextFormat::UnderlineType KoHighlightingTab::getUnderline() const
{
    return static_cast<KoTextFormat::UnderlineType>( underlineStyleKComboBox->currentItem() );
}

KoTextFormat::UnderlineStyle KoHighlightingTab::getUnderlineStyle() const
{
    return static_cast<KoTextFormat::UnderlineStyle>( underlineLineStyleKComboBox->currentItem() );
}

TQColor KoHighlightingTab::getUnderlineColor() const
{
    return underlineKColorButton->color();
}

KoTextFormat::StrikeOutType KoHighlightingTab::getStrikethrough() const
{
    return static_cast<KoTextFormat::StrikeOutType>( strikethroughStyleKComboBox->currentItem() );
}

KoTextFormat::StrikeOutStyle KoHighlightingTab::getStrikethroughStyle() const
{
    return static_cast<KoTextFormat::StrikeOutStyle>( strikethroughLineStyleKComboBox->currentItem() );
}

bool KoHighlightingTab::getWordByWord() const
{
    return underlineWordByWordCheckBox->isOn();
}

KoTextFormat::AttributeStyle KoHighlightingTab::getCapitalisation() const
{
    return static_cast<KoTextFormat::AttributeStyle>( capitalisationButtonGroup->selectedId() );
}

void KoHighlightingTab::setUnderline( KoTextFormat::UnderlineType item )
{
    underlineStyleKComboBox->setCurrentItem( static_cast<int>( item ) );
    slotUnderlineChanged( static_cast<int>( item ) );
}

void KoHighlightingTab::setUnderlineStyle( KoTextFormat::UnderlineStyle item )
{
    underlineLineStyleKComboBox->setCurrentItem( static_cast<int>( item ) );
    emit underlineStyleChanged( static_cast<int>( item ) );
}

void KoHighlightingTab::setUnderlineColor( const TQColor &color )
{
    underlineKColorButton->setColor( color );
}

void KoHighlightingTab::setStrikethrough( int item )
{
    strikethroughStyleKComboBox->setCurrentItem( static_cast<int>( item ) );
    slotStrikethroughChanged( static_cast<int>( item ) );
}

void KoHighlightingTab::setStrikethroughStyle( int item )
{
    strikethroughLineStyleKComboBox->setCurrentItem( static_cast<int>( item ) );
    emit strikethroughStyleChanged( static_cast<int>( item ) );
}

void KoHighlightingTab::setWordByWord( bool state )
{
    underlineWordByWordCheckBox->setChecked( state );
}

void KoHighlightingTab::setCapitalisation( int item )
{
    capitalisationButtonGroup->setButton( static_cast<int>( item ) );
    emit capitalisationChanged( static_cast<int>( item ) );
}

void KoHighlightingTab::slotUnderlineChanged( int item )
{
    underlineLineStyleKComboBox->setEnabled( item > 0 );
    underlineKColorButton->setEnabled( item > 0 );
    underlineWordByWordCheckBox->setEnabled( ( item > 0 ) || ( strikethroughStyleKComboBox->currentItem() > 0 ) );
    emit underlineChanged( item );
}

void KoHighlightingTab::slotStrikethroughChanged( int item )
{
    strikethroughLineStyleKComboBox->setEnabled( item > 0 );
    underlineWordByWordCheckBox->setEnabled( ( item > 0 ) || ( underlineStyleKComboBox->currentItem() > 0 ) );
    emit strikethroughChanged(  item );
}