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.
122 lines
3.5 KiB
122 lines
3.5 KiB
/*
|
|
* Copyright (c) 2002-2003 Jesper K. Pedersen <blackie@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 version 2 as published by the Free Software Foundation.
|
|
*
|
|
* 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.
|
|
**/
|
|
|
|
#ifdef TQT_ONLY
|
|
#include "compat.h"
|
|
#include "images.h"
|
|
#else
|
|
#include "auxbuttons.moc"
|
|
#include <kiconloader.h>
|
|
#include <tdelocale.h>
|
|
#endif
|
|
|
|
#include "auxbuttons.h"
|
|
#include <tqlayout.h>
|
|
#include <tqwhatsthis.h>
|
|
#include <tqtooltip.h>
|
|
#include <tqtoolbutton.h>
|
|
#include "util.h"
|
|
|
|
AuxButtons::AuxButtons( TQWidget* parent, const char* name = 0)
|
|
:TQDockWindow( TQDockWindow::InDock, parent, name)
|
|
{
|
|
TQBoxLayout* layout = boxLayout();
|
|
|
|
_undo = new TQToolButton( this );
|
|
_undo->setIconSet( Util::getSystemIconSet(TQString::fromLatin1("edit-undo") ) );
|
|
layout->addWidget( _undo );
|
|
connect( _undo, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(undo()) );
|
|
TQToolTip::add( _undo, i18n( "Undo" ) );
|
|
|
|
_redo = new TQToolButton( this );
|
|
_redo->setIconSet( Util::getSystemIconSet(TQString::fromLatin1("edit-redo") ) );
|
|
layout->addWidget( _redo );
|
|
connect( _redo, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(redo()) );
|
|
TQToolTip::add( _redo, i18n( "Redo" ) );
|
|
|
|
_cut = new TQToolButton( this );
|
|
_cut->setIconSet( Util::getSystemIconSet(TQString::fromLatin1("edit-cut") ) );
|
|
layout->addWidget( _cut );
|
|
connect( _cut, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(cut()) );
|
|
TQToolTip::add( _cut, i18n( "Cut" ) );
|
|
|
|
_copy = new TQToolButton( this );
|
|
_copy->setIconSet( Util::getSystemIconSet(TQString::fromLatin1("edit-copy") ) );
|
|
layout->addWidget( _copy );
|
|
connect( _copy, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(copy()) );
|
|
TQToolTip::add( _copy, i18n( "Copy" ) );
|
|
|
|
_paste = new TQToolButton( this );
|
|
_paste->setIconSet( Util::getSystemIconSet(TQString::fromLatin1("edit-paste")) );
|
|
layout->addWidget( _paste );
|
|
connect( _paste, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(paste()) );
|
|
TQToolTip::add( _paste, i18n( "Paste" ) );
|
|
|
|
_save = new TQToolButton( this );
|
|
_save->setIconSet( Util::getSystemIconSet(TQString::fromLatin1("document-save")) );
|
|
layout->addWidget( _save );
|
|
connect( _save, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(save()) );
|
|
TQToolTip::add( _save, i18n( "Save" ) );
|
|
|
|
|
|
TQToolButton* button = new TQToolButton(this);
|
|
button->setPixmap( Util::getSystemIcon( TQString::fromLatin1("contexthelp") ) );
|
|
layout->addWidget( button );
|
|
connect(button, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotEnterWhatsThis()));
|
|
|
|
_undo->setEnabled( false );
|
|
_redo->setEnabled( false );
|
|
|
|
}
|
|
|
|
void AuxButtons::slotEnterWhatsThis()
|
|
{
|
|
TQWhatsThis::enterWhatsThisMode ();
|
|
}
|
|
|
|
void AuxButtons::slotCanUndo( bool b )
|
|
{
|
|
_undo->setEnabled( b );
|
|
}
|
|
|
|
void AuxButtons::slotCanRedo( bool b )
|
|
{
|
|
_redo->setEnabled( b );
|
|
}
|
|
|
|
void AuxButtons::slotCanCut( bool b )
|
|
{
|
|
_cut->setEnabled( b );
|
|
}
|
|
|
|
void AuxButtons::slotCanCopy( bool b )
|
|
{
|
|
_copy->setEnabled( b );
|
|
}
|
|
|
|
void AuxButtons::slotCanPaste( bool b )
|
|
{
|
|
_paste->setEnabled( b );
|
|
}
|
|
|
|
void AuxButtons::slotCanSave( bool b )
|
|
{
|
|
_save->setEnabled( b );
|
|
}
|
|
|