summaryrefslogtreecommitdiff
path: root/libopie2/examples/opieui/olistviewdemo
authormickeyl <mickeyl>2005-01-29 14:23:27 (UTC)
committer mickeyl <mickeyl>2005-01-29 14:23:27 (UTC)
commit20b3de56573b9e86c6b6041faf684adc8cbb2a45 (patch) (side-by-side diff)
treee0d91c84dee46d1cce3b0d68fd2c10c3dd7ce3a1 /libopie2/examples/opieui/olistviewdemo
parent555b999359a5aad999eaaf48632ce85f25125b85 (diff)
downloadopie-20b3de56573b9e86c6b6041faf684adc8cbb2a45.zip
opie-20b3de56573b9e86c6b6041faf684adc8cbb2a45.tar.gz
opie-20b3de56573b9e86c6b6041faf684adc8cbb2a45.tar.bz2
examples to where they belong
Diffstat (limited to 'libopie2/examples/opieui/olistviewdemo') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/examples/opieui/olistviewdemo/.cvsignore9
-rw-r--r--libopie2/examples/opieui/olistviewdemo/main.cpp29
-rw-r--r--libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp86
-rw-r--r--libopie2/examples/opieui/olistviewdemo/olistviewdemo.h51
-rw-r--r--libopie2/examples/opieui/olistviewdemo/olistviewdemo.pro23
5 files changed, 0 insertions, 198 deletions
diff --git a/libopie2/examples/opieui/olistviewdemo/.cvsignore b/libopie2/examples/opieui/olistviewdemo/.cvsignore
deleted file mode 100644
index 3983e82..0000000
--- a/libopie2/examples/opieui/olistviewdemo/.cvsignore
+++ b/dev/null
@@ -1,9 +0,0 @@
-olistviewdemo
-Makefile*
-moc*
-*moc
-*.o
-~*
-moc
-obj
-
diff --git a/libopie2/examples/opieui/olistviewdemo/main.cpp b/libopie2/examples/opieui/olistviewdemo/main.cpp
deleted file mode 100644
index cd49c28..0000000
--- a/libopie2/examples/opieui/olistviewdemo/main.cpp
+++ b/dev/null
@@ -1,29 +0,0 @@
-/**********************************************************************
-** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved.
-**
-** This file is part of Opie Environment.
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-**********************************************************************/
-
-#include "olistviewdemo.h"
-#include <opie2/oapplication.h>
-
-using namespace Opie::Ui;
-using namespace Opie::Core;
-
-int main( int argc, char **argv )
-{
- OApplication a( argc, argv, "OListViewDemo" );
- OListViewDemo e;
- a.showMainWidget(&e);
- return a.exec();
-}
-
diff --git a/libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp b/libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp
deleted file mode 100644
index 4c05620..0000000
--- a/libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp
+++ b/dev/null
@@ -1,86 +0,0 @@
-/*
-                 This file is part of the Opie Project
-
-              Copyright (C) 2003 Michael 'Mickey' Lauer
- <mickey@tm.informatik.uni-frankfurt.de>
- =.
- .=l.
-           .>+-=
- _;:,     .>    :=|. This program is free software; you can
-.> <`_,   >  .   <= redistribute it and/or modify it under
-:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
-.="- .-=="i,     .._ License as published by the Free Software
- - .   .-<_>     .<> Foundation; either version 2 of the License,
-     ._= =}       : or (at your option) any later version.
-    .%`+i>       _;_.
-    .i_,=:_.      -<s. 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
-..}^=.=       =       ; 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., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA.
-
-*/
-
-#include "olistviewdemo.h"
-
-/* OPIE */
-#include <opie2/olistview.h>
-#include <opie2/odebug.h>
-
-/* QT */
-#include <qstring.h>
-#include <qpixmap.h>
-#include <qlistview.h>
-
-using namespace Opie::Ui;
-
-OListViewDemo::OListViewDemo( QWidget* parent, const char* name, WFlags f )
- :QVBox( parent, name, f )
-{
- lv = new ONamedListView( this );
- lv->setRootIsDecorated( true );
- lv->addColumns( QStringList::split( ' ', "Column1 Column2 Column3 Column4" ) );
-
- ONamedListViewItem* item = new ONamedListViewItem( lv, QStringList::split( ' ', "Text1 Text2 Text3 Text4" ) );
- item->setText( "Column2", "ModifiedText" );
- item->setText( "Column5", "ThisColumnDoesNotExits" );
-
- new ONamedListViewItem( lv, QStringList::split( ' ', "Text1 Text2 Text3 Text4" ) );
- new ONamedListViewItem( lv, QStringList::split( ' ', "Text1 Text2 Text3 Text4" ) );
- new ONamedListViewItem( lv, QStringList::split( ' ', "Text1 Text2 Text3 Minni" ) );
- item = new ONamedListViewItem( lv, QStringList::split( ' ', "XXX YYY ZZZ ***" ) );
- new ONamedListViewItem( lv, QStringList::split( ' ', "Text1 Text2 Text3 Text4" ) );
- new ONamedListViewItem( lv, QStringList::split( ' ', "Text1 Text2 Text3 Text4" ) );
-
- new ONamedListViewItem( item, QStringList::split( ' ', "SubText1 Text2 Text3 Text4" ) );
- new ONamedListViewItem( item, QStringList::split( ' ', "SubText1 Text2 Text3 Text4" ) );
- new ONamedListViewItem( item, QStringList::split( ' ', "SubText1 Text2 Text3 Text4" ) );
- item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 HereItComes" ) );
- item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 HereItComesSoon" ) );
- item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 Mickey" ) );
-
- if ( lv->find( 3, "Mickey", 3 ) )
- odebug << "found Mickey :-)" << oendl;
- else
- odebug << "did not found Mickey :-(" << oendl;
-
- if ( lv->find( 3, "Minni", 0 ) )
- odebug << "found Minni :-)" << oendl;
- else
- odebug << "did not found Minni :-(" << oendl;
-
-}
-
-OListViewDemo::~OListViewDemo()
-{
-}
-
diff --git a/libopie2/examples/opieui/olistviewdemo/olistviewdemo.h b/libopie2/examples/opieui/olistviewdemo/olistviewdemo.h
deleted file mode 100644
index 0b5c498..0000000
--- a/libopie2/examples/opieui/olistviewdemo/olistviewdemo.h
+++ b/dev/null
@@ -1,51 +0,0 @@
-/*
-                 This file is part of the Opie Project
-
-              Copyright (C) 2003 Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de>
- =.
- .=l.
-           .>+-=
- _;:,     .>    :=|. This program is free software; you can
-.> <`_,   >  .   <= redistribute it and/or modify it under
-:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
-.="- .-=="i,     .._ License as published by the Free Software
- - .   .-<_>     .<> Foundation; either version 2 of the License,
-     ._= =}       : or (at your option) any later version.
-    .%`+i>       _;_.
-    .i_,=:_.      -<s. 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
-..}^=.=       =       ; 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., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA.
-
-*/
-
-#ifndef OLISTVIEWDEMO_H
-#define OLISTVIEWDEMO_H
-
-#include <qvbox.h>
-#include <opie2/olistview.h>
-
-class OListViewDemo: public QVBox
-{
- Q_OBJECT
-
- public:
- OListViewDemo( QWidget* parent=0, const char* name=0, WFlags f=0 );
- virtual ~OListViewDemo();
-
- private:
- Opie::Ui::ONamedListView* lv;
-
-};
-
-#endif
diff --git a/libopie2/examples/opieui/olistviewdemo/olistviewdemo.pro b/libopie2/examples/opieui/olistviewdemo/olistviewdemo.pro
deleted file mode 100644
index 52c3ceb..0000000
--- a/libopie2/examples/opieui/olistviewdemo/olistviewdemo.pro
+++ b/dev/null
@@ -1,23 +0,0 @@
-TEMPLATE = app
-CONFIG = qt warn_on
-HEADERS = olistviewdemo.h
-SOURCES = olistviewdemo.cpp \
- main.cpp
-INCLUDEPATH += $(OPIEDIR)/include
-DEPENDPATH += $(OPIEDIR)/include
-LIBS += -lopieui2 -lopiecore2 -lqpe
-TARGET = olistviewdemo
-MOC_DIR = moc
-OBJECTS_DIR = obj
-
-
-
-
-!contains( platform, x11 ) {
- include( $(OPIEDIR)/include.pro )
-}
-
-contains( platform, x11 ) {
- LIBS += -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib
-}
-