summaryrefslogtreecommitdiff
authorzecke <zecke>2005-02-06 11:26:47 (UTC)
committer zecke <zecke>2005-02-06 11:26:47 (UTC)
commite29e3328f35e9d74e48d26b99f0e6e8d6dcdd33a (patch) (unidiff)
tree08f6fb3eccf860ce596d499e0d6cf19fc0b13069
parent27847dffc089bb8c89d09e7f9277c43c7590b8b8 (diff)
downloadopie-e29e3328f35e9d74e48d26b99f0e6e8d6dcdd33a.zip
opie-e29e3328f35e9d74e48d26b99f0e6e8d6dcdd33a.tar.gz
opie-e29e3328f35e9d74e48d26b99f0e6e8d6dcdd33a.tar.bz2
Remove uncommented code as well
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/fileselector/ofiledialog.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/libopie2/opieui/fileselector/ofiledialog.cpp b/libopie2/opieui/fileselector/ofiledialog.cpp
index 92d4271..f2a0c7b 100644
--- a/libopie2/opieui/fileselector/ofiledialog.cpp
+++ b/libopie2/opieui/fileselector/ofiledialog.cpp
@@ -5,202 +5,198 @@
5 _;:,     .>    :=|. This library is free software; you can 5 _;:,     .>    :=|. This library is free software; you can
6.> <`_,   >  .   <= redistribute it and/or modify it under 6.> <`_,   >  .   <= redistribute it and/or modify it under
7:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 7:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
8.="- .-=="i,     .._ License as published by the Free Software 8.="- .-=="i,     .._ License as published by the Free Software
9 - .   .-<_>     .<> Foundation; either version 2 of the License, 9 - .   .-<_>     .<> Foundation; either version 2 of the License,
10     ._= =}       : or (at your option) any later version. 10     ._= =}       : or (at your option) any later version.
11    .%`+i>       _;_. 11    .%`+i>       _;_.
12    .i_,=:_.      -<s. This library is distributed in the hope that 12    .i_,=:_.      -<s. This library is distributed in the hope that
13     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 13     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
14    : ..    .:,     . . . without even the implied warranty of 14    : ..    .:,     . . . without even the implied warranty of
15    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 15    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
16  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 16  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
17..}^=.=       =       ; Library General Public License for more 17..}^=.=       =       ; Library General Public License for more
18++=   -.     .`     .: details. 18++=   -.     .`     .: details.
19 :     =  ...= . :.=- 19 :     =  ...= . :.=-
20 -.   .:....=;==+<; You should have received a copy of the GNU 20 -.   .:....=;==+<; You should have received a copy of the GNU
21  -_. . .   )=.  = Library General Public License along with 21  -_. . .   )=.  = Library General Public License along with
22    --        :-=` this library; see the file COPYING.LIB. 22    --        :-=` this library; see the file COPYING.LIB.
23 If not, write to the Free Software Foundation, 23 If not, write to the Free Software Foundation,
24 Inc., 59 Temple Place - Suite 330, 24 Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA. 25 Boston, MA 02111-1307, USA.
26 26
27*/ 27*/
28 28
29 29
30/* OPIE */ 30/* OPIE */
31#include <opie2/ofiledialog.h> 31#include <opie2/ofiledialog.h>
32#include <qpe/applnk.h> 32#include <qpe/applnk.h>
33#include <qpe/config.h> 33#include <qpe/config.h>
34#include <qpe/qpeapplication.h> 34#include <qpe/qpeapplication.h>
35 35
36/* QT */ 36/* QT */
37#include <qfileinfo.h> 37#include <qfileinfo.h>
38#include <qstring.h> 38#include <qstring.h>
39#include <qapplication.h> 39#include <qapplication.h>
40#include <qlayout.h> 40#include <qlayout.h>
41 41
42 42
43/* TRANSLATOR Opie::Ui::OFileDialog */ 43/* TRANSLATOR Opie::Ui::OFileDialog */
44 44
45using namespace Opie::Ui; 45using namespace Opie::Ui;
46 46
47namespace 47namespace
48{ 48{
49/* 49/*
50 * helper functions to load the start dir 50 * helper functions to load the start dir
51 * and to save it 51 * and to save it
52 * helper to extract the dir out of a file name 52 * helper to extract the dir out of a file name
53 */ 53 */
54/** 54/**
55 * This method will use Config( argv[0] ); 55 * This method will use Config( argv[0] );
56 * @param key The group key used 56 * @param key The group key used
57 */ 57 */
58QString lastUsedDir( const QString& key ) 58QString lastUsedDir( const QString& key )
59{ 59{
60 if ( qApp->argc() < 1 ) 60 if ( qApp->argc() < 1 )
61 return QString::null; 61 return QString::null;
62 62
63 Config cfg( QFileInfo(qApp->argv()[0]).fileName() ); // appname 63 Config cfg( QFileInfo(qApp->argv()[0]).fileName() ); // appname
64 cfg.setGroup( key ); 64 cfg.setGroup( key );
65 return cfg.readEntry("LastDir", QPEApplication::documentDir() ); 65 return cfg.readEntry("LastDir", QPEApplication::documentDir() );
66} 66}
67 67
68void saveLastDir( const QString& key, const QString& file ) 68void saveLastDir( const QString& key, const QString& file )
69{ 69{
70 if ( qApp->argc() < 1 ) 70 if ( qApp->argc() < 1 )
71 return; 71 return;
72 72
73 Config cfg( QFileInfo(qApp->argv()[0]).fileName() ); 73 Config cfg( QFileInfo(qApp->argv()[0]).fileName() );
74 cfg.setGroup( key ); 74 cfg.setGroup( key );
75 QFileInfo inf( file ); 75 QFileInfo inf( file );
76 if ( inf.isFile() ) 76 if ( inf.isFile() )
77 cfg.writeEntry("LastDir", inf.dirPath( true ) ); 77 cfg.writeEntry("LastDir", inf.dirPath( true ) );
78 else 78 else
79 cfg.writeEntry("LastDir", file ); 79 cfg.writeEntry("LastDir", file );
80} 80}
81}; 81};
82 82
83/** 83/**
84 * This constructs a modal dialog 84 * This constructs a modal dialog
85 * 85 *
86 * @param caption The caption of the dialog 86 * @param caption The caption of the dialog
87 * @param wid The parent widget 87 * @param wid The parent widget
88 * @param mode The mode of the OFileSelector @see OFileSelector 88 * @param mode The mode of the OFileSelector @see OFileSelector
89 * @param selector The selector of the OFileSelector 89 * @param selector The selector of the OFileSelector
90 * @param dirName the dir or resource to start from 90 * @param dirName the dir or resource to start from
91 * @param fileName a proposed or existing filename 91 * @param fileName a proposed or existing filename
92 * @param mimetypes The mimeTypes 92 * @param mimetypes The mimeTypes
93 */ 93 */
94OFileDialog::OFileDialog(const QString &caption, 94OFileDialog::OFileDialog(const QString &caption,
95 QWidget *wid, int mode, int selector, 95 QWidget *wid, int mode, int selector,
96 const QString &dirName, 96 const QString &dirName,
97 const QString &fileName, 97 const QString &fileName,
98 const QMap<QString,QStringList>& mimetypes ) 98 const QMap<QString,QStringList>& mimetypes )
99 : QDialog( wid, "OFileDialog", true ) 99 : QDialog( wid, "OFileDialog", true )
100{ 100{
101 // QVBoxLayout *lay = new QVBoxLayout(this);
102 //showMaximized();
103 QVBoxLayout *lay = new QVBoxLayout(this ); 101 QVBoxLayout *lay = new QVBoxLayout(this );
104 file = new OFileSelector(this , mode, selector, 102 file = new OFileSelector(this , mode, selector,
105 dirName, fileName, 103 dirName, fileName,
106 mimetypes ); 104 mimetypes );
107 lay->addWidget( file ); 105 lay->addWidget( file );
108 106
109 //lay->addWidget( file );
110 //showFullScreen();
111 setCaption( caption.isEmpty() ? tr("FileDialog") : caption ); 107 setCaption( caption.isEmpty() ? tr("FileDialog") : caption );
112 connect(file, SIGNAL(fileSelected(const QString&) ), 108 connect(file, SIGNAL(fileSelected(const QString&) ),
113 this, SLOT(slotFileSelected(const QString&) ) ); 109 this, SLOT(slotFileSelected(const QString&) ) );
114 connect(file, SIGNAL(ok() ), 110 connect(file, SIGNAL(ok() ),
115 this, SLOT(slotSelectorOk()) ) ; 111 this, SLOT(slotSelectorOk()) ) ;
116 112
117 connect(file, SIGNAL(dirSelected(const QString&) ), this, SLOT(slotDirSelected(const QString&) ) ); 113 connect(file, SIGNAL(dirSelected(const QString&) ), this, SLOT(slotDirSelected(const QString&) ) );
118} 114}
119/** 115/**
120 * @returns the mimetype of the selected 116 * @returns the mimetype of the selected
121 * currently it return QString::null 117 * currently it return QString::null
122 */ 118 */
123QString OFileDialog::mimetype()const 119QString OFileDialog::mimetype()const
124{ 120{
125 return QString::null; 121 return QString::null;
126} 122}
127 123
128/** 124/**
129 * @return the fileName 125 * @return the fileName
130 */ 126 */
131QString OFileDialog::fileName()const 127QString OFileDialog::fileName()const
132{ 128{
133 return file->selectedName(); 129 return file->selectedName();
134} 130}
135 131
136/** 132/**
137 * return a DocLnk to the current file 133 * return a DocLnk to the current file
138 */ 134 */
139DocLnk OFileDialog::selectedDocument()const 135DocLnk OFileDialog::selectedDocument()const
140{ 136{
141 return file->selectedDocument(); 137 return file->selectedDocument();
142} 138}
143 139
144/** 140/**
145 * This opens up a filedialog in Open mode 141 * This opens up a filedialog in Open mode
146 * 142 *
147 * @param selector the Selector Mode 143 * @param selector the Selector Mode
148 * @param startDir Where to start from 144 * @param startDir Where to start from
149 * @param file A proposed filename 145 * @param file A proposed filename
150 * @param mimes A list of MimeTypes 146 * @param mimes A list of MimeTypes
151 * @param wid the parent 147 * @param wid the parent
152 * @param caption of the dialog if QString::null tr("Open") will be used 148 * @param caption of the dialog if QString::null tr("Open") will be used
153 * @return the fileName or QString::null 149 * @return the fileName or QString::null
154 */ 150 */
155QString OFileDialog::getOpenFileName(int selector, 151QString OFileDialog::getOpenFileName(int selector,
156 const QString &_startDir, 152 const QString &_startDir,
157 const QString &file, 153 const QString &file,
158 const MimeTypes &mimes, 154 const MimeTypes &mimes,
159 QWidget *wid, 155 QWidget *wid,
160 const QString &caption ) 156 const QString &caption )
161{ 157{
162 QString ret; 158 QString ret;
163 QString startDir = _startDir; 159 QString startDir = _startDir;
164 if (startDir.isEmpty() ) 160 if (startDir.isEmpty() )
165 startDir = lastUsedDir( "FileDialog-OPEN" ); 161 startDir = lastUsedDir( "FileDialog-OPEN" );
166 162
167 163
168 OFileDialog dlg( caption.isEmpty() ? tr("Open") : caption, 164 OFileDialog dlg( caption.isEmpty() ? tr("Open") : caption,
169 wid, OFileSelector::Open, selector, startDir, file, mimes); 165 wid, OFileSelector::Open, selector, startDir, file, mimes);
170 if( QPEApplication::execDialog(&dlg ) ) 166 if( QPEApplication::execDialog(&dlg ) )
171 { 167 {
172 ret = dlg.fileName(); 168 ret = dlg.fileName();
173 saveLastDir( "FileDialog-OPEN", ret ); 169 saveLastDir( "FileDialog-OPEN", ret );
174 } 170 }
175 171
176 return ret; 172 return ret;
177} 173}
178 174
179/** 175/**
180 * This opens up a file dialog in save mode 176 * This opens up a file dialog in save mode
181 * @see getOpenFileName 177 * @see getOpenFileName
182 */ 178 */
183QString OFileDialog::getSaveFileName(int selector, 179QString OFileDialog::getSaveFileName(int selector,
184 const QString &_startDir, 180 const QString &_startDir,
185 const QString &file, 181 const QString &file,
186 const MimeTypes &mimes, 182 const MimeTypes &mimes,
187 QWidget *wid, 183 QWidget *wid,
188 const QString &caption ) 184 const QString &caption )
189{ 185{
190 QString ret; 186 QString ret;
191 QString startDir = _startDir; 187 QString startDir = _startDir;
192 if (startDir.isEmpty() ) 188 if (startDir.isEmpty() )
193 startDir = lastUsedDir( "FileDialog-SAVE" ); 189 startDir = lastUsedDir( "FileDialog-SAVE" );
194 190
195 OFileDialog dlg( caption.isEmpty() ? tr("Save") : caption, 191 OFileDialog dlg( caption.isEmpty() ? tr("Save") : caption,
196 wid, OFileSelector::Save, selector, startDir, file, mimes); 192 wid, OFileSelector::Save, selector, startDir, file, mimes);
197 193
198 /* 194 /*
199 * For the save mode we do not want a file to be written 195 * For the save mode we do not want a file to be written
200 * if the user just clicked on it 196 * if the user just clicked on it
201 * #1522 197 * #1522
202 */ 198 */
203 dlg.disconnect( dlg.file, SIGNAL(fileSelected(const QString&)) ); 199 dlg.disconnect( dlg.file, SIGNAL(fileSelected(const QString&)) );
204 dlg.disconnect( dlg.file, SIGNAL(ok()) ); 200 dlg.disconnect( dlg.file, SIGNAL(ok()) );
205 201
206 if( QPEApplication::execDialog(&dlg) ) 202 if( QPEApplication::execDialog(&dlg) )