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
|
/* This file is part of the KDE project
Copyright (C) 1999-2004 Laurent Montel <[email protected]>
(C) 2003 Norbert Andres <[email protected]>
(C) 2002 Philipp Mueller <[email protected]>
(C) 2002 John Dailey <[email protected]>
(C) 1998-1999 Torben Weis <[email protected]>
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 <qlayout.h>
#include <qbuttongroup.h>
#include <qradiobutton.h>
#include <klocale.h>
#include "kspread_canvas.h"
#include "kspread_doc.h"
#include "kspread_sheet.h"
#include "kspread_view.h"
#include "selection.h"
#include "kspread_dlg_special.h"
using namespace KSpread;
SpecialDialog::SpecialDialog( View* parent, const char* name )
: KDialogBase( parent, name, TRUE,i18n("Special Paste"),Ok|Cancel )
{
m_pView = parent;
QWidget *page = new QWidget( this );
setMainWidget(page);
QVBoxLayout *lay1 = new QVBoxLayout( page, 0, spacingHint() );
QButtonGroup *grp = new QButtonGroup( 1, QGroupBox::Horizontal, i18n( "Paste What" ),page );
grp->setRadioButtonExclusive( TRUE );
grp->layout();
lay1->addWidget(grp);
rb1 = new QRadioButton( i18n("Everything"), grp );
rb2 = new QRadioButton( i18n("Text"), grp );
rb3 = new QRadioButton( i18n("Format"), grp );
rb10 = new QRadioButton( i18n("Comment"), grp );
rb11 = new QRadioButton( i18n("Result"), grp );
rb4 = new QRadioButton( i18n("Everything without border"), grp );
rb1->setChecked(true);
grp = new QButtonGroup( 1, QGroupBox::Horizontal, i18n("Operation"),page);
grp->setRadioButtonExclusive( TRUE );
grp->layout();
lay1->addWidget(grp);
rb5 = new QRadioButton( i18n("Overwrite"), grp );
rb6 = new QRadioButton( i18n("Addition"), grp );
rb7 = new QRadioButton( i18n("Subtraction"), grp );
rb8 = new QRadioButton( i18n("Multiplication"), grp );
rb9 = new QRadioButton( i18n("Division"), grp );
rb5->setChecked(true);
// cb = new QCheckBox(i18n("Transpose"),this);
// cb->layout();
// lay1->addWidget(cb);
connect( this, SIGNAL( okClicked() ), this, SLOT( slotOk() ) );
connect( rb3, SIGNAL( toggled( bool ) ), this, SLOT( slotToggled( bool ) ) );
connect( rb10, SIGNAL( toggled( bool ) ), this, SLOT( slotToggled( bool ) ) );
}
void SpecialDialog::slotOk()
{
Paste::Mode sp = Paste::Normal;
Paste::Operation op = Paste::OverWrite;
/* if( rb1->isChecked() )
sp = cb->isChecked() ? NormalAndTranspose : Normal;
else if( rb2->isChecked() )
sp = cb->isChecked() ? TextAndTranspose : Text;
else if( rb3->isChecked() )
sp = cb->isChecked() ? FormatAndTranspose : Format;
else if( rb4->isChecked() )
sp = cb->isChecked() ? NoBorderAndTranspose : NoBorder; */
if( rb1->isChecked() )
sp = Paste::Normal;
else if( rb2->isChecked() )
sp = Paste::Text;
else if( rb3->isChecked() )
sp = Paste::Format;
else if( rb4->isChecked() )
sp = Paste::NoBorder;
else if( rb10->isChecked() )
sp = Paste::Comment;
else if( rb11->isChecked() )
sp = Paste::Result;
if( rb5->isChecked() )
op = Paste::OverWrite;
if( rb6->isChecked() )
op = Paste::Add;
if( rb7->isChecked() )
op = Paste::Sub;
if( rb8->isChecked() )
op = Paste::Mul;
if( rb9->isChecked() )
op = Paste::Div;
m_pView->doc()->emitBeginOperation( false );
m_pView->activeSheet()->paste( m_pView->selectionInfo()->lastRange(), true, sp, op );
m_pView->slotUpdateView( m_pView->activeSheet() );
accept();
}
void SpecialDialog::slotToggled( bool b )
{
rb5->setEnabled( !b );
rb6->setEnabled( !b );
rb7->setEnabled( !b );
rb8->setEnabled( !b );
rb9->setEnabled( !b );
}
#include "kspread_dlg_special.moc"
|