summaryrefslogtreecommitdiff
authorzecke <zecke>2004-09-18 13:13:37 (UTC)
committer zecke <zecke>2004-09-18 13:13:37 (UTC)
commit721dbd6d4cfc2bfdede82a937b921e6f454da7d1 (patch) (unidiff)
tree1ea55ee2a6a938f77c5e1ae93716f5be8836862e
parente657f4e105ba8b0a0be174add45d008ebb140455 (diff)
downloadopie-721dbd6d4cfc2bfdede82a937b921e6f454da7d1.zip
opie-721dbd6d4cfc2bfdede82a937b921e6f454da7d1.tar.gz
opie-721dbd6d4cfc2bfdede82a937b921e6f454da7d1.tar.bz2
Hint the NameSpace of OFileDialog and OFontSelector
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/fileselector/ofiledialog.cpp5
-rw-r--r--libopie2/opieui/ofontselector.cpp3
2 files changed, 7 insertions, 1 deletions
diff --git a/libopie2/opieui/fileselector/ofiledialog.cpp b/libopie2/opieui/fileselector/ofiledialog.cpp
index ebce0ef..4c6b800 100644
--- a/libopie2/opieui/fileselector/ofiledialog.cpp
+++ b/libopie2/opieui/fileselector/ofiledialog.cpp
@@ -1,233 +1,236 @@
1/* 1/*
2               =. This file is part of the OPIE Project 2               =. This file is part of the OPIE Project
3             .=l. Copyright (C) Holger Freyther <zecke@handhelds.org> 3             .=l. Copyright (C) Holger Freyther <zecke@handhelds.org>
4           .>+-= 4           .>+-=
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
43/* TRANSLATOR Opie::Ui::OFileDialog */
44
42using namespace Opie::Ui; 45using namespace Opie::Ui;
43 46
44namespace 47namespace
45{ 48{
46/* 49/*
47 * helper functions to load the start dir 50 * helper functions to load the start dir
48 * and to save it 51 * and to save it
49 * helper to extract the dir out of a file name 52 * helper to extract the dir out of a file name
50 */ 53 */
51/** 54/**
52 * This method will use Config( argv[0] ); 55 * This method will use Config( argv[0] );
53 * @param key The group key used 56 * @param key The group key used
54 */ 57 */
55QString lastUsedDir( const QString& key ) 58QString lastUsedDir( const QString& key )
56{ 59{
57 if ( qApp->argc() < 1 ) 60 if ( qApp->argc() < 1 )
58 return QString::null; 61 return QString::null;
59 62
60 Config cfg( QFileInfo(qApp->argv()[0]).fileName() ); // appname 63 Config cfg( QFileInfo(qApp->argv()[0]).fileName() ); // appname
61 cfg.setGroup( key ); 64 cfg.setGroup( key );
62 return cfg.readEntry("LastDir", QPEApplication::documentDir() ); 65 return cfg.readEntry("LastDir", QPEApplication::documentDir() );
63} 66}
64 67
65void saveLastDir( const QString& key, const QString& file ) 68void saveLastDir( const QString& key, const QString& file )
66{ 69{
67 if ( qApp->argc() < 1 ) 70 if ( qApp->argc() < 1 )
68 return; 71 return;
69 72
70 Config cfg( QFileInfo(qApp->argv()[0]).fileName() ); 73 Config cfg( QFileInfo(qApp->argv()[0]).fileName() );
71 cfg.setGroup( key ); 74 cfg.setGroup( key );
72 QFileInfo inf( file ); 75 QFileInfo inf( file );
73 if ( inf.isFile() ) 76 if ( inf.isFile() )
74 cfg.writeEntry("LastDir", inf.dirPath( true ) ); 77 cfg.writeEntry("LastDir", inf.dirPath( true ) );
75 else 78 else
76 cfg.writeEntry("LastDir", file ); 79 cfg.writeEntry("LastDir", file );
77} 80}
78}; 81};
79 82
80/** 83/**
81 * This constructs a modal dialog 84 * This constructs a modal dialog
82 * 85 *
83 * @param caption The caption of the dialog 86 * @param caption The caption of the dialog
84 * @param wid The parent widget 87 * @param wid The parent widget
85 * @param mode The mode of the OFileSelector @see OFileSelector 88 * @param mode The mode of the OFileSelector @see OFileSelector
86 * @param selector The selector of the OFileSelector 89 * @param selector The selector of the OFileSelector
87 * @param dirName the dir or resource to start from 90 * @param dirName the dir or resource to start from
88 * @param fileName a proposed or existing filename 91 * @param fileName a proposed or existing filename
89 * @param mimetypes The mimeTypes 92 * @param mimetypes The mimeTypes
90 */ 93 */
91OFileDialog::OFileDialog(const QString &caption, 94OFileDialog::OFileDialog(const QString &caption,
92 QWidget *wid, int mode, int selector, 95 QWidget *wid, int mode, int selector,
93 const QString &dirName, 96 const QString &dirName,
94 const QString &fileName, 97 const QString &fileName,
95 const QMap<QString,QStringList>& mimetypes ) 98 const QMap<QString,QStringList>& mimetypes )
96 : QDialog( wid, "OFileDialog", true ) 99 : QDialog( wid, "OFileDialog", true )
97{ 100{
98 // QVBoxLayout *lay = new QVBoxLayout(this); 101 // QVBoxLayout *lay = new QVBoxLayout(this);
99 //showMaximized(); 102 //showMaximized();
100 QVBoxLayout *lay = new QVBoxLayout(this ); 103 QVBoxLayout *lay = new QVBoxLayout(this );
101 file = new OFileSelector(this , mode, selector, 104 file = new OFileSelector(this , mode, selector,
102 dirName, fileName, 105 dirName, fileName,
103 mimetypes ); 106 mimetypes );
104 lay->addWidget( file ); 107 lay->addWidget( file );
105 108
106 //lay->addWidget( file ); 109 //lay->addWidget( file );
107 //showFullScreen(); 110 //showFullScreen();
108 setCaption( caption.isEmpty() ? tr("FileDialog") : caption ); 111 setCaption( caption.isEmpty() ? tr("FileDialog") : caption );
109 connect(file, SIGNAL(fileSelected(const QString&) ), 112 connect(file, SIGNAL(fileSelected(const QString&) ),
110 this, SLOT(slotFileSelected(const QString&) ) ); 113 this, SLOT(slotFileSelected(const QString&) ) );
111 connect(file, SIGNAL(ok() ), 114 connect(file, SIGNAL(ok() ),
112 this, SLOT(slotSelectorOk()) ) ; 115 this, SLOT(slotSelectorOk()) ) ;
113 116
114 connect(file, SIGNAL(dirSelected(const QString&) ), this, SLOT(slotDirSelected(const QString&) ) ); 117 connect(file, SIGNAL(dirSelected(const QString&) ), this, SLOT(slotDirSelected(const QString&) ) );
115 118
116#if 0 119#if 0
117 connect(file, SIGNAL(dirSelected(const QString&) ), 120 connect(file, SIGNAL(dirSelected(const QString&) ),
118 this, SLOT(slotDirSelected(const QString&) ) ); 121 this, SLOT(slotDirSelected(const QString&) ) );
119#endif 122#endif
120} 123}
121/** 124/**
122 * @returns the mimetype of the selected 125 * @returns the mimetype of the selected
123 * currently it return QString::null 126 * currently it return QString::null
124 */ 127 */
125QString OFileDialog::mimetype()const 128QString OFileDialog::mimetype()const
126{ 129{
127 return QString::null; 130 return QString::null;
128} 131}
129 132
130/** 133/**
131 * @return the fileName 134 * @return the fileName
132 */ 135 */
133QString OFileDialog::fileName()const 136QString OFileDialog::fileName()const
134{ 137{
135 return file->selectedName(); 138 return file->selectedName();
136} 139}
137 140
138/** 141/**
139 * return a DocLnk to the current file 142 * return a DocLnk to the current file
140 */ 143 */
141DocLnk OFileDialog::selectedDocument()const 144DocLnk OFileDialog::selectedDocument()const
142{ 145{
143 return file->selectedDocument(); 146 return file->selectedDocument();
144} 147}
145 148
146/** 149/**
147 * This opens up a filedialog in Open mode 150 * This opens up a filedialog in Open mode
148 * 151 *
149 * @param selector the Selector Mode 152 * @param selector the Selector Mode
150 * @param startDir Where to start from 153 * @param startDir Where to start from
151 * @param file A proposed filename 154 * @param file A proposed filename
152 * @param mimes A list of MimeTypes 155 * @param mimes A list of MimeTypes
153 * @param wid the parent 156 * @param wid the parent
154 * @param caption of the dialog if QString::null tr("Open") will be used 157 * @param caption of the dialog if QString::null tr("Open") will be used
155 * @return the fileName or QString::null 158 * @return the fileName or QString::null
156 */ 159 */
157QString OFileDialog::getOpenFileName(int selector, 160QString OFileDialog::getOpenFileName(int selector,
158 const QString &_startDir, 161 const QString &_startDir,
159 const QString &file, 162 const QString &file,
160 const MimeTypes &mimes, 163 const MimeTypes &mimes,
161 QWidget *wid, 164 QWidget *wid,
162 const QString &caption ) 165 const QString &caption )
163{ 166{
164 QString ret; 167 QString ret;
165 QString startDir = _startDir; 168 QString startDir = _startDir;
166 if (startDir.isEmpty() ) 169 if (startDir.isEmpty() )
167 startDir = lastUsedDir( "FileDialog-OPEN" ); 170 startDir = lastUsedDir( "FileDialog-OPEN" );
168 171
169 172
170 OFileDialog dlg( caption.isEmpty() ? tr("Open") : caption, 173 OFileDialog dlg( caption.isEmpty() ? tr("Open") : caption,
171 wid, OFileSelector::Open, selector, startDir, file, mimes); 174 wid, OFileSelector::Open, selector, startDir, file, mimes);
172 dlg.showMaximized(); 175 dlg.showMaximized();
173 if( dlg.exec() ) 176 if( dlg.exec() )
174 { 177 {
175 ret = dlg.fileName(); 178 ret = dlg.fileName();
176 saveLastDir( "FileDialog-OPEN", ret ); 179 saveLastDir( "FileDialog-OPEN", ret );
177 } 180 }
178 181
179 return ret; 182 return ret;
180} 183}
181 184
182/** 185/**
183 * This opens up a file dialog in save mode 186 * This opens up a file dialog in save mode
184 * @see getOpenFileName 187 * @see getOpenFileName
185 */ 188 */
186QString OFileDialog::getSaveFileName(int selector, 189QString OFileDialog::getSaveFileName(int selector,
187 const QString &_startDir, 190 const QString &_startDir,
188 const QString &file, 191 const QString &file,
189 const MimeTypes &mimes, 192 const MimeTypes &mimes,
190 QWidget *wid, 193 QWidget *wid,
191 const QString &caption ) 194 const QString &caption )
192{ 195{
193 QString ret; 196 QString ret;
194 QString startDir = _startDir; 197 QString startDir = _startDir;
195 if (startDir.isEmpty() ) 198 if (startDir.isEmpty() )
196 startDir = lastUsedDir( "FileDialog-SAVE" ); 199 startDir = lastUsedDir( "FileDialog-SAVE" );
197 200
198 OFileDialog dlg( caption.isEmpty() ? tr("Save") : caption, 201 OFileDialog dlg( caption.isEmpty() ? tr("Save") : caption,
199 wid, OFileSelector::Save, selector, startDir, file, mimes); 202 wid, OFileSelector::Save, selector, startDir, file, mimes);
200 dlg.showMaximized(); 203 dlg.showMaximized();
201 if( dlg.exec() ) 204 if( dlg.exec() )
202 { 205 {
203 ret = dlg.fileName(); 206 ret = dlg.fileName();
204 saveLastDir( "FileDialog-SAVE", ret ); 207 saveLastDir( "FileDialog-SAVE", ret );
205 } 208 }
206 209
207 return ret; 210 return ret;
208} 211}
209 212
210/** 213/**
211 * This opens up a filedialog in select directory mode 214 * This opens up a filedialog in select directory mode
212 * 215 *
213 * @param selector the Selector Mode 216 * @param selector the Selector Mode
214 * @param startDir Where to start from 217 * @param startDir Where to start from
215 * @param wid the parent 218 * @param wid the parent
216 * @param caption of the dialog if QString::null tr("Open") will be used 219 * @param caption of the dialog if QString::null tr("Open") will be used
217 * @return the directoryName or QString::null 220 * @return the directoryName or QString::null
218 */ 221 */
219QString OFileDialog::getDirectory(int selector, 222QString OFileDialog::getDirectory(int selector,
220 const QString &_startDir, 223 const QString &_startDir,
221 QWidget *wid, 224 QWidget *wid,
222 const QString &caption ) 225 const QString &caption )
223{ 226{
224 QString ret; 227 QString ret;
225 QString startDir = _startDir; 228 QString startDir = _startDir;
226 if ( startDir.isEmpty() ) 229 if ( startDir.isEmpty() )
227 startDir = lastUsedDir( "FileDialog-SELECTDIR" ); 230 startDir = lastUsedDir( "FileDialog-SELECTDIR" );
228 231
229 OFileDialog dlg( caption.isEmpty() ? tr( "Select Directory" ) : caption, 232 OFileDialog dlg( caption.isEmpty() ? tr( "Select Directory" ) : caption,
230 wid, OFileSelector::DirectorySelector, selector, startDir ); 233 wid, OFileSelector::DirectorySelector, selector, startDir );
231 dlg.showMaximized(); 234 dlg.showMaximized();
232 if ( dlg.exec() ) 235 if ( dlg.exec() )
233 { 236 {
diff --git a/libopie2/opieui/ofontselector.cpp b/libopie2/opieui/ofontselector.cpp
index 4870cd9..6c24f14 100644
--- a/libopie2/opieui/ofontselector.cpp
+++ b/libopie2/opieui/ofontselector.cpp
@@ -1,233 +1,236 @@
1/* 1/*
2 This file is part of the Opie Project 2 This file is part of the Opie Project
3 Copyright (C) Robert Griebl <sandman@handhelds.org> 3 Copyright (C) Robert Griebl <sandman@handhelds.org>
4 =. Copyright (C) The Opie Team <opie-devel@handhelds.org> 4 =. Copyright (C) The Opie Team <opie-devel@handhelds.org>
5 .=l. 5 .=l.
6           .>+-= 6           .>+-=
7 _;:,     .>    :=|. This program is free software; you can 7 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under 8.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i,     .._ License as published by the Free Software 10.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; either version 2 of the License, 11 - .   .-<_>     .<> Foundation; either version 2 of the License,
12     ._= =}       : or (at your option) any later version. 12     ._= =}       : or (at your option) any later version.
13    .%`+i>       _;_. 13    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that 14    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of 16    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 19..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 20++=   -.     .`     .: details.
21 :     =  ...= . :.=- 21 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 22 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 23  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 24    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28*/ 28*/
29 29
30/* OPIE */ 30/* OPIE */
31#include <opie2/ofontselector.h> 31#include <opie2/ofontselector.h>
32#include <qpe/fontdatabase.h> 32#include <qpe/fontdatabase.h>
33 33
34/* QT */ 34/* QT */
35#include <qlayout.h> 35#include <qlayout.h>
36#include <qlistbox.h> 36#include <qlistbox.h>
37#include <qcombobox.h> 37#include <qcombobox.h>
38#include <qlabel.h> 38#include <qlabel.h>
39#include <qmultilineedit.h> 39#include <qmultilineedit.h>
40 40
41 41
42/* TRANSLATOR Opie::Ui::OFontSelector */
43
44
42namespace Opie { 45namespace Opie {
43namespace Ui { 46namespace Ui {
44namespace Internal { 47namespace Internal {
45 48
46class OFontSelectorPrivate 49class OFontSelectorPrivate
47{ 50{
48public: 51public:
49 QListBox * m_font_family_list; 52 QListBox * m_font_family_list;
50 QComboBox * m_font_style_list; 53 QComboBox * m_font_style_list;
51 QComboBox * m_font_size_list; 54 QComboBox * m_font_size_list;
52 QMultiLineEdit *m_preview; 55 QMultiLineEdit *m_preview;
53 56
54 bool m_pointbug : 1; 57 bool m_pointbug : 1;
55 58
56 FontDatabase m_fdb; 59 FontDatabase m_fdb;
57}; 60};
58 61
59class FontListItem : public QListBoxText 62class FontListItem : public QListBoxText
60{ 63{
61public: 64public:
62 FontListItem ( const QString &t, const QStringList &styles, const QValueList<int> &sizes ) : QListBoxText() 65 FontListItem ( const QString &t, const QStringList &styles, const QValueList<int> &sizes ) : QListBoxText()
63 { 66 {
64 m_name = t; 67 m_name = t;
65 m_styles = styles; 68 m_styles = styles;
66 m_sizes = sizes; 69 m_sizes = sizes;
67 70
68 QString str = t; 71 QString str = t;
69 str [0] = str [0]. upper(); 72 str [0] = str [0]. upper();
70 setText ( str ); 73 setText ( str );
71 } 74 }
72 75
73 QString family() const 76 QString family() const
74 { 77 {
75 return m_name; 78 return m_name;
76 } 79 }
77 80
78 const QStringList &styles() const 81 const QStringList &styles() const
79 { 82 {
80 return m_styles; 83 return m_styles;
81 } 84 }
82 85
83 const QValueList<int> &sizes() const 86 const QValueList<int> &sizes() const
84 { 87 {
85 return m_sizes; 88 return m_sizes;
86 } 89 }
87 90
88private: 91private:
89 QStringList m_styles; 92 QStringList m_styles;
90 QValueList<int> m_sizes; 93 QValueList<int> m_sizes;
91 QString m_name; 94 QString m_name;
92}; 95};
93} 96}
94} 97}
95} 98}
96 99
97 100
98using namespace Opie::Ui; 101using namespace Opie::Ui;
99using namespace Opie::Ui::Internal; 102using namespace Opie::Ui::Internal;
100 103
101static int findItemCB( QComboBox *box, const QString &str ) 104static int findItemCB( QComboBox *box, const QString &str )
102{ 105{
103 for ( int i = 0; i < box->count(); i++ ) 106 for ( int i = 0; i < box->count(); i++ )
104 { 107 {
105 if ( box->text ( i ) == str ) 108 if ( box->text ( i ) == str )
106 return i; 109 return i;
107 } 110 }
108 return -1; 111 return -1;
109} 112}
110 113
111/* static same as anon. namespace */ 114/* static same as anon. namespace */
112static int qt_version() 115static int qt_version()
113{ 116{
114 const char *qver = qVersion(); 117 const char *qver = qVersion();
115 118
116 return ( qver [0] - '0' ) * 100 + ( qver [2] - '0' ) * 10 + ( qver [4] - '0' ); 119 return ( qver [0] - '0' ) * 100 + ( qver [2] - '0' ) * 10 + ( qver [4] - '0' );
117} 120}
118 121
119/** 122/**
120 * Constructs the Selector object 123 * Constructs the Selector object
121 * @param withpreview If a font preview should be given 124 * @param withpreview If a font preview should be given
122 * @param parent The parent of the Font Selector 125 * @param parent The parent of the Font Selector
123 * @param name The name of the object 126 * @param name The name of the object
124 * @param fl WidgetFlags 127 * @param fl WidgetFlags
125 */ 128 */
126OFontSelector::OFontSelector( bool withpreview, QWidget *parent, const char *name, WFlags fl ) : QWidget ( parent, name, fl ) 129OFontSelector::OFontSelector( bool withpreview, QWidget *parent, const char *name, WFlags fl ) : QWidget ( parent, name, fl )
127{ 130{
128 d = new OFontSelectorPrivate(); 131 d = new OFontSelectorPrivate();
129 132
130 QGridLayout *gridLayout = new QGridLayout( this, 0, 0, 4, 4 ); 133 QGridLayout *gridLayout = new QGridLayout( this, 0, 0, 4, 4 );
131 gridLayout->setRowStretch( 4, 10 ); 134 gridLayout->setRowStretch( 4, 10 );
132 135
133 d->m_font_family_list = new QListBox( this, "FontListBox" ); 136 d->m_font_family_list = new QListBox( this, "FontListBox" );
134 gridLayout->addMultiCellWidget( d->m_font_family_list, 0, 4, 0, 0 ); 137 gridLayout->addMultiCellWidget( d->m_font_family_list, 0, 4, 0, 0 );
135 connect( d->m_font_family_list, SIGNAL( highlighted(int) ), this, SLOT( fontFamilyClicked(int) ) ); 138 connect( d->m_font_family_list, SIGNAL( highlighted(int) ), this, SLOT( fontFamilyClicked(int) ) );
136 139
137 QLabel *label = new QLabel( tr( "Style" ), this ); 140 QLabel *label = new QLabel( tr( "Style" ), this );
138 gridLayout->addWidget( label, 0, 1 ); 141 gridLayout->addWidget( label, 0, 1 );
139 142
140 d->m_font_style_list = new QComboBox( this, "StyleListBox" ); 143 d->m_font_style_list = new QComboBox( this, "StyleListBox" );
141 connect( d->m_font_style_list, SIGNAL( activated(int) ), this, SLOT( fontStyleClicked(int) ) ); 144 connect( d->m_font_style_list, SIGNAL( activated(int) ), this, SLOT( fontStyleClicked(int) ) );
142 gridLayout->addWidget( d->m_font_style_list, 1, 1 ); 145 gridLayout->addWidget( d->m_font_style_list, 1, 1 );
143 146
144 label = new QLabel( tr( "Size" ), this ); 147 label = new QLabel( tr( "Size" ), this );
145 gridLayout->addWidget( label, 2, 1 ); 148 gridLayout->addWidget( label, 2, 1 );
146 149
147 d->m_font_size_list = new QComboBox( this, "SizeListBox" ); 150 d->m_font_size_list = new QComboBox( this, "SizeListBox" );
148 connect( d->m_font_size_list, SIGNAL( activated(int) ), 151 connect( d->m_font_size_list, SIGNAL( activated(int) ),
149 this, SLOT( fontSizeClicked(int) ) ); 152 this, SLOT( fontSizeClicked(int) ) );
150 gridLayout->addWidget( d->m_font_size_list, 3, 1 ); 153 gridLayout->addWidget( d->m_font_size_list, 3, 1 );
151 154
152 d->m_pointbug = ( qt_version() <= 233 ); 155 d->m_pointbug = ( qt_version() <= 233 );
153 156
154 if ( withpreview ) 157 if ( withpreview )
155 { 158 {
156 d->m_preview = new QMultiLineEdit ( this, "Preview" ); 159 d->m_preview = new QMultiLineEdit ( this, "Preview" );
157 d->m_preview->setAlignment ( AlignCenter ); 160 d->m_preview->setAlignment ( AlignCenter );
158 d->m_preview->setWordWrap ( QMultiLineEdit::WidgetWidth ); 161 d->m_preview->setWordWrap ( QMultiLineEdit::WidgetWidth );
159 d->m_preview->setMargin ( 3 ); 162 d->m_preview->setMargin ( 3 );
160 d->m_preview->setText ( tr( "The Quick Brown Fox Jumps Over The Lazy Dog" )); 163 d->m_preview->setText ( tr( "The Quick Brown Fox Jumps Over The Lazy Dog" ));
161 gridLayout->addRowSpacing ( 5, 4 ); 164 gridLayout->addRowSpacing ( 5, 4 );
162 gridLayout->addMultiCellWidget ( d->m_preview, 6, 6, 0, 1 ); 165 gridLayout->addMultiCellWidget ( d->m_preview, 6, 6, 0, 1 );
163 gridLayout->setRowStretch ( 6, 5 ); 166 gridLayout->setRowStretch ( 6, 5 );
164 } 167 }
165 else 168 else
166 d->m_preview = 0; 169 d->m_preview = 0;
167 170
168 loadFonts ( d->m_font_family_list ); 171 loadFonts ( d->m_font_family_list );
169} 172}
170 173
171OFontSelector::~OFontSelector() 174OFontSelector::~OFontSelector()
172{ 175{
173 delete d; 176 delete d;
174} 177}
175 178
176/** 179/**
177 * This methods tries to set the font 180 * This methods tries to set the font
178 * @param f The wishes font 181 * @param f The wishes font
179 * @return success or failure 182 * @return success or failure
180 */ 183 */
181bool OFontSelector::setSelectedFont ( const QFont &f ) 184bool OFontSelector::setSelectedFont ( const QFont &f )
182{ 185{
183 return setSelectedFont ( f. family(), d->m_fdb. styleString ( f ), f. pointSize(), QFont::encodingName ( f. charSet())); 186 return setSelectedFont ( f. family(), d->m_fdb. styleString ( f ), f. pointSize(), QFont::encodingName ( f. charSet()));
184} 187}
185 188
186 189
187/** 190/**
188 * This is an overloaded method @see setSelectedFont 191 * This is an overloaded method @see setSelectedFont
189 * @param familyStr The family of the font 192 * @param familyStr The family of the font
190 * @param styleStr The style of the font 193 * @param styleStr The style of the font
191 * @param sizeVal The size of font 194 * @param sizeVal The size of font
192 * @param charset The charset to be used. Will be deprecated by QT3 195 * @param charset The charset to be used. Will be deprecated by QT3
193 */ 196 */
194bool OFontSelector::setSelectedFont( const QString &familyStr, const QString &styleStr, int sizeVal, const QString & charset ) 197bool OFontSelector::setSelectedFont( const QString &familyStr, const QString &styleStr, int sizeVal, const QString & charset )
195{ 198{
196 Q_CONST_UNUSED( charset ) 199 Q_CONST_UNUSED( charset )
197 QString sizeStr = QString::number ( sizeVal ); 200 QString sizeStr = QString::number ( sizeVal );
198 201
199 QListBoxItem *family = d->m_font_family_list->findItem ( familyStr ); 202 QListBoxItem *family = d->m_font_family_list->findItem ( familyStr );
200 if ( !family ) 203 if ( !family )
201 family = d->m_font_family_list->findItem ( "Helvetica" ); 204 family = d->m_font_family_list->findItem ( "Helvetica" );
202 if ( !family ) 205 if ( !family )
203 family = d->m_font_family_list->firstItem(); 206 family = d->m_font_family_list->firstItem();
204 d->m_font_family_list->setCurrentItem ( family ); 207 d->m_font_family_list->setCurrentItem ( family );
205 fontFamilyClicked ( d->m_font_family_list->index ( family )); 208 fontFamilyClicked ( d->m_font_family_list->index ( family ));
206 209
207 int style = findItemCB ( d->m_font_style_list, styleStr ); 210 int style = findItemCB ( d->m_font_style_list, styleStr );
208 if ( style < 0 ) 211 if ( style < 0 )
209 style = findItemCB ( d->m_font_style_list, "Regular" ); 212 style = findItemCB ( d->m_font_style_list, "Regular" );
210 if ( style < 0 && d->m_font_style_list->count() > 0 ) 213 if ( style < 0 && d->m_font_style_list->count() > 0 )
211 style = 0; 214 style = 0;
212 d->m_font_style_list->setCurrentItem ( style ); 215 d->m_font_style_list->setCurrentItem ( style );
213 fontStyleClicked ( style ); 216 fontStyleClicked ( style );
214 217
215 int size = findItemCB ( d->m_font_size_list, sizeStr ); 218 int size = findItemCB ( d->m_font_size_list, sizeStr );
216 if ( size < 0 ) 219 if ( size < 0 )
217 size = findItemCB ( d->m_font_size_list, "10" ); 220 size = findItemCB ( d->m_font_size_list, "10" );
218 if ( size < 0 && d->m_font_size_list->count() > 0 ) 221 if ( size < 0 && d->m_font_size_list->count() > 0 )
219 size = 0; 222 size = 0;
220 d->m_font_size_list->setCurrentItem ( size ); 223 d->m_font_size_list->setCurrentItem ( size );
221 fontSizeClicked ( size ); 224 fontSizeClicked ( size );
222 225
223 return (( family ) && ( style >= 0 ) && ( size >= 0 )); 226 return (( family ) && ( style >= 0 ) && ( size >= 0 ));
224} 227}
225 228
226/** 229/**
227 * This method returns the name, style and size of the currently selected 230 * This method returns the name, style and size of the currently selected
228 * font or false if no font is selected 231 * font or false if no font is selected
229 * @param family The font family will be written there 232 * @param family The font family will be written there
230 * @param style The style will be written there 233 * @param style The style will be written there
231 * @param size The size will be written there 234 * @param size The size will be written there
232 * @return success or failure 235 * @return success or failure
233 */ 236 */