summaryrefslogtreecommitdiffstats
path: root/kio/tests/kdirlistertest.cpp
blob: 73d5263876ddd662987baa3ba04b44d6b594ae47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* This file is part of the KDE desktop environment

   Copyright (C) 2001, 2002 Michael Brade <brade@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 <tqlayout.h>
#include <tqpushbutton.h>

#include <kapplication.h>
#include <kdirlister.h>
#include <kdebug.h>

#include "kdirlistertest.h"

#include <cstdlib>


KDirListerTest::KDirListerTest( TQWidget *parent, const char *name )
  : TQWidget( parent, name )
{
  lister = new KDirLister( false /* true */ );
  debug = new PrintSignals;

  TQVBoxLayout* tqlayout = new TQVBoxLayout( this );

  TQPushButton* startH = new TQPushButton( "Start listing $HOME", this );
  TQPushButton* startR= new TQPushButton( "Start listing /", this );
  TQPushButton* test = new TQPushButton( "Many", this );
  TQPushButton* startT = new TQPushButton( "tarfile", this );

  tqlayout->addWidget( startH );
  tqlayout->addWidget( startR );
  tqlayout->addWidget( startT );
  tqlayout->addWidget( test );
  resize( tqlayout->tqsizeHint() );

  connect( startR, TQT_SIGNAL( clicked() ), TQT_SLOT( startRoot() ) );
  connect( startH, TQT_SIGNAL( clicked() ), TQT_SLOT( startHome() ) );
  connect( startT, TQT_SIGNAL( clicked() ), TQT_SLOT( startTar() ) );
  connect( test, TQT_SIGNAL( clicked() ), TQT_SLOT( test() ) );

  connect( lister, TQT_SIGNAL( started( const KURL & ) ),
           debug,  TQT_SLOT( started( const KURL & ) ) );
  connect( lister, TQT_SIGNAL( completed() ),
           debug,  TQT_SLOT( completed() ) );
  connect( lister, TQT_SIGNAL( completed( const KURL & ) ),
           debug,  TQT_SLOT( completed( const KURL & ) ) );
  connect( lister, TQT_SIGNAL( canceled() ),
           debug,  TQT_SLOT( canceled() ) );
  connect( lister, TQT_SIGNAL( canceled( const KURL & ) ),
           debug,  TQT_SLOT( canceled( const KURL & ) ) );
  connect( lister, TQT_SIGNAL( redirection( const KURL & ) ),
           debug,  TQT_SLOT( redirection( const KURL & ) ) );
  connect( lister, TQT_SIGNAL( redirection( const KURL &, const KURL & ) ),
           debug,  TQT_SLOT( redirection( const KURL &, const KURL & ) ) );
  connect( lister, TQT_SIGNAL( clear() ),
           debug,  TQT_SLOT( clear() ) );
  connect( lister, TQT_SIGNAL( newItems( const KFileItemList & ) ),
           debug,  TQT_SLOT( newItems( const KFileItemList & ) ) );
  connect( lister, TQT_SIGNAL( itemsFilteredByMime( const KFileItemList & ) ),
           debug,  TQT_SLOT( itemsFilteredByMime( const KFileItemList & ) ) );
  connect( lister, TQT_SIGNAL( deleteItem( KFileItem * ) ),
           debug,  TQT_SLOT( deleteItem( KFileItem * ) ) );
  connect( lister, TQT_SIGNAL( refreshItems( const KFileItemList & ) ),
           debug,  TQT_SLOT( refreshItems( const KFileItemList & ) ) );
  connect( lister, TQT_SIGNAL( infoMessage( const TQString& ) ),
           debug,  TQT_SLOT( infoMessage( const TQString& ) ) );
  connect( lister, TQT_SIGNAL( percent( int ) ),
           debug,  TQT_SLOT( percent( int ) ) );
  connect( lister, TQT_SIGNAL( totalSize( KIO::filesize_t ) ),
           debug,  TQT_SLOT( totalSize( KIO::filesize_t ) ) );
  connect( lister, TQT_SIGNAL( processedSize( KIO::filesize_t ) ),
           debug,  TQT_SLOT( processedSize( KIO::filesize_t ) ) );
  connect( lister, TQT_SIGNAL( speed( int ) ),
           debug,  TQT_SLOT( speed( int ) ) );

  connect( lister, TQT_SIGNAL( completed() ),
           this,  TQT_SLOT( completed() ) );
}

KDirListerTest::~KDirListerTest()
{
  delete lister;
}

void KDirListerTest::startHome()
{
  KURL home( getenv( "HOME" ) );
  lister->openURL( home, false, false );
//  lister->stop();
}

void KDirListerTest::startRoot()
{
  KURL root( "file:/" );
  lister->openURL( root, true, true );
// lister->stop( root );
}

void KDirListerTest::startTar()
{
  KURL root( "file:/home/jowenn/aclocal_1.tgz" );
  lister->openURL( root, true, true );
// lister->stop( root );
}

void KDirListerTest::test()
{
  KURL home( getenv( "HOME" ) );
  KURL root( "file:/" );
/*  lister->openURL( home, true, false );
  lister->openURL( root, true, true );
  lister->openURL( KURL("file:/etc"), true, true );
  lister->openURL( root, true, true );
  lister->openURL( KURL("file:/dev"), true, true );
  lister->openURL( KURL("file:/tmp"), true, true );
  lister->openURL( KURL("file:/usr/include"), true, true );
  lister->updateDirectory( KURL("file:/usr/include") );
  lister->updateDirectory( KURL("file:/usr/include") );
  lister->openURL( KURL("file:/usr/"), true, true );
*/
  lister->openURL( KURL("file:/dev"), true, true );
}

void KDirListerTest::completed()
{
    if ( lister->url().path() == "/")
    {
        KFileItem* item = lister->findByURL( "/tmp" );
        if ( item )
            kdDebug() << "Found /tmp: " << item << endl;
        else
            kdWarning() << "/tmp not found! Bug in findByURL?" << endl;
    }
}

int main ( int argc, char *argv[] )
{
  KApplication app( argc, argv, "kdirlistertest" );

  KDirListerTest *test = new KDirListerTest( 0 );
  test->show();
  app.setMainWidget( test );
  return app.exec();
}

#include "kdirlistertest.moc"