You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kuickshow/kuickshow/src/mainwidget.cpp

44 lines
1.2 KiB

/* This file is part of the KDE project
Copyright (C) 1998,1999 Carsten Pfeiffer <pfeiffer@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, version 2.
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; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "fileview.h"
#include "kuickdata.h"
#include "mainwidget.h"
MainWidget::MainWidget( TQString startDir, TQWidget *parent,
const char *name ) : TQWidget ( parent, name )
{
box = new FileView( startDir, true, (TQDir::Dirs | TQDir::Files),
this, "fileview" );
}
MainWidget::~MainWidget()
{
}
// for now, no layout managers
void MainWidget::resizeEvent( TQResizeEvent * )
{
box->resize( width(), height() );
}
#include "mainwidget.moc"