summaryrefslogtreecommitdiffstats
path: root/tdecore/tests/kconfigtestgui.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:04:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:04:16 -0600
commit5159cd2beb2e87806a5b54e9991b7895285c9d3e (patch)
tree9b70e8be47a390f8f4d56ead812ab0c9dad88709 /tdecore/tests/kconfigtestgui.cpp
parentc17cb900dcf52b8bd6dc300d4f103392900ec2b4 (diff)
downloadtdelibs-5159cd2beb2e87806a5b54e9991b7895285c9d3e.tar.gz
tdelibs-5159cd2beb2e87806a5b54e9991b7895285c9d3e.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tdecore/tests/kconfigtestgui.cpp')
-rw-r--r--tdecore/tests/kconfigtestgui.cpp200
1 files changed, 0 insertions, 200 deletions
diff --git a/tdecore/tests/kconfigtestgui.cpp b/tdecore/tests/kconfigtestgui.cpp
deleted file mode 100644
index 776082bfb..000000000
--- a/tdecore/tests/kconfigtestgui.cpp
+++ /dev/null
@@ -1,200 +0,0 @@
-/* This file is part of the KDE libraries
- Copyright (C) 1997 Matthias Kalle Dalheimer (kalle@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 "kconfigtestgui.h"
-#include "kconfigtestgui.moc"
-
-//
-// configtest.cpp: libKDEcore example
-//
-// demonstrates use of TDEConfig class
-//
-// adapted from Qt widgets demo
-
-#include <unistd.h>
-#include <stdlib.h>
-#include <kapplication.h>
-#include <tqdialog.h>
-#include <tqfile.h>
-#include <tqfileinfo.h>
-#include <tqdatetime.h>
-#include <kdebug.h>
-#include <ksimpleconfig.h>
-#include <config.h>
-
-// Standard Qt widgets
-
-#include <tqlabel.h>
-#include <tqlineedit.h>
-#include <tqpushbutton.h>
-
-// KDE includes
-#include <kconfig.h>
-
-#ifdef HAVE_PATHS_H
-#include <paths.h>
-#endif
-
-#ifndef _PATH_TMP
-#define _PATH_TMP "/tmp/"
-#endif
-
-//
-// Construct the TDEConfigTestView with buttons
-//
-
-TDEConfigTestView::TDEConfigTestView( TQWidget *parent, const char *name )
- : TQDialog( parent, name ),
- pConfig( 0L ),
- pFile( 0L ),
- pStream( 0L )
-{
- // Set the window caption/title
-
- setCaption( "TDEConfig test" );
-
- // Label and edit for the app config file
- pAppFileLabel = new TQLabel( this, "appconfiglabel" );
- pAppFileLabel->setText( "Application config file:" );
- pAppFileLabel->setGeometry( 20, 20, 200, 20 );
-
- pAppFileEdit = new TQLineEdit( this, "appconfigedit" );
- pAppFileEdit->setGeometry( 240, 20, 160, 20 );
- connect( pAppFileEdit, TQT_SIGNAL(returnPressed()),
- TQT_SLOT(appConfigEditReturnPressed()));
-
- // Label and edit for the group
- pGroupLabel = new TQLabel( this, "grouplabel" );
- pGroupLabel->setText( "Group:" );
- pGroupLabel->setGeometry( 20, 60, 80, 20 );
-
- pGroupEdit = new TQLineEdit( this, "groupedit" );
- pGroupEdit->setGeometry( 120, 60, 100, 20 );
- connect( pGroupEdit, TQT_SIGNAL(returnPressed()),
- TQT_SLOT(groupEditReturnPressed()));
-
- // Edit and label for the key/value pair
- pKeyEdit = new TQLineEdit( this, "keyedit" );
- pKeyEdit->setGeometry( 20, 100, 80, 20 );
- connect( pKeyEdit, TQT_SIGNAL( returnPressed()),
- TQT_SLOT(keyEditReturnPressed()));
-
- pEqualsLabel = new TQLabel( this, "equalslabel" );
- pEqualsLabel->setGeometry( 105, 100, 20, 20 );
- pEqualsLabel->setText( "=" );
-
- pValueEdit = new TQLineEdit( this, "valueedit" );
- pValueEdit->setGeometry( 120, 100, 100, 20 );
- pValueEdit->setText( "---" );
-
- pWriteButton = new TQPushButton( this, "writebutton" );
- pWriteButton->setGeometry( 20,140, 80, 20 );
- pWriteButton->setText( "Write entry" );
- connect( pWriteButton, TQT_SIGNAL(clicked()), TQT_SLOT( writeButtonClicked() ) );
-
- // Labels for the info line
- pInfoLabel1 = new TQLabel( this, "infolabel1" );
- pInfoLabel1->setGeometry( 20, 200, 60, 20 );
- pInfoLabel1->setText( "Info:" );
-
- pInfoLabel2 = new TQLabel( this, "infolabel2" );
- pInfoLabel2->setGeometry( 100, 200, 300, 20 );
- pInfoLabel2->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
-
- // Quit button
- pQuitButton = new TQPushButton( this, "quitbutton" );
- pQuitButton->setText( "Quit" );
- pQuitButton->setGeometry( 340, 60, 60, 60 );
- connect( pQuitButton, TQT_SIGNAL(clicked()), tqApp, TQT_SLOT(quit()) );
-
- // create a default TDEConfig object in order to be able to start right away
- pConfig = new TDEConfig( TQString::null );
-}
-
-TDEConfigTestView::~TDEConfigTestView()
-{
- delete pConfig;
- delete pFile;
- delete pStream;
-}
-
-void TDEConfigTestView::appConfigEditReturnPressed()
-{
- // if there already was a config object, delete it and its associated data
- delete pConfig;
- pConfig = 0L;
- delete pFile;
- pFile = 0L;
- delete pStream;
- pStream = 0L;
-
- // create a new config object
- if( !pAppFileEdit->text().isEmpty() )
- pConfig = new TDEConfig( pAppFileEdit->text() );
-
- pInfoLabel2->setText( "New config object created." );
-}
-
-void TDEConfigTestView::groupEditReturnPressed()
-{
- pConfig->setGroup( pGroupEdit->text() );
- // according to the Qt doc, this is begging for trouble, but for a
- // test program this will do
- TQString aText;
- aText.sprintf( "Group set to %s", TQString( pConfig->group() ).isEmpty() ?
- TQString("<default>").ascii() : pConfig->group().ascii() );
- pInfoLabel2->setText( aText );
-}
-
-void TDEConfigTestView::keyEditReturnPressed()
-{
- TQString aValue = pConfig->readEntry( pKeyEdit->text() );
- // just checking aValue.isNull() would be easier here, but this is
- // to demonstrate the HasKey()-method. Besides, it is better data
- // encapsulation because we do not make any assumption about coding
- // non-values here.
- if( !pConfig->hasKey( pKeyEdit->text() ) )
- {
- pInfoLabel2->setText( "Key not found!" );
- pValueEdit->setText( "---" );
- }
- else
- {
- pInfoLabel2->setText( "Key found!" );
- pValueEdit->setText( aValue );
- }
-}
-
-void TDEConfigTestView::writeButtonClicked()
-{
- pConfig->writeEntry( pKeyEdit->text(), TQString( pValueEdit->text() ) );
- pInfoLabel2->setText( "Entry written" );
-
- kdDebug() << "Entry written: " << 27 << endl;
-}
-
-
-int main( int argc, char **argv )
-{
- TDEApplication a( argc, argv, "bla" );
-
- TDEConfigTestView *w = new TDEConfigTestView();
- a.setMainWidget( w );
- return w->exec();
-}