You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
501 lines
15 KiB
501 lines
15 KiB
// -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; -*-
|
|
/* This file is part of the KDE project
|
|
Copyright (C) 2005 Thorsten Zachmann <zachmann@kde.org>
|
|
|
|
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 "kspread_propertyEditor.h"
|
|
|
|
#include "kspread_object.h"
|
|
#include "kspread_sheet.h"
|
|
#include "kspread_doc.h"
|
|
// #include "KPrUtils.h"
|
|
#include "commands.h"
|
|
// #include "KPrPenStyleWidget.h"
|
|
// #include "KPrBrushProperty.h"
|
|
// #include "KPrRectProperty.h"
|
|
// #include "KPrPolygonProperty.h"
|
|
// #include "KPrPieProperty.h"
|
|
// #include "KPrPictureProperty.h"
|
|
// #include "KPrTextProperty.h"
|
|
// #include "KPrObjectProperties.h"
|
|
|
|
#include <klocale.h>
|
|
#include <kstdguiitem.h>
|
|
|
|
using namespace KSpread;
|
|
|
|
PropertyEditor::PropertyEditor( TQWidget *parent, const char *name, Sheet *page, Doc *doc )
|
|
: TQTabDialog( parent, name, true )
|
|
, m_page( page )
|
|
, m_doc( doc )
|
|
, m_objects( page->getSelectedObjects() )
|
|
// , m_penProperty( 0 )
|
|
// , m_brushProperty( 0 )
|
|
// , m_rectProperty( 0 )
|
|
// , m_polygonProperty( 0 )
|
|
// , m_pieProperty( 0 )
|
|
// , m_pictureProperty( 0 )
|
|
// , m_textProperty( 0 )
|
|
, m_generalProperty( 0 )
|
|
// , m_objectProperties( 0 )
|
|
{
|
|
setCancelButton( KStdGuiItem::cancel().text() );
|
|
setOkButton( KStdGuiItem::ok().text() );
|
|
setApplyButton( KStdGuiItem::apply().text() );
|
|
|
|
connect( this, TQT_SIGNAL( applyButtonPressed() ), this, TQT_SLOT( slotDone() ) );
|
|
|
|
//m_objectProperties = new KPrObjectProperties( m_objects );
|
|
|
|
setupTabs();
|
|
}
|
|
|
|
|
|
PropertyEditor::~PropertyEditor()
|
|
{
|
|
//delete m_objectProperties;
|
|
}
|
|
|
|
|
|
KCommand * PropertyEditor::getCommand()
|
|
{
|
|
KMacroCommand *macro = 0;
|
|
|
|
// if ( m_penProperty )
|
|
// {
|
|
// int change = m_penProperty->getPenConfigChange();
|
|
// if ( change )
|
|
// {
|
|
// KoPenCmd::Pen pen( m_penProperty->getPen() );
|
|
//
|
|
// KoPenCmd *cmd = new KoPenCmd( i18n( "Apply Styles" ), m_objects, pen, m_doc, m_page, change );
|
|
//
|
|
// if ( !macro )
|
|
// {
|
|
// macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
// }
|
|
//
|
|
// macro->addCommand( cmd );
|
|
// }
|
|
// }
|
|
//
|
|
// if ( m_brushProperty )
|
|
// {
|
|
// int change = m_brushProperty->getBrushPropertyChange();
|
|
// if ( change )
|
|
// {
|
|
// KPrBrushCmd::Brush brush( m_brushProperty->getBrush() );
|
|
//
|
|
// KPrBrushCmd *cmd = new KPrBrushCmd( i18n( "Apply Styles" ), m_objects, brush, m_doc, m_page, change );
|
|
//
|
|
// if ( !macro )
|
|
// {
|
|
// macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
// }
|
|
//
|
|
// macro->addCommand( cmd );
|
|
// }
|
|
// }
|
|
//
|
|
// if ( m_rectProperty )
|
|
// {
|
|
// int change = m_rectProperty->getRectPropertyChange();
|
|
//
|
|
// if ( change )
|
|
// {
|
|
// KPrRectValueCmd::RectValues rectValue( m_rectProperty->getRectValues() );
|
|
//
|
|
// KPrRectValueCmd *cmd = new KPrRectValueCmd( i18n( "Apply Styles" ), m_objects, rectValue, m_doc, m_page, change );
|
|
//
|
|
// if ( !macro )
|
|
// {
|
|
// macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
// }
|
|
//
|
|
// macro->addCommand( cmd );
|
|
// }
|
|
// }
|
|
//
|
|
// if ( m_polygonProperty )
|
|
// {
|
|
// int change = m_polygonProperty->getPolygonPropertyChange();
|
|
//
|
|
// if ( change )
|
|
// {
|
|
// KPrPolygonSettingCmd::PolygonSettings polygonSettings( m_polygonProperty->getPolygonSettings() );
|
|
//
|
|
// KPrPolygonSettingCmd *cmd = new KPrPolygonSettingCmd( i18n("Apply Styles"), polygonSettings,
|
|
// m_objects, m_doc, m_page, change );
|
|
//
|
|
// if ( !macro )
|
|
// {
|
|
// macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
// }
|
|
//
|
|
// macro->addCommand( cmd );
|
|
// }
|
|
// }
|
|
//
|
|
// if ( m_pieProperty )
|
|
// {
|
|
// int change = m_pieProperty->getPiePropertyChange();
|
|
//
|
|
// if ( change )
|
|
// {
|
|
// KPrPieValueCmd *cmd = new KPrPieValueCmd( i18n("Apply Styles"), m_pieProperty->getPieValues(),
|
|
// m_objects, m_doc, m_page, change );
|
|
// if ( !macro )
|
|
// {
|
|
// macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
// }
|
|
//
|
|
// macro->addCommand( cmd );
|
|
// }
|
|
// }
|
|
//
|
|
// if ( m_pictureProperty )
|
|
// {
|
|
// int change = m_pictureProperty->getPicturePropertyChange();
|
|
//
|
|
// if ( change )
|
|
// {
|
|
// KPrPictureSettingCmd *cmd = new KPrPictureSettingCmd( i18n("Apply Styles"), m_pictureProperty->getPictureSettings(),
|
|
// m_objects, m_doc, m_page, change );
|
|
// if ( !macro )
|
|
// {
|
|
// macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
// }
|
|
//
|
|
// macro->addCommand( cmd );
|
|
// }
|
|
// }
|
|
//
|
|
// if ( m_textProperty )
|
|
// {
|
|
// int change = m_textProperty->getTextPropertyChange();
|
|
//
|
|
// if ( change )
|
|
// {
|
|
// if ( change & KPrTextProperty::ProtectContent )
|
|
// {
|
|
// KPrProtectContentCommand * cmd = new KPrProtectContentCommand( i18n( "Apply Styles" ), m_objects,
|
|
// m_textProperty->getProtectContent(),
|
|
// m_doc );
|
|
// if ( !macro )
|
|
// {
|
|
// macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
// }
|
|
//
|
|
// macro->addCommand( cmd );
|
|
// }
|
|
//
|
|
// if ( change & KPrTextProperty::Margins )
|
|
// {
|
|
// KPrChangeMarginCommand *cmd = new KPrChangeMarginCommand( i18n( "Apply Styles" ), m_objects,
|
|
// m_textProperty->getMarginsStruct(),
|
|
// m_doc, m_page );
|
|
//
|
|
// if ( !macro )
|
|
// {
|
|
// macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
// }
|
|
//
|
|
// macro->addCommand( cmd );
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
if ( m_generalProperty )
|
|
{
|
|
int change = m_generalProperty->getGeneralPropertyChange();
|
|
|
|
if ( change )
|
|
{
|
|
GeneralProperty::GeneralValue generalValue( m_generalProperty->getGeneralValue() );
|
|
|
|
if ( change & GeneralProperty::Name )
|
|
{
|
|
KCommand *cmd = new RenameNameObjectCommand( i18n( "Name Object" ), generalValue.m_name,
|
|
m_objects.at( 0 ), m_doc );
|
|
|
|
if ( !macro )
|
|
{
|
|
macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
}
|
|
|
|
macro->addCommand( cmd );
|
|
}
|
|
|
|
if ( change & GeneralProperty::Protect )
|
|
{
|
|
KCommand *cmd= new GeometryPropertiesCommand( i18n( "Protect Object" ), m_objects,
|
|
generalValue.m_protect == STATE_ON,
|
|
GeometryPropertiesCommand::ProtectSize,m_doc );
|
|
|
|
if ( !macro )
|
|
{
|
|
macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
}
|
|
|
|
macro->addCommand( cmd );
|
|
}
|
|
|
|
if ( change & GeneralProperty::KeepRatio )
|
|
{
|
|
KCommand *cmd= new GeometryPropertiesCommand( i18n( "Keep Ratio" ), m_objects,
|
|
generalValue.m_keepRatio == STATE_ON,
|
|
GeometryPropertiesCommand::KeepRatio,m_doc );
|
|
if ( !macro )
|
|
{
|
|
macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
}
|
|
|
|
macro->addCommand( cmd );
|
|
}
|
|
|
|
if ( change & GeneralProperty::Left
|
|
|| change & GeneralProperty::Top
|
|
|| change & GeneralProperty::Width
|
|
|| change & GeneralProperty::Height )
|
|
{
|
|
if ( !macro )
|
|
{
|
|
macro = new KMacroCommand( i18n( "Apply Properties" ) );
|
|
}
|
|
|
|
TQPtrListIterator<EmbeddedObject> it( m_objects );
|
|
for ( ; it.current(); ++it )
|
|
{
|
|
KoRect oldRect = it.current()->geometry()/*getRect()*/;
|
|
KoRect newRect = oldRect;
|
|
|
|
if ( change & GeneralProperty::Left )
|
|
newRect.moveTopLeft( KoPoint( generalValue.m_rect.left(), newRect.top() ) );
|
|
|
|
if ( change & GeneralProperty::Top )
|
|
newRect.moveTopLeft( KoPoint( newRect.left(), generalValue.m_rect.top() ) );
|
|
|
|
if ( change & GeneralProperty::Width )
|
|
newRect.setWidth( generalValue.m_rect.width() );
|
|
|
|
if ( change & GeneralProperty::Height )
|
|
newRect.setHeight( generalValue.m_rect.height() );
|
|
|
|
KCommand *cmd = new ChangeObjectGeometryCommand( it.current(), newRect.topLeft() - oldRect.topLeft(),
|
|
newRect.size() - oldRect.size() );
|
|
|
|
macro->addCommand( cmd );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return macro;
|
|
}
|
|
|
|
|
|
void PropertyEditor::setupTabs()
|
|
{
|
|
setupTabGeneral();
|
|
|
|
// int flags = m_objectProperties->getPropertyFlags();
|
|
//
|
|
// if ( flags & KPrObjectProperties::PtPen )
|
|
// setupTabPen( flags & KPrObjectProperties::PtLineEnds );
|
|
//
|
|
// if ( flags & KPrObjectProperties::PtBrush )
|
|
// setupTabBrush();
|
|
//
|
|
// if ( flags & KPrObjectProperties::PtRectangle )
|
|
// setupTabRect();
|
|
//
|
|
// if ( flags & KPrObjectProperties::PtPolygon )
|
|
// setupTabPolygon();
|
|
//
|
|
// if ( flags & KPrObjectProperties::PtPie )
|
|
// setupTabPie();
|
|
//
|
|
// if ( flags & KPrObjectProperties::PtPicture )
|
|
// setupTabPicture();
|
|
//
|
|
// if ( flags & KPrObjectProperties::PtText )
|
|
// setupTabText();
|
|
}
|
|
|
|
/*
|
|
void PropertyEditor::setupTabPen( bool configureLineEnds )
|
|
{
|
|
if ( m_penProperty == 0 )
|
|
{
|
|
KoPenCmd::Pen pen( m_objectProperties->getPen() );
|
|
|
|
m_penProperty = new KPrPenStyleWidget( this, 0, pen, configureLineEnds );
|
|
addTab( m_penProperty, i18n( "Outl&ine" ) );
|
|
}
|
|
}
|
|
|
|
|
|
void PropertyEditor::setupTabBrush()
|
|
{
|
|
if ( m_brushProperty == 0 )
|
|
{
|
|
KPrBrushCmd::Brush brush( m_objectProperties->getBrush() );
|
|
|
|
m_brushProperty = new KPrBrushProperty( this, 0, brush );
|
|
addTab( m_brushProperty, i18n( "&Fill" ) );
|
|
}
|
|
}
|
|
|
|
|
|
void PropertyEditor::setupTabRect()
|
|
{
|
|
if ( m_rectProperty == 0 )
|
|
{
|
|
KPrRectValueCmd::RectValues rectValues = m_objectProperties->getRectValues();
|
|
m_rectProperty = new KPrRectProperty( this, 0, rectValues );
|
|
addTab( m_rectProperty, i18n( "&Rectangle" ) );
|
|
}
|
|
}
|
|
|
|
|
|
void PropertyEditor::setupTabPolygon()
|
|
{
|
|
if ( m_polygonProperty == 0 )
|
|
{
|
|
KPrPolygonSettingCmd::PolygonSettings polygonSettings = m_objectProperties->getPolygonSettings();
|
|
m_polygonProperty = new KPrPolygonProperty( this, 0, polygonSettings );
|
|
addTab( m_polygonProperty, i18n("Polygo&n" ) );
|
|
}
|
|
}
|
|
|
|
|
|
void PropertyEditor::setupTabPie()
|
|
{
|
|
if ( m_pieProperty == 0 )
|
|
{
|
|
m_pieProperty = new KPrPieProperty( this, 0, m_objectProperties->getPieValues() );
|
|
addTab( m_pieProperty, i18n("&Pie" ) );
|
|
}
|
|
}
|
|
|
|
|
|
void PropertyEditor::setupTabPicture()
|
|
{
|
|
if ( m_pictureProperty == 0 )
|
|
{
|
|
m_pictureProperty = new KPrPictureProperty( this, 0, m_objectProperties->getPixmap(), m_objectProperties->getPictureSettings() );
|
|
addTab( m_pictureProperty, i18n("Pict&ure" ) );
|
|
}
|
|
}
|
|
|
|
|
|
void PropertyEditor::setupTabText()
|
|
{
|
|
if ( m_textProperty == 0 )
|
|
{
|
|
m_textProperty = new KPrTextProperty( this, 0, m_objectProperties->getMarginsStruct(),
|
|
m_doc->unit(), m_objectProperties->getProtectContent() );
|
|
addTab( m_textProperty, i18n("Te&xt" ) );
|
|
}
|
|
}*/
|
|
|
|
|
|
void PropertyEditor::setupTabGeneral()
|
|
{
|
|
if ( m_generalProperty == 0 )
|
|
{
|
|
GeneralProperty::GeneralValue generalValue = getGeneralValue();
|
|
m_generalProperty = new GeneralProperty( this, 0, generalValue, m_doc->unit() );
|
|
addTab( m_generalProperty, i18n( "&General" ) );
|
|
}
|
|
}
|
|
|
|
|
|
GeneralProperty::GeneralValue PropertyEditor::getGeneralValue()
|
|
{
|
|
GeneralProperty::GeneralValue generalValue;
|
|
|
|
if ( m_objects.count() == 1 )
|
|
{
|
|
generalValue.m_name = m_objects.at( 0 )->getObjectName();
|
|
}
|
|
|
|
bool protect = false;
|
|
generalValue.m_protect = STATE_OFF;
|
|
bool keepRatio = false;
|
|
generalValue.m_keepRatio = STATE_OFF;
|
|
|
|
TQPtrListIterator<EmbeddedObject> it( m_objects );
|
|
if ( it.current() )
|
|
{
|
|
protect = it.current()->isProtect();
|
|
generalValue.m_protect = protect ? STATE_ON : STATE_OFF;
|
|
keepRatio = it.current()->isKeepRatio();
|
|
generalValue.m_keepRatio = keepRatio ? STATE_ON : STATE_OFF;
|
|
generalValue.m_rect = it.current()->geometry()/*getRect()*/;
|
|
++it;
|
|
}
|
|
|
|
for ( ; it.current(); ++it )
|
|
{
|
|
if ( protect != it.current()->isProtect() )
|
|
{
|
|
generalValue.m_protect = STATE_UNDEF;
|
|
if ( generalValue.m_keepRatio == STATE_UNDEF )
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ( keepRatio != it.current()->isKeepRatio() )
|
|
{
|
|
generalValue.m_keepRatio = STATE_UNDEF;
|
|
if ( generalValue.m_protect == STATE_UNDEF )
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return generalValue;
|
|
}
|
|
|
|
|
|
void PropertyEditor::slotDone()
|
|
{
|
|
emit propertiesOk();
|
|
|
|
// if ( m_penProperty )
|
|
// m_penProperty->apply();
|
|
// if ( m_brushProperty )
|
|
// m_brushProperty->apply();
|
|
// if ( m_rectProperty )
|
|
// m_rectProperty->apply();
|
|
// if ( m_polygonProperty )
|
|
// m_polygonProperty->apply();
|
|
// if ( m_pieProperty )
|
|
// m_pieProperty->apply();
|
|
// if ( m_pictureProperty )
|
|
// m_pictureProperty->apply();
|
|
// if ( m_textProperty )
|
|
// m_textProperty->apply();
|
|
if ( m_generalProperty )
|
|
m_generalProperty->apply();
|
|
}
|
|
|
|
#include "kspread_propertyEditor.moc"
|