summaryrefslogtreecommitdiff
authordrw <drw>2005-04-05 22:38:32 (UTC)
committer drw <drw>2005-04-05 22:38:32 (UTC)
commit0f7b159f0a4972b6ffdc292f5eb4d2169c7fa75d (patch) (unidiff)
tree27fb276e59b1eab586d029feaf21f45ddf1cb96a
parent327e938f58125a52482b9a6543dd1aa4243bb5d3 (diff)
downloadopie-0f7b159f0a4972b6ffdc292f5eb4d2169c7fa75d.zip
opie-0f7b159f0a4972b6ffdc292f5eb4d2169c7fa75d.tar.gz
opie-0f7b159f0a4972b6ffdc292f5eb4d2169c7fa75d.tar.bz2
Use OResource for loading images
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/fileselector/ofileselector.cpp81
-rw-r--r--libopie2/opieui/fileselector/ofileselector.h46
-rw-r--r--libopie2/opieui/otabwidget.cpp66
-rw-r--r--libopie2/opieui/otabwidget.h52
-rw-r--r--libopie2/opieui/owait.cpp50
-rw-r--r--libopie2/opieui/owait.h47
6 files changed, 163 insertions, 179 deletions
diff --git a/libopie2/opieui/fileselector/ofileselector.cpp b/libopie2/opieui/fileselector/ofileselector.cpp
index 8b53038..f3e7501 100644
--- a/libopie2/opieui/fileselector/ofileselector.cpp
+++ b/libopie2/opieui/fileselector/ofileselector.cpp
@@ -1,1062 +1,1057 @@
1
2/* 1/*
3               =. This file is part of the OPIE Project 2                 This file is part of the Opie Project
4             .=l. Copyright (C) 2002,2003 Holger Freyther <zecke@handhelds.org> 3
5           .>+-= 4 Copyright (C) 2002,2003 Holger Freyther <zecke@handhelds.org>
6 _;:,     .>    :=|. This library is free software; you can 5 =.
7.> <`_,   >  .   <= redistribute it and/or modify it under 6 .=l.
8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 7           .>+-=
9.="- .-=="i,     .._ License as published by the Free Software 8 _;:,     .>    :=|. This program is free software; you can
10 - .   .-<_>     .<> Foundation; either version 2 of the License, 9.> <`_,   >  .   <= redistribute it and/or modify it under
11     ._= =}       : or (at your option) any later version. 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
12    .%`+i>       _;_. 11.="- .-=="i,     .._ License as published by the Free Software
13    .i_,=:_.      -<s. This library is distributed in the hope that 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 13     ._= =}       : or (at your option) any later version.
15    : ..    .:,     . . . without even the implied warranty of 14    .%`+i>       _;_.
16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 15    .i_,=:_.      -<s. This program is distributed in the hope that
17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
18..}^=.=       =       ; Library General Public License for more 17 : ..    .:,     . . . without even the implied warranty of
19++=   -.     .`     .: details. 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
20 :     =  ...= . :.=- 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
21 -.   .:....=;==+<; You should have received a copy of the GNU 20..}^=.=       =       ; Library General Public License for more
22  -_. . .   )=.  = Library General Public License along with 21++=   -.     .`     .: details.
23    --        :-=` this library; see the file COPYING.LIB. 22 :     =  ...= . :.=-
23 -.   .:....=;==+<; You should have received a copy of the GNU
24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB.
24 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
27
28*/ 29*/
29 30
30/* hacky but we need to get FileSelector::filter */ 31/* hacky but we need to get FileSelector::filter */
31#define private public 32#define private public
32#include <qpe/fileselector.h> 33#include <qpe/fileselector.h>
33#undef private 34#undef private
34 35
35#include "ofileselector_p.h" 36#include "ofileselector_p.h"
36 37
37/* OPIE */ 38/* OPIE */
38#include <opie2/ofileselector.h>
39#include <opie2/odebug.h> 39#include <opie2/odebug.h>
40#include <opie2/ofileselector.h>
41#include <opie2/oresource.h>
40 42
41#include <qpe/qpeapplication.h> 43#include <qpe/qpeapplication.h>
42#include <qpe/mimetype.h> 44#include <qpe/mimetype.h>
43#include <qpe/resource.h>
44#include <qpe/storage.h> 45#include <qpe/storage.h>
45 46
46/* QT */ 47/* QT */
47#include <qcombobox.h> 48#include <qcombobox.h>
48#include <qdir.h> 49#include <qdir.h>
49#include <qhbox.h> 50#include <qhbox.h>
50#include <qheader.h> 51#include <qheader.h>
51#include <qlabel.h> 52#include <qlabel.h>
52#include <qlayout.h> 53#include <qlayout.h>
53#include <qlineedit.h> 54#include <qlineedit.h>
54#include <qlistview.h> 55#include <qlistview.h>
55#include <qpopupmenu.h> 56#include <qpopupmenu.h>
56#include <qwidgetstack.h> 57#include <qwidgetstack.h>
57#include <qregexp.h> 58#include <qregexp.h>
58#include <qobjectlist.h> 59#include <qobjectlist.h>
59 60
60using namespace Opie::Ui::Internal; 61using namespace Opie::Ui::Internal;
61 62
62namespace Opie { 63namespace Opie {
63namespace Ui { 64namespace Ui {
64namespace Internal { 65namespace Internal {
65/* 66/*
66 * Create a path by adding a '/'/QDir::seperator in between 67 * Create a path by adding a '/'/QDir::seperator in between
67 * base and ending, but only if base is not empty 68 * base and ending, but only if base is not empty
68 */ 69 */
69static inline QString createNewPath(const QString& base, const QString &ending) { 70static inline QString createNewPath(const QString& base, const QString &ending) {
70 return base == QString::fromLatin1("/") ? 71 return base == QString::fromLatin1("/") ?
71 base + ending : base + "/" + ending; 72 base + ending : base + "/" + ending;
72} 73}
73 74
74 75
75OFileViewInterface::OFileViewInterface( OFileSelector* _selector ) 76OFileViewInterface::OFileViewInterface( OFileSelector* _selector )
76 : m_selector( _selector ) 77 : m_selector( _selector )
77{ 78{
78 selector()->registerView( this ); 79 selector()->registerView( this );
79} 80}
80 81
81OFileViewInterface::~OFileViewInterface() 82OFileViewInterface::~OFileViewInterface()
82{} 83{}
83 84
84QString OFileViewInterface::name()const 85QString OFileViewInterface::name()const
85{ 86{
86 return m_name; 87 return m_name;
87} 88}
88 89
89void OFileViewInterface::setName( const QString& name ) 90void OFileViewInterface::setName( const QString& name )
90{ 91{
91 m_name = name; 92 m_name = name;
92} 93}
93 94
94OFileSelector* OFileViewInterface::selector()const 95OFileSelector* OFileViewInterface::selector()const
95{ 96{
96 return m_selector; 97 return m_selector;
97} 98}
98 99
99DocLnk OFileViewInterface::selectedDocument()const 100DocLnk OFileViewInterface::selectedDocument()const
100{ 101{
101 return DocLnk( selectedName() ); 102 return DocLnk( selectedName() );
102} 103}
103 104
104bool OFileViewInterface::showNew()const 105bool OFileViewInterface::showNew()const
105{ 106{
106 return selector()->showNew(); 107 return selector()->showNew();
107} 108}
108 109
109bool OFileViewInterface::showClose()const 110bool OFileViewInterface::showClose()const
110{ 111{
111 return selector()->showClose(); 112 return selector()->showClose();
112} 113}
113 114
114MimeTypes OFileViewInterface::mimeTypes()const 115MimeTypes OFileViewInterface::mimeTypes()const
115{ 116{
116 return selector()->mimeTypes(); 117 return selector()->mimeTypes();
117} 118}
118 119
119QStringList OFileViewInterface::currentMimeType()const 120QStringList OFileViewInterface::currentMimeType()const
120{ 121{
121 return selector()->currentMimeType(); 122 return selector()->currentMimeType();
122} 123}
123 124
124void OFileViewInterface::activate( const QString& ) 125void OFileViewInterface::activate( const QString& )
125{ 126{
126 // not implemented here 127 // not implemented here
127} 128}
128 129
129void OFileViewInterface::ok() 130void OFileViewInterface::ok()
130{ 131{
131 emit selector()->ok(); 132 emit selector()->ok();
132} 133}
133 134
134void OFileViewInterface::cancel() 135void OFileViewInterface::cancel()
135{ 136{
136 emit selector()->cancel(); 137 emit selector()->cancel();
137} 138}
138 139
139void OFileViewInterface::closeMe() 140void OFileViewInterface::closeMe()
140{ 141{
141 emit selector()->closeMe(); 142 emit selector()->closeMe();
142} 143}
143 144
144void OFileViewInterface::fileSelected( const QString& str) 145void OFileViewInterface::fileSelected( const QString& str)
145{ 146{
146 emit selector()->fileSelected( str); 147 emit selector()->fileSelected( str);
147} 148}
148 149
149void OFileViewInterface::fileSelected( const DocLnk& lnk) 150void OFileViewInterface::fileSelected( const DocLnk& lnk)
150{ 151{
151 emit selector()->fileSelected( lnk ); 152 emit selector()->fileSelected( lnk );
152} 153}
153 154
154void OFileViewInterface::setCurrentFileName( const QString& str ) 155void OFileViewInterface::setCurrentFileName( const QString& str )
155{ 156{
156 selector()->m_lneEdit->setText( str ); 157 selector()->m_lneEdit->setText( str );
157} 158}
158 159
159QString OFileViewInterface::currentFileName()const 160QString OFileViewInterface::currentFileName()const
160{ 161{
161 return selector()->m_lneEdit->text(); 162 return selector()->m_lneEdit->text();
162} 163}
163 164
164QString OFileViewInterface::startDirectory()const 165QString OFileViewInterface::startDirectory()const
165{ 166{
166 return selector()->m_startDir; 167 return selector()->m_startDir;
167} 168}
168 169
169bool OFileViewInterface::allItem( const QString& item )const 170bool OFileViewInterface::allItem( const QString& item )const
170{ 171{
171 return selector()->m_allList.contains( item ); 172 return selector()->m_allList.contains( item );
172} 173}
173 174
174 175
175ODocumentFileView::ODocumentFileView( OFileSelector* selector ) 176ODocumentFileView::ODocumentFileView( OFileSelector* selector )
176 :OFileViewInterface( selector ) 177 :OFileViewInterface( selector )
177{ 178{
178 m_selector = 0; 179 m_selector = 0;
179 setName( QObject::tr("Documents") ); 180 setName( QObject::tr("Documents") );
180} 181}
181 182
182ODocumentFileView::~ODocumentFileView() 183ODocumentFileView::~ODocumentFileView()
183{ 184{
184} 185}
185 186
186QString ODocumentFileView::selectedName()const 187QString ODocumentFileView::selectedName()const
187{ 188{
188 if (!m_selector) 189 if (!m_selector)
189 return QString::null; 190 return QString::null;
190 191
191 return m_selector->selectedDocument().file(); 192 return m_selector->selectedDocument().file();
192} 193}
193 194
194QString ODocumentFileView::selectedPath()const 195QString ODocumentFileView::selectedPath()const
195{ 196{
196 return QPEApplication::documentDir(); 197 return QPEApplication::documentDir();
197} 198}
198 199
199QString ODocumentFileView::directory()const 200QString ODocumentFileView::directory()const
200{ 201{
201 return selectedPath(); 202 return selectedPath();
202} 203}
203 204
204void ODocumentFileView::reread() 205void ODocumentFileView::reread()
205{ 206{
206 if (!m_selector) 207 if (!m_selector)
207 return; 208 return;
208 209
209 m_selector->setNewVisible( showNew() ); 210 m_selector->setNewVisible( showNew() );
210 m_selector->setCloseVisible( showClose() ); 211 m_selector->setCloseVisible( showClose() );
211 m_selector->filter = currentMimeType().join(";"); 212 m_selector->filter = currentMimeType().join(";");
212 m_selector->reread(); 213 m_selector->reread();
213} 214}
214 215
215int ODocumentFileView::fileCount()const 216int ODocumentFileView::fileCount()const
216{ 217{
217 if (!m_selector) 218 if (!m_selector)
218 return -1; 219 return -1;
219 220
220 return m_selector->fileCount(); 221 return m_selector->fileCount();
221} 222}
222 223
223DocLnk ODocumentFileView::selectedDocument()const 224DocLnk ODocumentFileView::selectedDocument()const
224{ 225{
225 if (!m_selector) 226 if (!m_selector)
226 return DocLnk(); 227 return DocLnk();
227 228
228 return m_selector->selectedDocument(); 229 return m_selector->selectedDocument();
229} 230}
230 231
231QWidget* ODocumentFileView::widget( QWidget* parent ) 232QWidget* ODocumentFileView::widget( QWidget* parent )
232{ 233{
233 if (!m_selector ) 234 if (!m_selector )
234 { 235 {
235 m_selector = new FileSelector(currentMimeType().join(";"), parent, "fileselector", showNew(), showClose() ); 236 m_selector = new FileSelector(currentMimeType().join(";"), parent, "fileselector", showNew(), showClose() );
236 QObject::connect(m_selector, SIGNAL(fileSelected(const DocLnk&) ), 237 QObject::connect(m_selector, SIGNAL(fileSelected(const DocLnk&) ),
237 selector(), SLOT(slotDocLnkBridge(const DocLnk&) ) ); 238 selector(), SLOT(slotDocLnkBridge(const DocLnk&) ) );
238 QObject::connect(m_selector, SIGNAL(closeMe() ), 239 QObject::connect(m_selector, SIGNAL(closeMe() ),
239 selector(), SIGNAL(closeMe() ) ); 240 selector(), SIGNAL(closeMe() ) );
240 QObject::connect(m_selector, SIGNAL(newSelected(const DocLnk&) ), 241 QObject::connect(m_selector, SIGNAL(newSelected(const DocLnk&) ),
241 selector(), SIGNAL(newSelected(const DocLnk&) ) ); 242 selector(), SIGNAL(newSelected(const DocLnk&) ) );
242 } 243 }
243 244
244 return m_selector; 245 return m_selector;
245} 246}
246 247
247/* 248/*
248 * This is the file system view used 249 * This is the file system view used
249 * we use a QListView + QListViewItems for it 250 * we use a QListView + QListViewItems for it
250 */ 251 */
251 252
252OFileSelectorItem::OFileSelectorItem( QListView* view, const QPixmap& pixmap, 253OFileSelectorItem::OFileSelectorItem( QListView* view, const QPixmap& pixmap,
253 const QString& path, const QString& date, 254 const QString& path, const QString& date,
254 const QString& size, const QString& dir, 255 const QString& size, const QString& dir,
255 bool isLocked, bool isDir ) 256 bool isLocked, bool isDir )
256 : QListViewItem( view ), m_dir(dir), m_isDir(isDir), m_locked(isLocked) 257 : QListViewItem( view ), m_dir(dir), m_isDir(isDir), m_locked(isLocked)
257{ 258{
258 setPixmap(0, pixmap ); 259 setPixmap(0, pixmap );
259 setText(1, path ); 260 setText(1, path );
260 setText(2, size ); 261 setText(2, size );
261 setText(3, date ); 262 setText(3, date );
262} 263}
263 264
264OFileSelectorItem::~OFileSelectorItem() 265OFileSelectorItem::~OFileSelectorItem()
265{ 266{
266} 267}
267 268
268bool OFileSelectorItem::isLocked()const 269bool OFileSelectorItem::isLocked()const
269{ 270{
270 return m_locked; 271 return m_locked;
271} 272}
272 273
273QString OFileSelectorItem::directory()const 274QString OFileSelectorItem::directory()const
274{ 275{
275 return m_dir; 276 return m_dir;
276} 277}
277 278
278bool OFileSelectorItem::isDir()const 279bool OFileSelectorItem::isDir()const
279{ 280{
280 return m_isDir; 281 return m_isDir;
281} 282}
282 283
283QString OFileSelectorItem::path()const 284QString OFileSelectorItem::path()const
284{ 285{
285 return text( 1 ); 286 return text( 1 );
286} 287}
287 288
288QString OFileSelectorItem::key( int id, bool )const 289QString OFileSelectorItem::key( int id, bool )const
289{ 290{
290 QString ke; 291 QString ke;
291 292
292 /* 293 /*
293 * id = 0 ||id == 1 : Sort By Name but Directories at Top 294 * id = 0 ||id == 1 : Sort By Name but Directories at Top
294 * id = 2 : Sort By Size: Prepend '0' to the key 295 * id = 2 : Sort By Size: Prepend '0' to the key
295 */ 296 */
296 if( id == 0 || id == 1 ) 297 if( id == 0 || id == 1 )
297 { // name 298 { // name
298 if( m_isDir ) 299 if( m_isDir )
299 { 300 {
300 ke.append("0" ); 301 ke.append("0" );
301 ke.append( text(1) ); 302 ke.append( text(1) );
302 } 303 }
303 else 304 else
304 { 305 {
305 ke.append("1" ); 306 ke.append("1" );
306 ke.append( text(1) ); 307 ke.append( text(1) );
307 } 308 }
308 return ke; 309 return ke;
309 }else if(id == 2) { 310 }else if(id == 2) {
310 return text(2).rightJustify(20, '0'); 311 return text(2).rightJustify(20, '0');
311 }else 312 }else
312 return text( id ); 313 return text( id );
313 314
314} 315}
315 316
316OFileViewFileListView::OFileViewFileListView( QWidget* parent, const QString& startDir, OFileSelector* sel) 317OFileViewFileListView::OFileViewFileListView( QWidget* parent, const QString& startDir, OFileSelector* sel)
317 :QWidget( parent ), m_sel( sel ) 318 :QWidget( parent ), m_sel( sel )
318{ 319{
319 m_all = false; 320 m_all = false;
320 QVBoxLayout* lay = new QVBoxLayout( this ); 321 QVBoxLayout* lay = new QVBoxLayout( this );
321 m_currentDir = startDir; 322 m_currentDir = startDir;
322 323
323 /* 324 /*
324 * now we add a special bar 325 * now we add a special bar
325 * One Button For Up 326 * One Button For Up
326 * Home 327 * Home
327 * Doc 328 * Doc
328 * And a dropdown menu with FileSystems 329 * And a dropdown menu with FileSystems
329 * FUTURE: one to change dir with lineedit 330 * FUTURE: one to change dir with lineedit
330 * Bookmarks 331 * Bookmarks
331 * Create Dir 332 * Create Dir
332 */ 333 */
333 QHBox* box = new QHBox(this ); 334 QHBox* box = new QHBox(this );
334 box->setBackgroundMode( PaletteButton ); 335 box->setBackgroundMode( PaletteButton );
335 box->setSpacing( 0 ); 336 box->setSpacing( 0 );
336 337
337 QPixmap pic;
338 QToolButton *btn = new QToolButton( box ); 338 QToolButton *btn = new QToolButton( box );
339 btn->setUsesBigPixmap( true ); 339 btn->setUsesBigPixmap( true );
340 pic.convertFromImage( Resource::loadImage( "up" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 340 btn->setPixmap( Opie::Core::OResource::loadPixmap( "up", Opie::Core::OResource::SmallIcon ) );
341 btn->setPixmap( pic );
342 connect(btn, SIGNAL(clicked() ), 341 connect(btn, SIGNAL(clicked() ),
343 this, SLOT( cdUP() ) ); 342 this, SLOT( cdUP() ) );
344 343
345 btn = new QToolButton( box ); 344 btn = new QToolButton( box );
346 btn->setUsesBigPixmap( true ); 345 btn->setUsesBigPixmap( true );
347 pic.convertFromImage( Resource::loadImage( "home" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 346 btn->setPixmap( Opie::Core::OResource::loadPixmap( "home", Opie::Core::OResource::SmallIcon ) );
348 btn->setPixmap( pic );
349 connect(btn, SIGNAL(clicked() ), 347 connect(btn, SIGNAL(clicked() ),
350 this, SLOT( cdHome() ) ); 348 this, SLOT( cdHome() ) );
351 349
352 btn = new QToolButton( box ); 350 btn = new QToolButton( box );
353 btn->setUsesBigPixmap( true ); 351 btn->setUsesBigPixmap( true );
354 pic.convertFromImage( Resource::loadImage( "DocsIcon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 352 btn->setPixmap( Opie::Core::OResource::loadPixmap( "DocsIcon", Opie::Core::OResource::SmallIcon ) );
355 btn->setPixmap( pic );
356 connect(btn, SIGNAL(clicked() ), 353 connect(btn, SIGNAL(clicked() ),
357 this, SLOT(cdDoc() ) ); 354 this, SLOT(cdDoc() ) );
358 355
359 m_btnNew = new QToolButton( box ); 356 m_btnNew = new QToolButton( box );
360 m_btnNew->setUsesBigPixmap( true ); 357 m_btnNew->setUsesBigPixmap( true );
361 pic.convertFromImage( Resource::loadImage( "new" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 358 m_btnNew->setPixmap( Opie::Core::OResource::loadPixmap( "new", Opie::Core::OResource::SmallIcon ) );
362 m_btnNew->setPixmap( pic );
363 connect(m_btnNew, SIGNAL(clicked() ), 359 connect(m_btnNew, SIGNAL(clicked() ),
364 this, SLOT(slotNew() ) ); 360 this, SLOT(slotNew() ) );
365 361
366 362
367 m_btnClose = new QToolButton( box ); 363 m_btnClose = new QToolButton( box );
368 m_btnClose->setUsesBigPixmap( true ); 364 m_btnClose->setUsesBigPixmap( true );
369 pic.convertFromImage( Resource::loadImage( "close" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 365 m_btnClose->setPixmap( Opie::Core::OResource::loadPixmap( "close", Opie::Core::OResource::SmallIcon ) );
370 m_btnClose->setPixmap( pic );
371 connect(m_btnClose, SIGNAL(clicked() ), 366 connect(m_btnClose, SIGNAL(clicked() ),
372 selector(), SIGNAL(closeMe() ) ); 367 selector(), SIGNAL(closeMe() ) );
373 368
374 btn = new QToolButton( box ); 369 btn = new QToolButton( box );
375 btn->setUsesBigPixmap( true ); 370 btn->setUsesBigPixmap( true );
376 pic.convertFromImage( Resource::loadImage( "cardmon/pcmcia" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); 371 btn->setPixmap( Opie::Core::OResource::loadPixmap( "cardmon/pcmcia", Opie::Core::OResource::SmallIcon ) );
377 btn->setPixmap( pic );
378 372
379 m_fsButton = btn; 373 m_fsButton = btn;
380 /* let's fill device parts */ 374 /* let's fill device parts */
381 QPopupMenu* pop = new QPopupMenu(this); 375 QPopupMenu* pop = new QPopupMenu(this);
382 connect(pop, SIGNAL( activated(int) ), 376 connect(pop, SIGNAL( activated(int) ),
383 this, SLOT(slotFSActivated(int) ) ); 377 this, SLOT(slotFSActivated(int) ) );
384 378
385 StorageInfo storage; 379 StorageInfo storage;
386 const QList<FileSystem> &fs = storage.fileSystems(); 380 const QList<FileSystem> &fs = storage.fileSystems();
387 QListIterator<FileSystem> it(fs); 381 QListIterator<FileSystem> it(fs);
388 for ( ; it.current(); ++it ) 382 for ( ; it.current(); ++it )
389 { 383 {
390 const QString disk = (*it)->name(); 384 const QString disk = (*it)->name();
391 const QString path = (*it)->path(); 385 const QString path = (*it)->path();
392 m_dev.insert( disk, path ); 386 m_dev.insert( disk, path );
393 pop->insertItem( disk ); 387 pop->insertItem( disk );
394 } 388 }
395 m_fsPop = pop; 389 m_fsPop = pop;
396 390
397 connect(btn,SIGNAL(pressed()),this,SLOT(slotFSpressed())); 391 connect(btn,SIGNAL(pressed()),this,SLOT(slotFSpressed()));
398 392
399 lay->addWidget( box ); 393 lay->addWidget( box );
400 394
401 m_view = new QListView( this ); 395 m_view = new QListView( this );
402 396
403 m_view->installEventFilter(this); 397 m_view->installEventFilter(this);
404 398
405 QPEApplication::setStylusOperation( m_view->viewport(), 399 QPEApplication::setStylusOperation( m_view->viewport(),
406 QPEApplication::RightOnHold); 400 QPEApplication::RightOnHold);
407 m_view->addColumn(" " ); 401 m_view->addColumn(" " );
408 m_view->addColumn(tr("Name"), 135 ); 402 m_view->addColumn(tr("Name"), 135 );
409 m_view->addColumn(tr("Size"), -1 ); 403 m_view->addColumn(tr("Size"), -1 );
410 m_view->addColumn(tr("Date"), 60 ); 404 m_view->addColumn(tr("Date"), 60 );
411 m_view->addColumn(tr("Mime Type"), -1 ); 405 m_view->addColumn(tr("Mime Type"), -1 );
412 406
413 407
414 m_view->setSorting( 1 ); 408 m_view->setSorting( 1 );
415 m_view->setAllColumnsShowFocus( TRUE ); 409 m_view->setAllColumnsShowFocus( TRUE );
416 410
417 lay->addWidget( m_view, 1000 ); 411 lay->addWidget( m_view, 1000 );
418 connectSlots(); 412 connectSlots();
419} 413}
420 414
421void OFileViewFileListView::slotFSpressed() 415void OFileViewFileListView::slotFSpressed()
422{ 416{
423 m_fsPop->exec(QPoint( QCursor::pos().x(), QCursor::pos().y())); 417 m_fsPop->exec(QPoint( QCursor::pos().x(), QCursor::pos().y()));
424 m_fsButton->setDown(false); 418 m_fsButton->setDown(false);
425} 419}
426 420
427OFileViewFileListView::~OFileViewFileListView() 421OFileViewFileListView::~OFileViewFileListView()
428{ 422{
429} 423}
430 424
431void OFileViewFileListView::slotNew() 425void OFileViewFileListView::slotNew()
432{ 426{
433 DocLnk lnk; 427 DocLnk lnk;
434 emit selector()->newSelected( lnk ); 428 emit selector()->newSelected( lnk );
435} 429}
436 430
437OFileSelectorItem* OFileViewFileListView::currentItem()const 431OFileSelectorItem* OFileViewFileListView::currentItem()const
438{ 432{
439 QListViewItem* item = m_view->currentItem(); 433 QListViewItem* item = m_view->currentItem();
440 if (!item ) 434 if (!item )
441 return 0l; 435 return 0l;
442 436
443 return static_cast<OFileSelectorItem*>(item); 437 return static_cast<OFileSelectorItem*>(item);
444} 438}
445 439
446void OFileViewFileListView::reread( bool all ) 440void OFileViewFileListView::reread( bool all )
447{ 441{
448 m_view->clear(); 442 m_view->clear();
449 443
450 if (selector()->showClose() ) 444 if (selector()->showClose() )
451 m_btnClose->show(); 445 m_btnClose->show();
452 else 446 else
453 m_btnClose->hide(); 447 m_btnClose->hide();
454 448
455 if (selector()->showNew() ) 449 if (selector()->showNew() )
456 m_btnNew->show(); 450 m_btnNew->show();
457 else 451 else
458 m_btnNew->hide(); 452 m_btnNew->hide();
459 453
460 m_mimes = selector()->currentMimeType(); 454 m_mimes = selector()->currentMimeType();
461 m_all = all; 455 m_all = all;
462 456
463 QDir dir( m_currentDir ); 457 QDir dir( m_currentDir );
464 if (!dir.exists() ) 458 if (!dir.exists() )
465 return; 459 return;
466 460
467 dir.setSorting( QDir::Name | QDir::DirsFirst | QDir::Reversed ); 461 dir.setSorting( QDir::Name | QDir::DirsFirst | QDir::Reversed );
468 int filter; 462 int filter;
469 filter = QDir::Dirs; 463 filter = QDir::Dirs;
470 if ( selector()->mode() != OFileSelector::DIRECTORYSELECTOR ) 464 if ( selector()->mode() != OFileSelector::DIRECTORYSELECTOR )
471 filter = filter | QDir::Files | QDir::All; 465 filter = filter | QDir::Files | QDir::All;
472 466
473 if ( m_all ) 467 if ( m_all )
474 filter = filter | QDir::Hidden; 468 filter = filter | QDir::Hidden;
475 469
476 dir.setFilter( filter ); 470 dir.setFilter( filter );
477 471
478 // now go through all files 472 // now go through all files
479 const QFileInfoList *list = dir.entryInfoList(); 473 const QFileInfoList *list = dir.entryInfoList();
480 if (!list) 474 if (!list)
481 { 475 {
482 cdUP(); 476 cdUP();
483 return; 477 return;
484 } 478 }
485 479
486 QFileInfoListIterator it( *list ); 480 QFileInfoListIterator it( *list );
487 QFileInfo *fi; 481 QFileInfo *fi;
488 while( (fi=it.current() ) ) 482 while( (fi=it.current() ) )
489 { 483 {
490 if( fi->fileName() == QString::fromLatin1("..") || fi->fileName() == QString::fromLatin1(".") ) 484 if( fi->fileName() == QString::fromLatin1("..") || fi->fileName() == QString::fromLatin1(".") )
491 { 485 {
492 ++it; 486 ++it;
493 continue; 487 continue;
494 } 488 }
495 489
496 /* 490 /*
497 * It is a symlink we try to resolve it now but don't let us attack by DOS 491 * It is a symlink we try to resolve it now but don't let us attack by DOS
498 * 492 *
499 */ 493 */
500 if( fi->isSymLink() ) 494 if( fi->isSymLink() )
501 { 495 {
502 QString file = createNewPath(fi->dirPath( true ),fi->readLink()); 496 QString file = createNewPath(fi->dirPath( true ),fi->readLink());
503 for( int i = 0; i<=4; i++) 497 for( int i = 0; i<=4; i++)
504 { // 5 tries to prevent dos 498 { // 5 tries to prevent dos
505 QFileInfo info( file ); 499 QFileInfo info( file );
506 if( !info.exists() ) 500 if( !info.exists() )
507 { 501 {
508 addSymlink( fi, TRUE ); 502 addSymlink( fi, TRUE );
509 break; 503 break;
510 } 504 }
511 else if( info.isDir() ) 505 else if( info.isDir() )
512 { 506 {
513 addDir( fi, TRUE ); 507 addDir( fi, TRUE );
514 break; 508 break;
515 } 509 }
516 else if( info.isFile() ) 510 else if( info.isFile() )
517 { 511 {
518 addFile( fi, TRUE ); 512 addFile( fi, TRUE );
519 break; 513 break;
520 } 514 }
521 else if( info.isSymLink() ) 515 else if( info.isSymLink() )
522 { 516 {
523 file = createNewPath(info.dirPath(true ),info.readLink()); 517 file = createNewPath(info.dirPath(true ),info.readLink());
524 break; 518 break;
525 } 519 }
526 else if( i == 4) 520 else if( i == 4)
527 { // couldn't resolve symlink add it as symlink 521 { // couldn't resolve symlink add it as symlink
528 addSymlink( fi ); 522 addSymlink( fi );
529 } 523 }
530 } // off for loop for symlink resolving 524 } // off for loop for symlink resolving
531 } 525 }
532 else if( fi->isDir() ) 526 else if( fi->isDir() )
533 addDir( fi ); 527 addDir( fi );
534 else if( fi->isFile() ) 528 else if( fi->isFile() )
535 addFile( fi ); 529 addFile( fi );
536 530
537 ++it; 531 ++it;
538 } // of while loop 532 } // of while loop
539 m_view->sort(); 533 m_view->sort();
540 534
541} 535}
542int OFileViewFileListView::fileCount()const 536int OFileViewFileListView::fileCount()const
543{ 537{
544 return m_view->childCount(); 538 return m_view->childCount();
545} 539}
546 540
547QString OFileViewFileListView::currentDir()const 541QString OFileViewFileListView::currentDir()const
548{ 542{
549 return m_currentDir; 543 return m_currentDir;
550} 544}
551 545
552OFileSelector* OFileViewFileListView::selector() 546OFileSelector* OFileViewFileListView::selector()
553{ 547{
554 return m_sel; 548 return m_sel;
555} 549}
556 550
557bool OFileViewFileListView::eventFilter (QObject *, QEvent *e) 551bool OFileViewFileListView::eventFilter (QObject *, QEvent *e)
558{ 552{
559 if ( e->type() == QEvent::KeyPress ) 553 if ( e->type() == QEvent::KeyPress )
560 { 554 {
561 QKeyEvent *k = (QKeyEvent *)e; 555 QKeyEvent *k = (QKeyEvent *)e;
562 if ( (k->key()==Key_Enter) || (k->key()==Key_Return)) 556 if ( (k->key()==Key_Enter) || (k->key()==Key_Return))
563 { 557 {
564 slotClicked( Qt::LeftButton,m_view->currentItem(),QPoint(0,0),0); 558 slotClicked( Qt::LeftButton,m_view->currentItem(),QPoint(0,0),0);
565 return true; 559 return true;
566 } 560 }
567 } 561 }
568 return false; 562 return false;
569} 563}
570 564
571void OFileViewFileListView::connectSlots() 565void OFileViewFileListView::connectSlots()
572{ 566{
573 connect(m_view, SIGNAL(clicked(QListViewItem*) ), 567 connect(m_view, SIGNAL(clicked(QListViewItem*) ),
574 this, SLOT(slotCurrentChanged(QListViewItem*) ) ); 568 this, SLOT(slotCurrentChanged(QListViewItem*) ) );
575 connect(m_view, SIGNAL(mouseButtonClicked(int,QListViewItem*,const QPoint&,int) ), 569 connect(m_view, SIGNAL(mouseButtonClicked(int,QListViewItem*,const QPoint&,int) ),
576 this, SLOT(slotClicked(int,QListViewItem*,const QPoint&,int) ) ); 570 this, SLOT(slotClicked(int,QListViewItem*,const QPoint&,int) ) );
577} 571}
578 572
579void OFileViewFileListView::slotCurrentChanged( QListViewItem* item) 573void OFileViewFileListView::slotCurrentChanged( QListViewItem* item)
580{ 574{
581 if (!item) 575 if (!item)
582 return; 576 return;
583#if 0 577#if 0
584 578
585 OFileSelectorItem *sel = static_cast<OFileSelectorItem*>(item); 579 OFileSelectorItem *sel = static_cast<OFileSelectorItem*>(item);
586 580
587 if (!sel->isDir() ) 581 if (!sel->isDir() )
588 { 582 {
589 selector()->m_lneEdit->setText( sel->text(1) ); 583 selector()->m_lneEdit->setText( sel->text(1) );
590 // if in fileselector mode we will emit selected 584 // if in fileselector mode we will emit selected
591 if ( selector()->mode() == OFileSelector::FileSelector ) 585 if ( selector()->mode() == OFileSelector::FileSelector )
592 { 586 {
593 odebug << "slot Current Changed" << oendl; 587 odebug << "slot Current Changed" << oendl;
594 QStringList str = QStringList::split("->", sel->text(1) ); 588 QStringList str = QStringList::split("->", sel->text(1) );
595 QString path = createNewPath(sel->directory(),str[0].stripWhiteSpace()); 589 QString path = createNewPath(sel->directory(),str[0].stripWhiteSpace());
596 emit selector()->fileSelected( path ); 590 emit selector()->fileSelected( path );
597 DocLnk lnk( path ); 591 DocLnk lnk( path );
598 emit selector()->fileSelected( lnk ); 592 emit selector()->fileSelected( lnk );
599 } 593 }
600 } 594 }
601#endif 595#endif
602} 596}
603 597
604void OFileViewFileListView::slotClicked(int button , QListViewItem* item, const QPoint&, int ) 598void OFileViewFileListView::slotClicked(int button , QListViewItem* item, const QPoint&, int )
605{ 599{
606 if (!item || ( button != Qt::LeftButton) ) 600 if (!item || ( button != Qt::LeftButton) )
607 return; 601 return;
608 602
609 OFileSelectorItem *sel = static_cast<OFileSelectorItem*>(item); 603 OFileSelectorItem *sel = static_cast<OFileSelectorItem*>(item);
610 if (!sel->isLocked() ) 604 if (!sel->isLocked() )
611 { 605 {
612 QStringList str = QStringList::split("->", sel->text(1) ); 606 QStringList str = QStringList::split("->", sel->text(1) );
613 if (sel->isDir() ) 607 if (sel->isDir() )
614 { 608 {
615 m_currentDir = createNewPath(sel->directory(),str[0].stripWhiteSpace()); 609 m_currentDir = createNewPath(sel->directory(),str[0].stripWhiteSpace());
616 emit selector()->dirSelected( m_currentDir ); 610 emit selector()->dirSelected( m_currentDir );
617 reread( m_all ); 611 reread( m_all );
618 } 612 }
619 else 613 else
620 { // file 614 { // file
621 odebug << "slot Clicked" << oendl; 615 odebug << "slot Clicked" << oendl;
622 selector()->m_lneEdit->setText( str[0].stripWhiteSpace() ); 616 selector()->m_lneEdit->setText( str[0].stripWhiteSpace() );
623 QString path = createNewPath(sel->directory(),str[0].stripWhiteSpace()); 617 QString path = createNewPath(sel->directory(),str[0].stripWhiteSpace());
624 emit selector()->fileSelected( path ); 618 emit selector()->fileSelected( path );
625 DocLnk lnk( path ); 619 DocLnk lnk( path );
626 emit selector()->fileSelected( lnk ); 620 emit selector()->fileSelected( lnk );
627 } 621 }
628 } // not locked 622 } // not locked
629} 623}
630 624
631void OFileViewFileListView::addFile( QFileInfo* info, bool symlink ) 625void OFileViewFileListView::addFile( QFileInfo* info, bool symlink )
632{ 626{
633 MimeType type( info->absFilePath() ); 627 MimeType type( info->absFilePath() );
634 if (!compliesMime( type.id() ) ) 628 if (!compliesMime( type.id() ) )
635 return; 629 return;
636 630
637 QPixmap pix = type.pixmap(); 631 QPixmap pix = type.pixmap();
638 QString dir, name; bool locked; 632 QString dir, name; bool locked;
639 if ( pix.isNull() ) 633 if ( pix.isNull() )
640 { 634 {
641 QWMatrix matrix; 635 QWMatrix matrix;
642 QPixmap pixer(Resource::loadPixmap("UnknownDocument") ); 636 QPixmap pixer( Opie::Core::OResource::loadPixmap( "UnknownDocument" ) );
643 matrix.scale( .4, .4 ); 637 matrix.scale( .4, .4 );
644 pix = pixer.xForm( matrix ); 638 pix = pixer.xForm( matrix );
645 } 639 }
646 dir = info->dirPath( true ); 640 dir = info->dirPath( true );
647 locked = false; 641 locked = false;
648 if ( symlink ) 642 if ( symlink )
649 name = info->fileName() + " -> " + createNewPath(info->dirPath(),info->readLink()); 643 name = info->fileName() + " -> " + createNewPath(info->dirPath(),info->readLink());
650 else 644 else
651 { 645 {
652 name = info->fileName(); 646 name = info->fileName();
653 if ( ( (selector()->mode() == OFileSelector::Open)&& !info->isReadable() ) || 647 if ( ( (selector()->mode() == OFileSelector::Open)&& !info->isReadable() ) ||
654 ( (selector()->mode() == OFileSelector::Save)&& !info->isWritable() ) ) 648 ( (selector()->mode() == OFileSelector::Save)&& !info->isWritable() ) )
655 { 649 {
656 locked = true; pix = Resource::loadPixmap("locked"); 650 locked = true;
651 pix = Opie::Core::OResource::loadPixmap( "locked" );
657 } 652 }
658 } 653 }
659 (void)new OFileSelectorItem( m_view, pix, name, 654 (void)new OFileSelectorItem( m_view, pix, name,
660 info->lastModified().toString(), QString::number( info->size() ), 655 info->lastModified().toString(), QString::number( info->size() ),
661 dir, locked ); 656 dir, locked );
662} 657}
663 658
664void OFileViewFileListView::addDir( QFileInfo* info, bool symlink ) 659void OFileViewFileListView::addDir( QFileInfo* info, bool symlink )
665{ 660{
666 bool locked = false; QString name; QPixmap pix; 661 bool locked = false; QString name; QPixmap pix;
667 662
668 if ( ( ( selector()->mode() == OFileSelector::Open ) && !info->isReadable() ) || 663 if ( ( ( selector()->mode() == OFileSelector::Open ) && !info->isReadable() ) ||
669 ( ( selector()->mode() == OFileSelector::Save ) && !info->isWritable() ) ) 664 ( ( selector()->mode() == OFileSelector::Save ) && !info->isWritable() ) )
670 { 665 {
671 locked = true; 666 locked = true;
672 if ( symlink ) 667 if ( symlink )
673 pix = Resource::loadPixmap( "opie/symlink" ); 668 pix = Opie::Core::OResource::loadPixmap( "opie/symlink" );
674 else 669 else
675 pix = Resource::loadPixmap( "lockedfolder" ); 670 pix = Opie::Core::OResource::loadPixmap( "lockedfolder" );
676 } 671 }
677 else 672 else
678 pix = symlink ? Resource::loadPixmap( "opie/symlink") : Resource::loadPixmap("folder"); 673 pix = symlink ? Opie::Core::OResource::loadPixmap( "opie/symlink" ) : Opie::Core::OResource::loadPixmap( "folder" );
679 674
680 name = symlink ? info->fileName() + " -> " + createNewPath(info->dirPath(true),info->readLink()) : 675 name = symlink ? info->fileName() + " -> " + createNewPath(info->dirPath(true),info->readLink()) :
681 info->fileName(); 676 info->fileName();
682 677
683 (void)new OFileSelectorItem( m_view, pix, name, 678 (void)new OFileSelectorItem( m_view, pix, name,
684 info->lastModified().toString(), 679 info->lastModified().toString(),
685 QString::number( info->size() ), 680 QString::number( info->size() ),
686 info->dirPath( true ), locked, true ); 681 info->dirPath( true ), locked, true );
687 682
688 683
689} 684}
690 685
691void OFileViewFileListView::addSymlink( QFileInfo* , bool ) 686void OFileViewFileListView::addSymlink( QFileInfo* , bool )
692{ 687{
693} 688}
694 689
695void OFileViewFileListView::cdUP() 690void OFileViewFileListView::cdUP()
696{ 691{
697 QDir dir( m_currentDir ); 692 QDir dir( m_currentDir );
698 dir.cdUp(); 693 dir.cdUp();
699 694
700 if (!dir.exists() ) 695 if (!dir.exists() )
701 m_currentDir = "/"; 696 m_currentDir = "/";
702 else 697 else
703 m_currentDir = dir.absPath(); 698 m_currentDir = dir.absPath();
704 699
705 emit selector()->dirSelected( m_currentDir ); 700 emit selector()->dirSelected( m_currentDir );
706 reread( m_all ); 701 reread( m_all );
707} 702}
708 703
709void OFileViewFileListView::cdHome() 704void OFileViewFileListView::cdHome()
710{ 705{
711 m_currentDir = QDir::homeDirPath(); 706 m_currentDir = QDir::homeDirPath();
712 emit selector()->dirSelected( m_currentDir ); 707 emit selector()->dirSelected( m_currentDir );
713 reread( m_all ); 708 reread( m_all );
714} 709}
715 710
716void OFileViewFileListView::cdDoc() 711void OFileViewFileListView::cdDoc()
717{ 712{
718 m_currentDir = QPEApplication::documentDir(); 713 m_currentDir = QPEApplication::documentDir();
719 emit selector()->dirSelected( m_currentDir ); 714 emit selector()->dirSelected( m_currentDir );
720 reread( m_all ); 715 reread( m_all );
721} 716}
722 717
723void OFileViewFileListView::changeDir( const QString& dir ) 718void OFileViewFileListView::changeDir( const QString& dir )
724{ 719{
725 m_currentDir = dir; 720 m_currentDir = dir;
726 emit selector()->dirSelected( m_currentDir ); 721 emit selector()->dirSelected( m_currentDir );
727 reread( m_all ); 722 reread( m_all );
728} 723}
729 724
730void OFileViewFileListView::slotFSActivated( int id ) 725void OFileViewFileListView::slotFSActivated( int id )
731{ 726{
732 changeDir ( m_dev[m_fsPop->text(id)] ); 727 changeDir ( m_dev[m_fsPop->text(id)] );
733} 728}
734 729
735/* check if the mimetype in mime 730/* check if the mimetype in mime
736 * complies with the one which is current 731 * complies with the one which is current
737 */ 732 */
738/* 733/*
739 * We've the mimetype of the file 734 * We've the mimetype of the file
740 * We need to get the stringlist of the current mimetype 735 * We need to get the stringlist of the current mimetype
741 * 736 *
742 * mime = image@slashjpeg 737 * mime = image@slashjpeg
743 * QStringList = 'image@slash*' 738 * QStringList = 'image@slash*'
744 * or QStringList = image/jpeg;image/png;application/x-ogg 739 * or QStringList = image/jpeg;image/png;application/x-ogg
745 * or QStringList = application/x-ogg;image@slash*; 740 * or QStringList = application/x-ogg;image@slash*;
746 * with all these mime filters it should get acceptes 741 * with all these mime filters it should get acceptes
747 * to do so we need to look if mime is contained inside 742 * to do so we need to look if mime is contained inside
748 * the stringlist 743 * the stringlist
749 * if it's contained return true 744 * if it's contained return true
750 * if not ( I'm no RegExp expert at all ) we'll look if a '@slash*' 745 * if not ( I'm no RegExp expert at all ) we'll look if a '@slash*'
751 * is contained in the mimefilter and then we will 746 * is contained in the mimefilter and then we will
752 * look if both are equal until the '/' 747 * look if both are equal until the '/'
753 */ 748 */
754 749
755bool OFileViewFileListView::compliesMime( const QString& str) 750bool OFileViewFileListView::compliesMime( const QString& str)
756{ 751{
757 if (str.isEmpty() || m_mimes.isEmpty() || str.stripWhiteSpace().isEmpty() ) 752 if (str.isEmpty() || m_mimes.isEmpty() || str.stripWhiteSpace().isEmpty() )
758 return true; 753 return true;
759 754
760 for (QStringList::Iterator it = m_mimes.begin(); it != m_mimes.end(); ++it ) 755 for (QStringList::Iterator it = m_mimes.begin(); it != m_mimes.end(); ++it )
761 { 756 {
762 QRegExp reg( (*it) ); 757 QRegExp reg( (*it) );
763 reg.setWildcard( true ); 758 reg.setWildcard( true );
764 if ( str.find( reg ) != -1 ) 759 if ( str.find( reg ) != -1 )
765 return true; 760 return true;
766 761
767 } 762 }
768 return false; 763 return false;
769} 764}
770/* 765/*
771 * The listView giving access to the file system! 766 * The listView giving access to the file system!
772 */ 767 */
773 768
774class OFileViewFileSystem : public OFileViewInterface 769class OFileViewFileSystem : public OFileViewInterface
775{ 770{
776public: 771public:
777 OFileViewFileSystem( OFileSelector* ); 772 OFileViewFileSystem( OFileSelector* );
778 ~OFileViewFileSystem(); 773 ~OFileViewFileSystem();
779 774
780 QString selectedName() const; 775 QString selectedName() const;
781 QString selectedPath() const; 776 QString selectedPath() const;
782 777
783 QString directory()const; 778 QString directory()const;
784 void reread(); 779 void reread();
785 int fileCount()const; 780 int fileCount()const;
786 781
787 QWidget* widget( QWidget* parent ); 782 QWidget* widget( QWidget* parent );
788 void activate( const QString& ); 783 void activate( const QString& );
789private: 784private:
790 OFileViewFileListView* m_view; 785 OFileViewFileListView* m_view;
791 bool m_all : 1; 786 bool m_all : 1;
792}; 787};
793 788
794OFileViewFileSystem::OFileViewFileSystem( OFileSelector* sel) 789OFileViewFileSystem::OFileViewFileSystem( OFileSelector* sel)
795 : OFileViewInterface( sel ) 790 : OFileViewInterface( sel )
796{ 791{
797 m_view = 0; 792 m_view = 0;
798 m_all = false; 793 m_all = false;
799} 794}
800 795
801OFileViewFileSystem::~OFileViewFileSystem() 796OFileViewFileSystem::~OFileViewFileSystem()
802{ 797{
803} 798}
804 799
805QString OFileViewFileSystem::selectedName()const 800QString OFileViewFileSystem::selectedName()const
806{ 801{
807 if (!m_view ) 802 if (!m_view )
808 return QString::null; 803 return QString::null;
809 804
810 QString cFN=currentFileName(); 805 QString cFN=currentFileName();
811 if (cFN.startsWith("/")) return cFN; 806 if (cFN.startsWith("/")) return cFN;
812 return createNewPath(m_view->currentDir(),cFN); 807 return createNewPath(m_view->currentDir(),cFN);
813} 808}
814 809
815QString OFileViewFileSystem::selectedPath()const 810QString OFileViewFileSystem::selectedPath()const
816{ 811{
817 return QString::null; 812 return QString::null;
818} 813}
819 814
820QString OFileViewFileSystem::directory()const 815QString OFileViewFileSystem::directory()const
821{ 816{
822 if (!m_view) 817 if (!m_view)
823 return QString::null; 818 return QString::null;
824 819
825 OFileSelectorItem* item = m_view->currentItem(); 820 OFileSelectorItem* item = m_view->currentItem();
826 if (!item ) 821 if (!item )
827 return QString::null; 822 return QString::null;
828 823
829 return QDir(item->directory() ).absPath(); 824 return QDir(item->directory() ).absPath();
830} 825}
831 826
832void OFileViewFileSystem::reread() 827void OFileViewFileSystem::reread()
833{ 828{
834 if (!m_view) 829 if (!m_view)
835 return; 830 return;
836 831
837 m_view->reread( m_all ); 832 m_view->reread( m_all );
838} 833}
839 834
840int OFileViewFileSystem::fileCount()const 835int OFileViewFileSystem::fileCount()const
841{ 836{
842 if (!m_view ) 837 if (!m_view )
843 return -1; 838 return -1;
844 return m_view->fileCount(); 839 return m_view->fileCount();
845} 840}
846 841
847QWidget* OFileViewFileSystem::widget( QWidget* parent ) 842QWidget* OFileViewFileSystem::widget( QWidget* parent )
848{ 843{
849 if (!m_view ) 844 if (!m_view )
850 { 845 {
851 m_view = new OFileViewFileListView( parent, startDirectory(), selector() ); 846 m_view = new OFileViewFileListView( parent, startDirectory(), selector() );
852 } 847 }
853 return m_view; 848 return m_view;
854} 849}
855 850
856void OFileViewFileSystem::activate( const QString& str ) 851void OFileViewFileSystem::activate( const QString& str )
857{ 852{
858 m_all = allItem( str ); 853 m_all = allItem( str );
859} 854}
860 855
861 856
862} 857}
863/* Selector */ 858/* Selector */
864/** 859/**
865 * @short new and complete c'tor 860 * @short new and complete c'tor
866 * 861 *
867 * Create a OFileSelector to let the user select a file. It can 862 * Create a OFileSelector to let the user select a file. It can
868 * either be used to open a file, select a save name in a dir or 863 * either be used to open a file, select a save name in a dir or
869 * as a dropin for the FileSelector. 864 * as a dropin for the FileSelector.
870 * 865 *
871 * <pre> 866 * <pre>
872 * QMap<QString, QStringList> mimeTypes; 867 * QMap<QString, QStringList> mimeTypes;
873 * QStringList types; 868 * QStringList types;
874 * types << "text@slash* "; 869 * types << "text@slash* ";
875 * types << "audio@slash*"; 870 * types << "audio@slash*";
876 * mimeTypes.insert( tr("Audio and Text"), types ); 871 * mimeTypes.insert( tr("Audio and Text"), types );
877 * mimeTypes.insert( tr("All"), "*@slash*); 872 * mimeTypes.insert( tr("All"), "*@slash*);
878 * 873 *
879 * now you could create your fileselector 874 * now you could create your fileselector
880 * </pre> 875 * </pre>
881 * 876 *
882 * 877 *
883 * @param parent the parent of this widget 878 * @param parent the parent of this widget
884 * @param mode The mode from the enum Mode (Open,Save,FILESELECTOR) 879 * @param mode The mode from the enum Mode (Open,Save,FILESELECTOR)
885 * @param sel The selector to be used 880 * @param sel The selector to be used
886 * @param dirName The name of the dir to start int 881 * @param dirName The name of the dir to start int
887 * @param fileName The fileName placed in the fileselector lineedit 882 * @param fileName The fileName placed in the fileselector lineedit
888 * @param mimetypes The MimeType map of used mimetypes 883 * @param mimetypes The MimeType map of used mimetypes
889 * @param showNew Show a New Button. Most likely to be used in the FileSelector view. 884 * @param showNew Show a New Button. Most likely to be used in the FileSelector view.
890 * @param showClose Show a Close Button. Most likely to be used in FileSelector view. 885 * @param showClose Show a Close Button. Most likely to be used in FileSelector view.
891 * 886 *
892 */ 887 */
893OFileSelector::OFileSelector( QWidget* parent, int mode, int sel, 888OFileSelector::OFileSelector( QWidget* parent, int mode, int sel,
894 const QString& dirName, const QString& fileName, 889 const QString& dirName, const QString& fileName,
895 const MimeTypes& mimetypes, 890 const MimeTypes& mimetypes,
896 bool showNew, bool showClose) 891 bool showNew, bool showClose)
897 :QWidget( parent, "OFileSelector" ) 892 :QWidget( parent, "OFileSelector" )
898{ 893{
899 m_current = 0; 894 m_current = 0;
900 m_shNew = showNew; 895 m_shNew = showNew;
901 m_shClose = showClose; 896 m_shClose = showClose;
902 m_mimeType = mimetypes; 897 m_mimeType = mimetypes;
903 m_startDir = dirName; 898 m_startDir = dirName;
904 899
905 m_mode = mode; 900 m_mode = mode;
906 m_selector = sel; 901 m_selector = sel;
907 902
908 m_allList = QStringList(); 903 m_allList = QStringList();
909 904
910 initUI(); 905 initUI();
911 m_lneEdit->setText( fileName ); 906 m_lneEdit->setText( fileName );
912 initMime(); 907 initMime();
913 initViews(); 908 initViews();
914 909
915 QString str; 910 QString str;
916 switch ( m_selector ) 911 switch ( m_selector )
917 { 912 {
918 default: 913 default:
919 case Normal: 914 case Normal:
920 if ( m_mode == DIRECTORYSELECTOR ) 915 if ( m_mode == DIRECTORYSELECTOR )
921 str = QObject::tr("Directories"); 916 str = QObject::tr("Directories");
922 else 917 else
923 str = QObject::tr("Documents"); 918 str = QObject::tr("Documents");
924 m_cmbView->setCurrentItem( 0 ); 919 m_cmbView->setCurrentItem( 0 );
925 break; 920 break;
926 case Extended: 921 case Extended:
927 if ( m_mode == DIRECTORYSELECTOR ) 922 if ( m_mode == DIRECTORYSELECTOR )
928 { 923 {
929 str = QObject::tr("Directories"); 924 str = QObject::tr("Directories");
930 m_cmbView->setCurrentItem( 0 ); 925 m_cmbView->setCurrentItem( 0 );
931 } else { 926 } else {
932 str = QObject::tr("Files"); 927 str = QObject::tr("Files");
933 m_cmbView->setCurrentItem( 1 ); 928 m_cmbView->setCurrentItem( 1 );
934 } 929 }
935 break; 930 break;
936 case ExtendedAll: 931 case ExtendedAll:
937 if ( m_mode == DIRECTORYSELECTOR ) 932 if ( m_mode == DIRECTORYSELECTOR )
938 { 933 {
939 str = QObject::tr("All Directories"); 934 str = QObject::tr("All Directories");
940 m_cmbView->setCurrentItem( 1 ); 935 m_cmbView->setCurrentItem( 1 );
941 } else { 936 } else {
942 str = QObject::tr("All Files"); 937 str = QObject::tr("All Files");
943 m_cmbView->setCurrentItem( 2 ); 938 m_cmbView->setCurrentItem( 2 );
944 } 939 }
945 break; 940 break;
946 } 941 }
947 slotViewChange( str ); 942 slotViewChange( str );
948 943
949} 944}
950 945
951 946
952/** 947/**
953 * This a convience c'tor to just substitute the use of FileSelector 948 * This a convience c'tor to just substitute the use of FileSelector
954 */ 949 */
955OFileSelector::OFileSelector( const QString& mimeFilter, QWidget* parent, const char* name, 950OFileSelector::OFileSelector( const QString& mimeFilter, QWidget* parent, const char* name,
956 bool showNew, bool showClose ) 951 bool showNew, bool showClose )
957 : QWidget( parent, name ) 952 : QWidget( parent, name )
958{ 953{
959 m_current = 0; 954 m_current = 0;
960 m_shNew = showNew; 955 m_shNew = showNew;
961 m_shClose = showClose; 956 m_shClose = showClose;
962 m_startDir = QPEApplication::documentDir(); 957 m_startDir = QPEApplication::documentDir();
963 958
964 if (!mimeFilter.isEmpty() ) 959 if (!mimeFilter.isEmpty() )
965 m_mimeType.insert(mimeFilter, QStringList::split(";", mimeFilter ) ); 960 m_mimeType.insert(mimeFilter, QStringList::split(";", mimeFilter ) );
966 961
967 m_mode = OFileSelector::FileSelector; 962 m_mode = OFileSelector::FileSelector;
968 m_selector = OFileSelector::Normal; 963 m_selector = OFileSelector::Normal;
969 964
970 initUI(); 965 initUI();
971 initMime(); 966 initMime();
972 initViews(); 967 initViews();
973 m_cmbView->setCurrentItem( 0 ); 968 m_cmbView->setCurrentItem( 0 );
974 slotViewChange( QObject::tr("Documents") ); 969 slotViewChange( QObject::tr("Documents") );
975} 970}
976 971
977/* 972/*
978 * INIT UI will set up the basic GUI 973 * INIT UI will set up the basic GUI
979 * Layout: Simple VBoxLayout 974 * Layout: Simple VBoxLayout
980 * On top a WidgetStack containing the Views... 975 * On top a WidgetStack containing the Views...
981 * - List View 976 * - List View
982 * - Document View 977 * - Document View
983 * Below we will have a Label + LineEdit 978 * Below we will have a Label + LineEdit
984 * Below we will have two ComoBoxes one for choosing the view one for 979 * Below we will have two ComoBoxes one for choosing the view one for
985 * choosing the mimetype 980 * choosing the mimetype
986 */ 981 */
987void OFileSelector::initUI() 982void OFileSelector::initUI()
988{ 983{
989 QVBoxLayout* lay = new QVBoxLayout( this ); 984 QVBoxLayout* lay = new QVBoxLayout( this );
990 985
991 m_stack = new QWidgetStack( this ); 986 m_stack = new QWidgetStack( this );
992 lay->addWidget( m_stack, 1000 ); 987 lay->addWidget( m_stack, 1000 );
993 988
994 m_nameBox = new QHBox( this ); 989 m_nameBox = new QHBox( this );
995 (void)new QLabel( tr("Name:"), m_nameBox ); 990 (void)new QLabel( tr("Name:"), m_nameBox );
996 m_lneEdit = new QLineEdit( m_nameBox ); 991 m_lneEdit = new QLineEdit( m_nameBox );
997 m_lneEdit ->installEventFilter(this); 992 m_lneEdit ->installEventFilter(this);
998 lay->addWidget( m_nameBox ); 993 lay->addWidget( m_nameBox );
999 994
1000 m_cmbBox = new QHBox( this ); 995 m_cmbBox = new QHBox( this );
1001 m_cmbView = new QComboBox( m_cmbBox ); 996 m_cmbView = new QComboBox( m_cmbBox );
1002 m_cmbMime = new QComboBox( m_cmbBox ); 997 m_cmbMime = new QComboBox( m_cmbBox );
1003 lay->addWidget( m_cmbBox ); 998 lay->addWidget( m_cmbBox );
1004} 999}
1005 1000
1006/* 1001/*
1007 * This will make sure that the return key in the name edit causes dialogs to close 1002 * This will make sure that the return key in the name edit causes dialogs to close
1008 */ 1003 */
1009 1004
1010bool OFileSelector::eventFilter (QObject *, QEvent *e) 1005bool OFileSelector::eventFilter (QObject *, QEvent *e)
1011{ 1006{
1012 if ( e->type() == QEvent::KeyPress ) 1007 if ( e->type() == QEvent::KeyPress )
1013 { 1008 {
1014 QKeyEvent *k = (QKeyEvent *)e; 1009 QKeyEvent *k = (QKeyEvent *)e;
1015 if ( (k->key()==Key_Enter) || (k->key()==Key_Return)) 1010 if ( (k->key()==Key_Enter) || (k->key()==Key_Return))
1016 { 1011 {
1017 emit ok(); 1012 emit ok();
1018 return true; 1013 return true;
1019 } 1014 }
1020 } 1015 }
1021 return false; 1016 return false;
1022} 1017}
1023 1018
1024/* 1019/*
1025 * This will insert the MimeTypes into the Combo Box 1020 * This will insert the MimeTypes into the Combo Box
1026 * And also connect the changed signal 1021 * And also connect the changed signal
1027 * 1022 *
1028 * AutoMimeTyping is disabled for now. It used to reparse a dir and then set available mimetypes 1023 * AutoMimeTyping is disabled for now. It used to reparse a dir and then set available mimetypes
1029 */ 1024 */
1030void OFileSelector::initMime() 1025void OFileSelector::initMime()
1031{ 1026{
1032 MimeTypes::Iterator it; 1027 MimeTypes::Iterator it;
1033 for ( it = m_mimeType.begin(); it != m_mimeType.end(); ++it ) 1028 for ( it = m_mimeType.begin(); it != m_mimeType.end(); ++it )
1034 { 1029 {
1035 m_cmbMime->insertItem( it.key() ); 1030 m_cmbMime->insertItem( it.key() );
1036 } 1031 }
1037 m_cmbMime->setCurrentItem( 0 ); 1032 m_cmbMime->setCurrentItem( 0 );
1038 1033
1039 connect( m_cmbMime, SIGNAL(activated(int) ), 1034 connect( m_cmbMime, SIGNAL(activated(int) ),
1040 this, SLOT(slotMimeTypeChanged() ) ); 1035 this, SLOT(slotMimeTypeChanged() ) );
1041 1036
1042} 1037}
1043 1038
1044void OFileSelector::initViews() 1039void OFileSelector::initViews()
1045{ 1040{
1046 if ( m_mode == OFileSelector::DIRECTORYSELECTOR ) 1041 if ( m_mode == OFileSelector::DIRECTORYSELECTOR )
1047 { 1042 {
1048 m_cmbView->insertItem( QObject::tr("Directories") ); 1043 m_cmbView->insertItem( QObject::tr("Directories") );
1049 m_cmbView->insertItem( QObject::tr("All Directories") ); 1044 m_cmbView->insertItem( QObject::tr("All Directories") );
1050 } else { 1045 } else {
1051 m_cmbView->insertItem( QObject::tr("Documents") ); 1046 m_cmbView->insertItem( QObject::tr("Documents") );
1052 m_cmbView->insertItem( QObject::tr("Files") ); 1047 m_cmbView->insertItem( QObject::tr("Files") );
1053 m_cmbView->insertItem( QObject::tr("All Files") ); 1048 m_cmbView->insertItem( QObject::tr("All Files") );
1054 } 1049 }
1055 1050
1056 connect(m_cmbView, SIGNAL(activated(const QString&) ), 1051 connect(m_cmbView, SIGNAL(activated(const QString&) ),
1057 this, SLOT(slotViewChange(const QString&) ) ); 1052 this, SLOT(slotViewChange(const QString&) ) );
1058 1053
1059 /* see above why add both */ 1054 /* see above why add both */
1060 OFileViewInterface* in = new OFileViewFileSystem( this ); 1055 OFileViewInterface* in = new OFileViewFileSystem( this );
1061 1056
1062 if ( m_mode == OFileSelector::DIRECTORYSELECTOR ) 1057 if ( m_mode == OFileSelector::DIRECTORYSELECTOR )
diff --git a/libopie2/opieui/fileselector/ofileselector.h b/libopie2/opieui/fileselector/ofileselector.h
index d166afd..f32e3ed 100644
--- a/libopie2/opieui/fileselector/ofileselector.h
+++ b/libopie2/opieui/fileselector/ofileselector.h
@@ -1,235 +1,237 @@
1/* 1/*
2               =. This file is part of the OPIE Project 2                 This file is part of the Opie Project
3             .=l. Copyright (C) 2002,2003 Holger Freyther <zecke@handhelds.org> 3
4           .>+-= 4 Copyright (C) 2002,2003 Holger Freyther <zecke@handhelds.org>
5 _;:,     .>    :=|. This library is free software; you can 5 =.
6.> <`_,   >  .   <= redistribute it and/or modify it under 6 .=l.
7:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 7           .>+-=
8.="- .-=="i,     .._ License as published by the Free Software 8 _;:,     .>    :=|. This program is free software; you can
9 - .   .-<_>     .<> Foundation; either version 2 of the License, 9.> <`_,   >  .   <= redistribute it and/or modify it under
10     ._= =}       : or (at your option) any later version. 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
11    .%`+i>       _;_. 11.="- .-=="i,     .._ License as published by the Free Software
12    .i_,=:_.      -<s. This library is distributed in the hope that 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
13     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 13     ._= =}       : or (at your option) any later version.
14    : ..    .:,     . . . without even the implied warranty of 14    .%`+i>       _;_.
15    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 15    .i_,=:_.      -<s. This program is distributed in the hope that
16  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
17..}^=.=       =       ; Library General Public License for more 17 : ..    .:,     . . . without even the implied warranty of
18++=   -.     .`     .: details. 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
19 :     =  ...= . :.=- 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
20 -.   .:....=;==+<; You should have received a copy of the GNU 20..}^=.=       =       ; Library General Public License for more
21  -_. . .   )=.  = Library General Public License along with 21++=   -.     .`     .: details.
22    --        :-=` this library; see the file COPYING.LIB. 22 :     =  ...= . :.=-
23 -.   .:....=;==+<; You should have received a copy of the GNU
24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB.
23 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
24 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
26
27*/ 29*/
28 30
29/* 31/*
30 This is based on code and ideas of 32 This is based on code and ideas of
31 L. J. Potter ljp@llornkcor.com 33 L. J. Potter ljp@llornkcor.com
32 Thanks a lot 34 Thanks a lot
33*/ 35*/
34 36
35#ifndef OFILESELECTOR_H 37#ifndef OFILESELECTOR_H
36#define OFILESELECTOR_H 38#define OFILESELECTOR_H
37 39
38/* OPIE */ 40/* OPIE */
39#include <qpe/applnk.h> 41#include <qpe/applnk.h>
40 42
41/* QT */ 43/* QT */
42#include <qlist.h> 44#include <qlist.h>
43#include <qwidget.h> 45#include <qwidget.h>
44#include <qmap.h> 46#include <qmap.h>
45#include <qvaluelist.h> 47#include <qvaluelist.h>
46#include <qstringlist.h> 48#include <qstringlist.h>
47#include <qlist.h> 49#include <qlist.h>
48 50
49class QLineEdit; 51class QLineEdit;
50class QComboBox; 52class QComboBox;
51class QWidgetStack; 53class QWidgetStack;
52class QHBox; 54class QHBox;
53 55
54typedef QMap<QString, QStringList> MimeTypes; 56typedef QMap<QString, QStringList> MimeTypes;
55 57
56namespace Opie { 58namespace Opie {
57namespace Ui { 59namespace Ui {
58 60
59namespace Internal { 61namespace Internal {
60class OFileViewInterface; 62class OFileViewInterface;
61class OFileViewFileListView; 63class OFileViewFileListView;
62} 64}
63 65
64 66
65/** 67/**
66 * @short a dropin replacement for the FileSelector 68 * @short a dropin replacement for the FileSelector
67 * 69 *
68 * This class is first used insert the OFileDialog. 70 * This class is first used insert the OFileDialog.
69 * It supports multiple view and mimetype filtering for now. 71 * It supports multiple view and mimetype filtering for now.
70 * 72 *
71 * @see OFileDialog 73 * @see OFileDialog
72 * @see FileSelector 74 * @see FileSelector
73 * @author zecke 75 * @author zecke
74 * @version 0.1 76 * @version 0.1
75 */ 77 */
76class OFileSelector : public QWidget 78class OFileSelector : public QWidget
77{ 79{
78 Q_OBJECT 80 Q_OBJECT
79 friend class Internal::OFileViewInterface; 81 friend class Internal::OFileViewInterface;
80 friend class Internal::OFileViewFileListView; 82 friend class Internal::OFileViewFileListView;
81 83
82public: 84public:
83 /** 85 /**
84 * The Mode of the Fileselector 86 * The Mode of the Fileselector
85 * Open = Open A File 87 * Open = Open A File
86 * Save = Save a File 88 * Save = Save a File
87 * FILESELECTOR = As A GUI in a screen to select a file 89 * FILESELECTOR = As A GUI in a screen to select a file
88 * SelectDir = Select a Directory 90 * SelectDir = Select a Directory
89 */ 91 */
90 enum Mode { Open = 1, Save = 2, DirectorySelector = 3, FileSelector = 4, OPEN = 1, SAVE = 2, DIRECTORYSELECTOR = 3, FILESELECTOR = 4 }; 92 enum Mode { Open = 1, Save = 2, DirectorySelector = 3, FileSelector = 4, OPEN = 1, SAVE = 2, DIRECTORYSELECTOR = 3, FILESELECTOR = 4 };
91 // enum OldMode { OPEN=1, SAVE=2, FILESELECTOR = 4 }; 93 // enum OldMode { OPEN=1, SAVE=2, FILESELECTOR = 4 };
92 /** 94 /**
93 * Normal = The old FileSelector 95 * Normal = The old FileSelector
94 * Extended = Dir View 96 * Extended = Dir View
95 * ExtendedAll = Dir View with all hidden files 97 * ExtendedAll = Dir View with all hidden files
96 * Default = What the vendor considers best 98 * Default = What the vendor considers best
97 */ 99 */
98 enum Selector { Normal = 0, Extended=1, ExtendedAll =2, Default=3, NORMAL=0,EXTENDED=1, EXTENDED_ALL =2, DEFAULT=3 }; 100 enum Selector { Normal = 0, Extended=1, ExtendedAll =2, Default=3, NORMAL=0,EXTENDED=1, EXTENDED_ALL =2, DEFAULT=3 };
99 // enum OldSelector { NORMAL = 0, EXTENDED =1, EXTENDED_ALL = 2}; 101 // enum OldSelector { NORMAL = 0, EXTENDED =1, EXTENDED_ALL = 2};
100 102
101 OFileSelector(QWidget* parent, int mode, int selector, 103 OFileSelector(QWidget* parent, int mode, int selector,
102 const QString& dirName, 104 const QString& dirName,
103 const QString& fileName, 105 const QString& fileName,
104 const MimeTypes& mimetypes = MimeTypes(), 106 const MimeTypes& mimetypes = MimeTypes(),
105 bool newVisible = FALSE, bool closeVisible = FALSE ); 107 bool newVisible = FALSE, bool closeVisible = FALSE );
106 108
107 OFileSelector(const QString& mimeFilter, QWidget* parent, 109 OFileSelector(const QString& mimeFilter, QWidget* parent,
108 const char* name = 0, bool newVisible = TRUE, bool closeVisible = FALSE ); 110 const char* name = 0, bool newVisible = TRUE, bool closeVisible = FALSE );
109 ~OFileSelector(); 111 ~OFileSelector();
110 112
111 const DocLnk* selected(); 113 const DocLnk* selected();
112 114
113 QString selectedName()const; 115 QString selectedName()const;
114 QString selectedPath()const; 116 QString selectedPath()const;
115 QString directory()const; 117 QString directory()const;
116 118
117 DocLnk selectedDocument()const; 119 DocLnk selectedDocument()const;
118 120
119 int fileCount()const; 121 int fileCount()const;
120 void reread(); 122 void reread();
121 123
122 int mode()const; 124 int mode()const;
123 int selector()const; 125 int selector()const;
124 126
125 /** 127 /**
126 * Set the Icon visible 128 * Set the Icon visible
127 * @param b Show or Hide the New Button 129 * @param b Show or Hide the New Button
128 */ 130 */
129 void setNewVisible( bool b ); 131 void setNewVisible( bool b );
130 132
131 /** 133 /**
132 * Set the Icon visible 134 * Set the Icon visible
133 */ 135 */
134 void setCloseVisible( bool b ); 136 void setCloseVisible( bool b );
135 137
136 /** 138 /**
137 * Set the Name Line visible 139 * Set the Name Line visible
138 */ 140 */
139 void setNameVisible( bool b ); 141 void setNameVisible( bool b );
140 142
141signals: 143signals:
142 /** 144 /**
143 * dirSelected is emitted whenever changed into a different dir 145 * dirSelected is emitted whenever changed into a different dir
144 */ 146 */
145 void dirSelected( const QString& ); 147 void dirSelected( const QString& );
146 148
147 /** 149 /**
148 * fileSelected is emitted when a file is selected 150 * fileSelected is emitted when a file is selected
149 * it uses a DocLnk as parameter 151 * it uses a DocLnk as parameter
150 */ 152 */
151 void fileSelected( const DocLnk& ); 153 void fileSelected( const DocLnk& );
152 154
153 /** 155 /**
154 * fileSelected is emitted when a file is selected 156 * fileSelected is emitted when a file is selected
155 * the complete path is a parameter 157 * the complete path is a parameter
156 */ 158 */
157 void fileSelected( const QString& ); 159 void fileSelected( const QString& );
158 160
159 /** 161 /**
160 * Create a new File with a DocLnk 162 * Create a new File with a DocLnk
161 */ 163 */
162 void newSelected( const DocLnk& ); 164 void newSelected( const DocLnk& );
163 165
164 void closeMe(); 166 void closeMe();
165 167
166 /** 168 /**
167 * Ok is emitted on a Qt::Key_Return or Q::Key_Enter 169 * Ok is emitted on a Qt::Key_Return or Q::Key_Enter
168 * in the line edit 170 * in the line edit
169 */ 171 */
170 void ok(); 172 void ok();
171 void cancel(); 173 void cancel();
172 174
173 /* used by the ViewInterface */ 175 /* used by the ViewInterface */
174private: 176private:
175 bool showNew()const; 177 bool showNew()const;
176 bool showClose()const; 178 bool showClose()const;
177 MimeTypes mimeTypes()const; 179 MimeTypes mimeTypes()const;
178 QStringList currentMimeType()const; 180 QStringList currentMimeType()const;
179 181
180private: 182private:
181 /* inits the Widgets */ 183 /* inits the Widgets */
182 void initUI(); 184 void initUI();
183 /* inits the MimeType ComboBox content + connects signals and slots */ 185 /* inits the MimeType ComboBox content + connects signals and slots */
184 void initMime(); 186 void initMime();
185 /* init the Views :) */ 187 /* init the Views :) */
186 void initViews(); 188 void initViews();
187 189
188 190
189 /* 191 /*
190 * register a view for deletion. 192 * register a view for deletion.
191 * This happens on creation of a OFileViewInterface 193 * This happens on creation of a OFileViewInterface
192 */ 194 */
193 void registerView( const Internal::OFileViewInterface* ); 195 void registerView( const Internal::OFileViewInterface* );
194 196
195private: 197private:
196 QLineEdit* m_lneEdit; // the LineEdit for the Name 198 QLineEdit* m_lneEdit; // the LineEdit for the Name
197 QComboBox *m_cmbView, *m_cmbMime; // two ComboBoxes to select the View and MimeType 199 QComboBox *m_cmbView, *m_cmbMime; // two ComboBoxes to select the View and MimeType
198 QWidgetStack* m_stack; // our widget stack which will contain the views 200 QWidgetStack* m_stack; // our widget stack which will contain the views
199 Internal::OFileViewInterface* currentView() const; // returns the currentView 201 Internal::OFileViewInterface* currentView() const; // returns the currentView
200 Internal::OFileViewInterface* m_current; // here is the view saved 202 Internal::OFileViewInterface* m_current; // here is the view saved
201 bool m_shNew : 1; // should we show New? 203 bool m_shNew : 1; // should we show New?
202 bool m_shClose : 1; // should we show Close? 204 bool m_shClose : 1; // should we show Close?
203 MimeTypes m_mimeType; // list of mimetypes 205 MimeTypes m_mimeType; // list of mimetypes
204 206
205 QMap<QString, Internal::OFileViewInterface*> m_views; // QString translated view name + ViewInterface Ptr 207 QMap<QString, Internal::OFileViewInterface*> m_views; // QString translated view name + ViewInterface Ptr
206 /* views register themselves automatically */ 208 /* views register themselves automatically */
207 QList<Internal::OFileViewInterface> m_viewsPtr; 209 QList<Internal::OFileViewInterface> m_viewsPtr;
208 QHBox* m_nameBox; // the LineEdit + Label is hold here 210 QHBox* m_nameBox; // the LineEdit + Label is hold here
209 QHBox* m_cmbBox; // this holds the two combo boxes 211 QHBox* m_cmbBox; // this holds the two combo boxes
210 212
211 QString m_startDir; 213 QString m_startDir;
212 int m_mode; 214 int m_mode;
213 int m_selector; 215 int m_selector;
214 216
215 QStringList m_allList; 217 QStringList m_allList;
216 218
217 struct Data; // used for future versions 219 struct Data; // used for future versions
218 Data *d; 220 Data *d;
219 221
220private slots: 222private slots:
221 void slotMimeTypeChanged(); 223 void slotMimeTypeChanged();
222 224
223 /* will set the text of the lineedit and emit a fileChanged signal */ 225 /* will set the text of the lineedit and emit a fileChanged signal */
224 void slotDocLnkBridge( const DocLnk& ); 226 void slotDocLnkBridge( const DocLnk& );
225 void slotFileBridge( const QString& ); 227 void slotFileBridge( const QString& );
226 void slotViewChange( const QString& ); 228 void slotViewChange( const QString& );
227 229
228 bool eventFilter (QObject *o, QEvent *e); 230 bool eventFilter (QObject *o, QEvent *e);
229 231
230}; 232};
231 233
232} 234}
233} 235}
234 236
235#endif 237#endif
diff --git a/libopie2/opieui/otabwidget.cpp b/libopie2/opieui/otabwidget.cpp
index 8d7806c..7333f5e 100644
--- a/libopie2/opieui/otabwidget.cpp
+++ b/libopie2/opieui/otabwidget.cpp
@@ -1,482 +1,476 @@
1/* 1/*
2 This file is part of the Opie Project 2                 This file is part of the Opie Project
3 3
4 Copyright (c) 2002, 2005 Dan Williams <drw@handhelds.org> 4 Copyright (C) 2002, 2005 Dan Williams <drw@handhelds.org>
5 =. 5 =.
6 .=l. 6 .=l.
7 .>+-= 7           .>+-=
8_;:, .> :=|. This program is free software; you can 8 _;:,     .>    :=|. This program is free software; you can
9.> <`_, > . <= redistribute it and/or modify it under 9.> <`_,   >  .   <= redistribute it and/or modify it under
10:`=1 )Y*s>-.-- : the terms of the GNU Library General Public 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
11.="- .-=="i, .._ License as published by the Free Software 11.="- .-=="i,     .._ License as published by the Free Software
12- . .-<_> .<> Foundation; either version 2 of the License, 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
13 ._= =} : or (at your option) any later version. 13     ._= =}       : or (at your option) any later version.
14 .%`+i> _;_. 14    .%`+i>       _;_.
15 .i_,=:_. -<s. This program is distributed in the hope that 15    .i_,=:_.      -<s. This program is distributed in the hope that
16 + . -:. = it will be useful, but WITHOUT ANY WARRANTY; 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
17 : .. .:, . . . without even the implied warranty of 17 : ..    .:,     . . . without even the implied warranty of
18 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
19 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
20..}^=.= = ; Library General Public License for more 20..}^=.=       =       ; Library General Public License for more
21++= -. .` .: details. 21++=   -.     .`     .: details.
22: = ...= . :.=- 22 :     =  ...= . :.=-
23-. .:....=;==+<; You should have received a copy of the GNU 23 -.   .:....=;==+<; You should have received a copy of the GNU
24 -_. . . )=. = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
25 -- :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
29
30*/ 29*/
31 30
32#include <opie2/otabwidget.h> 31#include <opie2/otabwidget.h>
33 32
34/* OPIE */ 33/* OPIE */
34#include <opie2/oresource.h>
35#include <opie2/otabbar.h>
36
35#include <qpe/applnk.h> 37#include <qpe/applnk.h>
36#include <qpe/config.h> 38#include <qpe/config.h>
37#include <qpe/resource.h>
38#include <opie2/otabbar.h>
39 39
40/* QT */ 40/* QT */
41#include <qcombobox.h> 41#include <qcombobox.h>
42#include <qwidgetstack.h> 42#include <qwidgetstack.h>
43 43
44using namespace Opie::Ui; 44using namespace Opie::Ui;
45 45
46OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p ) 46OTabWidget::OTabWidget( QWidget *parent, const char *name, TabStyle s, TabPosition p )
47 : QWidget( parent, name ) 47 : QWidget( parent, name )
48 , m_currTab( 0l ) 48 , m_currTab( 0l )
49 , m_tabBarStyle( Global ) 49 , m_tabBarStyle( Global )
50 , m_tabBarPosition( Top ) 50 , m_tabBarPosition( Top )
51 , m_usingTabs( true ) 51 , m_usingTabs( true )
52 , m_tabBar( 0l ) 52 , m_tabBar( 0l )
53 , m_tabList( 0l ) 53 , m_tabList( 0l )
54{ 54{
55 if ( s == Global ) 55 if ( s == Global )
56 { 56 {
57 // Read Opie global settings for style and position 57 // Read Opie global settings for style and position
58 Config config( "qpe" ); 58 Config config( "qpe" );
59 config.setGroup( "Appearance" ); 59 config.setGroup( "Appearance" );
60 60
61 // Style 61 // Style
62 s = ( TabStyle ) config.readNumEntry( "TabStyle", (int) IconTab ); 62 s = ( TabStyle ) config.readNumEntry( "TabStyle", (int) IconTab );
63 if ( s <= Global || s > IconList) 63 if ( s <= Global || s > IconList)
64 s = IconTab; 64 s = IconTab;
65 65
66 // Position 66 // Position
67 ( config.readEntry( "TabPosition", "Top" ) == "Bottom" ) ? p = Bottom 67 ( config.readEntry( "TabPosition", "Top" ) == "Bottom" ) ? p = Bottom
68 : p = Top; 68 : p = Top;
69 } 69 }
70 70
71 // Initialize widget stack for tab widgets 71 // Initialize widget stack for tab widgets
72 m_widgetStack = new QWidgetStack( this ); 72 m_widgetStack = new QWidgetStack( this );
73 m_widgetStack->setFrameStyle( QFrame::NoFrame ); 73 m_widgetStack->setFrameStyle( QFrame::NoFrame );
74 m_widgetStack->setLineWidth( style().defaultFrameWidth() ); 74 m_widgetStack->setLineWidth( style().defaultFrameWidth() );
75 75
76 // Set initial selector control style and position 76 // Set initial selector control style and position
77 setTabStyle( s ); 77 setTabStyle( s );
78 setTabPosition( p ); 78 setTabPosition( p );
79} 79}
80 80
81OTabWidget::~OTabWidget() 81OTabWidget::~OTabWidget()
82{ 82{
83 m_tabs.setAutoDelete( true ); 83 m_tabs.setAutoDelete( true );
84 m_tabs.clear(); 84 m_tabs.clear();
85} 85}
86 86
87void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &label ) 87void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &label )
88{ 88{
89 int tabid = -1; 89 int tabid = -1;
90 90
91 if ( m_usingTabs ) 91 if ( m_usingTabs )
92 { 92 {
93 // Create new tab in tab bar 93 // Create new tab in tab bar
94 QTab *tab = new QTab(); 94 QTab *tab = new QTab();
95 95
96 // Set label (and icon if necessary) 96 // Set label (and icon if necessary)
97 if ( m_tabBarStyle == IconTab ) 97 if ( m_tabBarStyle == IconTab )
98 { 98 {
99 tab->label = QString::null; 99 tab->label = QString::null;
100 tab->iconset = new QIconSet( loadSmooth( icon ) ); 100 tab->iconset = new QIconSet( Opie::Core::OResource::loadPixmap( icon, Opie::Core::OResource::SmallIcon ) );
101 } 101 }
102 else 102 else
103 tab->label = label; 103 tab->label = label;
104 104
105 tabid = m_tabBar->addTab( tab ); 105 tabid = m_tabBar->addTab( tab );
106 } 106 }
107 else 107 else
108 { 108 {
109 // Insert entry (with icon if necessary) into drop down list 109 // Insert entry (with icon if necessary) into drop down list
110 if ( m_tabBarStyle == IconList ) 110 if ( m_tabBarStyle == IconList )
111 m_tabList->insertItem( loadSmooth( icon ), label, -1 ); 111 m_tabList->insertItem( Opie::Core::OResource::loadPixmap( icon, Opie::Core::OResource::SmallIcon ), label, -1 );
112 else 112 else
113 m_tabList->insertItem( label ); 113 m_tabList->insertItem( label );
114 } 114 }
115 115
116 // Add widget to stack 116 // Add widget to stack
117 m_widgetStack->addWidget( child, tabid ); 117 m_widgetStack->addWidget( child, tabid );
118 m_widgetStack->raiseWidget( child ); 118 m_widgetStack->raiseWidget( child );
119 m_widgetStack->setFrameStyle( QFrame::StyledPanel | QFrame::Raised ); 119 m_widgetStack->setFrameStyle( QFrame::StyledPanel | QFrame::Raised );
120 120
121 // Keep track of tab information 121 // Keep track of tab information
122 OTabInfo *tabinfo = new OTabInfo( tabid, child, icon, label ); 122 OTabInfo *tabinfo = new OTabInfo( tabid, child, icon, label );
123 m_tabs.append( tabinfo ); 123 m_tabs.append( tabinfo );
124 124
125 // Make newly added tab the current one displayed 125 // Make newly added tab the current one displayed
126 selectTab( tabinfo ); 126 selectTab( tabinfo );
127} 127}
128 128
129void OTabWidget::removePage( QWidget *childwidget ) 129void OTabWidget::removePage( QWidget *childwidget )
130{ 130{
131 if ( childwidget ) 131 if ( childwidget )
132 { 132 {
133 // Find tab information for desired widget 133 // Find tab information for desired widget
134 OTabInfo *tab = m_tabs.first(); 134 OTabInfo *tab = m_tabs.first();
135 while ( tab && tab->control() != childwidget ) 135 while ( tab && tab->control() != childwidget )
136 tab = m_tabs.next(); 136 tab = m_tabs.next();
137 137
138 if ( tab && tab->control() == childwidget ) 138 if ( tab && tab->control() == childwidget )
139 { 139 {
140 if ( m_usingTabs ) 140 if ( m_usingTabs )
141 { 141 {
142 // Remove tab from tab bar 142 // Remove tab from tab bar
143 m_tabBar->setTabEnabled( tab->id(), false ); 143 m_tabBar->setTabEnabled( tab->id(), false );
144 m_tabBar->removeTab( m_tabBar->tab( tab->id() ) ); 144 m_tabBar->removeTab( m_tabBar->tab( tab->id() ) );
145 } 145 }
146 else 146 else
147 { 147 {
148 // Remove entry from drop down list 148 // Remove entry from drop down list
149 int i = 0; 149 int i = 0;
150 while ( i < m_tabList->count() && m_tabList->text( i ) != tab->label() ) 150 while ( i < m_tabList->count() && m_tabList->text( i ) != tab->label() )
151 i++; 151 i++;
152 if ( m_tabList->text( i ) == tab->label() ) 152 if ( m_tabList->text( i ) == tab->label() )
153 m_tabList->removeItem( i ); 153 m_tabList->removeItem( i );
154 } 154 }
155 155
156 // Remove widget from stack 156 // Remove widget from stack
157 m_widgetStack->removeWidget( childwidget ); 157 m_widgetStack->removeWidget( childwidget );
158 158
159 // Get rid of tab information 159 // Get rid of tab information
160 m_tabs.remove( tab ); 160 m_tabs.remove( tab );
161 delete tab; 161 delete tab;
162 162
163 // Reset current tab 163 // Reset current tab
164 m_currTab = m_tabs.current(); 164 m_currTab = m_tabs.current();
165 if ( !m_currTab ) 165 if ( !m_currTab )
166 m_widgetStack->setFrameStyle( QFrame::NoFrame ); 166 m_widgetStack->setFrameStyle( QFrame::NoFrame );
167 167
168 // Redraw widget 168 // Redraw widget
169 setUpLayout(); 169 setUpLayout();
170 } 170 }
171 } 171 }
172} 172}
173 173
174void OTabWidget::changeTab( QWidget *widget, const QString &iconset, const QString &label) 174void OTabWidget::changeTab( QWidget *widget, const QString &iconset, const QString &label)
175{ 175{
176 // Find tab information for desired widget 176 // Find tab information for desired widget
177 OTabInfo *currtab = m_tabs.first(); 177 OTabInfo *currtab = m_tabs.first();
178 while ( currtab && currtab->control() != widget ) 178 while ( currtab && currtab->control() != widget )
179 currtab = m_tabs.next(); 179 currtab = m_tabs.next();
180 180
181 if ( currtab && currtab->control() == widget ) 181 if ( currtab && currtab->control() == widget )
182 { 182 {
183 QPixmap icon( loadSmooth( iconset ) ); 183 QPixmap icon( Opie::Core::OResource::loadPixmap( iconset, Opie::Core::OResource::SmallIcon ) );
184 184
185 if ( m_usingTabs ) 185 if ( m_usingTabs )
186 { 186 {
187 // Update tab label and icon (if necessary) 187 // Update tab label and icon (if necessary)
188 QTab *tab = m_tabBar->tab( currtab->id() ); 188 QTab *tab = m_tabBar->tab( currtab->id() );
189 tab->setText( label ); 189 tab->setText( label );
190 if ( m_tabBarStyle == IconTab ) 190 if ( m_tabBarStyle == IconTab )
191 tab->setIconSet( icon ); 191 tab->setIconSet( icon );
192 } 192 }
193 else 193 else
194 { 194 {
195 // Update entry label and icon (if necessary) 195 // Update entry label and icon (if necessary)
196 int i = 0; 196 int i = 0;
197 while ( i < m_tabList->count() && m_tabList->text( i ) != currtab->label() ) 197 while ( i < m_tabList->count() && m_tabList->text( i ) != currtab->label() )
198 i++; 198 i++;
199 if ( i < m_tabList->count() && m_tabList->text( i ) == currtab->label() ) 199 if ( i < m_tabList->count() && m_tabList->text( i ) == currtab->label() )
200 { 200 {
201 if ( m_tabBarStyle == IconList ) 201 if ( m_tabBarStyle == IconList )
202 m_tabList->changeItem( icon, label, i ); 202 m_tabList->changeItem( icon, label, i );
203 else 203 else
204 m_tabList->changeItem( label, i ); 204 m_tabList->changeItem( label, i );
205 } 205 }
206 } 206 }
207 207
208 // Update tab information 208 // Update tab information
209 currtab->setLabel( label ); 209 currtab->setLabel( label );
210 currtab->setIcon( iconset ); 210 currtab->setIcon( iconset );
211 211
212 // Redraw widget 212 // Redraw widget
213 setUpLayout(); 213 setUpLayout();
214 } 214 }
215} 215}
216 216
217void OTabWidget::setCurrentTab( QWidget *childwidget ) 217void OTabWidget::setCurrentTab( QWidget *childwidget )
218{ 218{
219 OTabInfo *currtab = m_tabs.first(); 219 OTabInfo *currtab = m_tabs.first();
220 while ( currtab && currtab->control() != childwidget ) 220 while ( currtab && currtab->control() != childwidget )
221 { 221 {
222 currtab = m_tabs.next(); 222 currtab = m_tabs.next();
223 } 223 }
224 if ( currtab && currtab->control() == childwidget ) 224 if ( currtab && currtab->control() == childwidget )
225 { 225 {
226 selectTab( currtab ); 226 selectTab( currtab );
227 } 227 }
228} 228}
229 229
230void OTabWidget::setCurrentTab( const QString &tabname ) 230void OTabWidget::setCurrentTab( const QString &tabname )
231{ 231{
232 OTabInfo *newtab = m_tabs.first(); 232 OTabInfo *newtab = m_tabs.first();
233 while ( newtab && newtab->label() != tabname ) 233 while ( newtab && newtab->label() != tabname )
234 { 234 {
235 newtab = m_tabs.next(); 235 newtab = m_tabs.next();
236 } 236 }
237 if ( newtab && newtab->label() == tabname ) 237 if ( newtab && newtab->label() == tabname )
238 { 238 {
239 selectTab( newtab ); 239 selectTab( newtab );
240 } 240 }
241} 241}
242 242
243void OTabWidget::setCurrentTab(int tabindex) 243void OTabWidget::setCurrentTab(int tabindex)
244{ 244{
245 OTabInfo *newtab = m_tabs.first(); 245 OTabInfo *newtab = m_tabs.first();
246 while ( newtab && newtab->id() != tabindex ) 246 while ( newtab && newtab->id() != tabindex )
247 { 247 {
248 newtab = m_tabs.next(); 248 newtab = m_tabs.next();
249 } 249 }
250 if ( newtab && newtab->id() == tabindex ) 250 if ( newtab && newtab->id() == tabindex )
251 { 251 {
252 selectTab( newtab ); 252 selectTab( newtab );
253 } 253 }
254} 254}
255 255
256 256
257OTabWidget::TabStyle OTabWidget::tabStyle() const 257OTabWidget::TabStyle OTabWidget::tabStyle() const
258{ 258{
259 return m_tabBarStyle; 259 return m_tabBarStyle;
260} 260}
261 261
262void OTabWidget::setTabStyle( TabStyle s ) 262void OTabWidget::setTabStyle( TabStyle s )
263{ 263{
264 // Get out if new and current styles are the same 264 // Get out if new and current styles are the same
265 if ( s == m_tabBarStyle ) 265 if ( s == m_tabBarStyle )
266 return; 266 return;
267 267
268 // Delete current selector control 268 // Delete current selector control
269 if ( m_usingTabs ) 269 if ( m_usingTabs )
270 { 270 {
271 delete m_tabBar; 271 delete m_tabBar;
272 m_tabBar = 0l; 272 m_tabBar = 0l;
273 } 273 }
274 else 274 else
275 { 275 {
276 delete m_tabList; 276 delete m_tabList;
277 m_tabList = 0l; 277 m_tabList = 0l;
278 } 278 }
279 279
280 // Set new style information 280 // Set new style information
281 m_tabBarStyle = s; 281 m_tabBarStyle = s;
282 m_usingTabs = ( m_tabBarStyle == TextTab || m_tabBarStyle == IconTab ); 282 m_usingTabs = ( m_tabBarStyle == TextTab || m_tabBarStyle == IconTab );
283 283
284 // Create new selector control and populate with tab information 284 // Create new selector control and populate with tab information
285 if ( m_usingTabs ) 285 if ( m_usingTabs )
286 { 286 {
287 // Create new tab bar selector 287 // Create new tab bar selector
288 m_tabBar = new OTabBar( this ); 288 m_tabBar = new OTabBar( this );
289 connect( m_tabBar, SIGNAL(selected(int)), this, SLOT(slotTabBarSelected(int)) ); 289 connect( m_tabBar, SIGNAL(selected(int)), this, SLOT(slotTabBarSelected(int)) );
290 290
291 // Add all current tabs to tab bar 291 // Add all current tabs to tab bar
292 for ( OTabInfo *tabinfo = m_tabs.first(); tabinfo; tabinfo = m_tabs.next() ) 292 for ( OTabInfo *tabinfo = m_tabs.first(); tabinfo; tabinfo = m_tabs.next() )
293 { 293 {
294 // Create new tab in tab bar 294 // Create new tab in tab bar
295 QTab *tab = new QTab(); 295 QTab *tab = new QTab();
296 296
297 // Set label (and icon if necessary) 297 // Set label (and icon if necessary)
298 if ( m_tabBarStyle == IconTab ) 298 if ( m_tabBarStyle == IconTab )
299 { 299 {
300 tab->label = QString::null; 300 tab->label = QString::null;
301 tab->iconset = new QIconSet( loadSmooth( tabinfo->icon() ) ); 301 tab->iconset = new QIconSet( Opie::Core::OResource::loadPixmap( tabinfo->icon(), Opie::Core::OResource::SmallIcon ) );
302 } 302 }
303 else 303 else
304 tab->label = tabinfo->label(); 304 tab->label = tabinfo->label();
305 305
306 // Add tab and save its Id 306 // Add tab and save its Id
307 int tabid = m_tabBar->addTab( tab ); 307 int tabid = m_tabBar->addTab( tab );
308 tabinfo->setId( tabid ); 308 tabinfo->setId( tabid );
309 } 309 }
310 } 310 }
311 else 311 else
312 { 312 {
313 // Create new drop down list selector 313 // Create new drop down list selector
314 m_tabList = new QComboBox( false, this ); 314 m_tabList = new QComboBox( false, this );
315 connect( m_tabList, SIGNAL(activated(int)), this, SLOT(slotTabListSelected(int)) ); 315 connect( m_tabList, SIGNAL(activated(int)), this, SLOT(slotTabListSelected(int)) );
316 316
317 // Add all current tabs to drop down list 317 // Add all current tabs to drop down list
318 for ( OTabInfo *tabinfo = m_tabs.first(); tabinfo; tabinfo = m_tabs.next() ) 318 for ( OTabInfo *tabinfo = m_tabs.first(); tabinfo; tabinfo = m_tabs.next() )
319 { 319 {
320 if ( m_tabBarStyle == IconList ) 320 if ( m_tabBarStyle == IconList )
321 m_tabList->insertItem( loadSmooth( tabinfo->icon() ), tabinfo->label() ); 321 m_tabList->insertItem( Opie::Core::OResource::loadPixmap( tabinfo->icon(), Opie::Core::OResource::SmallIcon ),
322 tabinfo->label() );
322 else 323 else
323 m_tabList->insertItem( tabinfo->label() ); 324 m_tabList->insertItem( tabinfo->label() );
324 } 325 }
325 } 326 }
326 327
327 // Redraw widget 328 // Redraw widget
328 setUpLayout(); 329 setUpLayout();
329} 330}
330 331
331OTabWidget::TabPosition OTabWidget::tabPosition() const 332OTabWidget::TabPosition OTabWidget::tabPosition() const
332{ 333{
333 return m_tabBarPosition; 334 return m_tabBarPosition;
334} 335}
335 336
336void OTabWidget::setTabPosition( TabPosition p ) 337void OTabWidget::setTabPosition( TabPosition p )
337{ 338{
338 m_tabBarPosition = p; 339 m_tabBarPosition = p;
339 340
340 // If using the tab bar selector, set its shape 341 // If using the tab bar selector, set its shape
341 if ( m_usingTabs ) 342 if ( m_usingTabs )
342 { 343 {
343 ( m_tabBarPosition == Top ) ? m_tabBar->setShape( QTabBar::RoundedAbove ) 344 ( m_tabBarPosition == Top ) ? m_tabBar->setShape( QTabBar::RoundedAbove )
344 : m_tabBar->setShape( QTabBar::RoundedBelow ); 345 : m_tabBar->setShape( QTabBar::RoundedBelow );
345 } 346 }
346 347
347 // Redraw widget 348 // Redraw widget
348 setUpLayout(); 349 setUpLayout();
349} 350}
350 351
351void OTabWidget::slotTabBarSelected( int id ) 352void OTabWidget::slotTabBarSelected( int id )
352{ 353{
353 OTabInfo *newtab = m_tabs.first(); 354 OTabInfo *newtab = m_tabs.first();
354 while ( newtab && newtab->id() != id ) 355 while ( newtab && newtab->id() != id )
355 newtab = m_tabs.next(); 356 newtab = m_tabs.next();
356 357
357 if ( newtab && newtab->id() == id ) 358 if ( newtab && newtab->id() == id )
358 selectTab( newtab ); 359 selectTab( newtab );
359} 360}
360 361
361void OTabWidget::slotTabListSelected( int index ) 362void OTabWidget::slotTabListSelected( int index )
362{ 363{
363 OTabInfo *newtab = m_tabs.at( index ); 364 OTabInfo *newtab = m_tabs.at( index );
364 if ( newtab ) 365 if ( newtab )
365 selectTab( newtab ); 366 selectTab( newtab );
366} 367}
367 368
368QPixmap OTabWidget::loadSmooth( const QString &name )
369{
370 QPixmap p;
371 p.convertFromImage( Resource::loadImage( name ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
372 return p;
373}
374
375void OTabWidget::selectTab( OTabInfo *tab ) 369void OTabWidget::selectTab( OTabInfo *tab )
376{ 370{
377 if ( m_tabBarStyle == IconTab ) 371 if ( m_tabBarStyle == IconTab )
378 { 372 {
379 // Remove text label from currently selected tab 373 // Remove text label from currently selected tab
380 if ( m_currTab ) 374 if ( m_currTab )
381 { 375 {
382 m_tabBar->tab( m_currTab->id() )->setText( QString::null ); 376 m_tabBar->tab( m_currTab->id() )->setText( QString::null );
383 //setUpLayout(); 377 //setUpLayout();
384 } 378 }
385 379
386 // Set text label for newly selected tab 380 // Set text label for newly selected tab
387 m_tabBar->tab( tab->id() )->setText( tab->label() ); 381 m_tabBar->tab( tab->id() )->setText( tab->label() );
388 m_tabBar->setCurrentTab( tab->id() ); 382 m_tabBar->setCurrentTab( tab->id() );
389 383
390 setUpLayout(); 384 setUpLayout();
391 385
392 QSize t; 386 QSize t;
393 387
394 t = m_tabBar->sizeHint(); 388 t = m_tabBar->sizeHint();
395 if ( t.width() > width() ) 389 if ( t.width() > width() )
396 t.setWidth( width() ); 390 t.setWidth( width() );
397 int lw = m_widgetStack->lineWidth(); 391 int lw = m_widgetStack->lineWidth();
398 if ( m_tabBarPosition == Bottom ) 392 if ( m_tabBarPosition == Bottom )
399 m_tabBar->setGeometry( QMAX(0, lw-2), height() - t.height() - lw, t.width(), t.height() ); 393 m_tabBar->setGeometry( QMAX(0, lw-2), height() - t.height() - lw, t.width(), t.height() );
400 else 394 else
401 m_tabBar->setGeometry( QMAX(0, lw-2), 0, t.width(), t.height() ); 395 m_tabBar->setGeometry( QMAX(0, lw-2), 0, t.width(), t.height() );
402 } 396 }
403 else if ( m_tabBarStyle == TextTab ) 397 else if ( m_tabBarStyle == TextTab )
404 { 398 {
405 m_tabBar->setCurrentTab( tab->id() ); 399 m_tabBar->setCurrentTab( tab->id() );
406 } 400 }
407 401
408 m_widgetStack->raiseWidget( tab->control() ); 402 m_widgetStack->raiseWidget( tab->control() );
409 403
410 emit currentChanged( tab->control() ); 404 emit currentChanged( tab->control() );
411 405
412 m_currTab = tab; 406 m_currTab = tab;
413} 407}
414 408
415void OTabWidget::setUpLayout() 409void OTabWidget::setUpLayout()
416{ 410{
417 if ( m_usingTabs ) 411 if ( m_usingTabs )
418 { 412 {
419 m_tabBar->update(); 413 m_tabBar->update();
420 m_tabBar->layoutTabs(); 414 m_tabBar->layoutTabs();
421 } 415 }
422} 416}
423 417
424void OTabWidget::resizeEvent( QResizeEvent * ) 418void OTabWidget::resizeEvent( QResizeEvent * )
425{ 419{
426 QSize t; 420 QSize t;
427 421
428 if ( m_usingTabs ) 422 if ( m_usingTabs )
429 { 423 {
430 m_tabBar->layoutTabs(); 424 m_tabBar->layoutTabs();
431 t = m_tabBar->sizeHint(); 425 t = m_tabBar->sizeHint();
432 if ( t.width() > width() ) 426 if ( t.width() > width() )
433 t.setWidth( width() ); 427 t.setWidth( width() );
434 } 428 }
435 else 429 else
436 { 430 {
437 t = m_tabList->sizeHint(); 431 t = m_tabList->sizeHint();
438 t.setWidth( width() ); 432 t.setWidth( width() );
439 } 433 }
440 434
441 int lw = m_widgetStack->lineWidth(); 435 int lw = m_widgetStack->lineWidth();
442 if ( m_tabBarPosition == Bottom ) 436 if ( m_tabBarPosition == Bottom )
443 { 437 {
444 if ( m_usingTabs ) 438 if ( m_usingTabs )
445 m_tabBar->setGeometry( QMAX(0, lw-2), height() - t.height() - lw, t.width(), t.height() ); 439 m_tabBar->setGeometry( QMAX(0, lw-2), height() - t.height() - lw, t.width(), t.height() );
446 else 440 else
447 m_tabList->setGeometry( QMAX(0, lw-2), height() - t.height() - lw, t.width(), t.height() ); 441 m_tabList->setGeometry( QMAX(0, lw-2), height() - t.height() - lw, t.width(), t.height() );
448 442
449 m_widgetStack->setGeometry( 0, 0, width(), height()-t.height()+QMAX(0, lw-2) ); 443 m_widgetStack->setGeometry( 0, 0, width(), height()-t.height()+QMAX(0, lw-2) );
450 } 444 }
451 else 445 else
452 { 446 {
453 if ( m_usingTabs ) 447 if ( m_usingTabs )
454 m_tabBar->setGeometry( QMAX(0, lw-2), 0, t.width(), t.height() ); 448 m_tabBar->setGeometry( QMAX(0, lw-2), 0, t.width(), t.height() );
455 else 449 else
456 m_tabList->setGeometry( QMAX(0, lw-2), 0, t.width(), t.height() ); 450 m_tabList->setGeometry( QMAX(0, lw-2), 0, t.width(), t.height() );
457 451
458 m_widgetStack->setGeometry( 0, t.height()-lw, width(), height()-t.height()+QMAX( 0, lw-2 ) ); 452 m_widgetStack->setGeometry( 0, t.height()-lw, width(), height()-t.height()+QMAX( 0, lw-2 ) );
459 } 453 }
460 454
461 if ( autoMask() ) 455 if ( autoMask() )
462 updateMask(); 456 updateMask();
463} 457}
464 458
465int OTabWidget::currentTab() 459int OTabWidget::currentTab()
466{ 460{
467 if ( m_currTab ) 461 if ( m_currTab )
468 { 462 {
469 return m_currTab->id(); 463 return m_currTab->id();
470 } 464 }
471 return -1; 465 return -1;
472} 466}
473 467
474QWidget* OTabWidget::currentWidget()const 468QWidget* OTabWidget::currentWidget()const
475{ 469{
476 if ( m_currTab ) 470 if ( m_currTab )
477 { 471 {
478 return m_currTab->control(); 472 return m_currTab->control();
479 } 473 }
480 474
481 return 0; 475 return 0;
482} 476}
diff --git a/libopie2/opieui/otabwidget.h b/libopie2/opieui/otabwidget.h
index e925592..3af8fac 100644
--- a/libopie2/opieui/otabwidget.h
+++ b/libopie2/opieui/otabwidget.h
@@ -1,287 +1,279 @@
1/* 1/*
2 This file is part of the Opie Project 2                 This file is part of the Opie Project
3 Copyright (C) 2002, 2005 Dan Williams <drw@handhelds.org> 3
4 Copyright (C) 2002, 2005 Dan Williams <drw@handhelds.org>
4 =. 5 =.
5 .=l. 6 .=l.
6 .>+-= 7           .>+-=
7_;:, .> :=|. This program is free software; you can 8 _;:,     .>    :=|. This program is free software; you can
8.> <`_, > . <= redistribute it and/or modify it under 9.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.-- : the terms of the GNU Library General Public 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i, .._ License as published by the Free Software 11.="- .-=="i,     .._ License as published by the Free Software
11- . .-<_> .<> Foundation; either version 2 of the License, 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
12 ._= =} : or (at your option) any later version. 13     ._= =}       : or (at your option) any later version.
13 .%`+i> _;_. 14    .%`+i>       _;_.
14 .i_,=:_. -<s. This program is distributed in the hope that 15    .i_,=:_.      -<s. This program is distributed in the hope that
15 + . -:. = it will be useful, but WITHOUT ANY WARRANTY; 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16 : .. .:, . . . without even the implied warranty of 17 : ..    .:,     . . . without even the implied warranty of
17 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.= = ; Library General Public License for more 20..}^=.=       =       ; Library General Public License for more
20++= -. .` .: details. 21++=   -.     .`     .: details.
21: = ...= . :.=- 22 :     =  ...= . :.=-
22-. .:....=;==+<; You should have received a copy of the GNU 23 -.   .:....=;==+<; You should have received a copy of the GNU
23 -_. . . )=. = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
24 -- :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
28
29*/ 29*/
30 30
31#ifndef OTABWIDGET_H 31#ifndef OTABWIDGET_H
32#define OTABWIDGET_H 32#define OTABWIDGET_H
33 33
34/* OPIE */ 34/* OPIE */
35#include <opie2/otabinfo.h> 35#include <opie2/otabinfo.h>
36 36
37/* QT */ 37/* QT */
38#include <qwidget.h> 38#include <qwidget.h>
39#include <qlist.h> 39#include <qlist.h>
40 40
41 41
42class QComboBox; 42class QComboBox;
43class QPixmap; 43class QPixmap;
44class QTabBar; 44class QTabBar;
45class QWidgetStack; 45class QWidgetStack;
46 46
47namespace Opie { 47namespace Opie {
48namespace Ui { 48namespace Ui {
49 49
50class OTabBar; 50class OTabBar;
51 51
52/** 52/**
53 * @class OTabWidget 53 * @class OTabWidget
54 * @brief The OTabWidget class provides a stack of widgets. 54 * @brief The OTabWidget class provides a stack of widgets.
55 * 55 *
56 * OTabWidget is a derivation of TrollTech's QTabWidget which provides 56 * OTabWidget is a derivation of TrollTech's QTabWidget which provides
57 * a stack of widgets. Widgets can be selected using either a tab bar or 57 * a stack of widgets. Widgets can be selected using either a tab bar or
58 * drop down list box. 58 * drop down list box.
59 * 59 *
60 * The normal way to use OTabWidget is to do the following in the 60 * The normal way to use OTabWidget is to do the following in the
61 * constructor: 61 * constructor:
62 * - Create a OTabWidget. 62 * - Create a OTabWidget.
63 * - Create a QWidget for each of the pages in the control, insert 63 * - Create a QWidget for each of the pages in the control, insert
64 * children into it, set up geometry management for it, and use addTab() 64 * children into it, set up geometry management for it, and use addTab()
65 * to add the widget. 65 * to add the widget.
66 */ 66 */
67class OTabWidget : public QWidget 67class OTabWidget : public QWidget
68{ 68{
69 Q_OBJECT 69 Q_OBJECT
70 70
71 public: 71 public:
72/** 72/**
73 * @enum TabStyle 73 * @enum TabStyle
74 * @brief Defines how the widget selection control is displayed. 74 * @brief Defines how the widget selection control is displayed.
75 * 75 *
76 * Valid values: 76 * Valid values:
77 * - Global: use globally selected options (qpe.conf - TabStyle & TabPosition) 77 * - Global: use globally selected options (qpe.conf - TabStyle & TabPosition)
78 * - TextTab: Tabbed widget selection with text labels 78 * - TextTab: Tabbed widget selection with text labels
79 * - IconTab: Tabbed widget selection with icon labels, text label for active widget 79 * - IconTab: Tabbed widget selection with icon labels, text label for active widget
80 * (similar to Opie launcher) 80 * (similar to Opie launcher)
81 * - TextList: Drop down list widget selection with text labels 81 * - TextList: Drop down list widget selection with text labels
82 * - IconList: Drop down list widget selection with icon & text labels 82 * - IconList: Drop down list widget selection with icon & text labels
83 */ 83 */
84 enum TabStyle { Global, TextTab, IconTab, TextList, IconList }; 84 enum TabStyle { Global, TextTab, IconTab, TextList, IconList };
85 85
86/** 86/**
87 * @enum TabPosition 87 * @enum TabPosition
88 * @brief Defines where the widget selection control is drawn. 88 * @brief Defines where the widget selection control is drawn.
89 * 89 *
90 * Valid values: 90 * Valid values:
91 * - Top: Widget selection control is drawn above widgets 91 * - Top: Widget selection control is drawn above widgets
92 * - Bottom: Widget selection control is drawn below widgets 92 * - Bottom: Widget selection control is drawn below widgets
93 */ 93 */
94 enum TabPosition { Top, Bottom }; 94 enum TabPosition { Top, Bottom };
95 95
96/** 96/**
97 * @fn OTabWidget( QWidget *parent = 0, const char *name = 0, TabStyle s = Global, TabPosition p = Top ) 97 * @fn OTabWidget( QWidget *parent = 0, const char *name = 0, TabStyle s = Global, TabPosition p = Top )
98 * @brief Object constructor. 98 * @brief Object constructor.
99 * 99 *
100 * @param parent Pointer to parent of this control. 100 * @param parent Pointer to parent of this control.
101 * @param name Name of control. 101 * @param name Name of control.
102 * @param s Style of widget selection control. 102 * @param s Style of widget selection control.
103 * @param p Position of the widget selection control. 103 * @param p Position of the widget selection control.
104 * 104 *
105 * Constructs a new OTabWidget control with parent and name. The style and position parameters 105 * Constructs a new OTabWidget control with parent and name. The style and position parameters
106 * determine how the widget selection control will be displayed. 106 * determine how the widget selection control will be displayed.
107 */ 107 */
108 OTabWidget( QWidget * = 0, const char * = 0, TabStyle = Global, TabPosition = Top ); 108 OTabWidget( QWidget * = 0, const char * = 0, TabStyle = Global, TabPosition = Top );
109 109
110/** 110/**
111 * @fn ~OTabWidget() 111 * @fn ~OTabWidget()
112 * @brief Object destructor. 112 * @brief Object destructor.
113 */ 113 */
114 ~OTabWidget(); 114 ~OTabWidget();
115 115
116/** 116/**
117 * @fn addTab( QWidget *child, const QString &icon, const QString &label ) 117 * @fn addTab( QWidget *child, const QString &icon, const QString &label )
118 * @brief Add new widget to control. 118 * @brief Add new widget to control.
119 * 119 *
120 * @param child Widget control. 120 * @param child Widget control.
121 * @param icon Path to icon. 121 * @param icon Path to icon.
122 * @param label Text label. 122 * @param label Text label.
123 */ 123 */
124 void addTab( QWidget *, const QString &, const QString & ); 124 void addTab( QWidget *, const QString &, const QString & );
125 125
126/** 126/**
127 * @fn removePage( QWidget *widget ) 127 * @fn removePage( QWidget *widget )
128 * @brief Remove widget from control. Does not delete widget. 128 * @brief Remove widget from control. Does not delete widget.
129 * 129 *
130 * @param widget Widget control to be removed. 130 * @param widget Widget control to be removed.
131 */ 131 */
132 void removePage( QWidget * ); 132 void removePage( QWidget * );
133 133
134/** 134/**
135 * @fn changeTab( QWidget *widget, const QString &icon, const QString &label ) 135 * @fn changeTab( QWidget *widget, const QString &icon, const QString &label )
136 * @brief Change text and/or icon for existing tab 136 * @brief Change text and/or icon for existing tab
137 * 137 *
138 * @param child Widget control. 138 * @param child Widget control.
139 * @param icon Path to icon. 139 * @param icon Path to icon.
140 * @param label Text label. 140 * @param label Text label.
141 */ 141 */
142 void changeTab( QWidget *, const QString &, const QString & ); 142 void changeTab( QWidget *, const QString &, const QString & );
143 143
144/** 144/**
145 * @fn tabStyle()const 145 * @fn tabStyle()const
146 * @brief Returns current widget selection control style. 146 * @brief Returns current widget selection control style.
147 */ 147 */
148 TabStyle tabStyle() const; 148 TabStyle tabStyle() const;
149 149
150/** 150/**
151 * @fn setTabStyle( TabStyle s ) 151 * @fn setTabStyle( TabStyle s )
152 * @brief Set the current widget selection control style. 152 * @brief Set the current widget selection control style.
153 * 153 *
154 * @param s New style to be used. 154 * @param s New style to be used.
155 */ 155 */
156 void setTabStyle( TabStyle ); 156 void setTabStyle( TabStyle );
157 157
158/** 158/**
159 * @fn tabPosition()const 159 * @fn tabPosition()const
160 * @brief Returns current widget selection control position. 160 * @brief Returns current widget selection control position.
161 */ 161 */
162 TabPosition tabPosition() const; 162 TabPosition tabPosition() const;
163 163
164/** 164/**
165 * @fn setTabPosition( TabPosition p ) 165 * @fn setTabPosition( TabPosition p )
166 * @brief Set the current widget selection control position. 166 * @brief Set the current widget selection control position.
167 * 167 *
168 * @param p New position of widget selection control. 168 * @param p New position of widget selection control.
169 */ 169 */
170 void setTabPosition( TabPosition ); 170 void setTabPosition( TabPosition );
171 171
172/** 172/**
173 * @fn setCurrentTab( QWidget *childwidget ) 173 * @fn setCurrentTab( QWidget *childwidget )
174 * @brief Selects and brings to top the desired widget by using widget pointer. 174 * @brief Selects and brings to top the desired widget by using widget pointer.
175 * 175 *
176 * @param childwidget Widget to select. 176 * @param childwidget Widget to select.
177 */ 177 */
178 void setCurrentTab( QWidget * ); 178 void setCurrentTab( QWidget * );
179 179
180/** 180/**
181 * @fn setCurrentTab( const QString &tabname ) 181 * @fn setCurrentTab( const QString &tabname )
182 * @brief Selects and brings to top the desired widget, by using label. 182 * @brief Selects and brings to top the desired widget, by using label.
183 * 183 *
184 * @param tabname Text label for widget to select. 184 * @param tabname Text label for widget to select.
185 */ 185 */
186 void setCurrentTab( const QString & ); 186 void setCurrentTab( const QString & );
187 187
188/** 188/**
189 * @fn setCurrentTab( int ) 189 * @fn setCurrentTab( int )
190 * @brief Selects and brings to top the desired widget, by using id. 190 * @brief Selects and brings to top the desired widget, by using id.
191 * 191 *
192 * @param tab id for widget to select. 192 * @param tab id for widget to select.
193 */ 193 */
194 void setCurrentTab(int); 194 void setCurrentTab(int);
195 195
196/** 196/**
197 * @fn currentTab( ) 197 * @fn currentTab( )
198 * @brief returns current tab id. 198 * @brief returns current tab id.
199 */ 199 */
200 // ### make const 200 // ### make const
201 int currentTab()/* const */; 201 int currentTab()/* const */;
202/** 202/**
203 * @brief returns the current page of the active tab 203 * @brief returns the current page of the active tab
204 * 204 *
205 * @since 1.2 205 * @since 1.2
206 */ 206 */
207 QWidget* currentWidget()const; 207 QWidget* currentWidget()const;
208 208
209protected: 209protected:
210 210
211/** 211/**
212 * @fn resizeEvent( QResizeEvent * ) 212 * @fn resizeEvent( QResizeEvent * )
213 * @brief Reimplemented for internal purposes. 213 * @brief Reimplemented for internal purposes.
214 */ 214 */
215 void resizeEvent( QResizeEvent * ); 215 void resizeEvent( QResizeEvent * );
216 216
217private: 217private:
218 OTabInfoList m_tabs; // List of information for tabs 218 OTabInfoList m_tabs; // List of information for tabs
219 OTabInfo *m_currTab; // Current tab displayed 219 OTabInfo *m_currTab; // Current tab displayed
220 TabStyle m_tabBarStyle; // Current style of control 220 TabStyle m_tabBarStyle; // Current style of control
221 TabPosition m_tabBarPosition; // Position of selector control 221 TabPosition m_tabBarPosition; // Position of selector control
222 bool m_usingTabs; // Indicates whether style is either TextTab or IconTab 222 bool m_usingTabs; // Indicates whether style is either TextTab or IconTab
223 // (saves from having to always check for these 2 values) 223 // (saves from having to always check for these 2 values)
224 224
225 // UI components 225 // UI components
226 OTabBar *m_tabBar; 226 OTabBar *m_tabBar;
227 QComboBox *m_tabList; 227 QComboBox *m_tabList;
228 QWidgetStack *m_widgetStack; 228 QWidgetStack *m_widgetStack;
229 229
230 class Private; 230 class Private;
231 Private* d; 231 Private* d;
232 232
233/** 233/**
234 * @fn loadSmooth( const QString &name )
235 * @brief Loads icon for widget.
236 *
237 * @param name Name of icon image file.
238 */
239 QPixmap loadSmooth( const QString & );
240
241/**
242 * @fn selectTab( OTabInfo *tab ) 234 * @fn selectTab( OTabInfo *tab )
243 * @brief Internal function to select desired widget. 235 * @brief Internal function to select desired widget.
244 * 236 *
245 * @param tab Pointer to data for widget. 237 * @param tab Pointer to data for widget.
246 */ 238 */
247 void selectTab( OTabInfo * ); 239 void selectTab( OTabInfo * );
248 240
249/** 241/**
250 * @fn setUpLayout() 242 * @fn setUpLayout()
251 * @brief Internal function to adjust layout. 243 * @brief Internal function to adjust layout.
252 */ 244 */
253 void setUpLayout(); 245 void setUpLayout();
254 246
255 247
256 signals: 248 signals:
257/** 249/**
258 * @fn currentChanged( QWidget *widget ) 250 * @fn currentChanged( QWidget *widget )
259 * @brief This signal is emitted whenever the widget has changed. 251 * @brief This signal is emitted whenever the widget has changed.
260 * 252 *
261 * @param widget Pointer to new current widget. 253 * @param widget Pointer to new current widget.
262 */ 254 */
263 void currentChanged( QWidget * ); 255 void currentChanged( QWidget * );
264 256
265 private slots: 257 private slots:
266 258
267/** 259/**
268 * @fn slotTabBarSelected( int id ) 260 * @fn slotTabBarSelected( int id )
269 * @brief Slot which is called when a tab is selected. 261 * @brief Slot which is called when a tab is selected.
270 * 262 *
271 * @param id ID of widget selected. 263 * @param id ID of widget selected.
272 */ 264 */
273 void slotTabBarSelected( int ); 265 void slotTabBarSelected( int );
274 266
275/** 267/**
276 * @fn slotTabListSelected( int index ) 268 * @fn slotTabListSelected( int index )
277 * @brief Slot which is called when a drop down selection is made. 269 * @brief Slot which is called when a drop down selection is made.
278 * 270 *
279 * @param id Index of widget selected. 271 * @param id Index of widget selected.
280 */ 272 */
281 void slotTabListSelected( int ); 273 void slotTabListSelected( int );
282}; 274};
283 275
284} 276}
285} 277}
286 278
287#endif 279#endif
diff --git a/libopie2/opieui/owait.cpp b/libopie2/opieui/owait.cpp
index ec1f25a..5f89ad2 100644
--- a/libopie2/opieui/owait.cpp
+++ b/libopie2/opieui/owait.cpp
@@ -1,113 +1,115 @@
1/* 1/*
2                This file is part of the Opie Project 2                 This file is part of the Opie Project
3              Copyright (C) 2003 Maximilian Reiss <harlekin@handhelds.org> 3
4 Copyright (C) 2003 Maximilian Reiss <harlekin@handhelds.org>
4 =. 5 =.
5 .=l. 6 .=l.
6           .>+-= 7           .>+-=
7 _;:,     .>    :=|. This program is free software; you can 8 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under 9.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i,     .._ License as published by the Free Software 11.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; either version 2 of the License, 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
12     ._= =}       : or (at your option) any later version. 13     ._= =}       : or (at your option) any later version.
13    .%`+i>       _;_. 14    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that 15    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of 17    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 20..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 21++=   -.     .`     .: details.
21 :     =  ...= . :.=- 22 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 23 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
28
29*/ 29*/
30 30
31#include "owait.h" 31#include "owait.h"
32 32
33/* OPIE */ 33/* OPIE */
34#include <opie2/oresource.h>
35
36
34#include <qpe/qpeapplication.h> 37#include <qpe/qpeapplication.h>
35#include <qpe/resource.h>
36 38
37/* QT */ 39/* QT */
38#include <qlayout.h> 40#include <qlayout.h>
39#include <qpainter.h> 41#include <qpainter.h>
40 42
41using namespace Opie::Ui; 43using namespace Opie::Ui;
42 44
43static int frame = 0; 45static int frame = 0;
44 46
45/** 47/**
46 * This will construct a modal dialog. 48 * This will construct a modal dialog.
47 * 49 *
48 * The default timer length is 10. 50 * The default timer length is 10.
49 * 51 *
50 * @param parent The parent of the widget 52 * @param parent The parent of the widget
51 * @param msg The name of the object 53 * @param msg The name of the object
52 * @param dispIcon Display Icon? 54 * @param dispIcon Display Icon?
53 */ 55 */
54OWait::OWait( QWidget *parent, const char* msg, bool dispIcon ) 56OWait::OWait( QWidget *parent, const char* msg, bool dispIcon )
55 :QDialog( parent, msg, TRUE, WStyle_Customize ) 57 :QDialog( parent, msg, TRUE, WStyle_Customize )
56{ 58{
57 59
58 Q_UNUSED( dispIcon ) 60 Q_UNUSED( dispIcon )
59 61
60 QHBoxLayout * hbox = new QHBoxLayout( this ); 62 QHBoxLayout * hbox = new QHBoxLayout( this );
61 63
62 m_lb = new QLabel( this ); 64 m_lb = new QLabel( this );
63 m_lb->setBackgroundMode ( NoBackground ); 65 m_lb->setBackgroundMode ( NoBackground );
64 66
65 hbox->addWidget( m_lb ); 67 hbox->addWidget( m_lb );
66 hbox->activate(); 68 hbox->activate();
67 69
68 m_pix = Resource::loadPixmap( "BigBusy" ); 70 m_pix = Opie::Core::OResource::loadPixmap( "BigBusy" );
69 m_aniSize = m_pix.height(); 71 m_aniSize = m_pix.height();
70 resize( m_aniSize, m_aniSize ); 72 resize( m_aniSize, m_aniSize );
71 73
72 m_timerLength = 10; 74 m_timerLength = 10;
73 75
74 m_waitTimer = new QTimer( this ); 76 m_waitTimer = new QTimer( this );
75 connect( m_waitTimer, SIGNAL( timeout() ), this, SLOT( hide() ) ); 77 connect( m_waitTimer, SIGNAL( timeout() ), this, SLOT( hide() ) );
76} 78}
77 79
78void OWait::timerEvent( QTimerEvent * ) 80void OWait::timerEvent( QTimerEvent * )
79{ 81{
80 frame = ( ++frame ) % 4; 82 frame = ( ++frame ) % 4;
81 repaint(); 83 repaint();
82} 84}
83 85
84void OWait::paintEvent( QPaintEvent * ) 86void OWait::paintEvent( QPaintEvent * )
85{ 87{
86 QPainter p( m_lb ); 88 QPainter p( m_lb );
87 p.drawPixmap( 0, 0, m_pix, m_aniSize * frame, 0, m_aniSize, m_aniSize ); 89 p.drawPixmap( 0, 0, m_pix, m_aniSize * frame, 0, m_aniSize, m_aniSize );
88} 90}
89 91
90void OWait::show() 92void OWait::show()
91{ 93{
92 94
93 move( ( ( qApp->desktop() ->width() ) / 2 ) - ( m_aniSize / 2 ), ( ( qApp->desktop() ->height() ) / 2 ) - ( m_aniSize / 2 ) ); 95 move( ( ( qApp->desktop() ->width() ) / 2 ) - ( m_aniSize / 2 ), ( ( qApp->desktop() ->height() ) / 2 ) - ( m_aniSize / 2 ) );
94 startTimer( 300 ); 96 startTimer( 300 );
95 m_waitTimer->start( m_timerLength * 1000, true ); 97 m_waitTimer->start( m_timerLength * 1000, true );
96 QDialog::show(); 98 QDialog::show();
97} 99}
98 100
99void OWait::hide() 101void OWait::hide()
100{ 102{
101 killTimers(); 103 killTimers();
102 m_waitTimer->stop(); 104 m_waitTimer->stop();
103 frame = 0; 105 frame = 0;
104 QDialog::hide(); 106 QDialog::hide();
105} 107}
106 108
107void OWait::setTimerLength( int length ) 109void OWait::setTimerLength( int length )
108{ 110{
109 m_timerLength = length; 111 m_timerLength = length;
110} 112}
111 113
112OWait::~OWait() 114OWait::~OWait()
113{} 115{}
diff --git a/libopie2/opieui/owait.h b/libopie2/opieui/owait.h
index 03c33e4..0036bb1 100644
--- a/libopie2/opieui/owait.h
+++ b/libopie2/opieui/owait.h
@@ -1,90 +1,89 @@
1/* 1/*
2                This file is part of the Opie Project 2                 This file is part of the Opie Project
3              Copyright (C) 2003 Maximilian Reiss <harlekin@handhelds.org> 3
4 Copyright (C) 2003 Maximilian Reiss <harlekin@handhelds.org>
4 =. 5 =.
5 .=l. 6 .=l.
6           .>+-= 7           .>+-=
7 _;:,     .>    :=|. This program is free software; you can 8 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under 9.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i,     .._ License as published by the Free Software 11.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; either version 2 of the License, 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
12     ._= =}       : or (at your option) any later version. 13     ._= =}       : or (at your option) any later version.
13    .%`+i>       _;_. 14    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that 15    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of 17 : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 20..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 21++=   -.     .`     .: details.
21 :     =  ...= . :.=- 22 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 23 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
28
29*/ 29*/
30 30
31#ifndef OWAIT_H 31#ifndef OWAIT_H
32#define OWAIT_H 32#define OWAIT_H
33 33
34/* QT */ 34/* QT */
35#include <qdialog.h> 35#include <qdialog.h>
36#include <qlabel.h> 36#include <qlabel.h>
37#include <qpixmap.h> 37#include <qpixmap.h>
38#include <qtimer.h> 38#include <qtimer.h>
39 39
40 40
41namespace Opie { 41namespace Opie {
42namespace Ui { 42namespace Ui {
43/** 43/**
44 * This class displays a animated waiting icon in the middle of the screen. 44 * This class displays a animated waiting icon in the middle of the screen.
45 * 45 *
46 * @short modal hour glass dialog 46 * @short modal hour glass dialog
47 * @see QDialog 47 * @see QDialog
48 * @author Maximilian Reiß 48 * @author Maximilian Rei� */
49 */
50class OWait : public QDialog 49class OWait : public QDialog
51{ 50{
52 Q_OBJECT 51 Q_OBJECT
53 52
54 public: 53 public:
55 OWait( QWidget *parent = 0, const char* name = 0, bool dispIcon = TRUE ); 54 OWait( QWidget *parent = 0, const char* name = 0, bool dispIcon = TRUE );
56 ~OWait(); 55 ~OWait();
57 56
58 /** 57 /**
59 * reimplemented for control reasons 58 * reimplemented for control reasons
60 */ 59 */
61 void show(); 60 void show();
62 61
63 /** 62 /**
64 * Set the time before the icon will be automaticly hidden 63 * Set the time before the icon will be automaticly hidden
65 * The timer will be started once the widget will be shown. 64 * The timer will be started once the widget will be shown.
66 * @param length - time in seconds 65 * @param length - time in seconds
67 */ 66 */
68 void setTimerLength( int length ); 67 void setTimerLength( int length );
69 68
70 public slots: 69 public slots:
71 /** 70 /**
72 * reimplemented for control reasons 71 * reimplemented for control reasons
73 */ 72 */
74 void hide(); 73 void hide();
75 74
76 private: 75 private:
77 void timerEvent( QTimerEvent * ); 76 void timerEvent( QTimerEvent * );
78 void paintEvent( QPaintEvent * ); 77 void paintEvent( QPaintEvent * );
79 78
80 QPixmap m_pix; 79 QPixmap m_pix;
81 QLabel *m_lb; 80 QLabel *m_lb;
82 QTimer *m_waitTimer; 81 QTimer *m_waitTimer;
83 int m_timerLength; 82 int m_timerLength;
84 int m_aniSize; 83 int m_aniSize;
85 class Private; 84 class Private;
86 Private *d; 85 Private *d;
87}; 86};
88} 87}
89} 88}
90#endif 89#endif