summaryrefslogtreecommitdiffstats
path: root/kresources/egroupware/debugdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
commitb363d2579af0a11b77e698aed2e1021c2233b644 (patch)
treef4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /kresources/egroupware/debugdialog.cpp
parent61bddfe3a7226b18c68a76124b727c736f431688 (diff)
downloadtdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz
tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kresources/egroupware/debugdialog.cpp')
-rw-r--r--kresources/egroupware/debugdialog.cpp126
1 files changed, 0 insertions, 126 deletions
diff --git a/kresources/egroupware/debugdialog.cpp b/kresources/egroupware/debugdialog.cpp
deleted file mode 100644
index 54fe07234..000000000
--- a/kresources/egroupware/debugdialog.cpp
+++ /dev/null
@@ -1,126 +0,0 @@
-/*
- This file is part of tdepim.
- Copyright (c) 2005 Tobias Koenig <tokoe@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 <tqfile.h>
-#include <tqfiledialog.h>
-#include <tqlayout.h>
-
-#include <ktextbrowser.h>
-#include <kstaticdeleter.h>
-
-#include <stdlib.h>
-#include <klocale.h>
-#include "debugdialog.h"
-
-DebugDialog* DebugDialog::mSelf = 0;
-static KStaticDeleter<DebugDialog> debugDialogDeleter;
-
-DebugDialog::DebugDialog()
- : KDialogBase( Plain, WStyle_DialogBorder | WStyle_StaysOnTop, 0,
- "Debug Dialog", false, i18n("Debug Dialog"),
- User1 | User2 | Ok, Ok, true )
-{
- TQWidget *page = plainPage();
- TQVBoxLayout *layout = new TQVBoxLayout( page, marginHint(), spacingHint() );
-
- mView = new KTextBrowser( page );
- layout->addWidget( mView );
-
- setButtonText( User1, "Save As..." );
- setButtonText( User2, "Clear" );
-
- clear();
-}
-
-void DebugDialog::init()
-{
- if ( !mSelf ) {
- if ( getenv( "EGROUPWARE_DEBUG" ) != 0 ) {
- debugDialogDeleter.setObject( mSelf, new DebugDialog );
- }
- }
-
- if ( mSelf ) {
- mSelf->show();
- mSelf->raise();
- }
-}
-
-DebugDialog::~DebugDialog()
-{
- mSelf = 0;
-}
-
-void DebugDialog::addMessage( const TQString &msg, Type type )
-{
- if ( mSelf )
- mSelf->addText( msg, type );
-}
-
-void DebugDialog::clear()
-{
- mView->clear();
- mMessages.clear();
-}
-
-void DebugDialog::save()
-{
- TQString fileName = TQFileDialog::getSaveFileName();
- if ( fileName.isEmpty() )
- return;
-
- TQFile file( fileName );
- if ( !file.open( IO_WriteOnly ) ) {
- tqWarning( "Couldn't open file %s", file.name().latin1() );
- return;
- }
-
- file.writeBlock( mMessages.join( "\n\n" ).utf8() );
- file.close();
-}
-
-void DebugDialog::slotUser1()
-{
- save();
-}
-
-void DebugDialog::slotUser2()
-{
- clear();
-}
-
-void DebugDialog::addText( const TQString &text, Type type )
-{
- TQString htmlCode( text );
- htmlCode.replace( "<", "&lt;" );
- htmlCode.replace( ">", "&gt;" );
- htmlCode.replace( "\n", "<br>" );
-
- mMessages.append( text );
- if ( type == Input )
- mHTMLMessages.append( "<font color=\"green\">" + htmlCode + "</font>" );
- else
- mHTMLMessages.append( "<font color=\"blue\">" + htmlCode + "</font>" );
-
- mView->clear();
- mView->setText( mHTMLMessages.join( "<br>" ) );
-}
-
-#include "debugdialog.moc"