#include <tdelocale.h>
/****************************************************************************
** Form implementation generated from reading ui file './import.ui'
**
** Created: dim. oct. 26 08:56:28 2008
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/

#include "import.h"

#include <tqvariant.h>
#include <tqpushbutton.h>
#include <tqlabel.h>
#include <tqheader.h>
#include <tqlistview.h>
#include <kcombobox.h>
#include <tqcombobox.h>
#include <tdeselect.h>
#include <tqlayout.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include "kcombobox.h"
#include "tdeselect.h"

/*
 *  Constructs a import as a child of 'parent', with the
 *  name 'name' and widget flags set to 'f'.
 */
import::import( TQWidget* parent, const char* name, WFlags fl )
    : TQWidget( parent, name, fl )
{
    if ( !name )
	setName( "import" );
    importLayout = new TQGridLayout( this, 1, 1, 11, 6, "importLayout"); 

    textLabel1 = new TQLabel( this, "textLabel1" );
    textLabel1->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)0, (TQSizePolicy::SizeType)5, 0, 0, textLabel1->sizePolicy().hasHeightForWidth() ) );

    importLayout->addWidget( textLabel1, 0, 0 );

    layout2 = new TQGridLayout( 0, 1, 1, 0, 6, "layout2"); 

    lvDVD = new TQListView( this, "lvDVD" );
    lvDVD->addColumn( tr2i18n( "Video files" ) );
    lvDVD->header()->setClickEnabled( FALSE, lvDVD->header()->count() - 1 );
    lvDVD->addColumn( tr2i18n( "..." ) );
    lvDVD->header()->setClickEnabled( FALSE, lvDVD->header()->count() - 1 );
    lvDVD->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)7, (TQSizePolicy::SizeType)7, 0, 0, lvDVD->sizePolicy().hasHeightForWidth() ) );
    lvDVD->setMinimumSize( TQSize( 0, 200 ) );
    lvDVD->setRootIsDecorated( FALSE );
    lvDVD->setResizeMode( TQListView::AllColumns );

    layout2->addMultiCellWidget( lvDVD, 0, 1, 0, 0 );

    importLayout->addMultiCellLayout( layout2, 1, 1, 0, 3 );

    cbOutputDev = new KComboBox( FALSE, this, "cbOutputDev" );

    importLayout->addWidget( cbOutputDev, 0, 1 );

    cbFormat = new TQComboBox( FALSE, this, "cbFormat" );
    cbFormat->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)0, (TQSizePolicy::SizeType)0, 0, 0, cbFormat->sizePolicy().hasHeightForWidth() ) );

    importLayout->addWidget( cbFormat, 0, 2 );

    lTotal = new TQLabel( this, "lTotal" );
    lTotal->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)0, (TQSizePolicy::SizeType)0, 0, 0, lTotal->sizePolicy().hasHeightForWidth() ) );

    importLayout->addWidget( lTotal, 2, 3 );

    gsTotal = new KGradientSelector( this, "gsTotal" );
    gsTotal->setEnabled( FALSE );
    gsTotal->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)5, (TQSizePolicy::SizeType)0, 0, 0, gsTotal->sizePolicy().hasHeightForWidth() ) );
    gsTotal->setMaximumSize( TQSize( 32767, 13 ) );
    gsTotal->setValue( 0 );
    gsTotal->setMaxValue( 180 );
    gsTotal->setFirstColor( TQColor( 255, 77, 6 ) );
    gsTotal->setSecondColor( TQColor( 85, 255, 0 ) );

    importLayout->addMultiCellWidget( gsTotal, 2, 2, 0, 2 );
    languageChange();
    resize( TQSize(524, 416).expandedTo(minimumSizeHint()) );
    clearWState( WState_Polished );

    // signals and slots connections
    connect( lvDVD, TQT_SIGNAL( selectionChanged(TQListViewItem*) ), this, TQT_SLOT( lvDVDItemSelected(TQListViewItem*) ) );
    connect( cbFormat, TQT_SIGNAL( activated(const TQString&) ), this, TQT_SLOT( cbFormatActivated(const TQString&) ) );
}

/*
 *  Destroys the object and frees any allocated resources
 */
import::~import()
{
    // no need to delete child widgets, TQt does it all for us
}

/*
 *  Sets the strings of the subwidgets using the current
 *  language.
 */
void import::languageChange()
{
    setCaption( tr2i18n( "import" ) );
    textLabel1->setText( tr2i18n( "Output" ) );
    lvDVD->header()->setLabel( 0, tr2i18n( "Video files" ) );
    lvDVD->header()->setLabel( 1, tr2i18n( "..." ) );
    cbFormat->clear();
    cbFormat->insertItem( tr2i18n( "PAL" ) );
    cbFormat->insertItem( tr2i18n( "NTSC" ) );
    lTotal->setText( tr2i18n( "--:--:--" ) );
}

void import::lvDVDItemSelected(TQListViewItem*)
{
    tqWarning( "import::lvDVDItemSelected(TQListViewItem*): Not implemented yet" );
}

void import::bAddClick()
{
    tqWarning( "import::bAddClick(): Not implemented yet" );
}

void import::cbFormatActivated(const TQString&)
{
    tqWarning( "import::cbFormatActivated(const TQString&): Not implemented yet" );
}

#include "import.moc"