summaryrefslogtreecommitdiff
authorzecke <zecke>2004-02-02 16:22:20 (UTC)
committer zecke <zecke>2004-02-02 16:22:20 (UTC)
commit9191120c28d3c125897b01680f57925c431c7104 (patch) (unidiff)
tree29f9183396b639d9f4618d60845e74048703d789
parent44e49951c71b277bd05ecc9857ec39d73a61b35e (diff)
downloadopie-9191120c28d3c125897b01680f57925c431c7104.zip
opie-9191120c28d3c125897b01680f57925c431c7104.tar.gz
opie-9191120c28d3c125897b01680f57925c431c7104.tar.bz2
Use @slash to avoid problems with warning due /* in a comment
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/ofiledialog.h4
-rw-r--r--libopie/ofileselector.cpp6
2 files changed, 5 insertions, 5 deletions
diff --git a/libopie/ofiledialog.h b/libopie/ofiledialog.h
index 91e0586..3b905c0 100644
--- a/libopie/ofiledialog.h
+++ b/libopie/ofiledialog.h
@@ -23,51 +23,51 @@
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#ifndef OpieFileDialog_h 30#ifndef OpieFileDialog_h
31#define OpieFileDialog_h 31#define OpieFileDialog_h
32 32
33#include <qdialog.h> 33#include <qdialog.h>
34 34
35#include <opie/ofileselector.h> 35#include <opie/ofileselector.h>
36 36
37/** 37/**
38 * This class places a OFileSelector inside a QDialog. 38 * This class places a OFileSelector inside a QDialog.
39 * It provides static method for letting a user chose 39 * It provides static method for letting a user chose
40 * a file for either opening or saving. 40 * a file for either opening or saving.
41 * Most of the time the c'tor will not be used instead using 41 * Most of the time the c'tor will not be used instead using
42 * the static member functions is prefered. 42 * the static member functions is prefered.
43 * 43 *
44 * <pre> 44 * <pre>
45 * QMap<QString, QStringList> mimeTypes; 45 * QMap<QString, QStringList> mimeTypes;
46 * QStringList types; 46 * QStringList types;
47 * types << "text[slash]* "; 47 * types << "text@slash* ";
48 * mimeTypes.insert( tr("Text"), types ); 48 * mimeTypes.insert( tr("Text"), types );
49 * mimeTypes.insert( tr("All"), " * / * " ); // remove the spaces in the 2nd comment 49 * mimeTypes.insert( tr("All"), " *@slash* " ); // remove the spaces in the 2nd comment
50 * QString fileName= OFileDialog::getOpenFileName( OFileSelector::EXTENDED_ALL, 50 * QString fileName= OFileDialog::getOpenFileName( OFileSelector::EXTENDED_ALL,
51 * "foo","bar", mimeTypes); 51 * "foo","bar", mimeTypes);
52 * </pre> 52 * </pre>
53 * 53 *
54 * @short A small QDialog swalloing a FileSelector 54 * @short A small QDialog swalloing a FileSelector
55 * @see QDialog 55 * @see QDialog
56 * @see OFileSelector 56 * @see OFileSelector
57 * @version 0.1-unfinished 57 * @version 0.1-unfinished
58 * @author Holger Freyther ( zecke@handhelds.org ) 58 * @author Holger Freyther ( zecke@handhelds.org )
59 */ 59 */
60class OFileDialog : public QDialog { 60class OFileDialog : public QDialog {
61 Q_OBJECT 61 Q_OBJECT
62 public: 62 public:
63 OFileDialog(const QString &caption, 63 OFileDialog(const QString &caption,
64 QWidget *, int mode, int selector, 64 QWidget *, int mode, int selector,
65 const QString &dirName, 65 const QString &dirName,
66 const QString &fileName = QString::null, 66 const QString &fileName = QString::null,
67 const MimeTypes &mimetypes = MimeTypes() ); 67 const MimeTypes &mimetypes = MimeTypes() );
68 QString mimetype() const; 68 QString mimetype() const;
69 QString fileName() const; 69 QString fileName() const;
70 DocLnk selectedDocument()const; 70 DocLnk selectedDocument()const;
71 71
72 // static methods 72 // static methods
73 static QString getOpenFileName(int selector, 73 static QString getOpenFileName(int selector,
diff --git a/libopie/ofileselector.cpp b/libopie/ofileselector.cpp
index 9afe9c7..9ac2981 100644
--- a/libopie/ofileselector.cpp
+++ b/libopie/ofileselector.cpp
@@ -617,52 +617,52 @@ int OFileViewFileSystem::fileCount()const{
617} 617}
618QWidget* OFileViewFileSystem::widget( QWidget* parent ) { 618QWidget* OFileViewFileSystem::widget( QWidget* parent ) {
619 if (!m_view ) { 619 if (!m_view ) {
620 m_view = new OFileViewFileListView( parent, startDirectory(), selector() ); 620 m_view = new OFileViewFileListView( parent, startDirectory(), selector() );
621 } 621 }
622 return m_view; 622 return m_view;
623} 623}
624void OFileViewFileSystem::activate( const QString& str) { 624void OFileViewFileSystem::activate( const QString& str) {
625 m_all = (str != QObject::tr("Files") ); 625 m_all = (str != QObject::tr("Files") );
626 626
627 627
628} 628}
629 629
630/* Selector */ 630/* Selector */
631/** 631/**
632 * @short new and complete c'tor 632 * @short new and complete c'tor
633 * 633 *
634 * Create a OFileSelector to let the user select a file. It can 634 * Create a OFileSelector to let the user select a file. It can
635 * either be used to open a file, select a save name in a dir or 635 * either be used to open a file, select a save name in a dir or
636 * as a dropin for the FileSelector. 636 * as a dropin for the FileSelector.
637 * 637 *
638 * <pre> 638 * <pre>
639 * QMap<QString, QStringList> mimeTypes; 639 * QMap<QString, QStringList> mimeTypes;
640 * QStringList types; 640 * QStringList types;
641 * types << "text[slash]* "; 641 * types << "text@slash* ";
642 * types << "audio[slash]*"; 642 * types << "audio@slash*";
643 * mimeTypes.insert( tr("Audio and Text"), types ); 643 * mimeTypes.insert( tr("Audio and Text"), types );
644 * mimeTypes.insert( tr("All"), "*[slash]*); 644 * mimeTypes.insert( tr("All"), "*@slash*);
645 * 645 *
646 * now you could create your fileselector 646 * now you could create your fileselector
647 * </pre> 647 * </pre>
648 * 648 *
649 * 649 *
650 * @param parent the parent of this widget 650 * @param parent the parent of this widget
651 * @param mode The mode from the enum Mode (Open,Save,FILESELECTOR) 651 * @param mode The mode from the enum Mode (Open,Save,FILESELECTOR)
652 * @param sel The selector to be used 652 * @param sel The selector to be used
653 * @param dirName The name of the dir to start int 653 * @param dirName The name of the dir to start int
654 * @param fileName The fileName placed in the fileselector lineedit 654 * @param fileName The fileName placed in the fileselector lineedit
655 * @param mimetypes The MimeType map of used mimetypes 655 * @param mimetypes The MimeType map of used mimetypes
656 * @param showNew Show a New Button. Most likely to be used in the FileSelector view. 656 * @param showNew Show a New Button. Most likely to be used in the FileSelector view.
657 * @param showClose Show a Close Button. Most likely to be used in FileSelector view. 657 * @param showClose Show a Close Button. Most likely to be used in FileSelector view.
658 * 658 *
659 */ 659 */
660OFileSelector::OFileSelector( QWidget* parent, int mode, int sel, 660OFileSelector::OFileSelector( QWidget* parent, int mode, int sel,
661 const QString& dirName, const QString& fileName, 661 const QString& dirName, const QString& fileName,
662 const MimeTypes& mimetypes, 662 const MimeTypes& mimetypes,
663 bool showNew, bool showClose) 663 bool showNew, bool showClose)
664 : QWidget( parent, "OFileSelector" ) 664 : QWidget( parent, "OFileSelector" )
665{ 665{
666 m_current = 0; 666 m_current = 0;
667 m_shNew = showNew; 667 m_shNew = showNew;
668 m_shClose = showClose; 668 m_shClose = showClose;