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 163 164 165 166 167 168 169 170 171 172 173 174
|
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This 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; either version 2 of the License, or (at your option) any later
* version.
*
* This software 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. If not, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/
#include "TabbedDialog.h"
#include "IconSize.h"
#include "QtUtil.h"
#include "SimpleListView.h"
#include <QApplication>
#include <QScrollArea>
#include <QShortcut>
#include <QToolTip>
#include <QGroupBox>
#include <QHeaderView>
#include <QLabel>
#include <QPainter>
//_________________________________________________________
TabbedDialog::TabbedDialog( QWidget* parent ):
BaseDialog( parent ),
Counter( "TabbedDialog" )
{
Debug::Throw( "TabbedDialog::TabbedDialog.\n" );
QVBoxLayout* layout( new QVBoxLayout );
layout->setMargin(0);
setLayout( layout );
// horizontal layout
QHBoxLayout* hLayout = new QHBoxLayout;
layout->addLayout( hLayout );
// add widgets
hLayout->addWidget( list_ = new SimpleListView( this ) );
hLayout->addWidget( stackedWidget_ = new QStackedWidget(this) );
// configure list
list_->setProperty( "_kde_side_panel_view", true );
list_->setModel( &model_ );
// button box
layout->addWidget( buttonBox_ = new QDialogButtonBox( this ), 0 );
buttonBox_->layout()->setMargin(5);
// connections
connect( list_->selectionModel(), SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), SLOT(_display(QModelIndex)) );
new QShortcut( QKeySequence::Quit, this, SLOT(close()) );
}
//_________________________________________________________
QWidget& TabbedDialog::addPage( const QIcon& icon, const QString& title, const QString& tooltip, bool expand )
{
// base widget
QWidget* base = new QWidget;
base->setLayout( new QVBoxLayout );
base->layout()->setMargin(0);
base->layout()->setSpacing(10);
QHBoxLayout* hLayout = new QHBoxLayout;
hLayout->setMargin(0);
hLayout->setSpacing(5);
base->layout()->addItem( hLayout );
// tooltip label
QLabel *label( new QLabel( base ) );
label->setText( tooltip.isEmpty() ? title:tooltip );
label->setMargin(5);
// update font
label->setFont( QtUtil::titleFont( label->font() ) );
// add to layout
hLayout->addWidget( label, 1 );
// create scroll area
QScrollArea* scrollArea = new QScrollArea;
scrollArea->setWidgetResizable ( true );
scrollArea->setFrameStyle( QFrame::NoFrame );
base->layout()->addWidget( scrollArea );
// create main widget
QWidget* main( new QWidget );
scrollArea->setWidget( main );
// add to stack
stackedWidget_->addWidget( base );
// add to item
Item item( title, base );
if( !icon.isNull() ) item.setIcon( icon );
_model().add( item );
// set current index
if( (!list_->selectionModel()->currentIndex().isValid()) && _model().hasIndex(0,0) )
{ list_->selectionModel()->setCurrentIndex( _model().index(0,0), QItemSelectionModel::SelectCurrent | QItemSelectionModel::Rows ); }
QVBoxLayout* layout( new QVBoxLayout );
layout->setSpacing( 5 );
layout->setMargin( 0 );
main->setLayout( layout );
// in expanded mode, the main widget is returned directly
if( expand ) return *main;
else {
// in non-expanded mode (the default)
// a widget is created inside main, and a stretch is added at the bottom
// the created widget is return
QWidget* contents( new QWidget( main ) );
contents->setLayout( new QVBoxLayout );
contents->layout()->setSpacing(5);
contents->layout()->setMargin(0);
layout->addWidget( contents );
layout->addStretch(1);
return *contents;
}
}
//__________________________________________________
void TabbedDialog::_display( const QModelIndex& index )
{
Debug::Throw( "TabbedDialog::_display.\n" );
if( !index.isValid() ) return;
stackedWidget_->setCurrentWidget( _model().get( index ).widget() );
}
//_______________________________________________________________________________________
QVariant TabbedDialog::Model::data( const QModelIndex& index, int role ) const
{
// check index
if( !contains( index ) ) return QVariant();
// retrieve associated file info
Item item( get()[index.row()] );
// return text associated to file and column
switch( role )
{
case Qt::DisplayRole:
return item.name();
case Qt::DecorationRole:
return item.icon().isNull() ? QVariant():item.icon();
default: return QVariant();
}
}
|