summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/fileBrowser.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-reader/fileBrowser.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/fileBrowser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/opie-reader/fileBrowser.cpp b/noncore/apps/opie-reader/fileBrowser.cpp
index 2291c85..c8c371a 100644
--- a/noncore/apps/opie-reader/fileBrowser.cpp
+++ b/noncore/apps/opie-reader/fileBrowser.cpp
@@ -34,49 +34,49 @@ fileBrowser::fileBrowser( bool allownew, QWidget* parent, const char* name, boo
34 filterStr=filter; 34 filterStr=filter;
35 35
36 buttonOk = new QPushButton( this, "buttonOk" ); 36 buttonOk = new QPushButton( this, "buttonOk" );
37 // buttonOk->setFixedSize( 25, 25 ); 37 // buttonOk->setFixedSize( 25, 25 );
38 buttonOk->setAutoDefault( false ); 38 buttonOk->setAutoDefault( false );
39 buttonOk->setText( tr( "/" ) ); 39 buttonOk->setText( tr( "/" ) );
40 40
41 buttonShowHidden = new QPushButton( this, "buttonShowHidden" ); 41 buttonShowHidden = new QPushButton( this, "buttonShowHidden" );
42// buttonShowHidden->setFixedSize( 50, 25 ); 42// buttonShowHidden->setFixedSize( 50, 25 );
43 buttonShowHidden->setText( tr( "Hidden" ) ); 43 buttonShowHidden->setText( tr( "Hidden" ) );
44 buttonShowHidden->setAutoDefault( false ); 44 buttonShowHidden->setAutoDefault( false );
45 buttonShowHidden->setToggleButton( true ); 45 buttonShowHidden->setToggleButton( true );
46 buttonShowHidden->setOn( false ); 46 buttonShowHidden->setOn( false );
47 47
48 dirLabel = new QLabel(this, "DirLabel"); 48 dirLabel = new QLabel(this, "DirLabel");
49 dirLabel->setAlignment(AlignLeft | AlignVCenter | ExpandTabs | WordBreak); 49 dirLabel->setAlignment(AlignLeft | AlignVCenter | ExpandTabs | WordBreak);
50 dirLabel->setText(currentDir.canonicalPath()); 50 dirLabel->setText(currentDir.canonicalPath());
51 51
52 ListView = new QtrListView( this, "ListView" ); 52 ListView = new QtrListView( this, "ListView" );
53 ListView->addColumn( tr( "Name" ) ); 53 ListView->addColumn( tr( "Name" ) );
54 ListView->setSorting( 2, FALSE); 54 ListView->setSorting( 2, FALSE);
55 ListView->addColumn( tr( "Size" ) ); 55 ListView->addColumn( tr( "Size" ) );
56 ListView->setSelectionMode(QListView::Single); 56 ListView->setSelectionMode(QListView::Single);
57 ListView->setAllColumnsShowFocus( TRUE ); 57 ListView->setAllColumnsShowFocus( TRUE );
58 ListView->setColumnWidthMode(0, QListView::Manual); 58 ListView->setColumnWidthMode(0, ((modal) ? QListView::Manual : QListView::Maximum));
59 ListView->setColumnWidthMode(1, QListView::Manual); 59 ListView->setColumnWidthMode(1, QListView::Manual);
60 60
61 // signals and slots connections 61 // signals and slots connections
62 connect( buttonShowHidden, SIGNAL( toggled(bool) ), this, SLOT( setHidden(bool) ) ); 62 connect( buttonShowHidden, SIGNAL( toggled(bool) ), this, SLOT( setHidden(bool) ) );
63 connect( buttonOk, SIGNAL( clicked() ), this, SLOT( OnRoot() ) ); 63 connect( buttonOk, SIGNAL( clicked() ), this, SLOT( OnRoot() ) );
64 connect( ListView, SIGNAL(doubleClicked( QListViewItem*)), SLOT(listDoubleClicked(QListViewItem *)) ); 64 connect( ListView, SIGNAL(doubleClicked( QListViewItem*)), SLOT(listDoubleClicked(QListViewItem *)) );
65 connect( ListView, SIGNAL(clicked( QListViewItem*)), SLOT(listClicked(QListViewItem *)) ); 65 connect( ListView, SIGNAL(clicked( QListViewItem*)), SLOT(listClicked(QListViewItem *)) );
66 connect( ListView, SIGNAL(OnOKButton( QListViewItem*)), SLOT(listClicked(QListViewItem *)) ); 66 connect( ListView, SIGNAL(OnOKButton( QListViewItem*)), SLOT(listClicked(QListViewItem *)) );
67 connect( ListView, SIGNAL(OnCentreButton( QListViewItem*)), SLOT(listClicked(QListViewItem *)) ); 67 connect( ListView, SIGNAL(OnCentreButton( QListViewItem*)), SLOT(listClicked(QListViewItem *)) );
68 connect( ListView, SIGNAL(OnCancelButton()), SLOT(OnCancel()) ); 68 connect( ListView, SIGNAL(OnCancelButton()), SLOT(OnCancel()) );
69 69
70 QVBoxLayout* grid = new QVBoxLayout(this); 70 QVBoxLayout* grid = new QVBoxLayout(this);
71 grid->addWidget(dirLabel); 71 grid->addWidget(dirLabel);
72 QHBoxLayout* hgrid = new QHBoxLayout(grid); 72 QHBoxLayout* hgrid = new QHBoxLayout(grid);
73 73
74 QPushButton* bt = new QPushButton( this ); 74 QPushButton* bt = new QPushButton( this );
75 bt->setText( tr( "SD" ) ); 75 bt->setText( tr( "SD" ) );
76 connect( bt, SIGNAL( clicked() ), this, SLOT( onSD() ) ); 76 connect( bt, SIGNAL( clicked() ), this, SLOT( onSD() ) );
77 hgrid->addWidget(bt); 77 hgrid->addWidget(bt);
78 78
79 bt = new QPushButton( this ); 79 bt = new QPushButton( this );
80 bt->setText( tr( "CF" ) ); 80 bt->setText( tr( "CF" ) );
81 connect( bt, SIGNAL( clicked() ), this, SLOT( onCF() ) ); 81 connect( bt, SIGNAL( clicked() ), this, SLOT( onCF() ) );
82 hgrid->addWidget(bt); 82 hgrid->addWidget(bt);