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.
130 lines
4.3 KiB
130 lines
4.3 KiB
15 years ago
|
#include <klocale.h>
|
||
|
/****************************************************************************
|
||
|
** Form implementation generated from reading ui file './mencoderCmdGen.ui'
|
||
|
**
|
||
|
** Created: dim. oct. 26 08:57:34 2008
|
||
|
**
|
||
|
** WARNING! All changes made in this file will be lost!
|
||
|
****************************************************************************/
|
||
|
|
||
|
#include "mencoderCmdGen.h"
|
||
|
|
||
|
#include <qvariant.h>
|
||
|
#include <kpushbutton.h>
|
||
|
#include <qheader.h>
|
||
|
#include <qlistview.h>
|
||
|
#include <qwidgetstack.h>
|
||
|
#include <qwidget.h>
|
||
|
#include <qlayout.h>
|
||
|
#include <qtooltip.h>
|
||
|
#include <qwhatsthis.h>
|
||
|
#include <qimage.h>
|
||
|
#include <qpixmap.h>
|
||
|
|
||
|
#include "kpushbutton.h"
|
||
|
|
||
|
/*
|
||
|
* Constructs a MyDialog1 as a child of 'parent', with the
|
||
|
* name 'name' and widget flags set to 'f'.
|
||
|
*
|
||
|
* The dialog will by default be modeless, unless you set 'modal' to
|
||
|
* TRUE to construct a modal dialog.
|
||
|
*/
|
||
|
MyDialog1::MyDialog1( QWidget* parent, const char* name, bool modal, WFlags fl )
|
||
|
: QDialog( parent, name, modal, fl )
|
||
|
{
|
||
|
if ( !name )
|
||
|
setName( "MyDialog1" );
|
||
|
setSizeGripEnabled( TRUE );
|
||
|
MyDialog1Layout = new QGridLayout( this, 1, 1, 11, 6, "MyDialog1Layout");
|
||
|
|
||
|
Layout1 = new QHBoxLayout( 0, 0, 6, "Layout1");
|
||
|
Horizontal_Spacing2 = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
|
||
|
Layout1->addItem( Horizontal_Spacing2 );
|
||
|
|
||
|
buttonOk = new KPushButton( this, "buttonOk" );
|
||
|
buttonOk->setAutoDefault( TRUE );
|
||
|
buttonOk->setDefault( TRUE );
|
||
|
buttonOk->setProperty( "stdItem", 1 );
|
||
|
Layout1->addWidget( buttonOk );
|
||
|
|
||
|
buttonCancel = new KPushButton( this, "buttonCancel" );
|
||
|
buttonCancel->setAutoDefault( TRUE );
|
||
|
buttonCancel->setProperty( "stdItem", 2 );
|
||
|
Layout1->addWidget( buttonCancel );
|
||
|
|
||
|
MyDialog1Layout->addMultiCellLayout( Layout1, 1, 1, 0, 1 );
|
||
|
|
||
|
listView = new QListView( this, "listView" );
|
||
|
listView->addColumn( QString::null );
|
||
|
listView->header()->setClickEnabled( FALSE, listView->header()->count() - 1 );
|
||
|
listView->header()->setResizeEnabled( FALSE, listView->header()->count() - 1 );
|
||
|
listView->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)0, (QSizePolicy::SizeType)7, 0, 0, listView->sizePolicy().hasHeightForWidth() ) );
|
||
|
listView->setMinimumSize( QSize( 200, 0 ) );
|
||
|
listView->setResizeMode( QListView::LastColumn );
|
||
|
|
||
|
MyDialog1Layout->addWidget( listView, 0, 0 );
|
||
|
|
||
|
wsOptions = new QWidgetStack( this, "wsOptions" );
|
||
|
|
||
|
WStackPage = new QWidget( wsOptions, "WStackPage" );
|
||
|
wsOptions->addWidget( WStackPage, 0 );
|
||
|
|
||
|
MyDialog1Layout->addWidget( wsOptions, 0, 1 );
|
||
|
languageChange();
|
||
|
resize( QSize(655, 498).expandedTo(minimumSizeHint()) );
|
||
|
clearWState( WState_Polished );
|
||
|
|
||
|
// signals and slots connections
|
||
|
connect( buttonOk, SIGNAL( clicked() ), this, SLOT( accept() ) );
|
||
|
connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
|
||
|
connect( listView, SIGNAL( currentChanged(QListViewItem*) ), this, SLOT( listViewCurrentChanged(QListViewItem*) ) );
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Destroys the object and frees any allocated resources
|
||
|
*/
|
||
|
MyDialog1::~MyDialog1()
|
||
|
{
|
||
|
// no need to delete child widgets, Qt does it all for us
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Sets the strings of the subwidgets using the current
|
||
|
* language.
|
||
|
*/
|
||
|
void MyDialog1::languageChange()
|
||
|
{
|
||
|
setCaption( tr2i18n( "MEncoder options" ) );
|
||
|
listView->header()->setLabel( 0, QString::null );
|
||
|
listView->clear();
|
||
|
QListViewItem * item_2 = new QListViewItem( listView, 0 );
|
||
|
item_2->setOpen( TRUE );
|
||
|
QListViewItem * item = new QListViewItem( item_2, 0 );
|
||
|
item->setText( 0, tr2i18n( "faac" ) );
|
||
|
item_2->setOpen( TRUE );
|
||
|
item = new QListViewItem( item_2, item );
|
||
|
item->setText( 0, tr2i18n( "lavc" ) );
|
||
|
item_2->setText( 0, tr2i18n( "Audio Codec" ) );
|
||
|
|
||
|
QListViewItem * item_3 = new QListViewItem( listView, item_2 );
|
||
|
item_3->setOpen( TRUE );
|
||
|
item = new QListViewItem( item_3, item_2 );
|
||
|
item->setText( 0, tr2i18n( "x264" ) );
|
||
|
item_3->setOpen( TRUE );
|
||
|
item = new QListViewItem( item_3, item );
|
||
|
item->setText( 0, tr2i18n( "xvid" ) );
|
||
|
item_3->setOpen( TRUE );
|
||
|
item = new QListViewItem( item_3, item );
|
||
|
item->setText( 0, tr2i18n( "lavc" ) );
|
||
|
item_3->setText( 0, tr2i18n( "Video Codec" ) );
|
||
|
|
||
|
}
|
||
|
|
||
|
void MyDialog1::listViewCurrentChanged(QListViewItem*)
|
||
|
{
|
||
|
qWarning( "MyDialog1::listViewCurrentChanged(QListViewItem*): Not implemented yet" );
|
||
|
}
|
||
|
|
||
|
#include "mencoderCmdGen.moc"
|