summaryrefslogtreecommitdiffstats
path: root/kig/modes/textlabelwizard.cc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-11 21:51:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-11 21:55:45 +0900
commita3dcc6228458572e91916d3e837bc1c06c55cb0a (patch)
tree9c7d61125a4f4b90ade1df2aa8368936750516d6 /kig/modes/textlabelwizard.cc
parent5b6bbcf2b60f26a670df462e02643fde115ea49d (diff)
downloadtdeedu-a3dcc6228458572e91916d3e837bc1c06c55cb0a.tar.gz
tdeedu-a3dcc6228458572e91916d3e837bc1c06c55cb0a.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 65a9f54e1051ee8ab936975e78dcb7117b265ef5)
Diffstat (limited to 'kig/modes/textlabelwizard.cc')
-rw-r--r--kig/modes/textlabelwizard.cc95
1 files changed, 0 insertions, 95 deletions
diff --git a/kig/modes/textlabelwizard.cc b/kig/modes/textlabelwizard.cc
deleted file mode 100644
index c92068de..00000000
--- a/kig/modes/textlabelwizard.cc
+++ /dev/null
@@ -1,95 +0,0 @@
-// Copyright (C) 2002 Dominique Devriese <devriese@kde.org>
-
-// 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.
-
-// This program 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 General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-// 02110-1301, USA.
-
-#include "textlabelwizard.h"
-#include "textlabelwizard.moc"
-
-#include "label.h"
-#include "linkslabel.h"
-
-#include <tqtextedit.h>
-#include <tdeapplication.h>
-
-#include <tqlayout.h>
-
-TextLabelWizard::TextLabelWizard( TQWidget* parent, TextLabelModeBase* mode )
- : TextLabelWizardBase( parent, "TextLabelWizard", false ), mmode( mode )
-{
- connect( labelTextInput, TQT_SIGNAL( textChanged() ),
- TQT_SLOT( textChanged() ) );
- connect( myCustomWidget1, TQT_SIGNAL( linkClicked( int ) ),
- TQT_SLOT( linkClicked( int ) ) );
- connect( this, TQT_SIGNAL( helpClicked() ),
- this, TQT_SLOT( slotHelpClicked() ) );
- labelTextInput->setFocus();
-}
-
-TextLabelWizard::~TextLabelWizard()
-{
-}
-
-void TextLabelWizard::back()
-{
- if ( currentPage() == select_arguments_page )
- {
- mmode->enterTextPageEntered();
- }
- TextLabelWizardBase::back();
-}
-
-void TextLabelWizard::next()
-{
- if ( currentPage() == enter_text_page )
- {
- mmode->selectArgumentsPageEntered();
- }
- TextLabelWizardBase::next();
-}
-
-void TextLabelWizard::reject()
-{
- TextLabelWizardBase::reject();
- mmode->cancelPressed();
-}
-
-void TextLabelWizard::accept()
-{
- mmode->finishPressed();
-}
-
-void TextLabelWizard::textChanged()
-{
- mmode->labelTextChanged();
-}
-
-void TextLabelWizard::linkClicked( int which )
-{
- mmode->linkClicked( which );
-}
-
-void TextLabelWizard::relayoutArgsPage()
-{
- select_arguments_pageLayout->activate();
- repaint();
-}
-
-void TextLabelWizard::slotHelpClicked()
-{
- kapp->invokeHelp( TQString::fromLatin1( "text-labels" ),
- TQString::fromLatin1( "kig" ) );
-}
-